@charset "UTF-8";
@font-face {
  font-family: "Noto Serif JP";
  src: url("../font/Noto_Serif_JP/static/NotoSerifJP-Regular.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif JP";
  src: url("../font/Noto_Serif_JP/static/NotoSerifJP-semiBold.ttf") format("ttf");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif JP";
  src: url("../font/Noto_Serif_JP/static/NotoSerifJP-Bold.ttf") format("ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "EB Garamond";
  src: url("../font/EB_Garamond/static/EBGaramond-Regular.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "EB Garamond";
  src: url("../font/EB_Garamond/static/EBGaramond-Bold.ttf") format("ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-body: 'Noto Serif JP', "Yu Mincho", "游明朝", serif;
  --font-head: 'EB Garamond', 'Noto Serif JP', "Yu Mincho", "游明朝", "Times New Roman", serif;
  --white: #FFFFFF;
  --black: #000;
  --blue: #3232BE;
  --deep-blue: #2D148C;
  --light-pink: #FAF0FA;
  --purple: #C87DFF;
  --blue-grd: linear-gradient(180deg, rgba(90, 130, 255, 1) 0%, rgba(0, 210, 155, 1) 100%);
  --blue-grd-row: linear-gradient(90deg, rgba(90, 130, 255, 1) 0%, rgba(0, 210, 155, 1) 100%);
  --light-grd: linear-gradient(180deg, rgba(215, 70, 240, 1) 0%, rgba(130, 110, 255, 1) 100%);
  --light-grd-row: linear-gradient(90deg, rgba(215, 70, 240, 1) 0%, rgba(130, 110, 255, 1) 100%);
  --deep-grd: linear-gradient(180deg, rgba(200, 95, 220, 1) 0%, rgba(50, 50, 190, 1) 100%);
  --deep-grd-re: linear-gradient(180deg, rgba(50, 50, 190, 1) 0%, rgba(200, 95, 220, 1) 100%);
  --footer-grd: linear-gradient(180deg, rgba(80, 20, 180, 1) 0%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 1) 100%);
}

html[data-special=true] {
  --deep-blue: #410F46;
  --purple: #F0699B;
  --light-pink: #FAF0F0;
  --blue-grd: linear-gradient(180deg, rgba(90, 130, 255, 1) 0%, rgba(0, 210, 155, 1) 100%);
  --blue-grd-row: linear-gradient(90deg, rgba(90, 130, 255, 1) 0%, rgba(0, 210, 155, 1) 100%);
  --light-grd: linear-gradient(180deg, rgba(215, 70, 240, 1) 0%, rgba(130, 110, 255, 1) 100%);
  --light-grd-row: linear-gradient(90deg, rgba(215, 70, 240, 1) 0%, rgba(130, 110, 255, 1) 100%);
  --deep-grd: linear-gradient(0deg, #4B3291 0%, #C3285A 100%);
  --deep-grd-re: linear-gradient(180deg, #4B3291 0%, #C3285A 100%);
  --footer-grd: linear-gradient(180deg, #C81E69 0%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 1) 100%);
  --deep-purple: #4B3291;
}

html.first-time .loading_open {
  display: flex;
}

.loading_open {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: var(--black);
  align-items: center;
  justify-content: center;
  z-index: 6666;
  transition: 0.6s;
}
.loading_open.is-loaded {
  opacity: 0;
  pointer-events: none;
}
.loading_open .loading_spinner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 290px;
  width: 290px;
  z-index: 1;
}
.loading_open .loading_spinner img {
  position: relative;
  z-index: 1;
}
.loading_open .loading_spinner::before {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  animation: rotateLoading infinite 5s linear;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../images/magic-square.png");
}
@keyframes rotateLoading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#kv .main_visual,
.kv .main_visual {
  background: var(--deep-grd);
  z-index: 0;
}
#kv .main_visual img,
.kv .main_visual img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#kv .main_visual[data-special=true] .special,
.kv .main_visual[data-special=true] .special {
  display: block;
}
#kv .main_visual[data-special=true] .normal,
.kv .main_visual[data-special=true] .normal {
  display: none;
}
#kv .main_visual .top_lead,
.kv .main_visual .top_lead {
  position: relative;
  z-index: 2;
  height: 40%;
  padding: 5rem 1.5rem 0;
}
#kv .main_visual .top_lead img,
.kv .main_visual .top_lead img {
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  height: 100%;
  width: 100%;
}
#kv .main_visual .special,
.kv .main_visual .special {
  display: none;
}
#kv p,
.kv p {
  text-align: center;
}
#kv .bg_square,
.kv .bg_square {
  background-image: url(../images/magic-square.png);
  background-position: center top;
  background-repeat: no-repeat;
}
#kv .bg_square .main_lead,
.kv .bg_square .main_lead {
  font-size: 1.375rem;
  padding-top: 7rem;
  font-weight: 800;
  line-height: 2;
  margin-bottom: 2.5rem;
}
#kv .bg_square .main_exp,
.kv .bg_square .main_exp {
  margin-bottom: 1rem;
}
#kv .bg_square .main_exp span,
.kv .bg_square .main_exp span {
  text-wrap: nowrap;
  display: block;
}
#kv .bg_square .bnr_opc,
.kv .bg_square .bnr_opc {
  margin: 2.5rem auto 2rem;
}

.bg_kv {
  background: var(--deep-grd-re);
  padding-top: 2rem;
  overflow: hidden;
}

.bg_voice {
  background: var(--deep-grd);
  padding-top: 3rem;
  overflow: hidden;
}

#topics {
  padding: 3rem 0 5rem;
  margin-bottom: 4.5rem;
  background: url(../../home/images/topics_bg.png);
  background-size: auto 100%;
}
#topics > img {
  margin-right: auto;
  margin-left: auto;
}
#topics > p {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
#topics .title_topics {
  text-transform: uppercase;
  font-weight: 500;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
}
#topics .title_topics::before, #topics .title_topics::after {
  display: inline-block;
  height: 3.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
#topics .title_topics::before {
  content: url(../images/wing_l.svg);
}
#topics .title_topics::after {
  content: url(../images/wing_r.svg);
}

.slider.topics {
  margin-top: 1.5rem;
}
.slider.topics .slick-slide {
  margin: 0 0.5rem;
  width: 250px;
}
.slider.topics .slick-slide a,
.slider.topics .slick-slide img {
  width: 100%;
  pointer-events: none;
}
.slider.topics .slick-slide.slick-current a {
  pointer-events: auto;
}
.slider.voices .slick-list {
  padding-top: 29px !important;
  padding-bottom: 29px !important;
}
.slider .slick-arrow {
  margin: 0;
  position: absolute;
  z-index: 10;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/arr.svg) no-repeat;
  background-size: auto 100%;
  background-position: center center;
  transform: none;
  top: calc(50% - 0.75rem);
  transition: 0.2s;
}
.slider .slick-arrow::before, .slider .slick-arrow::after {
  content: none;
}
.slider .slick-arrow.slick-next {
  right: calc(30px + 1.5rem);
}
.slider .slick-arrow.slick-next:hover {
  scale: 1.5;
}
.slider .slick-arrow.slick-prev {
  left: calc(30px + 1.5rem);
  transform: rotate(180deg);
}
.slider .slick-arrow.slick-prev:hover {
  transform: rotate(180deg) scale(1.5);
}
.slider.event .slick-arrow.slick-next, .slider.campus .slick-arrow.slick-next {
  right: 11px;
}
.slider.event .slick-arrow.slick-prev, .slider.campus .slick-arrow.slick-prev {
  left: 11px;
  transform: rotate(180deg);
}
.slider .slick-dots {
  bottom: calc(-1rem - 10px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider .slick-dots li {
  width: 10px;
  height: 10px;
}
.slider .slick-dots li.slick-active button {
  background: var(--purple);
  color: var(--purple);
}
.slider .slick-dots li button {
  width: 10px;
  height: 10px;
  background: var(--white);
}
.slider .slick-dots li button::before {
  content: none;
}

.title_wing {
  margin-bottom: 2rem;
  font-weight: 400;
  display: flex;
  font-size: 3.375rem;
  line-height: 1;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.title_wing span {
  line-height: 1.7;
  display: inline-block;
  font-size: 0.44em;
  font-family: var(--font-body);
}
.title_wing::before {
  content: url(../images/wing_t.svg);
}
.title_wing.blue::before {
  content: url(../images/wing_t_blue.svg);
}
.title_wing.blue[data-special=true]::before {
  content: url(../images/wing_t_purple.svg);
}

.title_flash {
  margin-bottom: 1.25rem;
  gap: 1rem;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.title_flash::before, .title_flash::after {
  content: url(../images/flash.svg);
  width: 40px;
  height: 40px;
}
.title_flash[data-special=true]::before, .title_flash[data-special=true]::after {
  content: url(../images/flash_p.svg);
}
.title_flash.blue {
  color: var(--deep-blue);
}
.title_flash small {
  font-size: 1rem;
}
.title_flash div {
  line-height: 1;
}

.title_fukidashi {
  font-size: 1.75rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
}
.title_fukidashi::after {
  content: url(../images/fukidashi.svg);
  margin: -1rem 0 1rem;
  display: block;
  width: 100%;
}
.title_fukidashi[data-special=true]::after {
  content: url(../images/fukidashi_p.svg);
}

#about {
  padding-top: 3rem;
  padding-bottom: 4.5rem;
  background-color: var(--deep-blue);
  border-radius: 6666px;
}

.message {
  padding: 0 0 2rem 0;
}
.message:first-of-type {
  padding-top: 2rem;
}
.message .wrp_video {
  margin-right: auto;
  margin-left: auto;
  width: 94%;
  margin-right: auto;
  margin-left: auto;
  width: 94%;
  max-width: 308px;
  background: var(--light-pink);
  overflow: hidden;
  border-radius: 1px;
}
.message .wrp_video video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.01);
  transform-origin: center center;
}
.message .flame {
  padding: 1rem 0;
  margin: 50px 0;
  background-image: url(../images/frame_side_purple.svg);
  background-repeat: repeat;
  position: relative;
}
.message .flame div p {
  width: 90%;
  max-width: 260px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}
.message .flame::before, .message .flame::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 29px;
  left: 0;
  right: 0;
  max-width: 390px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center 0;
  background-image: url(../images/frame_top_purple.svg);
}
.message .flame::before {
  top: -28px;
}
.message .flame::after {
  bottom: -28px;
  transform: rotate(180deg);
}
.message .flame .m_bat01 {
  position: absolute;
  width: 147px;
  height: 82px;
  top: 8%;
  right: auto;
  bottom: auto;
  left: -40px;
  background-image: var(--bat-img, url("../images/bat_03.svg"));
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  animation-name: batFloat;
  animation-duration: 2.4s;
  animation-delay: 0.7s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  display: block;
  rotate: 0deg;
}
.message .flame .m_bat01[data-special=true] {
  --bat-img: url('../images/bat_03_p.svg');
}
.message .flame .m_bat02 {
  position: absolute;
  width: 133px;
  height: 84px;
  top: 40%;
  right: -10%;
  bottom: auto;
  left: auto;
  background-image: var(--bat-img, url("../images/bat_01.svg"));
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  animation-name: batFloat;
  animation-duration: 1.4s;
  animation-delay: 0.4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  display: block;
  rotate: 0deg;
}
.message .flame .m_bat02[data-special=true] {
  --bat-img: url('../images/bat_01_p.svg');
}
.message .flame .title_flash {
  margin-bottom: 0;
  margin-top: 1.5rem;
}
.message p {
  color: var(--deep-blue);
}
.message p.strong {
  text-align: center;
  font-weight: 600;
  font-size: 1.375rem;
  margin-bottom: 3rem;
}
.message img {
  margin-right: auto;
  margin-left: auto;
}
.message .message_name {
  text-align: center;
  font-size: 1.5rem;
  margin: 1.25rem 0;
  font-weight: 600;
}
.message .message_name span {
  font-size: 1rem;
}

.song {
  text-align: center;
  position: relative;
}
.song .song_title {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.song .info {
  margin-bottom: 2rem;
}
.song .lyric {
  line-height: 2.25;
}
.song .lyric img {
  margin-right: auto;
  margin-left: auto;
  width: 24px;
  height: 24px;
  margin-bottom: 1.25rem;
}
.song .s_bat01 {
  position: absolute;
  width: 75px;
  height: 50px;
  top: 5%;
  right: auto;
  bottom: auto;
  left: -10%;
  background-image: var(--bat-img, url("../images/bat_01.svg"));
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  animation-name: batFloat;
  animation-duration: 2.4s;
  animation-delay: 0.7s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  display: block;
  rotate: 0deg;
  scale: -1 1;
}
.song .s_bat01[data-special=true] {
  --bat-img: url('../images/bat_01_p.svg');
}
.song .s_bat02 {
  position: absolute;
  width: 133px;
  height: 84px;
  top: 40%;
  right: -27%;
  bottom: auto;
  left: auto;
  background-image: var(--bat-img, url("../images/bat_03.svg"));
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  animation-name: batFloat;
  animation-duration: 1.4s;
  animation-delay: 0.4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  display: block;
  rotate: -60deg;
}
.song .s_bat02[data-special=true] {
  --bat-img: url('../images/bat_03_p.svg');
}
.song .s_bat03 {
  position: absolute;
  width: 126px;
  height: 64px;
  top: auto;
  right: auto;
  bottom: 10%;
  left: -20%;
  background-image: var(--bat-img, url("../images/bat_02.svg"));
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  animation-name: batFloat;
  animation-duration: 1.4s;
  animation-delay: 0.4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  display: block;
  rotate: 0deg;
}
.song .s_bat03[data-special=true] {
  --bat-img: url('../images/bat_02_p.svg');
}

#voices .lead {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
#voices #slider_voices {
  padding-top: 1.5rem;
}
@media (max-width: 500px) {
  #voices #slider_voices ul {
    margin-right: auto;
    margin-left: auto;
  }
}
#voices #slider_voices li {
  width: 250px;
  margin: 0 1.25rem;
}
#voices #slider_voices li.num01 .inner {
  --student-color:#55AAFF;
  background-color: var(--student-color);
}
#voices #slider_voices li.num01 .inner::before, #voices #slider_voices li.num01 .inner::after {
  background-color: var(--student-color);
}
#voices #slider_voices li.num02 .inner {
  --student-color:#FF7D7D;
  background-color: var(--student-color);
}
#voices #slider_voices li.num02 .inner::before, #voices #slider_voices li.num02 .inner::after {
  background-color: var(--student-color);
}
#voices #slider_voices li.num03 .inner {
  --student-color:#64B92D;
  background-color: var(--student-color);
}
#voices #slider_voices li.num03 .inner::before, #voices #slider_voices li.num03 .inner::after {
  background-color: var(--student-color);
}
#voices #slider_voices li.num04 .inner {
  --student-color:#FFFF00;
  background-color: var(--student-color);
}
#voices #slider_voices li.num04 .inner::before, #voices #slider_voices li.num04 .inner::after {
  background-color: var(--student-color);
}
#voices #slider_voices li.num05 .inner {
  --student-color:#96A5B4;
  background-color: var(--student-color);
}
#voices #slider_voices li.num05 .inner::before, #voices #slider_voices li.num05 .inner::after {
  background-color: var(--student-color);
}
#voices #slider_voices li.num06 .inner {
  --student-color:#C891FF;
  background-color: var(--student-color);
}
#voices #slider_voices li.num06 .inner::before, #voices #slider_voices li.num06 .inner::after {
  background-color: var(--student-color);
}
#voices #slider_voices li .inner {
  display: block;
  margin-right: auto;
  margin-left: auto;
  height: 570px;
  width: 100%;
  position: relative;
  background-image: url(../../home/images/voices_bg.png);
  background-size: 100% 100%;
  -webkit-mask-image: url(../../home/images/voices_for_mask.png);
          mask-image: url(../../home/images/voices_for_mask.png);
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}
#voices #slider_voices li .inner[data-special=true] {
  background-image: url(../../home/images/voices_bg_p.png);
}
#voices #slider_voices li .inner .info {
  padding-top: 2rem;
  max-width: 80%;
  margin-right: auto;
  margin-left: auto;
}
#voices #slider_voices li .inner .info .class {
  font-size: 0.75rem;
  font-weight: 600;
}
#voices #slider_voices li .inner .info .name {
  text-align: left;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.25;
  margin: 0.5em 0;
}
#voices #slider_voices li .inner .info .name span {
  display: inline-block;
  font-size: 1rem;
}
#voices #slider_voices li .inner .info .comment {
  font-size: 0.875rem;
}
#voices #slider_voices li .inner .photo {
  max-height: 260px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
  width: calc(100% - 3rem);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
#voices #slider_voices li .inner .italic {
  font-style: italic;
  color: var(--student-color);
  opacity: 0.35;
  position: absolute;
  writing-mode: vertical-rl;
  left: 0;
  bottom: 40px;
  font-size: 2.25rem;
  text-wrap: nowrap;
  font-family: var(--font-head);
}

#faculty {
  padding: 5rem 0;
  overflow: hidden;
}
#faculty .list_faculty {
  display: flex;
  flex-direction: column;
  gap: 7rem;
}
#faculty .list_faculty li {
  padding-bottom: 1rem;
  position: relative;
  z-index: 0;
  margin-bottom: 1rem;
}
#faculty .list_faculty li .photo {
  margin-right: auto;
  margin-left: auto;
}
#faculty .list_faculty li .class {
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
#faculty .list_faculty li .name {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
#faculty .list_faculty li .name span {
  display: block;
  font-size: 1rem;
}
#faculty .list_faculty li::after, #faculty .list_faculty li::before {
  margin-top: 50px;
  position: absolute;
  display: block;
  content: "";
  width: 605px;
  height: 605px;
  aspect-ratio: 1/1;
  border-radius: 6666px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
}
#faculty .list_faculty li.num01::before {
  background: linear-gradient(180deg, rgb(50, 15, 154) 0%, rgb(105, 50, 245) 100%);
}
#faculty .list_faculty li.num01::after {
  background-image: url(../../home/images/faculty_frame_01.svg);
}
#faculty .list_faculty li.num02::before {
  background: linear-gradient(180deg, rgb(50, 15, 154) 0%, rgb(20, 160, 120) 100%);
}
#faculty .list_faculty li.num02::after {
  background-image: url(../../home/images/faculty_frame_02.svg);
}
#faculty .list_faculty li.num03::before {
  background: linear-gradient(180deg, rgb(50, 15, 154) 0%, rgb(195, 30, 50) 100%);
}
#faculty .list_faculty li.num03::after {
  background-image: url(../../home/images/faculty_frame_03.svg);
}
#faculty .list_faculty li::before {
  z-index: -2;
}
#faculty .list_faculty li::after {
  opacity: 0.5;
  z-index: -1;
  background-image: url(../../home/images/faculty_flame.svg);
  background-size: 95% 95%;
  background-position: center center;
  animation: rotateFrame 30s linear infinite;
}
@keyframes rotateFrame {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
#faculty .outline {
  text-transform: uppercase;
  margin-top: 7rem;
  background: none;
  border: 1px solid var(--white);
  width: 260px;
  position: relative;
  padding: 1rem;
}
#faculty .outline::after {
  position: absolute;
  width: 45px;
  height: 10px;
  content: "";
  display: block;
  background-image: url(../images/btn_arr.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  right: 1.5rem;
  top: calc(50% - 5px);
}

#event #slider_event,
#event #slider_campus,
#campus #slider_event,
#campus #slider_campus {
  position: relative;
}
#event #slider_event li,
#event #slider_campus li,
#campus #slider_event li,
#campus #slider_campus li {
  margin: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 2rem;
}
#event #slider_event li .title_flash,
#event #slider_campus li .title_flash,
#campus #slider_event li .title_flash,
#campus #slider_campus li .title_flash {
  margin-top: 1.25rem;
}
#event #slider_event li p,
#event #slider_campus li p,
#campus #slider_event li p,
#campus #slider_campus li p {
  padding: 0 10px;
}
#event #slider_event::before,
#event #slider_campus::before,
#campus #slider_event::before,
#campus #slider_campus::before {
  width: 100%;
  height: calc(100% - 5rem);
  background-color: var(--deep-blue);
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  border-radius: 30px;
}

.bg_day {
  background: var(--blue);
  padding-top: 5rem;
  overflow-x: hidden;
}
.bg_day[data-special=true] {
  background: var(--deep-purple);
}

#day {
  position: relative;
  padding: 3rem 0 2rem;
  background: var(--light-pink);
  border-top-left-radius: 6666px;
  border-top-right-radius: 6666px;
  color: var(--deep-blue);
}
#day .wrp > p {
  padding-bottom: 2rem;
  text-align: center;
}
#day .wrp_schedule.num01 {
  --sch-color: #374BBE;
  background-image: url(../../home/images/day_img01.png), url(../../home/images/day_frame_side_01.svg);
}
#day .wrp_schedule.num01::before, #day .wrp_schedule.num01::after {
  background-image: url(../../home/images/day_frame_top_01.svg);
}
#day .wrp_schedule.num02 {
  --sch-color: #B91E6E;
  background-image: url(../../home/images/day_img02.png), url(../../home/images/day_frame_side_02.svg);
}
#day .wrp_schedule.num02::before, #day .wrp_schedule.num02::after {
  background-image: url(../../home/images/day_frame_top_02.svg);
}
#day .wrp_schedule {
  position: relative;
  color: var(--white);
  margin-top: 2rem;
  margin-bottom: 6rem;
  padding: 0 2rem;
  position: relative;
  background-repeat: no-repeat, repeat-y;
  background-position: right top, center top;
  background-size: auto 136px, 100%;
}
#day .wrp_schedule::before, #day .wrp_schedule::after {
  width: 100%;
  height: 29px;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  background-size: 100%;
}
#day .wrp_schedule::before {
  top: -28px;
}
#day .wrp_schedule::after {
  bottom: -28px;
  rotate: 180deg;
}
#day .wrp_schedule .grade {
  border: 1px solid var(--white);
  border-radius: 6666px;
  font-size: 0.75rem;
  display: inline-block;
  padding: 0 1em;
}
#day .wrp_schedule .name {
  text-align: left;
  font-size: 1.5rem;
  line-height: 1.25;
  margin: 0.75rem 0 2.5rem;
}
#day .wrp_schedule .name span {
  font-size: 1rem;
}
#day .wrp_schedule label.btn_open {
  display: block;
  top: -29px;
  left: 0;
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: calc(100% + 29px + 29px);
}
#day .wrp_schedule label.btn_open::before {
  border: 1px solid var(--white);
  border-radius: 6666px;
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  content: "";
  left: 34px;
  top: 135px;
}
#day .wrp_schedule label.btn_open::after {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  content: "";
  background-image: url(../images/arr.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 7px 12px;
  transform: rotate(90deg);
  transition: 0.2s;
  left: 34px;
  top: 135px;
}
#day .wrp_schedule input {
  position: absolute;
  width: 0;
  height: 0;
}
#day .wrp_schedule:has(input:checked) .content_sch {
  height: auto;
  max-height: 6666px;
}
#day .wrp_schedule:has(input:checked) label.btn_open::after {
  transform: rotate(-90deg);
}
#day .wrp_schedule .content_sch {
  max-height: 0;
  transition: 0.3s;
  overflow: hidden;
}
#day .wrp_schedule .content_sch .timeline {
  margin: 2rem 0 1rem;
}
#day .wrp_schedule .content_sch .timeline tr th {
  width: 50px;
  vertical-align: top;
  margin-top: 5px;
  position: relative;
  z-index: 0;
}
#day .wrp_schedule .content_sch .timeline tr th p {
  background: var(--white);
  color: var(--sch-color);
  border-radius: 6666px;
  height: 21px;
}
#day .wrp_schedule .content_sch .timeline tr th p img {
  margin: 0 auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#day .wrp_schedule .content_sch .timeline tr th::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  content: "";
  display: block;
  background-color: var(--white);
  z-index: -1;
}
#day .wrp_schedule .content_sch .timeline tr:last-of-type th::after {
  content: none;
}
#day .wrp_schedule .content_sch .timeline tr td {
  padding-left: 10px;
  padding-bottom: 1.25rem;
}
#day .wrp_schedule .content_sch .timeline tr td h4 {
  line-height: 1.25;
  text-align: left;
  font-size: 1.25rem;
  margin-bottom: 0.5em;
}
#day .wrp_schedule .content_sch .timeline tr td p {
  text-align: left;
  font-size: 0.875rem;
}
#day .wrp_schedule .content_sch .timeline tr td img {
  margin-top: 0.75rem;
}
#day .wrp_schedule .content_sch .btn_close {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  border-radius: 6666px;
  text-transform: uppercase;
  font-size: 0.75rem;
  border: 1px solid var(--white);
  font-family: var(--font-head);
  padding: 1em 2rem;
  margin: 0 auto 2.5rem;
}
#day .d_bat01 {
  position: absolute;
  width: 126px;
  height: 68px;
  top: 50px;
  right: auto;
  bottom: auto;
  left: -10%;
  background-image: var(--bat-img, url("../images/bat_02.svg"));
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  animation-name: batFloat;
  animation-duration: 2.4s;
  animation-delay: 0.7s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  display: block;
  rotate: 0deg;
}
#day .d_bat01[data-special=true] {
  --bat-img: url('../images/bat_01_p.svg');
}
#day .d_bat02 {
  position: absolute;
  width: 74px;
  height: 47px;
  top: 220px;
  right: auto;
  bottom: auto;
  left: -2%;
  background-image: var(--bat-img, url("../images/bat_01.svg"));
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  animation-name: batFloat;
  animation-duration: 1.4s;
  animation-delay: 0.4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  display: block;
  rotate: 0deg;
  scale: -1 1;
}
#day .d_bat02[data-special=true] {
  --bat-img: url('../images/bat_02_p.svg');
}
#day .d_bat03 {
  position: absolute;
  width: 126px;
  height: 64px;
  top: 100px;
  right: -10%;
  bottom: auto;
  left: auto;
  background-image: var(--bat-img, url("../images/bat_03.svg"));
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  animation-name: batFloat;
  animation-duration: 1.4s;
  animation-delay: 0.4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  display: block;
  rotate: -60deg;
}
#day .d_bat03[data-special=true] {
  --bat-img: url('../images/bat_03_p.svg');
}

.bg_reset {
  background: var(--deep-grd-re);
  overflow-x: hidden;
}

#campus {
  padding: 5rem 0;
}
#campus .wrp > p {
  text-align: center;
  margin-bottom: 2rem;
}
#campus #slider_campus_nav .slick-slide {
  margin: 0 0.5rem;
}
#campus .bg_box {
  position: relative;
  padding-bottom: 2rem;
}
#campus .bg_box::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: calc(100% - 50px);
  bottom: 0;
  left: 0;
  background-position: center bottom;
  background-color: var(--deep-blue);
  border-radius: 30px;
}

#club {
  padding-bottom: 5rem;
  position: relative;
}
#club .wrp > p {
  text-align: center;
}
#club .list_pickup {
  margin: 2rem 0;
}
#club .list_pickup li {
  margin-bottom: 2rem;
}
#club .list_pickup li h3 {
  margin-top: 1.25rem;
}
#club .wrp_club {
  border: 1px solid var(--white);
  border-radius: 1rem;
  padding: 1.25rem;
}
#club .wrp_club h3 {
  font-size: 1.5rem;
}
#club .wrp_club .list_club {
  margin: 1.25rem 0 0.5rem;
  display: flex;
}
#club .wrp_club .list_club ul {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
#club .wrp_club .list_club ul li {
  line-height: 1;
  vertical-align: middle;
}
#club .wrp_club .list_club ul li::before {
  content: url(../images/flash_02.svg);
  display: inline-block;
  margin-right: 0.5em;
}
#club .wrp_club .list_club[data-special=true] li::before {
  content: url(../images/flash_02_p.svg);
}
#club .wrp_club > p {
  font-family: var(--font-head);
  font-size: 1.25rem;
  text-align: center;
}
#club .c_bat01 {
  position: absolute;
  width: 85px;
  height: 55px;
  top: 150px;
  right: auto;
  bottom: auto;
  left: -2%;
  background-image: var(--bat-img, url("../images/bat_03.svg"));
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  animation-name: batFloat;
  animation-duration: 2.4s;
  animation-delay: 0.7s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  display: block;
  rotate: 0deg;
}
#club .c_bat01[data-special=true] {
  --bat-img: url('../images/bat_03_p.svg');
}
#club .c_bat02 {
  position: absolute;
  width: 103px;
  height: 55px;
  top: 0px;
  right: -2%;
  bottom: auto;
  left: auto;
  background-image: var(--bat-img, url("../images/bat_02.svg"));
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  animation-name: batFloat;
  animation-duration: 1.4s;
  animation-delay: 0.4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  display: block;
  rotate: -30deg;
}
#club .c_bat02[data-special=true] {
  --bat-img: url('../images/bat_02_p.svg');
}

#special {
  background-color: var(--light-pink);
  padding: 3rem 0 5rem;
  border-radius: 6666px 6666px 0 0;
  color: var(--deep-blue);
}
#special .challenge {
  margin-top: 1.25rem;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  margin-bottom: 1.5rem;
}
#special .challenge::after {
  content: "";
  width: 32px;
  height: 10px;
  background-image: url(../images/btn_arr.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  background-position: center center;
  right: 1.5rem;
  top: calc(50% - 5px);
}
#special .sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem;
}
#special .bnr figure {
  margin-bottom: 1.25rem;
}

#footer[data-special=true] {
  background: #C81E69;
}

#dark_nearly {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 50%, rgb(0, 0, 0) 100%);
  width: 100%;
  height: 200vh;
  position: fixed;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  z-index: 2;
  pointer-events: none;
}/*# sourceMappingURL=layout.css.map */