@charset "UTF-8";
[class^=loadFadeIn] {
  display: none;
}

.kv {
  height: 150vh;
  min-height: 1050px;
}
@media screen and (max-width: 500px) {
  .kv {
    height: 130vh;
    min-height: unset;
    min-height: 700px;
  }
}
.kv {
  position: relative;
}
.kv_container {
  position: sticky;
  top: 0;
  z-index: 0;
  text-align: center;
  height: 100vh;
}
@media screen and (max-width: 500px) {
  .kv_container {
    height: 100vh;
  }
}
.kv_container .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.kv .kv_wrap {
  position: absolute;
  top: calc(50vh - 26px);
}
@media screen and (max-width: 500px) {
  .kv .kv_wrap {
    top: calc(50vh - 26px);
  }
}
.kv .kv_wrap {
  transform: translateX(-50%);
  left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
}
.kv .kv_wrap h2 {
  font-size: 70px;
  color: #444;
  margin-bottom: 50px;
  font-weight: 600;
}
@media screen and (max-width: 900px) {
  .kv .kv_wrap h2 {
    font-size: 32px;
  }
}
.kv .kv_wrap h2 img {
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 85vw;
}
.kv .kv_wrap p {
  text-align: center;
  font-size: 22px;
  line-height: 2.5;
  padding: 0px 0 70px;
  color: #444;
  font-weight: 600;
}
.kv .kv_wrap p img {
  margin-top: 20px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 85vw;
}
@media screen and (max-width: 900px) {
  .kv .kv_wrap p {
    font-size: 13px;
  }
  .kv .kv_wrap p img {
    margin-top: 0px;
    height: auto;
  }
}
.kv .kv_wrap p [data-ruby] {
  position: relative;
}
.kv .kv_wrap p [data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -2em;
}
@media screen and (max-width: 900px) {
  .kv .kv_wrap p [data-ruby]::before {
    top: -1.75em;
  }
}
.kv .kv_wrap p [data-ruby]::before {
  left: 0;
  right: 0;
  margin: auto;
  font-size: 0.5em;
}

.kv_wrap_btn {
  position: fixed;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
  bottom: 30px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  right: 25px;
  z-index: 10;
}
@media screen and (max-width: 900px) {
  .kv_wrap_btn {
    left: 0;
    right: 0;
    margin: auto;
    padding: 0 20px;
    gap: 10px;
    bottom: 30px;
  }
}
.kv_wrap_btn > a {
  width: 250px;
}
@media screen and (max-width: 900px) {
  .kv_wrap_btn > a {
    width: 50%;
  }
}

.kv_wrap_btn {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  will-change: opacity;
}

.kv_wrap_btn.active {
  opacity: 1;
  visibility: visible;
  will-change: opacity;
}

.news_container {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 70px;
  margin: 120px 0;
  padding: 0 20px;
}
@media screen and (max-width: 900px) {
  .news_container {
    flex-direction: column;
    margin: 65px 0;
    gap: 15px;
  }
}
.news_container_left p {
  font-size: 50px;
  color: #0099b3;
  margin-top: 15px;
  line-height: 60px;
  font-family: linotype-sabon, hiragino-kaku-gothic-pron, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
@media screen and (max-width: 900px) {
  .news_container_left p {
    font-size: 37px;
    margin-top: 0px;
  }
}
.news_container_right {
  max-width: 800px;
  width: 55%;
}
@media screen and (max-width: 900px) {
  .news_container_right {
    max-width: 100%;
    width: 100%;
  }
}
.news_container_right .news_box {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 300px;
  overflow-y: scroll;
  padding-right: 1em;
}
.news_container_right .news_box::-webkit-scrollbar {
  width: 8px; /* 縦スクロールバーの幅 */
  height: 8px; /* 横スクロールバーの高さ */
}
.news_container_right .news_box {
  /* スクロールバーのトラック（背景） */
}
.news_container_right .news_box::-webkit-scrollbar-track {
  background: #D5D5D5;
}
.news_container_right .news_box {
  /* スクロールバーのつまみ（スクロールする部分） */
}
.news_container_right .news_box::-webkit-scrollbar-thumb {
  background-color: #0099B3;
  border-radius: 0px;
  border: 8px solid #0099B3; /* 外枠に余白をつけて細く見せる */
}
.news_container_right .news_box {
  /* ホバー時 */
}
.news_container_right .news_box::-webkit-scrollbar-thumb:hover {
  background-color: #007C95;
}
@media screen and (max-width: 900px) {
  .news_container_right .news_box {
    max-height: 245px;
  }
}
.news_container_right .news_box .news-item {
  color: initial;
}
.news_container_right .news_box .news-item.disabled:hover {
  opacity: 1;
}
.news_container_right .news_box .news-item .news_box_item {
  display: flex;
  gap: 70px;
  flex-wrap: nowrap;
  font-size: 16px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(102, 102, 102, 0.4);
  color: #555555;
  padding-top: 40px;
}
@media screen and (max-width: 900px) {
  .news_container_right .news_box .news-item .news_box_item {
    flex-direction: column;
    gap: 5px;
    padding-top: 15px;
    padding-bottom: 10px;
  }
}
.news_container_right .news_box .news-item .news_box_item .news_date {
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .news_container_right .news_box .news-item .news_box_item .news_date {
    font-size: 15px;
  }
}
.news_container_right .news_box .news-item .news_box_item .news_title {
  color: #555555;
}
@media screen and (max-width: 900px) {
  .news_container_right .news_box .news-item .news_box_item .news_title {
    font-size: 14px;
  }
}
.news_container_right .news_box .news-item .news_box_item .news_new {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 78px;
  height: 23px;
  border-radius: 23px;
  font-weight: bold;
  font-size: 12px;
  background: linear-gradient(90deg, #D5B239, #BF9222, #D5B239);
}
.news_container_right .news_box .news-item:first-child .news_box_item {
  padding-top: 0;
}
.news .news_anker {
  width: 100%;
  height: 3em;
  background-color: #0099b3;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  position: relative;
  border-radius: 7px;
  gap: 0.5em;
  margin-top: 50px;
}
.news .news_anker img {
  display: block;
  width: 17px;
}
.news .news_anker-pc {
  display: flex;
}
@media screen and (max-width: 900px) {
  .news .news_anker-pc {
    display: none;
  }
}
.news .news_anker-sp {
  display: none;
}
@media screen and (max-width: 900px) {
  .news .news_anker-sp {
    display: flex;
    margin-top: 20px;
  }
}

.top-message {
  margin-bottom: 150px;
}
@media screen and (max-width: 900px) {
  .top-message {
    margin-bottom: 70px;
  }
}
.top-message_container {
  max-width: 1600px;
  margin: auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 90px;
}
@media screen and (max-width: 1200px) {
  .top-message_container {
    gap: 30px;
  }
}
@media screen and (max-width: 900px) {
  .top-message_container {
    flex-direction: column;
    gap: 40px;
  }
}
.top-message_container_left {
  position: relative;
}
.top-message_container_left > img {
  width: calc(27vw - 45px);
  max-width: 480px;
  border-radius: 30px;
}
@media screen and (max-width: 900px) {
  .top-message_container_left > img {
    border-radius: 0 20px 20px 0px;
    max-width: 80%;
    width: 80%;
    position: static;
  }
}
.top-message_container_left > picture img {
  width: calc(27vw - 45px);
  max-width: 480px;
  border-radius: 30px;
}
@media screen and (max-width: 900px) {
  .top-message_container_left > picture img {
    border-radius: 0 20px 20px 0px;
    max-width: 80%;
    width: 80%;
    position: static;
  }
}
.top-message_container_right {
  width: calc(60vw - 105px);
  padding-right: 60px;
}
@media screen and (max-width: 1200px) {
  .top-message_container_right {
    width: calc(65vw - 90px);
  }
}
@media screen and (max-width: 900px) {
  .top-message_container_right {
    max-width: 100%;
    width: 100%;
    padding: 0 20px;
  }
}
.top-message_container_right > p {
  margin: 5px 0 20px;
  font-size: 50px;
  color: #0099b3;
  font-family: linotype-sabon, hiragino-kaku-gothic-pron, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
@media screen and (max-width: 900px) {
  .top-message_container_right > p {
    margin: 0px 0 10px;
    font-size: 37px;
  }
}
.top-message_container_right span.break {
  display: block;
  margin-bottom: 15px;
}
.top-message_container_right .message-main {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #555555;
}
@media screen and (max-width: 900px) {
  .top-message_container_right .message-main {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.9;
  }
}
.top-message_container_right .messege-bottom {
  display: flex;
  flex-wrap: nowrap;
  gap: 35px;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 900px) {
  .top-message_container_right .messege-bottom {
    gap: 10px;
  }
}
.top-message_container_right .messege-bottom p {
  font-size: 18px;
  color: #555555;
}
@media screen and (max-width: 900px) {
  .top-message_container_right .messege-bottom p {
    font-size: 12px;
  }
}
.top-message_container_right .messege-bottom > img, .top-message_container_right .messege-bottom > picture {
  width: 160px;
}
@media screen and (max-width: 900px) {
  .top-message_container_right .messege-bottom > img, .top-message_container_right .messege-bottom > picture {
    width: 110px;
  }
}

.special-movie {
  margin-top: 100px;
}
.special-movie_container {
  position: relative;
  z-index: 0;
}
.special-movie_container .bg {
  position: absolute;
  width: calc(50vw + 450px);
  max-width: 80%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top left;
     object-position: top left;
  border-radius: 20px 0 0 20px;
  right: 0;
  z-index: -1;
}
@media screen and (min-width: 1601px) {
  .special-movie_container .bg {
    border-radius: 0 0 0 30px;
    width: calc(50vw + 440px);
  }
}
@media screen and (max-width: 900px) {
  .special-movie_container .bg {
    width: 100%;
    max-width: calc(100% - 20px);
    -o-object-position: left 50% top 0;
       object-position: left 50% top 0;
    border-radius: 30px 0 0 30px;
  }
}
.special-movie_container .section_title2 {
  padding-top: 90px;
}
@media screen and (max-width: 900px) {
  .special-movie_container .section_title2 {
    padding-top: 60px;
  }
}
.special-movie_container .section_title2 h3 {
  color: white;
}
.special-movie_container > p {
  text-align: center;
  font-size: 50px;
  color: white;
  font-family: linotype-sabon, hiragino-kaku-gothic-pron, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
@media screen and (max-width: 900px) {
  .special-movie_container > p {
    font-size: 37px;
  }
}
.special-movie_container .special-movie_box {
  max-width: 1700px;
  margin: auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  padding: 40px 0 85px;
  gap: 50px;
}
@media screen and (max-width: 900px) {
  .special-movie_container .special-movie_box {
    flex-direction: column;
    padding: 40px 20px;
  }
}
.special-movie_container .special-movie_box .special-movie_item {
  width: calc(33% - 25px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .special-movie_container .special-movie_box .special-movie_item {
    width: 100%;
    padding: 0 30px;
  }
}
.special-movie_container .special-movie_box .special-movie_item .youtube_box {
  position: relative;
  cursor: pointer;
  transition: all 0.5s;
}
.special-movie_container .special-movie_box .special-movie_item .youtube_box .arrow {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  width: 20%;
  left: 50%;
}
@media screen and (max-width: 900px) {
  .special-movie_container .special-movie_box .special-movie_item .youtube_box .arrow {
    width: 70px;
  }
}
.special-movie_container .special-movie_box .special-movie_item .youtube_box:hover {
  opacity: 0.8;
}
.special-movie_container .special-movie_box .special-movie_item span {
  display: block;
  margin: 30px auto 0;
  font-size: 19px;
  text-align: center;
  color: #555555;
}
@media screen and (max-width: 900px) {
  .special-movie_container .special-movie_box .special-movie_item span {
    margin: 20px auto 0;
    font-size: 14px;
  }
}
.special-movie_container .special-movie_box .special-movie_item p {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #555555;
}
@media screen and (max-width: 900px) {
  .special-movie_container .special-movie_box .special-movie_item p {
    font-size: 16px;
  }
}
.special-movie .video_thumbnail {
  border-radius: 28px;
}
@media screen and (max-width: 900px) {
  .special-movie .video_thumbnail {
    border-radius: 10px;
  }
}

.our-topics {
  margin: 150px 0;
}
@media screen and (max-width: 900px) {
  .our-topics {
    margin-top: 70px;
    margin-bottom: 80px;
  }
}
.our-topics_container {
  overflow: hidden;
}
.our-topics_container .section_title2 h3 {
  color: #555555;
}
.our-topics_container > p {
  color: #0099b3;
  font-size: 50px;
  margin: 0px 0 30px;
  text-align: center;
  font-family: linotype-sabon, hiragino-kaku-gothic-pron, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
@media screen and (max-width: 900px) {
  .our-topics_container > p {
    font-size: 37px;
    margin: 0px 0 30px;
  }
}
.our-topics_container .our-topics_box {
  position: relative;
  max-width: 1200px;
  margin: auto;
  min-height: min(360px, 30vw);
  transition: all 0.3s;
}
.our-topics_container .our-topics_box .our-topics_item {
  display: flex;
  flex-wrap: nowrap;
  gap: 50px;
  justify-content: center;
  padding: 0 20px;
  overflow: hidden;
  opacity: 0;
  transition: all 0.7s;
  position: absolute;
  visibility: hidden;
}
@media screen and (max-width: 900px) {
  .our-topics_container .our-topics_box .our-topics_item {
    gap: 20px;
  }
}
.our-topics_container .our-topics_box .our-topics_item.active {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 900px) {
  .our-topics_container .our-topics_box .our-topics_item {
    flex-direction: column;
    width: 100%;
  }
}
.our-topics_container .our-topics_box .our-topics_item_left {
  max-width: 35%;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  justify-content: center;
  z-index: 0;
  padding: 0 15px 15px 0;
}
@media screen and (max-width: 900px) {
  .our-topics_container .our-topics_box .our-topics_item_left {
    max-width: 100%;
    width: 100%;
  }
}
.our-topics_container .our-topics_box .our-topics_item_left img {
  max-width: 100%;
  width: 50vw;
  border-radius: 20px;
  height: 17vw;
  max-height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
@media screen and (max-width: 900px) {
  .our-topics_container .our-topics_box .our-topics_item_left img {
    width: 100%;
    height: 53vw;
  }
}
.our-topics_container .our-topics_box .our-topics_item_left::after {
  content: "";
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  background-color: #0099b3;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transform: translate(15px, 15px);
  border-radius: 25px;
}
@media screen and (max-width: 900px) {
  .our-topics_container .our-topics_box .our-topics_item_left::after {
    transform: translate(10px, 10px);
    border-radius: 20px;
  }
}
.our-topics_container .our-topics_box .our-topics_item_left a:hover {
  opacity: 1;
}
.our-topics_container .our-topics_box .our-topics_item_right {
  max-width: 50%;
  width: 485px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .our-topics_container .our-topics_box .our-topics_item_right {
    max-width: 100%;
    width: 100%;
  }
}
.our-topics_container .our-topics_box .our-topics_item_right span {
  font-size: 40px;
  color: #0099b3;
  margin: 20px 0;
  font-family: linotype-sabon, hiragino-kaku-gothic-pron, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
@media screen and (max-width: 900px) {
  .our-topics_container .our-topics_box .our-topics_item_right span {
    font-size: 32px;
  }
}
.our-topics_container .our-topics_box .our-topics_item_right .topic_title {
  font-size: 24px;
  font-weight: bold;
  border-bottom: 2px solid;
  -o-border-image: linear-gradient(to left, rgb(191, 146, 34) 5%, rgb(226, 197, 71) 26%, rgb(191, 146, 34) 55%, rgb(226, 197, 71) 73%, rgb(188, 147, 41) 85%, rgb(235, 203, 67) 94%);
     border-image: linear-gradient(to left, rgb(191, 146, 34) 5%, rgb(226, 197, 71) 26%, rgb(191, 146, 34) 55%, rgb(226, 197, 71) 73%, rgb(188, 147, 41) 85%, rgb(235, 203, 67) 94%);
  border-image-slice: 1;
  padding-bottom: 8px;
  margin-bottom: 10px;
  color: #555555;
}
@media screen and (max-width: 900px) {
  .our-topics_container .our-topics_box .our-topics_item_right .topic_title {
    font-size: 17px;
    padding-bottom: 10px;
  }
}
.our-topics_container .our-topics_box .our-topics_item_right .topic_text {
  font-size: 16px;
  line-height: 1.75;
  color: #555555;
  min-height: 140px;
}
@media screen and (max-width: 900px) {
  .our-topics_container .our-topics_box .our-topics_item_right .topic_text {
    font-size: 14px;
    line-height: 2;
    height: 160px;
  }
}
.our-topics_container .our-topics_box .our-topics_item_right .our-topics_nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 10px;
}
.our-topics_container .our-topics_box .our-topics_item_right .our-topics_nav span {
  font-size: 23px;
  color: #0099b3;
  border-radius: 6px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #0099b3;
  cursor: pointer;
  transition: all 0.3s;
}
@media screen and (max-width: 900px) {
  .our-topics_container .our-topics_box .our-topics_item_right .our-topics_nav span {
    width: 45px;
    height: 45px;
    border-radius: 3px;
  }
}
.our-topics_container .our-topics_box .our-topics_item_right .our-topics_nav span.on {
  background-color: #0099b3;
  color: white;
}
.our-topics_container .our-topics_box .our-topics_item_right .our-topics_nav span.active {
  background-color: #0099b3;
  color: white;
}
.our-topics_container .our-topics_box .our-topics_item_right .our-topics_nav span:hover {
  background-color: #0099b3;
  color: white;
}
.our-topics_container .our-topics_swiper {
  margin: auto;
  margin-top: 100px;
}
@media screen and (max-width: 900px) {
  .our-topics_container .our-topics_swiper {
    margin-top: 35px;
  }
}
.our-topics_container .our-topics_swiper .swiper {
  width: 100%;
  overflow: visible;
  height: unset;
}
.our-topics_container .our-topics_swiper .swiper .slide-items {
  display: flex;
  justify-content: center;
}
.our-topics_container .our-topics_swiper .swiper .slide-items a {
  display: block;
}
.our-topics_container .our-topics_swiper .swiper .slide-items a:hover {
  opacity: 0.8;
}
.our-topics_container .our-topics_swiper .swiper .slide-items a .slide-title {
  font-size: 20px;
  color: #555555;
  margin-top: 5px;
  font-weight: normal;
}
@media screen and (max-width: 900px) {
  .our-topics_container .our-topics_swiper .swiper .slide-items a .slide-title {
    font-size: 15px;
  }
}
.our-topics_container .our-topics_swiper .swiper .slide-items .slick-prev {
  width: 45px;
  height: 45px;
  left: calc(50vw - 46%);
  top: 45%;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/our-topics/arrow-left.png");
  background-size: cover;
}
@media screen and (max-width: 900px) {
  .our-topics_container .our-topics_swiper .swiper .slide-items .slick-prev {
    width: 35px;
    height: 35px;
    top: unset;
    bottom: -75px;
    left: 20px;
  }
}
.our-topics_container .our-topics_swiper .swiper .slide-items .slick-next {
  width: 45px;
  height: 45px;
  right: calc(50vw - 46%);
  top: 45%;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/our-topics/arrow-right.png");
  background-size: cover;
}
@media screen and (max-width: 900px) {
  .our-topics_container .our-topics_swiper .swiper .slide-items .slick-next {
    width: 35px;
    height: 35px;
    top: unset;
    bottom: -75px;
    right: 20px;
  }
}
.our-topics_container .btn {
  margin: 40px auto 0;
}
@media screen and (max-width: 900px) {
  .our-topics_container .btn {
    margin: 20px auto 0;
    padding: 10px 0px;
    font-size: 14px;
    width: 180px;
  }
  .our-topics_container .btn::after {
    background-size: cover;
    width: 7px;
    height: 14px;
  }
}

.slick-list.draggable {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  overflow: visible;
}

.others_container {
  position: relative;
  z-index: 0;
  padding-bottom: 120px;
}
@media screen and (max-width: 900px) {
  .others_container {
    padding-bottom: 40px;
  }
}
.others_container .bg {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  -o-object-position: bottom;
     object-position: bottom;
}
.others_container .section_title2 {
  padding-top: 60px;
}
@media screen and (max-width: 900px) {
  .others_container .section_title2 {
    padding-top: 40px;
  }
}
.others_container > p {
  margin: 0px 0 35px;
  text-align: center;
  color: white;
  font-size: 50px;
  font-family: linotype-sabon, hiragino-kaku-gothic-pron, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
@media screen and (max-width: 900px) {
  .others_container > p {
    font-size: 37px;
    margin: 0px 0 30px;
  }
}
.others_container .others_box {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  margin: 0 50px 0px;
  gap: 40px;
}
@media screen and (max-width: 900px) {
  .others_container .others_box {
    flex-direction: column;
    gap: 30px;
    padding: 0 40px;
    margin: 0 0 0px;
    align-items: center;
  }
}
.others_container .others_box a {
  max-width: 260px;
}
.others_container .others_box img {
  width: 100%;
  border-radius: 5px;
}
.others_container .others_content {
  margin-top: 50px;
}
@media screen and (max-width: 900px) {
  .others_container .others_content {
    margin-top: 35px;
  }
}
.others_container .others_content {
  color: white;
  text-align: center;
}
.others_container .others_content .others_content_title {
  font-size: 45px;
  font-family: linotype-sabon, hiragino-kaku-gothic-pron, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
@media screen and (max-width: 900px) {
  .others_container .others_content .others_content_title {
    font-size: 35px;
  }
}
.others_container .others_content .others_content_sub {
  font-size: 24px;
  letter-spacing: -2px;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .others_container .others_content .others_content_sub {
    margin-top: 35px;
    font-size: 16px;
  }
}
.others_container .others_content .others_content_text {
  font-size: 25px;
  margin-bottom: 30px;
}
@media screen and (max-width: 900px) {
  .others_container .others_content .others_content_text {
    font-size: 17px;
  }
}
.others_container .others_content .others_content_box {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 900px) {
  .others_container .others_content .others_content_box {
    padding: 0 20px;
  }
}
.others_container .others_content .others_content_box a {
  max-width: 385px;
  width: 33%;
  height: 90px;
  background-image: url("../img/others/pdf-bg.png");
  background-repeat: no-repeat;
  background-position: top left;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 20px;
  color: #0099b3;
  font-weight: bold;
  border-radius: 10px;
}
@media screen and (max-width: 900px) {
  .others_container .others_content .others_content_box a {
    width: calc(50% - 10px);
    border-radius: 8px;
    background-position: left 25% top 85%;
    height: 60px;
    font-size: 14px;
  }
}
.others_container .others_content .others_content_box a::after {
  content: "";
  position: absolute;
  background-image: url("../img/others/pdf-icon.png");
  background-size: contain;
  width: 30px;
  height: 35px;
  background-repeat: no-repeat;
  top: 50%;
  right: 15px;
  transform: translate(0, -50%);
}
@media screen and (max-width: 900px) {
  .others_container .others_content .others_content_box a::after {
    width: 20px;
    height: 25px;
  }
}

.movie-modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  display: none;
}
.movie-modal.modal-open {
  display: block;
}
.movie-modal.modal-open iframe {
  position: absolute;
  max-width: 100%;
  max-width: 1200px;
  width: 80vw;
  height: 41vw;
  max-height: 90vh;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 900px) {
  .movie-modal.modal-open iframe {
    width: calc(100% - 40px);
    height: 40%;
  }
}
@media screen and (max-width: 500px) {
  .movie-modal.modal-open iframe {
    height: 30%;
  }
}
.movie-modal.modal-open .close_btn {
  position: absolute;
  top: 50px;
  right: 50px;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
@media screen and (max-width: 900px) {
  .movie-modal.modal-open .close_btn {
    top: 30px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
}
.movie-modal.modal-open .close_btn span {
  display: block;
  width: 100%;
  height: 1px;
  background: white;
}
.movie-modal.modal-open .close_btn span:nth-child(1) {
  transform: rotate(45deg);
  margin-top: 25px;
}
.movie-modal.modal-open .close_btn span:nth-child(2) {
  transform: rotate(135deg);
  margin-top: 0;
}/*# sourceMappingURL=top.css.map */