@charset "utf-8";

/*----------------------------------------------------------
/* スタイル定義
/* last/2023.3.22
-----------------------------------------------------------*/

/*----------------------------------------------------------
/* 基本定義
-----------------------------------------------------------*/
/*フォント設定*/
html {
  font-size: 10px;
  /* initial 10px */
}

body {
  font-family: "Noto Sans JP", "Yu Gothic", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #333;
}


/*----------------------------------------------------------
/* リセット
-----------------------------------------------------------*/

/* 段落
p {
  margin: 0.5em 0 1.5em 0;
} */

/* 空のタグは表示しない */
p:empty,
a:empty {
  display: none !important;
}

/* アンカー */
a,
a:link,
a:visited {
  text-decoration: none;
  color: #1a1a1a;
}

a:active,
a:hover {
  text-decoration: none;
}

a:hover img,
a:hover {
  opacity: 0.7;
  transition: all .2s ease-out;
}

/* リストスタイルリセット */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 画像 */
img,
.page img,
.archive img,
.blog img,
.single img {
  max-width: 100%;
}

/*** 汎用クラス ***/
.mb0 {
  margin-bottom: 0px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.indent1 {
  padding-left: 1em;
  text-indent: -1em;
}

/*------------------------------
| ヘッダー
------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  background: rgba(255, 255, 255, .8);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

.site-logo {
  width: 70%;
  max-width: 372px;
}

@media print,
(min-width: 768px) {
  .header-inner {
    padding: 15px 40px;
  }

}

/*   グロナビpcスタイル   */
@media print,
(min-width: 1200px) {
  .gl-nav ul.menu {
    display: flex;
    align-items: center;
  }

  .gl-nav ul.menu li a {
    display: block;
    padding: 0 20px;
    font-weight: bold;
  }

  .gl-nav ul.menu li:last-child a {
    padding: 6px 20px;
    margin-left: 20px;
    background: #1B7CCC;
    border-radius: 100vh;
    color: #fff;
  }
}

/*   グロナビspスタイル   */
@media screen and (max-width: 1199px) {
  .sp-nav-wrap {}
}

/*   spメニュー   */
.sp-nav-button {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.sp-nav-button span {
  display: block;
  position: absolute;
  top: 8px;
  left: 50%;
  width: 30px;
  height: 2px;
  background: #333;
  transform: translateX(-50%);
  transition: all .2s linear;
}

.sp-nav-button span::before,
.sp-nav-button span::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  width: 30px;
  height: 2px;
  background: #333;
  transform: translateX(-50%);
  transition: all .2s linear;
}

.sp-nav-button span::before {
  top: 12px;
}

.sp-nav-button span::after {
  top: 24px;
}

.sp-nav-button p {
  margin: 4px 0 0 0;
  line-height: 1;
  font-size: 1.2rem;
  font-weight: bold;
}

/* ナビオープン時 */
@media screen and (max-width: 991px) {
  .sp-nav-button.open span {
    transform: translateX(-50%) rotate(45deg);
    transform-origin: top left;
  }
  
  .sp-nav-button.open span::before {
    transform: translateX(-50%) rotate(90deg);
    top: 0;
  }
  
  .sp-nav-button.open span::after {
    display: none;
  }
  
  .sp-nav-wrap.open .gl-nav a{
    color: #fff;
  }
}

@media screen and (max-width: 991px) {
  .sp-nav-wrap {
    position: fixed;
    top: 69px;
    right: 0;
    width: 100%;
    height: calc(100vh - 60px);
    padding: 30px 20px;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: all .3s linear;
    overflow-y: auto;
    background: rgba(26, 26, 26, .8);
  }

  .sp-nav-wrap.open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }
}

/*------------------------------
| フッター
------------------------------*/
footer {
  background: #F6FAFC;
}

.footer-inner {
  padding: 40px 15px;
  margin: 0 auto;
  max-width: 1110px;
}

.adress-box {
  font-size: 1.4rem;
}

.adress-box p{
  margin-top: 10px;
}

.footer-nav ul li a,
.related-link li a {
  display: block;
}

.footer-nav>div>a {
  display: block;
  max-width: 160px;
  padding: 6px 30px;
  color: #fff;
  font-weight: bold;
  background: #1B7CCC;
  border-radius: 100vh;
}

.related-link-box {
  margin-top: 20px;
}

.related-link-box p {
  margin-bottom: 10px;
  font-weight: bold;
  color: #375F80;
}

.related-link li {
  position: relative;
  padding-left: 12px;
}

.related-link li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 10px;
  left: 0;
  background: #1B7CCC;
  border-radius: 50%;
}

.related-link li:nth-child(n+2) {
  margin-top: 6px;
}

.copy-box {
  padding: 20px 10px;
  text-align: center;
  color: #fff;
  line-height: 1.2;
  background: #375F80;
}

@media screen and (max-width: 1199px) {
  .link-box {
    margin-top: 20px;
  }

  .footer-nav ul li:nth-child(n+2) {
    margin-top: 6px;
  }

  .footer-nav>div {
    margin-top: 20px;
  }
}

@media screen and (min-width: 768px) {
  .footer-inner {
    display: flex;
    justify-content: space-between;
    padding: 60px 15px;
  }
}

@media print,
(min-width: 1200px) {
  .footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
  }

  .footer-nav ul li {
    display: inline-block;
    margin-right: 10px;
  }

  .link-box {
    width: 66.6%;
  }

  .related-link-box {
    display: flex;
  }

  .related-link-box p {
    margin: 0 30px 0 0;
  }
}

/*------------------------------
| 固定ページ共通スタイル
------------------------------*/
/*   レイアウト   */
.wrapper-all {
  padding-top: 70px;
}

@media print,(min-width: 768px) {
  .wrapper-all {
    padding-top: 90px;
  }
}

main {
  padding: 60px 0 80px 0;
}

.page-content {
  position: relative;
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1110px;
}

.common-link {
  display: inline-block;
  position: relative;
  padding-left: 24px;
  font-weight: bold;
}

.common-link::before {
  content: url(../img/button-arrow.svg);
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-40%);
}


/*   検索BOX   */
.serach-box {
  padding: 20px 15px;
  color: #fff;
  background: #1B7CCC;
  border: 3px solid #fff;
  border-radius: 20px;
  box-shadow: 0px 4px 10px #00000029;
}

.home-search-section .serach-box h2,
.serach-box h2 {
  margin: 0 0 30px 0;
  text-align: center;
  font-size: 2rem;
}

.home-search-section .serach-box h3,
.serach-box h3 {
  position: relative;
  margin: 0 0 16px 0;
  padding: 0 0 0 8px;
  font-weight: bold;
  font-size: 1.8rem;
}

.home-search-section .serach-box h3 span,
.serach-box h3 span {
  padding-left: 4px;
  font-size: 1.4rem;
}

.home-search-section .serach-box h3::before,
.serach-box h3::before {
  content: "";
  display: block;
  width: 3px;
  height: 0.9em;
  position: absolute;
  top: 2px;
  left: 0;
  background: #fff;
}

@media print,
(min-width: 768px) {
  .serach-box {
    padding: 30px 40px;
    border: 4px solid #fff;
  }

  .home-search-section .serach-box h2,
  .serach-box h2 {
    font-size: 2.4rem;
  }
}

.search-keyword input {
  width: 100%;
  padding: 4px 10px;
  font-size: 1.4rem;
  border: none;
  border-radius: 4px;
}

.search-keyword p {
  margin: 10px 0 0 0;
}

.search-category label{
  margin-right: 16px;
}

.search-category input[type=checkbox]{
  margin-right: 4px;
}

.search-button-box {
  margin-top: 30px;
}

.search-button-box>div {
  position: relative;
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
}

.button-submit input {
  display: block;
  width: 100%;
  padding: 10px;
  color: #fff;
  font-weight: bold;
  background: #F6B247;
  border: none;
  border-radius: 100vh;
}

.search-button-box>div::before {
  content: url(../img/icon-search.svg);
  display: block;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-40%);
}

@media screen and (max-width: 767px) {
  .search-category {
    margin-top: 40px;
  }
}

@media print,
(min-width: 768px) {
  .search-inner {
    display: flex;
    justify-content: space-between;
  }

  .search-keyword {
    width: 38%;
  }

  .search-category {
    width: 58%;
  }
}

/*   分類から探す   */
.cat-section {
  background: #EAF5FB;
  ;
}

.cat-section .page-content {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}

@media print,
(min-width: 768px) {
  .cat-section .page-content {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}


/*------------------------------
| TOPページ
------------------------------*/
/*   レイアウト   */
main.home {
  padding-top: 0;
}

main .home-section {
  margin-top: 80px;
}

/*   見出し   */
.home h2 {
  margin: 0 0 40px 0;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
}

@media print,
(min-width: 768px) {
  .home h2 {
    font-size: 2.8rem;
  }
}

/*   資料検索   */
.home-search-section {
  position: relative;
  padding: 40px 0;
}

.home-search-section::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 70px);
  position: absolute;
  top: 0;
  left: 0;
  background: #EAF5FB;
}

.home-search-section .page-content {
  position: relative;
}

@media print,
(min-width: 768px) {
  main .home-section {
    margin-top: 120px;
  }

  .home-search-section {
    margin-top: 60px;
  }
}

.search-intro {
  margin: 0 0 40px 0;
  font-weight: bold;
  color: #375F80;
  line-height: 1.8;
}

.home-search-section .serach-box {
  margin: 40px 0;
  background: linear-gradient(#68E0CF, #209CFF);
}

.home-search-section .search-category {
  margin-top: 40px;
}

@media print,
(min-width: 768px) {
  .home-search-section .serach-box {
    position: absolute;
    top: -70px;
    right: 15px;
    width: 56%;
    margin: 0;
  }

  .search-intro,
  .kv-box {
    width: 40%;
  }

  .home-search-section .search-inner {
    display: block;
  }

  .home-search-section .search-keyword,
  .home-search-section .search-category {
    width: 100%;
  }

}

@media print,
(min-width: 768px) {
  .search-inner {
    display: flex;
    justify-content: space-between;
  }

  .search-keyword {
    width: 38%;
  }

  .search-category {
    width: 58%;
  }
}


@media screen and (min-width: 1200px) {
  .home-search-section .serach-box {
    right: 0;
  }

  .home-search-section .search-keyword>div {
    display: flex;
  }

  .home-search-section .search-keyword>div>div {
    margin-left: 20px;
    flex-grow: 1;
  }
}

/*   新着資料   */
.new-document-section h2 {
  padding-bottom: 8px;
  text-align: left;
  border-bottom: 2px solid #6EBEFF;
}

.new-document-section .page-content>div:first-of-type {
  position: relative;
}

.new-document-section .page-content>div:first-of-type {
  position: relative;
}

.new-document-section .common-link {
  position: absolute;
  top: 4px;
  right: 0;
}

/*   分類から探す   */
.home-cat-section .cat-search {
  position: absolute;
  top: -60px;
  right: 0;
}

@media screen and (max-width: 767px) {
  .home .home-cat-section h2 {
    text-align: left;
  }

  .home-cat-section .cat-search {
    width: 40%;
    right: 15px;
  }
}

.cat-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cat-list::before,
.cat-list::after{
  content: "";
  display: block;
  width: 32%;
  height: 0;
}

.cat-list::before{
  order: 1;
}

.cat-list>li {
  background: #fff;
  border-radius: 10px;
}

.cat-list>li>a {
  position: relative;
  display: block;
  width: 100%;
  padding: 15px 15px 6px 43px;
  border-bottom: 1px solid #6EBEFF;
  font-weight: bold;
  line-height: 1.2;
}

.cat-list>li>a::before {
  content: url(../img/icon-book.svg);
  display: block;
  position: absolute;
  top: 16px;
  left: 15px;
}

.cat-list>li .children {
  padding: 15px;
}

.cat-list>li .children li {
  position: relative;
  padding: 3px 0 3px 12px;
}

.cat-list>li .children li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  left: 0;
  background: #1B7CCC;
  border-radius: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .cat-list>li {
    width: 100%;
  }

  .cat-list>li:nth-child(n+2){
    margin-top: 30px;
  }
}

@media print,
(min-width: 768px) {
  .cat-list>li {
    width: 32%;
  }

  .cat-list>li:nth-child(n+4){
    margin-top: 40px;
  }

  .cat-list>li>a {
    padding: 15px 20px 6px 48px;
    font-size: 2rem;
  }

  .cat-list>li>a::before {
    left: 20px;
  }

  .cat-list>li .children {
    padding: 15px 20px;
  }
}

/*   お知らせ   */
.home-news-section .news-content {
  max-width: 750px;
}

.home-news-section .news-list {
  margin-top: 10px;
}

.news-content>div {
  text-align: right;
}

.news-list {
  border-top: 1px solid #ccc;
}

.news-list li a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}

.news-date {
  display: inline-block;
  padding-right: 10px;
  color: #707070;
}

.news-title {
  display: block;
  text-decoration: underline;
}

.new {
  padding: 0 8px;
  border-radius: 4px;
  color: #fff;
  font-size: 1.2rem;
  background: #F96CE8;
}

@media screen and (max-width: 767px) {
  .news-list li .news-title {
    margin-top: 8px;
  }
}

@media print,
(min-width: 768px) {
  .news-list li a {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
  }

  .news-list li a>div {
    width: 20%;
  }

  .news-list li .news-title {
    width: 76%;
  }
}

.search-results{
  margin-bottom: 60px;
  padding: 15px;
  background: #EAF5FB;
}

.search-results p:first-of-type{
  margin-bottom: 20px;
}

.search-results p:nth-of-type(n+2){
  margin: 10px 0;
  font-weight: bold;
  color: #1B7CCC;
}

.search-results p:last-of-type{
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .search-results p:nth-of-type(n+2) span{
    display: block;
  }
}

@media print,(min-width: 768px) {
  .search-results{
    margin-bottom: 80px;
    padding: 20px 30px;
  }

  .search-results p:nth-of-type(n+2) {
    position: relative;
    padding-left: 120px;
  }

  .search-results p:nth-of-type(n+2) span{
    position: absolute;
    top: 0;
    left: 0;
  }
}

/*   ocwリスト   */
.ocw-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ocw-list::before,
.ocw-list::after{
  content: "";
  display: block;
  width: 48%;
  height: 0;
}

.ocw-list::before{
  order: 1;
}

.ocw-list li {
  width: 100%;
}

.ocw-thumb {
  position: relative;
}

.ocw-thumb>div {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  border-radius: 10px;
  border: 1px solid #ccc;
  overflow: hidden;
  box-shadow: 0px 4px 10px #00000029;
}

.ocw-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ocw-thumb .new {
  position: absolute;
  top: -4px;
  right: 4px;
}

.ocw-category {
  margin-top: 20px;
}

.ocw-category span a {
  display: inline-block;
  padding: 2px 10px;
  margin-right: 10px;
  font-weight: bold;
  font-size: 1.4rem;
  color: #fff;
  background: #1B7CCC;
  border-radius: 4px;
}

.ocw-title {
  margin-top: 8px;
}

.ocw-title a {
  display: block;
  font-weight: bold;
  color: #1B7CCC;
  font-size: 1.8rem;
}

.ocw-title a:hover{
  opacity: 1;
  text-decoration: underline;
}

.ocw-teacher {
  margin-top: 14px;
}

.ocw-tag {
  margin-top: 8px;
}

.ocw-tag img{
  padding-right: 4px;
}

.ocw-tag a{
  display: inline-block;
  padding: 0 2px;
  text-decoration: underline;
  color: #1B7CCC;
}

.ocw-date {
  margin-top: 8px;
  color: #707070;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .ocw-list li:nth-child(n+2) {
    margin-top: 30px;
  }
}

@media print,
(min-width: 768px) {
  .ocw-list li {
    width: 48%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .ocw-list li:nth-child(n+3) {
    margin-top: 40px;
  }
}

@media screen and (min-width: 1200px) {
  .ocw-list li,
  .ocw-list::before,
  .ocw-list::after {
    width: 32%;
  }

  .ocw-list li:nth-child(n+4) {
    margin-top: 40px;
  }

}

/*------------------------------
| 下層ページ
------------------------------*/
.page-main .page-section {
  margin-top: 60px;
}

.page-main .page-search-section {
  margin-top: 80px;
}

@media print,
(min-width: 768px) {
  .page-main .page-section {
    margin-top: 80px;
  }

  .page-main .page-search-section {
    margin-top: 120px;
  }
}

/*   見出し   */
.page-title {
  position: relative;
  padding: 15px;
  margin-bottom: 60px;
  font-size: 2.8rem;
  font-weight: bold;
  color: #fff;
  border-top-right-radius: 16px;
  border-bottom-left-radius: 16px;
  background: linear-gradient(90deg, #1B7CCC, #6EBEFF);
}

.page-title::before {
  content: "";
  display: block;
  width: 80px;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(../img/bg_page-title.svg) no-repeat top left/cover;
}

.page-main h2.common-h2 {
  padding-bottom: 8px;
  margin-bottom: 40px;
  font-weight: bold;
  font-size: 2.4rem;
  border-bottom: 2px solid #6EBEFF;
}

.cat-section h2 {
  margin-bottom: 40px;
  font-weight: bold;
  font-size: 2.4rem;
  text-align: center;
}

@media print,
(min-width: 768px) {
  .cat-section h2 {
    font-size: 2.8rem;
  }

  .page-title {
    padding: 30px;
    margin-bottom: 80px;
    font-size: 4rem;
  }

  .page-title::before {
    width: 140px;
  }

  .page-main h2.common-h2 {
    font-size: 2.8rem;
  }
}

/*------------------------------
| お知らせ
------------------------------*/
.info-date{
  margin: 40px 0;
  text-align: right;
}

.info-date .new{
  margin-right: 10px;
}

.info-inner{
  margin: 40px 0 60px 0;
}

.info-inner p{
  margin: 20px 0 40px 0;
}

.info-inner img{
  display: block;
  margin: 40px auto;
  width: 100%;
  max-width: 648px;
}

.info-button-box{
  margin-bottom: 80px;
  text-align: center;
}

.info-button-box a{
  display: block;
  margin: 0 auto;
  padding: 10px;
  width: 100%;
  max-width: 240px;
  text-align: center;
  color: #1B7CCC;
  border: 1px solid #1B7CCC;
  border-radius: 100vh;
}


@media print,(min-width: 768px) {
  .info-inner{
    margin: 40px 0 80px 0;
  }

  .info-button-box{
    margin-bottom: 120px;
  }

  .info-inner p,
  .info-inner img{
    margin-bottom: 60px;
  }

}

.info-content h3{
  margin: 30px 0;
  padding: 0 0 6px 12px;
  font-weight: bold;
  font-size: 2.2rem;
  border-bottom: 2px solid #ccc;
  border-left: 4px solid #1B7CCC;
}

.info-content h4{
  position: relative;
  margin: 24px 0;
  padding: 0 0 0 12px;
  font-weight: bold;
  font-size: 2rem;
}

.info-content h4::before{
  content: "";
  display: block;
  width: 4px;
  height: 24px;
  position: absolute;
  top: 2px;
  left: 0;
  background: #1B7CCC;
}

.info-content h5{
  position: relative;
  margin: 20px 0;
  padding: 0 0 4px 0;
  font-weight: bold;
  font-size: 1.8rem;
  border-bottom: 2px solid #ccc;
}

.info-content h5::before{
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
  background: #1B7CCC;
}

.info-content h6{
  position: relative;
  margin: 20px 0;
  padding: 0 0 0 14px;
  font-weight: bold;
  font-size: 1.6rem;
}

.info-content h6::before{
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 5px;
  left: 0;
  background: #1B7CCC;
}

/*------------------------------
| 資料詳細ページ
------------------------------*/
.single-inner>div.single-box{
  margin: 60px 0;
}

.single-inner>div.single-box:first-child{
  margin-top: 40px;
}

/*   見出し   */
.single-inner h3{
  margin: 30px 0;
  padding: 0 0 6px 12px;
  font-weight: bold;
  font-size: 2.2rem;
  border-bottom: 2px solid #ccc;
  border-left: 4px solid #1B7CCC;
}

@media print,(min-width: 768px) {

}

/*   資料概要   */
.overview-box>div:nth-child(n+2){
  margin-top: 20px;
}

/*   詳細情報   */
.ocw-info-list>div{
  margin: 10px 0;
}

.ocw-info-list>div>span{
  display: inline-block;
  padding: 4px 20px;
  margin-right: 10px;
  background: #6EBEFF;
  font-weight: bold;
  border-radius: 100vh;
}

.single-cat-list{
  display: inline-block;
}

.single-cat-list li{
  position: relative;
  display: inline-block;
  padding-right: 10px;
}

a.ocw-text-link,
.ocw-text-link{
  color: #1B7CCC;
  text-decoration: underline;
}

.single-cat-list li::before{
  content: ",";
  display: block;
  position: absolute;
  right: 4px;
}

.single-cat-list li:last-child::before{
  content: none;
}

@media print,(min-width: 768px) {
  .ocw-info-list>div{
    display: inline-block;
    margin-right: 60px;
  }
}

/*   動画   */
.movie-list .movie-inner:nth-child(n+2){
  margin-top: 40px;
}

.movie-thumb>div{
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  border: 1px solid #ccc;
}

.movie-thumb>div::before{
  content: url(../img/icon-youtube.svg);
  display: block;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.movie-thumb>div a{
  display: block;
}

.movie-thumb>div img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie-text>div>p:first-of-type{
  font-weight: bold;
}

.movie-text>div:nth-child(n+2){
  margin-top: 20px;
}

.movie-text p a{
  overflow-wrap: break-word;
  /*word-break: break-all;*/
}

@media screen and (max-width: 767px) {
  .movie-text{
    margin-top: 10px;
  }

  .movie-text p{
    margin: 4px 0;
  }
}

@media print,(min-width: 768px) {
  .movie-inner{
    display: flex;
    justify-content: space-between;
  }

  .movie-thumb{
    width: 32%;
  }

  .movie-text{
    width: 64%;
  }
}

@media screen and (min-width: 1200px) {
  .movie-text>div{
    display: flex;
    justify-content: space-between;
  }

  .movie-text>div p:first-of-type{
    width: 20%;
  }

  .movie-text>div p:last-of-type{
    width: 76%;
  }
}

/*   ドキュメント   */
.document-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.document-list li{
  display: flex;
}

.document-icon{
  margin-right: 16px;
}

@media screen and (max-width: 767px) {
  .document-list li{
    width: 100%;
  }

  .document-list li:nth-child(n+2){
    margin-top: 20px;
  }
}

@media print,(min-width: 768px) {
  .document-list li{
    width: 48%;
  }

  .document-list li:nth-child(n+3){
    margin-top: 20px;
  }
}

/*   関連リンク   */
.single-link-list li:nth-child(n+2){
  margin-top: 20px;
}

.single-link-list li p{
  margin: 4px 0;
}

.single-link-list li p:first-of-type{
  font-weight: bold;
}

/*------------------------------
| 404ページ
------------------------------*/
.no-page{
  font-size: 1.8rem;
  text-align: center;
}

@media print,(min-width: 768px) {
  .no-page{
    font-size: 2rem;
  }
}