@charset "UTF-8";
/*-----------------------------
リセット
---------------------------*/
* {
  padding: 0;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 52.6%;
  }
}

body {
  position: relative;
  width: 100%;
  color: #23234b;
  font-family: kozuka-mincho-pro, serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.15em;
  line-height: 1.7;
  text-align: center;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

a {
  color: #23234b;
  text-decoration: none;
  outline: none;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

ul,
ol {
  list-style-type: none;
}

th {
  font-weight: normal;
}

/*-----------------------------
フォント
---------------------------*/
.normal {
  font-weight: 400;
}

.bold {
  font-weight: bold;
}

.en_font {
  font-family: sofia-pro, sans-serif;
  font-weight: 900;
  font-style: normal;
}

.small_text {
  display: inline-block;
  font-size: 1rem;
}

.slash {
  display: inline-block;
  margin: 0 0.25em;
}

.narrow {
  letter-spacing: normal;
}

.zero {
  display: inline-block;
}

/*-----------------------------
全般
---------------------------*/
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.wrapper {
  display: grid;
  grid-template-columns: calc(100% - (170px + 1%)) calc(170px + 1%);
  grid-template-rows: auto;
}
@media screen and (max-width: 768px) {
  .wrapper {
    grid-template-columns: 100%;
  }
}

.inner {
  grid-column: 1/2;
  max-width: 1000px;
  width: 90%;
  margin: auto;
}
.brackets::before {
  content: "［";
  margin-right: 0.15em;
}
.brackets::after {
  content: "］";
  margin-left: 0.15em;
}

/*-----------------------------
エフェクト
---------------------------*/
.fadein {
  transform: translateY(30px);
  opacity: 0;
}

.fadein.scrollin {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.5s ease-out;
}
@media screen and (max-width: 768px) {
  .fadein.scrollin {
    transition: all 0.5s ease-out;
  }
}
.fadein.scrollin.delay2s {
  transition-delay: 0.2s;
}
@media screen and (max-width: 768px) {
  .fadein.scrollin.delay2s {
    transition-delay: 0;
  }
}
.fadein.scrollin.delay4s {
  transition-delay: 0.4s;
}
@media screen and (max-width: 768px) {
  .fadein.scrollin.delay4s {
    transition-delay: 0;
  }
}

/*-----------------------------
ボタン
---------------------------*/
.button {
  position: relative;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #23234b;
  border-radius: 50px;
  transition: all 0.3s;
}
.button:hover {
  background-color: #23234b;
  transition: all 0.3s;
}
.button:hover .btn_text {
  color: #fff;
  transition: all 0.3s;
}
.button:hover.arrow::after {
  right: 8%;
  border-color: #fff #fff transparent transparent;
  transition: all 0.3s;
}
.button .btn_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.button .btn_text {
  line-height: 1;
  transition: all 0.3s;
}
.button.arrow::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 10%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border: 1px solid;
  border-color: #23234b #23234b transparent transparent;
  transform: rotate(45deg);
  transition: all 0.3s;
}

/*-----------------------------
ロード画面
---------------------------*/
/*-----------------------------
ヘッダーロゴ
---------------------------*/
.header {
  position: absolute;
  width: 100%;
  height: 90px;
  z-index: 9000;
}
.header .header_logo {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  max-width: 270px;
  width: 65%;
}
@media screen and (max-width: 768px) {
  .header .header_logo {
    width: 60%;
  }
}

/*-----------------------------
メニュー
---------------------------*/
.nav .menu_btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 20px;
  right: 10px;
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 0 0 15px 10px rgba(35, 35, 75, 0.1);
  transition: all 0.3s;
  z-index: 10000;
}
@media screen and (max-width: 768px) {
  .nav .menu_btn {
    display: flex;
  }
}
.nav .menu_btn:hover {
  cursor: pointer;
}
.nav .menu_btn .menu_btn_text {
  padding-bottom: 2px;
  font-size: 2rem;
  line-height: 1;
}
.nav .menu_btn.open {
  box-shadow: none;
  display: none;
  transition: all 0.3s 0.6s;
}
.nav .close_btn {
  position: fixed;
  top: 20px;
  right: 15px;
  width: 40px;
  height: 40px;
  opacity: 0;
  z-index: 10000;
  pointer-events: none;
}
.nav .close_btn.btn_fixed {
  opacity: 1;
  transition: all 1s 0.2s;
  pointer-events: all;
}
.nav .close_btn.btn_fixed:hover {
  cursor: pointer;
}
.nav .close_btn::before, .nav .close_btn::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #23234b;
}
.nav .close_btn::before {
  transform: rotate(45deg);
}
.nav .close_btn::after {
  transform: rotate(-45deg);
}
.nav .menu_bg {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(35, 35, 75, 0.2);
  opacity: 0;
  transition: all 0.3s;
  z-index: 8500;
}
.nav .menu_bg:hover {
  cursor: pointer;
}
.nav .menu_bg.bg_fixed {
  position: fixed;
  opacity: 1;
  transition: all 0.3s;
}

/* .nav_container {
  grid-column: 2/3;
  position: fixed;
  top: 12%;
  right: 2%;
  width: 150px;
  max-height: 620px;
  height: 80%;
  padding: 20px 10px 10px;
  background-color: #fff;
  border-radius: 100px 100px 10px 10px;
  box-shadow: 0 0 15px 5px rgba(35, 35, 75, 0.1);
  text-align: center;
  z-index: 9000;
} */
@media screen and (max-width: 768px) {
  .nav_container {
    grid-column: auto;
    top: 0;
    max-height: none;
    height: 100vh;
    border-radius: 0;
    transition: all 0.5s;
      background-color:unset;
        box-shadow: unset;

  }
}
.nav_container.open_nav {
  right: 0;
  transition: all 0.5s;
}
.nav_container .nav_list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  border-radius: 100px 100px 10px 10px;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  .nav_container .nav_list {
    justify-content: center;
    max-width: 250px;
    margin: auto;
    border-radius: 0;
  }
}
.nav_container .nav_list::before {
  content: "パスワードが必要です";
  margin: 5px auto;
  padding: 5px 1.25em;
  background-color: #23234b;
  border-radius: 50px;
  color: #fff;
  font-size: 1rem;
  letter-spacing: normal;
  line-height: 1;
}
.nav_container .nav_topic {
  order: -1;
  width: 90%;
  margin: 10px auto;
}
.nav_container .nav_list_item {
  position: relative;
  margin: 20px auto;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .nav_container .nav_list_item {
    font-size: 1.5rem;
  }
}
.nav_container .nav_list_item.course {
  margin: 0 5px;
  padding: 10px 0 12px;
}
.nav_container .nav_list_item.course::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  margin: auto;
  background-color: #23234b;
}
.nav_container .nav_list_item.course .nav_icon {
  width: 45px;
}
.nav_container .nav_list_item.course .nav_text {
  margin-top: 0.5em;
}
.nav_container .nav_list_item.exam {
  margin: 25px auto 15px;
}
.nav_container .nav_list_item.contact {
  margin: 10px 5px;
  padding: 6px 2px;
  background-color: #52c57f;
  border-radius: 50px;
  color: #fff;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .nav_container .nav_list_item.contact {
    font-size: 1.6rem;
  }
}
.nav_container .nav_list_item.contact:nth-of-type(even) {
  background-color: #9ed93c;
}
.nav_container .nav_list_item .nav_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
}

body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

/*-----------------------------
index_キービジュアル
---------------------------*/
.index .keyvisual {
  display: grid;
  grid-template-columns: 39% 58%;
  grid-template-rows: 90px calc(53% - 45px) calc(43% - 45px);
  justify-content: space-between;
  gap: 2%;
  width: 100vw;
  height: 99.9999vh;
  min-height: 700px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .index .keyvisual {
    grid-template-columns: 100%;
    grid-template-rows: 80px repeat(3, 1fr);
    min-height: 500px;
  }
}
.index .keyvisual .kv_title {
  grid-column: 1/2;
  grid-row: 2/3;
  position: relative;
}
@media screen and (max-width: 768px) {
  .index .keyvisual .kv_title {
    grid-row: 3/4;
  }
}
.index .keyvisual .kv_title .kv_title_img {
  position: absolute;
  top: 45%;
  right: 0%;
  transform: translateY(-50%);
  max-width: 520px;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .index .keyvisual .kv_title .kv_title_img {
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: 10px;
    width: auto;
    height: 100%;
  }
}
.index .keyvisual .swiper-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.index .keyvisual .kv_slider01 {
  grid-column: 2/3;
  grid-row: 1/4;
  position: relative;
  border-bottom-left-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .index .keyvisual .kv_slider01 {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.index .keyvisual .kv_slider01 .swiper-slide {
  border-bottom-left-radius: 10px;
  display: block;
  position: absolute;
  /* 画像のサイズを表示エリアに合せる */
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-animation: slideAnime 15s ease-out infinite;
          animation: slideAnime 15s ease-out infinite;
}
@media screen and (max-width: 768px) {
  .index .keyvisual .kv_slider01 .swiper-slide {
    border-radius: 5px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.index .keyvisual .kv_slider01 .swiper-slide.slide01 {
  background-image: url(../img/top/fv1a.jpg);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
@media screen and (max-width: 768px) {
  .index .keyvisual .kv_slider01 .swiper-slide.slide01 {
    background-position: center 30%;
  }
}
.index .keyvisual .kv_slider01 .swiper-slide.slide02 {
  background-image: url(../img/top/fv2a.jpg);
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}
.index .keyvisual .kv_slider01 .swiper-slide.slide03 {
  background-image: url(../img/top/fv3a.jpg);
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}
@media screen and (max-width: 768px) {
  .index .keyvisual .kv_slider01 .swiper-slide.slide03 {
    background-position: center 30%;
  }
}
.index .keyvisual .kv_slider02 {
  grid-column: 1/2;
  grid-row: 3/4;
  position: relative;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .index .keyvisual .kv_slider02 {
    grid-row: 4/5;
  }
}
.index .keyvisual .kv_slider02 .swiper-slide {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  display: block;
  position: absolute;
  /* 画像のサイズを表示エリアに合せる */
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-animation: slideAnime 15s ease-out infinite;
          animation: slideAnime 15s ease-out infinite;
}
@media screen and (max-width: 768px) {
  .index .keyvisual .kv_slider02 .swiper-slide {
    border-radius: 5px;
  }
}
.index .keyvisual .kv_slider02 .swiper-slide.slide01 {
  background-image: url(../img/top/fv1b.jpg);
  background-position: center 20%;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
@media screen and (max-width: 768px) {
  .index .keyvisual .kv_slider02 .swiper-slide.slide01 {
    background-position: center 30%;
  }
}
.index .keyvisual .kv_slider02 .swiper-slide.slide02 {
  background-image: url(../img/top/fv2b.jpg);
  background-position: center 15%;
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}
@media screen and (max-width: 768px) {
  .index .keyvisual .kv_slider02 .swiper-slide.slide02 {
    background-position: center 30%;
  }
}
.index .keyvisual .kv_slider02 .swiper-slide.slide03 {
  background-image: url(../img/top/fv3b.jpg);
  background-position: center 15%;
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}
@-webkit-keyframes slideAnime {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  33% {
    opacity: 0.9;
  }
  38% {
    opacity: 0;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
@keyframes slideAnime {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  33% {
    opacity: 0.9;
  }
  38% {
    opacity: 0;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
@-webkit-keyframes slideAnimeRight {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  16% {
    opacity: 1;
  }
  33% {
    opacity: 0;
  }
  49% {
    transform: scale(1.25);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slideAnimeRight {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  16% {
    opacity: 1;
  }
  33% {
    opacity: 0;
  }
  49% {
    transform: scale(1.25);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/*-----------------------------
section_全般
---------------------------*/
.area {
  margin-top: 100px;
}
.area .area_title_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.area .area_title_box .area_title_img {
  width: 140px;
  margin-right: 10px;
}
.area .area_title_box .area_title {
  display: inline-block;
  position: relative;
  margin-top: 0.5em;
  padding-left: 0.2em;
  border-bottom: 2px dotted #000;
  font-size: 4.2rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .area .area_title_box .area_title {
    font-size: 3.1rem;
  }
}
.area .area_description {
  margin-top: 2em;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .area .area_description {
    text-align: left;
  }
}
.area .area_description .text {
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .area .area_description .text {
    margin-top: 0.5em;
  }
}

/*-----------------------------
index_キンランってこんな大学
---------------------------*/
.intro_area .movie_modal_box {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 750px;
  margin: 80px auto 0;
}
@media screen and (max-width: 768px) {
  .intro_area .movie_modal_box {
    margin-top: 50px;
  }
}
.intro_area .movie_modal_box .movie_modal_topic {
  margin-right: 0.5em;
  letter-spacing: 0.2em;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 1.2rem;
}
.intro_area .movie_modal_box .movie_modal {
  width: 100%;
  padding-top: 56.25%;
}
.intro_area .movie_modal_box .movie_modal_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.intro_area .campus_map_area {
  grid-column: 1/3;
  position: relative;
  max-width: 1200px;
  width: 96%;
  margin: 150px auto 0;
}
@media screen and (max-width: 768px) {
  .intro_area .campus_map_area {
    grid-column: 1/2;
    margin-top: 100px;
  }
}
.intro_area .campus_map_area .text_box {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
}
@media screen and (max-width: 1024px) {
  .intro_area .campus_map_area .text_box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    width: 90%;
    margin: auto;
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .intro_area .campus_map_area .text_box {
    flex-direction: column;
    width: 80%;
  }
}
.intro_area .campus_map_area .text_box .campus_map_title {
  width: 90%;
  max-width: 260px;
}
@media screen and (max-width: 1024px) {
  .intro_area .campus_map_area .text_box .campus_map_title {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .intro_area .campus_map_area .text_box .campus_map_title {
    max-width: 170px;
  }
}
.intro_area .campus_map_area .text_box .campus_map_text {
  display: inline-block;
  margin-left: 3em;
  margin-top: 1em;
  line-height: 1.8;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  .intro_area .campus_map_area .text_box .campus_map_text {
    margin-left: 1em;
  }
}
@media screen and (max-width: 768px) {
  .intro_area .campus_map_area .text_box .campus_map_text {
    margin: 1.5em auto 0;
  }
}
.intro_area .campus_map_list {
  position: absolute;
  top: -3%;
  right: 16%;
  z-index: 50;
}
@media screen and (max-width: 1024px) {
  .intro_area .campus_map_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 2%;
    position: relative;
    top: auto;
    right: auto;
    width: calc(94% - 150px);
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .intro_area .campus_map_list {
    width: 84%;
    margin: 20px auto 0;
  }
}
.intro_area .campus_map_list .campus_map_list_btn {
  cursor: pointer;
  position: relative;
  min-width: 250px;
  margin-top: 10px;
  padding: 10px 1.5em;
  background-color: #fff;
  border: 1px solid #23234b;
  border-radius: 50px;
  text-align: left;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .intro_area .campus_map_list .campus_map_list_btn {
    width: 48%;
    min-width: 170px;
    padding: 7px 0.5em;
    letter-spacing: normal;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .intro_area .campus_map_list .campus_map_list_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 23%;
    min-width: auto;
    padding: 7px 1em;
    border-radius: 10px;
    font-size: 2.4vw;
  }
}
.intro_area .campus_map_list .campus_map_list_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 25.5px;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: #23234b;
}
@media screen and (max-width: 768px) {
  .intro_area .campus_map_list .campus_map_list_btn::before {
    content: none;
  }
}
.intro_area .campus_map_list .campus_map_list_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 12px;
  height: 1px;
  background-color: #23234b;
}
@media screen and (max-width: 768px) {
  .intro_area .campus_map_list .campus_map_list_btn::after {
    content: none;
  }
}
.intro_area .campus_map_list .campus_map_list_btn:hover, .intro_area .campus_map_list .campus_map_list_btn.active {
  color: #fff;
  transition: all 0.2s;
}
.intro_area .campus_map_list .campus_map_list_btn:hover.nutrition_btn, .intro_area .campus_map_list .campus_map_list_btn.active.nutrition_btn {
  border-color: #50b7f4;
  background: linear-gradient(to right, #50b7f4, #6ddaf0);
}
.intro_area .campus_map_list .campus_map_list_btn:hover.education_btn, .intro_area .campus_map_list .campus_map_list_btn.active.education_btn {
  border-color: #fc951a;
  background: linear-gradient(to right, #fc951a, #ffc039);
}
.intro_area .campus_map_list .campus_map_list_btn:hover.nursing_btn, .intro_area .campus_map_list .campus_map_list_btn.active.nursing_btn {
  border-color: #fc95b8;
  background: linear-gradient(to right, #fc95b8, #ffbcdc);
}
.intro_area .campus_map_list .campus_map_list_btn:hover.faculty_btn, .intro_area .campus_map_list .campus_map_list_btn.active.faculty_btn {
  border-color: #52c57f;
  background: linear-gradient(to right, #52c57f, #9ed93c);
}
.intro_area .campus_map_list .campus_map_list_btn:hover::before, .intro_area .campus_map_list .campus_map_list_btn:hover::after, .intro_area .campus_map_list .campus_map_list_btn.active::before, .intro_area .campus_map_list .campus_map_list_btn.active::after {
  background-color: #fff;
  transition: all 0.2s;
}
.intro_area .campus_map_container {
  position: relative;
  width: 85%;
  margin: 10px 20px 0 auto;
  overflow-y: hidden;
  overflow-x: scroll;
}
@media screen and (max-width: 1024px) {
  .intro_area .campus_map_container {
    width: 100%;
    margin: 20px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .intro_area .campus_map_container {
    width: 100%;
    margin: -20px auto 0;
  }
}
.intro_area .campus_map_box {
  position: relative;
  width: 1000px;
}
@media screen and (max-width: 768px) {
  .intro_area .campus_map_box {
    width: 800px;
    margin: auto;
  }
}
@media screen and (max-width: 1300px) {
  .intro_area .campus_map_img {
    margin-right: 170px;
  }
}
@media screen and (max-width: 768px) {
  .intro_area .campus_map_img {
    width: 800px;
    margin: auto;
  }
}
.intro_area .campus_map {
  display: none;
}
.intro_area .campus_map.active {
  display: block;
}
.intro_area .campus_map .list_item {
  display: inline-block;
  position: absolute;
  transition: all 0.2s;
  z-index: 10;
}
.intro_area .campus_map .list_item:hover {
  transform: scale(1.05) translateY(-5px);
  transition: all 0.2s;
}
.intro_area .campus_map .list_item .list_item_link {
  display: inline-block;
  position: relative;
  padding: 1px 0.75em;
  background-color: #23234b;
  border: 1px solid #23234b;
  border-radius: 50px;
  color: #fff;
  font-family: kozuka-gothic-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  letter-spacing: normal;
}
.intro_area .campus_map .list_item .list_item_link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #23234b transparent transparent transparent;
  z-index: 10;
}
.intro_area .campus_map .list_item.nutrition_item01 {
  top: 46%;
  left: 79%;
}
.intro_area .campus_map .list_item.nutrition_item02 {
  top: 40%;
  left: 80%;
}
.intro_area .campus_map .list_item.nutrition_item03 {
  top: 34%;
  left: 80%;
}
.intro_area .campus_map .list_item.nutrition_item04 {
  top: 34%;
  left: 46%;
}
.intro_area .campus_map .list_item.nutrition_item05 {
  top: 40%;
  left: 43%;
}
.intro_area .campus_map .list_item.nutrition_item06 {
  top: 46%;
  left: 45%;
}
.intro_area .campus_map .list_item.nutrition_item07 {
  top: 52%;
  left: 55%;
}
.intro_area .campus_map .list_item.nutrition_item08 {
  top: 34%;
  left: 60%;
}
.intro_area .campus_map .list_item.education_item01 {
  top: 61%;
  left: 24%;
}
.intro_area .campus_map .list_item.education_item02 {
  top: 46%;
  left: 34%;
}
.intro_area .campus_map .list_item.education_item03 {
  top: 50%;
  left: 19%;
}
.intro_area .campus_map .list_item.education_item04 {
  top: 44%;
  left: 19%;
}
.intro_area .campus_map .list_item.education_item05 {
  top: 57%;
  left: 38%;
}
.intro_area .campus_map .list_item.education_item06 {
  top: 51%;
  left: 47%;
}
.intro_area .campus_map .list_item.education_item07 {
  top: 48%;
  left: 57%;
}
.intro_area .campus_map .list_item.nursing_item01 {
  top: 66%;
  left: 22%;
}
.intro_area .campus_map .list_item.nursing_item02 {
  top: 51%;
  left: 25%;
}
.intro_area .campus_map .list_item.nursing_item03 {
  top: 61%;
  left: 17%;
}
.intro_area .campus_map .list_item.nursing_item04 {
  top: 56%;
  left: 18%;
}
.intro_area .campus_map .list_item.nursing_item05 {
  top: 61%;
  left: 30%;
}
.intro_area .campus_map .list_item.nursing_item06 {
  top: 56%;
  left: 30%;
}
.intro_area .campus_map .list_item.faculty_item01 {
  top: 47%;
  left: 32%;
}
.intro_area .campus_map .list_item.faculty_item02 {
  top: 48%;
  left: 25%;
}
.intro_area .campus_map .list_item.faculty_item03 {
  top: 41%;
  left: 29%;
}
.intro_area .campus_map .list_item.faculty_item04 {
  top: 35%;
  left: 32%;
}
.intro_area .campus_map .list_item.faculty_item05 {
  top: 73%;
  left: 30%;
}
.intro_area .campus_map .list_item.faculty_item06 {
  top: 67%;
  left: 34%;
}
.intro_area .campus_map .list_item.faculty_item07 {
  top: 27%;
  left: 36%;
}
.intro_area .campus_map .list_item.faculty_item08 {
  top: 74%;
  left: 44%;
}
.intro_area .campus_map .list_item.faculty_item09 {
  top: 10%;
  left: 35%;
}

/*-----------------------------
index_キンランの学びって？
---------------------------*/
.study_area {
  margin-top: 170px;
  background-image: url(../img/top/idx_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .study_area {
    margin-top: 100px;
  }
}
.study_area .study_area_box {
  position: relative;
  padding-bottom: 120px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .study_area .study_area_box {
    padding-bottom: 40px;
  }
}
.study_area .study_area_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 300%;
  height: 100%;
  background-color: #fff;
}
.study_area .area_title_box,
.study_area .area_description {
  position: relative;
  z-index: 20;
}
.study_area .study_list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1050px;
  margin-top: -80px;
  padding-bottom: 55vh;
}
@media screen and (max-width: 768px) {
  .study_area .study_list {
    flex-direction: column;
    margin-top: 20px;
    padding-bottom: 40vh;
  }
}
.study_area .study_list .study_list_item {
  position: relative;
  width: 31%;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .study_area .study_list .study_list_item {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    width: 100%;
    margin-top: 15px;
    padding: 15px;
    background-color: #fff;
    border-radius: 10px;
  }
}
.study_area .study_list .study_list_item:nth-of-type(even) {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .study_area .study_list .study_list_item:nth-of-type(even) {
    margin-top: 15px;
  }
}
.study_area .study_list .study_list_item::before {
  content: "";
  display: block;
  width: 100%;
  height: 250px;
  background-position: center 10%;
  background-repeat: no-repeat;
  background-size: cover;
  border: 10px solid #fff;
  border-radius: 100vh 100vh 0 0;
}
@media screen and (max-width: 768px) {
  .study_area .study_list .study_list_item::before {
    width: 50%;
    height: auto;
    border: none;
    border-radius: 0;
  }
}
.study_area .study_list .study_list_item .study_list_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100% 100% 0 0;
  z-index: 20;
}
.study_area .study_list .study_list_item .text_box {
  position: relative;
  padding: 60px 10px 40px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .study_area .study_list .study_list_item .text_box {
    width: 50%;
    padding: 0 15px 0 0;
  }
}
.study_area .study_list .study_list_item .text_box::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .study_area .study_list .study_list_item .text_box::before {
    display: block;
    position: relative;
    top: 0;
    left: auto;
    transform: none;
    width: 50px;
    height: 50px;
    margin: auto;
  }
}
.study_area .study_list .study_list_item .text_box .more {
  position: relative;
  width: 200px;
  margin: 30px auto 0;
  padding: 1.5em 0;
  border-top: 1px solid #23234b;
  border-bottom: 1px solid #23234b;
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .study_area .study_list .study_list_item .text_box .more {
    width: 94%;
    margin: 10px auto 0;
    padding: 1em 0;
  }
}
.study_area .study_list .study_list_item .text_box .more::after {
  content: "";
  position: absolute;
  top: 45%;
  right: 10%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border: 1px solid;
  border-color: #23234b #23234b transparent transparent;
  transform: rotate(45deg);
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .study_area .study_list .study_list_item .text_box .more::after {
    top: 40%;
    transition: all 0.3s;
  }
}
.study_area .study_list .study_list_item .study_list_topic {
  font-size: 3rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .study_area .study_list .study_list_item .study_list_topic {
    font-size: 2.4rem;
  }
}
.study_area .study_list .study_list_item.nutrition::before {
  background-image: url(../img/top/study01.jpg);
}
.study_area .study_list .study_list_item.nutrition .text_box::before {
  background-image: url(../img/top/idx_food.png);
}
.study_area .study_list .study_list_item.education::before {
  background-image: url(../img/top/study02.jpg);
}
.study_area .study_list .study_list_item.education .text_box::before {
  background-image: url(../img/top/idx_cld.png);
}
.study_area .study_list .study_list_item.nursing::before {
  background-image: url(../img/top/study03.jpg);
}
.study_area .study_list .study_list_item.nursing .text_box::before {
  background-image: url(../img/top/idx_nsg.png);
}

/*-----------------------------
index_キンランの入試
---------------------------*/
.exam_area {
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .exam_area {
    margin-bottom: 100px;
  }
}
.exam_area .tab_container {
  max-width: 1100px;
  margin-top: 110px;
  border: 4px solid #eff2f5;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .exam_area .tab_container {
    margin-top: 70px;
  }
}
.exam_area .exam_tab_list {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 100px;
  margin: -50px auto 0;
  background-color: #eff2f5;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  .exam_area .exam_tab_list {
    height: 60px;
    margin-top: -30px;
  }
}
.exam_area .exam_tab_list .exam_tab_item {
  position: relative;
  width: 50%;
  height: 100%;
}
.exam_area .exam_tab_list .exam_tab_item:hover {
  cursor: pointer;
}
.exam_area .exam_tab_list .exam_tab_item .tab_active_img {
  display: none;
}
.exam_area .exam_tab_list .exam_tab_item.active {
  background-color: #23234b;
  border-radius: 50px;
}
.exam_area .exam_tab_list .exam_tab_item.active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #23234b transparent transparent transparent;
}
.exam_area .exam_tab_list .exam_tab_item.active .tab_img {
  display: none;
}
.exam_area .exam_tab_list .exam_tab_item.active .tab_active_img {
  display: block;
}
.exam_area .exam_tab_list .exam_tab_item .tab_item_img,
.exam_area .exam_tab_list .exam_tab_item .tab_active_img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
}
@media screen and (max-width: 768px) {
  .exam_area .exam_tab_list .exam_tab_item .tab_item_img,
.exam_area .exam_tab_list .exam_tab_item .tab_active_img {
    width: 90%;
  }
}
.exam_area .panel_container .panel_item {
  display: none;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2%;
  padding: 50px 5% 0%;
}
@media screen and (max-width: 768px) {
  .exam_area .panel_container .panel_item {
    gap: 4%;
  }
}
.exam_area .panel_container .panel_item.active {
  display: flex;
}
.exam_area .panel_container .movie_modal_box {
  width: 32%;
  margin-bottom: 7%;
  line-height: 1.4;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .exam_area .panel_container .movie_modal_box {
    width: 48%;
  }
}
.exam_area .kirari_link_box {
  grid-column: 1/3;
  margin-top: 70px;
  background-image: url(../img/top/exam_bg.jpg);
}
@media screen and (max-width: 768px) {
  .exam_area .kirari_link_box {
    margin-top: 50px;
    background-position: 55% center;
  }
}
.exam_area .kirari_link_box .text_box .kirari_link_text {
  font-size: 3.2rem;
}
.exam_area .exam_info_container {
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .exam_area .exam_info_container {
    margin-top: 100px;
  }
}
.exam_area .exam_info_container .area_topic {
  font-size: 3.2rem;
  letter-spacing: 0.2em;
}
.exam_area .exam_info_container .movie_modal_box {
  max-width: 750px;
  margin: 50px auto 0;
}
.exam_area .button_box {
  margin-top: 50px;
}
.exam_area .button_box .button {
  max-width: 480px;
  width: 80%;
  margin: 20px auto 0;
}
.exam_area .button_box .button.arrow::after {
  right: 5%;
}

/*-----------------------------
index_キンランの入試
---------------------------*/
.link_block_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1px 1px;
  max-width: 960px;
  margin-top: 80px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .link_block_container {
    gap: 1px 0;
    margin-top: 50px;
  }
}
.link_block_container .link_block {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: calc(50% - 0.5px);
  height: 170px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .link_block_container .link_block {
    width: 100%;
    height: 120px;
    background-size: cover;
  }
}
.link_block_container .link_block.expense {
  background-image: url(../img/top/banner_expense.jpg);
}
.link_block_container .link_block.recruit {
  background-image: url(../img/top/banner_recruit.jpg);
}
.link_block_container .link_block.request {
  width: 100%;
  background-image: url(../img/top/banner_request.jpg);
}
@media screen and (max-width: 768px) {
  .link_block_container .link_block.request {
    background-image: url(../img/top/banner_request_sp.jpg);
  }
}
.link_block_container .link_block:hover {
  opacity: 0.8;
  background-size: auto 110%;
  transition: all 0.8s;
}
@media screen and (max-width: 768px) {
  .link_block_container .link_block:hover {
    opacity: 0.5;
    background-size: cover;
  }
}
.link_block_container .link_block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(70, 130, 180, 0.5);
}
.link_block_container .link_block .btn_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
}
.link_block_container .link_block .btn_text {
  position: relative;
  color: #fff;
  font-size: 2.2rem;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .link_block_container .link_block .btn_text {
    font-size: 1.8rem;
  }
}

/*-----------------------------
子ページ_トップスライダー
---------------------------*/
.course .keyvisual {
  position: relative;
  height: 99.9999vh;
  min-height: 700px;
  margin-bottom: 60px;
  padding-top: 90px;
}

.top_slider {
  position: relative;
  width: 100%;
  max-height: 500px;
  height: 70%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top_slider {
    height: 60%;
  }
}
.top_slider .slider_track {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3000px;
  height: 100%;
  -webkit-animation: scroll 30s linear infinite;
          animation: scroll 30s linear infinite;
}
@media screen and (max-width: 768px) {
  .top_slider .slider_track {
    width: 1920px;
    -webkit-animation: scrollSP 12s linear infinite;
            animation: scrollSP 12s linear infinite;
  }
}
.top_slider .top_slide {
  width: 500px;
  height: 100%;
  margin: 0 0.5%;
  border-radius: 10px;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .top_slider .top_slide {
    width: 320px;
  }
}
.nutrition .top_slider .top_slide.slide01 {
  background-image: url(../img/nutrition/food_sld1.jpg);
}
.nutrition .top_slider .top_slide.slide02 {
  background-image: url(../img/nutrition/food_sld2.jpg);
}
.nutrition .top_slider .top_slide.slide03 {
  background-image: url(../img/nutrition/food_sld3.jpg);
}
.education .top_slider .top_slide.slide01 {
  background-image: url(../img/education/cld_sld1.jpg);
}
.education .top_slider .top_slide.slide02 {
  background-image: url(../img/education/cld_sld2.jpg);
}
.education .top_slider .top_slide.slide03 {
  background-image: url(../img/education/cld_sld3.jpg);
}
.top_slider .top_message_img {
  position: absolute;
  bottom: 30%;
  left: 15%;
  width: 330px;
  z-index: 1000;
}

@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1500px);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1500px);
  }
}
@-webkit-keyframes scrollSP {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-960px);
  }
}
@keyframes scrollSP {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-960px);
  }
}
.top_course_title_box {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .top_course_title_box {
    margin-top: 70px;
  }
}
.top_course_title_box .top_course_title {
  position: relative;
  margin-left: 0.2em;
  font-size: 6.2rem;
  letter-spacing: 0.2em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .top_course_title_box .top_course_title {
    font-size: 4.6rem;
  }
}
.top_course_title_box .top_course_title::before {
  content: "";
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 130px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  .top_course_title_box .top_course_title::before {
    top: -100px;
    width: 80px;
    height: 80px;
  }
}
.nutrition .top_course_title_box .top_course_title {
  color: #50b7f4;
}
.nutrition .top_course_title_box .top_course_title::before {
  background-image: url(../img/nutrition/food_ico.png);
}
.education .top_course_title_box .top_course_title {
  color: #fc951a;
}
.education .top_course_title_box .top_course_title::before {
  background-image: url(../img/education/cld_ico.png);
}
.nursing .top_course_title_box .top_course_title {
  color: #fc95b8;
}
.nursing .top_course_title_box .top_course_title::before {
  background-image: url(../img/nursing/nsg_ico.png);
}
.top_course_title_box .top_course_capacity {
  display: inline-block;
  margin-top: 35px;
  padding: 0.5em 1.5em;
  border-right: 1px solid #23234b;
  border-left: 1px solid #23234b;
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .top_course_title_box .top_course_capacity {
    margin-top: 20px;
    padding: 0 1em;
  }
}
.top_course_title_box .top_course_capacity .num {
  display: inline-block;
  padding: 0 0.2em;
  font-size: 2.7rem;
  vertical-align: -0.05em;
}

/*-----------------------------
子ページ_キャリアデータ
---------------------------*/
.license_container {
  position: relative;
  grid-column: 1/3;
}
.license_container .license_title {
  font-size: 1.4rem;
}
.license_container .license_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  margin-top: 30px;
}
.license_container .license_list::before {
  content: "";
  position: absolute;
  top: 62%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 76%;
  background-image: url(../img/education/cld_lsc_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.nutrition .license_container .license_list::before {
  background-image: url(../img/nutrition/food_lsc_bg.jpg);
}
.education .license_container .license_list::before {
  background-image: url(../img/education/cld_lsc_bg.jpg);
}
.license_container .license_list .list_item {
  width: 20%;
  padding-bottom: 3px;
}
.license_container .license_list .list_item.large_item {
  width: 27%;
}
.nutrition .license_container .license_list .large_item {
  margin: -10px 16% 0;
}
.nutrition .license_container .license_list .middle_item {
  margin: 0 40px -12%;
}
.education .license_container .license_list .list_item {
  margin: 20px 5% -3%;
}
.education .license_container .license_list .large_item {
  margin: -10px 2% 0;
}

.career_data_area {
  margin-top: 130px;
}
.career_data_area .career_data_title {
  font-size: 3.4rem;
  letter-spacing: 0.2em;
}
.career_data_area .career_data_container {
  display: flex;
  justify-content: space-between;
  max-width: 650px;
  width: 90%;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .career_data_area .career_data_container {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }
}
.nutrition .career_data_area .career_data_container {
  gap: 5%;
  max-width: 650px;
}
.education .career_data_area .career_data_container {
  gap: 3%;
  max-width: 700px;
}
@media screen and (max-width: 1024px) {
  .education .career_data_area .career_data_container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 3%;
  }
}
@media screen and (max-width: 768px) {
  .education .career_data_area .career_data_container {
    gap: 0;
  }
}
.career_data_area .career_data_container .box {
  flex: 1 0 auto;
  width: auto;
}
@media screen and (max-width: 768px) {
  .career_data_area .career_data_container .box {
    width: 100%;
    margin-top: 20px;
  }
}
.career_data_area .career_data_container .box.plural {
  width: 65%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .career_data_area .career_data_container .box.plural {
    justify-content: center;
    max-width: 360px;
    width: 100%;
  }
}
.education .career_data_area .career_data_container .box {
  flex: 1 0 auto;
  max-width: 360px;
  width: auto;
}
.career_data_area .career_data_container .topic {
  width: 100%;
  padding: 2px 2em;
  background-color: #23234b;
  border-radius: 50px;
  color: #fff;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .career_data_area .career_data_container .topic {
    display: inline-block;
    width: auto;
    min-width: 120px;
  }
}
.career_data_area .career_data_container .result {
  flex: 1 0 auto;
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: 20px auto;
  justify-content: center;
  position: relative;
  margin-top: 10px;
  font-size: 8rem;
}
@media screen and (max-width: 768px) {
  .career_data_area .career_data_container .result {
    grid-template-rows: repeat(2, auto);
    margin-top: 5px;
  }
}
.nutrition .career_data_area .career_data_container .result {
  color: #50b7f4;
}
.education .career_data_area .career_data_container .result {
  color: #fc951a;
}
.career_data_area .career_data_container .result:first-of-type::before {
  content: none;
}
.career_data_area .career_data_container .result::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  width: 1px;
  height: 75%;
  background-color: #23234b;
}
.career_data_area .career_data_container .top_text {
  grid-column: 1/3;
  grid-row: 1/2;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: -0.05em;
}
.career_data_area .career_data_container .num {
  grid-column: 1/2;
  grid-row: 2/3;
  text-align: right;
  line-height: 0.8;
}
.career_data_area .career_data_container .sub {
  grid-column: 2/3;
  grid-row: 2/3;
  align-self: flex-end;
  margin-top: 1.25em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.32em;
}
.career_data_area .small_text {
  margin-top: 0.75em;
  letter-spacing: 0.1em;
}

/*-----------------------------
子ページ_ニュース
---------------------------*/
.news_area {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .news_area {
    margin-top: 80px;
  }
}
.news_area .news_container {
  display: flex;
  align-items: center;
  max-width: 900px;
  width: 90%;
  margin: auto;
  padding: 7px 20px 7px 40px;
  background-color: #eff2f5;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .news_area .news_container {
    flex-direction: column;
    padding: 15px 5%;
  }
}
.news_area .news_container .title {
  padding-right: 1.5em;
  border-right: 1px solid #23234b;
  font-size: 2rem;
  line-height: 2.3;
}
@media screen and (max-width: 768px) {
  .news_area .news_container .title {
    width: 50%;
    padding-right: 0;
    padding-bottom: 10px;
    border-right: none;
    border-bottom: 1px solid #23234b;
    line-height: 1;
  }
}
.news_area .news_container .date,
.news_area .news_container .topic {
  margin-left: 2em;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .news_area .news_container .date,
.news_area .news_container .topic {
    align-self: flex-start;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .news_area .news_container .date {
    margin-top: 0.75em;
  }
}

/*-----------------------------
子ページ_目次
---------------------------*/
.course_index_area {
  position: relative;
  margin-top: 150px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .course_index_area {
    margin-top: 80px;
  }
}
.course_index_area .course_index_title {
  font-size: 3.4rem;
  letter-spacing: 0.2em;
}
.course_index_area .course_index_list {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .course_index_area .course_index_list {
    flex-wrap: wrap;
    max-width: 400px;
    width: 80%;
    margin-top: -20px;
  }
}
.course_index_area .course_index_list .list_item {
  width: 22%;
}
@media screen and (max-width: 768px) {
  .course_index_area .course_index_list .list_item {
    width: 47%;
    margin-top: 50px;
  }
}
.course_index_area .course_index_list .list_item .course_index_img {
  width: 75%;
  margin: auto;
}
.course_index_area .course_index_list .list_item .topic {
  margin-top: 20px;
  color: #50b7f4;
  font-size: 2.1rem;
  letter-spacing: 0.15em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .course_index_area .course_index_list .list_item .topic {
    font-size: 1.8rem;
  }
}
.course_index_area .course_index_list .course_index_btn {
  position: relative;
  margin-top: 20px;
  padding: 1em;
  border-top: 1px solid #23234b;
  border-bottom: 1px solid #23234b;
  font-size: 1.4rem;
}
.course_index_area .course_index_list .course_index_btn:hover .btn_text {
  color: #50b7f4;
  transition: all 0.3s;
}
.course_index_area .course_index_list .course_index_btn:hover::after {
  top: 55%;
  border-color: transparent #50b7f4 #50b7f4 transparent;
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.3s;
}
.course_index_area .course_index_list .course_index_btn::after {
  content: "";
  position: absolute;
  top: 47%;
  right: 5%;
  width: 7px;
  height: 7px;
  border: 1px solid;
  border-color: transparent #23234b #23234b transparent;
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.3s;
}
.course_index_area .course_index_list .course_index_btn .btn_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.course_index_area .course_index_list .course_index_btn .btn_text {
  font-size: 1.4rem;
  transition: all 0.3s;
}

/*-----------------------------
子ページ_区切り画像
---------------------------*/
/*-----------------------------
子ページ_目次
---------------------------*/
.course_about_area .top_movie_box {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 750px;
  margin: 80px auto 0;
}
.course_about_area .top_movie_box .intro_movie_img {
  position: absolute;
  top: -10%;
  left: -8%;
  max-width: 130px;
  width: 25%;
  z-index: 200;
}
@media screen and (max-width: 768px) {
  .course_about_area .top_movie_box .intro_movie_img {
    max-width: 100px;
  }
}
.course_about_area .top_movie_box .movie_modal {
  border: 10px solid;
  border-radius: 20px;
}
.course_about_area .movie_list_container {
  max-width: 950px;
  margin: 100px auto 0;
}
.course_about_area .movie_list_container .topic {
  background-color: #b0bbc6;
  border-radius: 50px;
  color: #fff;
  font-size: 2rem;
  line-height: 2;
}
.course_about_area .movie_list_container .movie_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 70px 2%;
  margin-top: 30px;
}
.course_about_area .movie_list_container .movie_list .movie_modal_box {
  width: 32%;
}
.course_about_area .movie_list_container .movie_list .movie_title {
  margin-top: 10px;
  font-size: 1.5rem;
  letter-spacing: 0.075em;
  line-height: 1.5;
  text-align: justify;
}

/*-----------------------------
子ページ_栄養_ピックアッププロジェクト
---------------------------*/
.pupj_area {
  margin-top: 200px;
  margin-bottom: 60px;
}
.pupj_area .inner {
  position: relative;
  max-width: 1100px;
  padding: 0px 20px 20px;
  background-color: #50b7f4;
  border-radius: 10px;
}
.pupj_area .pupj_title_box {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  min-width: 660px;
  background-color: #50b7f4;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .pupj_area .pupj_title_box {
    top: -90px;
    width: 90%;
    min-width: auto;
  }
}
.pupj_area .pupj_title_box .en_font {
  margin: 0.75em 0;
  font-size: 5rem;
  letter-spacing: 0.15em;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .pupj_area .pupj_title_box .en_font {
    font-size: 4.2rem;
  }
}
.pupj_area .pupj_container {
  padding-bottom: 80px;
  background-color: #fff;
  border-radius: 10px;
  font-size: 1.5rem;
  text-align: justify;
}
.pupj_area .pupj_container .pupj_title {
  position: relative;
  margin-top: 5px;
  padding-bottom: 20px;
  background-color: #50b7f4;
  color: #fff;
  font-size: 2.4rem;
  letter-spacing: 0.25em;
  text-align: center;
}
.pupj_area .pupj_container .pupj_text {
  width: 90%;
  margin: 2.5em auto 0;
}
.pupj_area .pupj_container .movie_list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 70px 2%;
  width: 90%;
  margin: 50px auto 0;
}
.pupj_area .pupj_container .movie_list .movie_modal_box {
  width: 49%;
}
.pupj_area .pupj_container .movie_list .movie_title {
  margin-top: 0.75em;
}

/*-----------------------------
modal_動画
---------------------------*/
.course .movie_modal_box {
  position: relative;
  width: 85%;
}
@media screen and (max-width: 768px) {
  .course .movie_modal_box {
    margin-top: 50px;
  }
}
.nutrition .movie_modal_box .movie_modal {
  border-color: #50b7f4;
}

.movie_modal {
  display: block;
  position: relative;
}
.movie_modal:hover::after {
  transform: translate(-50%, -50%) scale(1.2);
  transition: all 0.3s;
}
.movie_modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(35, 35, 75, 0.1);
  border-radius: 10px;
  z-index: 20;
}
.movie_modal::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-image: url(../img/play.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s;
  z-index: 30;
}
@media screen and (max-width: 1024px) {
  .movie_modal::after {
    width: 50px;
    height: 50px;
  }
}
.movie_modal .movie_modal_img {
  border-radius: 10px;
}

.video {
  width: 100%;
}

#cboxLoadingOverlay,
#cboxLoadingGraphic {
  display: none !important;
}

#cboxClose {
  display: none;
}

#cboxContent {
  background-color: inherit;
}
#cboxContent #cboxLoadedContent {
  border: none;
  background-color: inherit;
  overflow: hidden !important;
}

#cboxOverlay {
  background-color: #23234b !important;
  opacity: 0.8 !important;
}

/*-----------------------------
フッター
---------------------------*/
/*-----------------------------
フッター
---------------------------*/
/*-----------------------------
フッター
---------------------------*/
/*-----------------------------
フッター
---------------------------*/
.course_link {
  position: relative;
  margin: 150px auto;
  background-image: url(../img/nutrition/food_img1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #bbb;
  border-radius: 20px;
  overflow: hidden;
}
.course_link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 10;
}
.course_link .course_link_text {
  position: relative;
  margin: 80px auto;
  font-size: 2.6rem;
  line-height: 1;
  z-index: 20;
}

/*-----------------------------
フッター
---------------------------*/
.kirari_link_box {
  position: relative;
  width: 100%;
  padding-top: 24%;
  background-image: url(../img/kirari_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  overflow: hidden;
  transition: all 2s;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .kirari_link_box {
    padding-top: 35%;
    background-size: cover;
  }
}
@media screen and (max-width: 768px) {
  .kirari_link_box {
    height: 180px;
    padding-top: 0;
    background-position: 30% center;
  }
}
.kirari_link_box:hover {
  background-size: 110%;
  transition: all 2s;
}
@media screen and (max-width: 1024px) {
  .kirari_link_box:hover {
    background-size: cover;
    opacity: 0.8;
    transition: all 0.3s;
  }
}
.kirari_link_box:hover .text_box .more::after {
  right: 8%;
  transition: all 0.3s;
}
.kirari_link_box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(35, 35, 75, 0.1);
}
.kirari_link_box .kirari_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 30;
}
.kirari_link_box .text_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  color: #fff;
}
.kirari_link_box .text_box .kirari_link_text {
  font-size: 1.6rem;
  letter-spacing: 0.2em;
}
.kirari_link_box .text_box .kirari_link_logo {
  width: 270px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .kirari_link_box .text_box .kirari_link_logo {
    width: 140px;
    margin-top: 10px;
  }
}
.kirari_link_box .text_box .more {
  position: relative;
  width: 200px;
  margin: 30px auto 0;
  padding: 1.5em 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .kirari_link_box .text_box .more {
    width: 160px;
    margin: 20px auto 0;
    padding: 1em 0;
  }
}
.kirari_link_box .text_box .more::after {
  content: "";
  position: absolute;
  top: 45%;
  right: 10%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border: 1px solid;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .kirari_link_box .text_box .more::after {
    top: 40%;
    transition: all 0.3s;
  }
}

.page_bottom_area .sns_container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5%;
  max-width: 800px;
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .page_bottom_area .sns_container {
    flex-direction: column;
    gap: unset;
    width: 90%;
    margin: 50px auto 0;
  }
}
.page_bottom_area .sns_container .text_box {
  width: 40%;
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .page_bottom_area .sns_container .text_box {
    width: 100%;
  }
}
.page_bottom_area .sns_container .text_box .top_text {
  font-size: 3.4rem;
  letter-spacing: 0.2em;
}
.page_bottom_area .sns_container .text_box .bottom_text {
  margin-top: 1em;
}
.page_bottom_area .sns_list {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 45%;
}
@media screen and (max-width: 1024px) {
  .page_bottom_area .sns_list {
    max-width: 400px;
    width: 90%;
    margin-top: 30px;
  }
}
.page_bottom_area .sns_list_item {
  position: relative;
}
.page_bottom_area .sns_list_item:hover .sns_img {
  transform: translateY(-7px);
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .page_bottom_area .sns_list_item:hover .sns_img {
    transform: none;
  }
}
.page_bottom_area .sns_list_item .sns_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.page_bottom_area .sns_list_item .sns_img {
  width: auto;
  height: 40px;
  transition: all 0.4s;
}
.page_bottom_area .sns_list_item .sns_img.yt_icon {
  height: 34px;
  margin: 3px auto;
}
.page_bottom_area .sns_list_item .sns_name {
  padding-top: 5px;
  font-size: 1rem;
  letter-spacing: 0.15em;
}

.footer {
  margin-top: 80px;
  padding: 40px 20px 20px;
  border-top: 1px solid #23234b;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 50px 10px 10px;
  }
}
.footer .footer_area {
  grid-column: 1/2;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 1024px) {
  .footer .footer_area {
    flex-direction: column;
    align-items: center;
  }
}
.footer .footer_container {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .footer .footer_container {
    width: 100%;
  }
}
.footer .footer_container.top_container {
  padding-left: 5%;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .footer .footer_container.top_container {
    padding-left: 0;
    text-align: center;
  }
}
.footer .footer_container.bottom_container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .footer .footer_container.bottom_container {
    margin: 30px auto 0;
  }
}
.footer .footer_container .footer_logo_img {
  width: 280px;
}
.footer .footer_container .footer_contact {
  margin-top: 30px;
  font-size: 1.2rem;
  letter-spacing: normal;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .footer .footer_container .footer_contact {
    margin-top: 50px;
  }
}
.footer .footer_container .footer_contact .telno {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .footer .footer_container .footer_contact .telno {
    pointer-events: all;
  }
}
.footer .button_box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 2%;
}
@media screen and (max-width: 1024px) {
  .footer .button_box {
    justify-content: center;
    align-items: center;
  }
}
.footer .button_box .button {
  max-width: 240px;
  width: 40%;
  min-width: 190px;
}
@media screen and (max-width: 1024px) {
  .footer .button_box .button {
    width: 80%;
    margin-top: 10px;
  }
}
.footer .copyright {
  display: inline-block;
  margin-top: 25px;
  font-size: 1rem;
  letter-spacing: 0.075em;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .footer .copyright {
    margin-top: 40px;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */

.titlebox{
  position: relative;
}


.titlebox .title{
    position: absolute;
    top: 30%;
    left: 5%;
    z-index: 10;
    width: fit-content;
    height: 100px;
}
@media screen and (max-width: 768px) {
.titlebox{
    display: flex;
    flex-direction: column;
}
.titlebox .title{
    position: unset;
    z-index: 10;
    width: 100%;
    height: 130px;
}}

.titlebox .title h2 {
    margin-bottom: 1em;
    font-size: 2.5rem;
    letter-spacing: 0.3em;
    background: #fff;
    background: rgb(1 74 237 / 80%);
    color: #fff;
    padding: 20px;
}
@media screen and (max-width: 768px) {
.titlebox .title h2{
  background: #014aed;
    letter-spacing: 0.2em;
    padding: 30px;
    line-height: 3.5rem;
        font-size: 2rem;
}}
.titlebox .title p{
    position: absolute;
    font-family: "Nothing You Could Do", cursive;
    font-size: 3rem;
    bottom: -50px;
    right: -100px;
    color: #fff;
    transform: rotate(350deg);
    line-height: 1;
}
@media screen and (max-width: 768px) {
.titlebox .title p{
    font-size: 2rem;
    bottom: 0px;
    right: 0;
}}
.contents .gallery{
  margin: 50px auto;
}
@media screen and (max-width: 768px) {
.contents .gallery{
  margin: 30px auto;
}}

.contents .gallery .container h3 {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
.contents .gallery .container h3 {
    font-size: 2.5rem;
}}
.contents .gallery .container p {
    margin: 20px auto;
    font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
.contents .gallery .container p {
    margin: 20px;
    text-align: left;
}}
.contents .gallery .container p strong {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(transparent 40%, #0fbdf152 60%);
    line-height: 1;
}
.contents .schedule{
  margin-bottom: 100px;
}
.contents .schedule h3 {
    font-size: 3rem;
}
.contents .schedule ruby{
      font-size: 1.8rem;
}
.contents .schedule .card{
      font-size: 1.5rem;
      padding: 10px 0;
}
.contents .schedule .card .day{
    color: #0a36d5;
    font-family: miller-banner, serif;
    font-weight: lighter;
    font-size: 5rem;
    line-height: 1;
}
.contents .schedule ul p{
    font-size: 2rem;
    position: absolute;
    top: -10%;
    left: 2%;
    background-color: #fff;
}
@media screen and (max-width: 768px) {
.contents .schedule ul p{
    top: -2%;
    left: 5%;
}}
.contents .schedule ul{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    margin: 50px auto;
    width: 80%;
    border: 1px solid;
    border-radius: 5px;
    position: relative;
}
@media screen and (max-width: 768px) {
.contents .schedule ul{
  flex-direction: column;
    width: 70%;
}}
.contents .schedule ul li{
    background-color: aliceblue;
    padding: 10px;
    margin: 30px 5px;
    width: 18%;
    position: relative;
}
@media screen and (max-width: 768px) {
.contents .schedule ul li{
    margin: 20px;
    width: 70%;
}}
.contents .schedule ul li p{
font-size: 2rem;
}

.contents .point h3{
    font-size: 3rem;
}
.contents .point ruby{
      font-size: 1.8rem;
}
.contents .point h4{
    font-size: 2rem;
}
@media screen and (max-width: 768px) {
.contents .point h4{
line-height: 2.5rem;
}}
.contents .point ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.contents .point ul li{
    padding: 50px;
    border-radius: 50%;
    margin: 10px;
    width: 300px;
}
.contents .point ul img{
  width: 100px;
}
.contents .point ul .number{
    font-size: 2.5rem;
    font-weight: bold;
}

.contents .point ul li:nth-child(1) {
    background: #8fe5ffa6;
}
.contents .point ul li:nth-child(2) {
    background: #ff9fef;
}
.contents .point ul li:nth-child(3) {
    background: #ffd68c;
}

.slideshow-container {
    width: 80%;
    height: 40vh;
    position: relative;
    overflow: hidden;
    margin: auto;
}
@media screen and (max-width: 768px) {
.slideshow-container {
  width: 100%;
    height: 130px;
}}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fade 15s infinite;
}

.slide:nth-child(1) {
  animation-delay: 0s;
}

.slide:nth-child(2) {
  animation-delay: 5s;
}

.slide:nth-child(3) {
  animation-delay: 10s;
}
.slide:nth-child(4) {
  animation-delay: 15s;
}
.slide:nth-child(5) {
  animation-delay: 20s;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  53% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.minioc-img{
    background-image: url(../img/people.png);
    width: 80%;
    height: 15vh;
    background-size: contain;
    margin: 0 auto 100px auto;
}
@media screen and (max-width: 768px) {
.minioc-img{
    width: 100%;
    height: 10vh;
}}
.nothing-you-could-do-regular {
  font-family: "Nothing You Could Do", cursive;
  font-weight: 400;
  font-style: normal;
}

.contents .coment{
    width: 80%;
    margin: 100px auto;
    font-size: 1.5rem;
    position: relative;
    height: max-content;
}
@media screen and (max-width: 768px) {
.contents .coment {
    width: 90%;
}}

.tab-switch {
  --cstm-tab-color:#92bac2;
  display: flex;
  flex-wrap: wrap;
  max-width: 800px;
  margin-inline: auto;
  gap: 0 5px;
}

/* ラジオ非表示 */
.tab-switch input {
  display: none;
}

/* タブボタン */
.tab-switch label {
  padding: 0.7em 1em;
  background:#eee;
  cursor: pointer;
  order: -1;
  text-align: center;
  border-radius: 10px 10px 0 0;
  font-size: 2rem;
  width: 49.6%;
}
@media screen and (max-width: 768px) {
.tab-switch label{
  width: 49%;
}}

/* コンテンツ非表示 */
.tab-content {
  display: none;
  width: 100%;
  padding: 1.5em 0;
  border-radius: 0 10px 10px 10px;
}
.tab-switch .-tab1b{
background-color: #d3edfb;
    border: 1px solid #014aed;
} 
.tab-switch .-tab2b{
background-color: #d3edfb;
    border: 1px solid #014aed;
} 

/* 選択されたタブ＋コンテンツ表示 */
.tab-switch input:checked + label {
  background:#014aed;
  color: #fff;
}
.tab-switch input:checked + label + .tab-content {
  display: block;
}

.tab-switch label .tab1{
background-color: #85d2ff;
}


.tab-content .topics{
    text-align: left;
    padding: 20px;
    display: flex;
    border: 1px #afaef7;
    width: 89%;
    margin: 0 auto 50px;
    border-radius: 10px;
    border-style: dashed;
    background-color: aliceblue;
    align-items: center;
    justify-content: space-between;
}
@media screen and (max-width: 768px) {
.tab-content .topics{
    padding: 10px;
    width: 90%;
    flex-direction: column;
}}
.tab-content .topics h3{
  font-size: 3rem;
  color: #014aed;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
.tab-content .topics h3{
    line-height: 3.5rem;
    margin: 10px 0;
   font-size: 2.5rem; 
}}
.tab-content .topics h4{
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.2rem;
}
@media screen and (max-width: 768px) {
.tab-content .topics h4 {
    margin-top: 20px;
    line-height: 2rem;
}}
.tab-content .explain{
  width: 60%;
}
@media screen and (max-width: 768px) {
.tab-content .explain{
  width: 100%;
}}
.tab-content .img{
  width: 30%;
}
@media screen and (max-width: 768px) {
.tab-content .img{
    width: 50%;
    margin: 0 auto;
}}
.tab-content img{
width: 200px;
}
.tab-content .topics ol{
  list-style-type: disc;
  font-size: 1.7rem;
  font-weight: bold;
}
.tab-content .topics ol li {
  margin-left: 30px !important;
  list-style: disc;
}
.tab-content .topics ol li strong{
    background: linear-gradient(transparent 40%, #f7e707a6 60%);
    line-height: 1;
}
.tab-content .topics strong{
  font-size: 2rem;
    background: linear-gradient(transparent 40%, #f7e707a6 60%);
    line-height: 1;
}
.point-tokuten{
      width: 60%;
    margin: 20px auto;
    border: 5px solid  #ffbc00;
    border-radius: 10px;
    background-color: #f9f3d4;;
    padding: 10px;
    font-size: 1.5rem;
    align-items: center;
}
@media screen and (max-width: 768px) {
.point-tokuten{
      width: 90%;
}}
.tokuten-flex{
      display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: left;
}
.tokuten-flex .img{
width: 150px;
}
.point-tokuten ol{
    text-align: left;
    margin: 0 30%;
    font-weight: bold;
    font-size: 1.7rem;
    list-style-type: disc;
}
@media screen and (max-width: 768px) {
.point-tokuten ol{
    margin: 20px 15%;
}}
.point-tokuten ol li{
    list-style: disc;
}
.contents .schedule ul li .mask {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgb(1 74 237 / 50%);
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.4rem;
    z-index: 2;
    opacity: 0;
}
.contents .schedule ul li .mask a {
  color: #fff;
}
.contents .schedule ul li:hover .mask {
  opacity: 1;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.contents .visit {
    max-width: 1000px;
    margin: 0 auto 10%;
    padding: 20px 80px;
    background: #F4F6F7;
    text-align: center;
}
.contents .visit h4{
font-size: 2rem;
}
.contents .visit p{
font-size: 1.5rem;
}


.contents .coment ul img{
    filter: brightness(180%);
    filter: drop-shadow(3px 3px 5px #000);
    filter: opacity(80%);
}

.contents .coment ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
.contents .coment ul{
    overflow: visible;
}}
.contents .coment .oc01 {
  position: absolute;
  left: -20%;
  top: 0;
  width: 330px;
}
@media screen and (max-width: 768px) {
.contents .coment .oc01{
    left: -10%;
    top: -80px;
}}
.contents .coment .oc02 {
  position: absolute;
  right: -10%;
  top: 0;
  width: 220px;
}
.contents .coment .oc03 {
  position: absolute;
  left: -10%;
  top: 35%;
  width: 240px;
}
.contents .coment .oc04 {
  position: absolute;
  right: 0;
  top: 30%;
  width: 150px;
}
.contents .coment .oc05 {
  position: absolute;
    right: -20%;
    top: 50%;
  width: 140px;
}
.contents .coment .oc06 {
  position: absolute;
    left: 0;
    top: 60%;
  width: 150px;
}
.contents .coment .oc07 {
  position: absolute;
      right: 0;
    top: 50%;
  width: 180px;
}
.contents .coment .oc08 {
  position: absolute;
      right: -15%;
    top: 80%;
  width: 220px;
}
@media screen and (max-width: 768px) {
.contents .coment .oc08{
top: 100%;
}}
.contents .coment .oc09 {
  position: absolute;
    left: -15%;
    top: 85%;
  width: 220px;
}
