@charset "UTF-8";
:root {
  --color-purple: #623FAE;
  --color-yellow: #EDF341;
  --color-black: #252525;
  --color-offwhite: #F8F8F8;
  --font-jp: "IBM Plex Sans JP", sans-serif;
  --font-en: "Lexend Deca", sans-serif;
  --font-en2: "Iceland", sans-serif;
  --leading-trim: calc((1em - 1lh) / 2);
}

@media screen and (max-width: 1024px) {
  .l-header-wrap{
    background-color: #fff;
  }
}

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

@media screen and (min-width: 769px) {
  body.page-template-page-gakubuinfoenginee_2026v2 .side-fixed-bnr {
    right: -5vw;
    transition: right 0.5s ease;
  }

  body.page-template-page-gakubuinfoenginee_2026v2 .side-fixed-bnr.is-visible {
    right: 0;
  }
}

main {
  padding-top: 60px;
  overflow-x: clip;
  overflow-y: visible;
}

@media screen and (min-width: 1024px) {
  main {
    padding-top: 75px;
  }
}

@media screen and (min-width: 1281px) {
  main {
    padding-top: 139px;
  }
}

#pageMain {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: 16px;
}

.main_container {
  position: relative;
}

#pageMain .sp{
  display: none;
}

@media screen and (max-width: 768px) {
  #pageMain {
    font-size: 13px;
  }

  #pageMain .sp{
    display: block;
  }
  #pageMain br.sp{
    display: initial;
  }
  #pageMain .pc{
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .-sp {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none;
  }
}

.-tb- {
  display: none;
}

@media screen and (min-width: 769px) {
  .-tb- {
    display: block;
  }
}

@media screen and (min-width: 1025px) {
  .-tb- {
    display: none;
  }
}

.tb-pc {
  display: none;
}

@media screen and (min-width: 769px) {
  .tb-pc {
    display: block;
  }
}

.pc- {
  display: none;
}

@media screen and (min-width: 1025px) {
  .pc- {
    display: block;
  }
}

.c-btn {
  position: relative;
  width: fit-content;
  min-width: 250px;
  height: fit-content;
  min-height: 50px;
  border: 1px solid #FFF;
  background-color: transparent;
  display: flex;
  align-items: center;
  padding: 10px 55px 10px 20px;
}

@media screen and (min-width: 769px) {
  .c-btn {
    min-width: 360px;
    min-height: 82px;
    padding: 10px 90px 10px 30px;
  }
}

.c-btn p {
  color: #FFF;
}

.c-btn__arrow {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8px;
  margin-block: auto;

  &::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--color-yellow);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: transform 0.3s ease;
  }
}

@media screen and (min-width: 769px) {
  .c-btn__arrow {
    width: 50px;
    height: 50px;
    right: 16px;
  }
}

.c-btn__arrow span {
  display: block;
  aspect-ratio: 50 / 12;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;

  &::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    /* Safari / iOS Chrome は -webkit-mask が必要。SVG は URL エンコードする */
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 12'%3E%3Cpolygon points='21 7.999939 17 3.9998779 17 7.0001068 2 7.0001068 2 0 0 0 0 9.0001373 17 9.0001373 17 12 21 7.999939'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 12'%3E%3Cpolygon points='21 7.999939 17 3.9998779 17 7.0001068 2 7.0001068 2 0 0 0 0 9.0001373 17 9.0001373 17 12 21 7.999939'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
  }

  &::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    transform-origin: bottom right;
    transform: scale(1, 1);
    opacity: 0;
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 1025px) {
  .c-btn:hover {
    .c-btn__arrow::before {
      background-color: #FFF;
      transform: scale(1.1);
    }

    .c-btn__arrow span {
      &::after {
        opacity: 1;
        animation: arrow-scale 0.6s ease forwards;
      }
    }
  }
}

@keyframes arrow-scale {
  0% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(0.6, 0.8);
  }
  100% {
    transform: scale(0, 0);
  }
}

.c-btn.--b {
  border: 1px solid var(--color-black);
}

.c-btn.--b p {
  color: var(--color-black);
}

/* 後のセクションほど手前に重なる */
.sec-bg-trigger {
  position: relative;
  z-index: var(--sec-z, 1);
  overflow: visible;
}

/* アクティブセクションは fixed 層・NEWS より手前に */
.sec-bg-trigger.is-in {
  z-index: calc(var(--sec-z, 1) + 10);
}

/* 次のセクション進入時：見た目の位置を保ったまま固定して下敷きにする */
.sec-bg-trigger.is-fixed {
  position: fixed;
  z-index: var(--sec-z, 1);
  pointer-events: none;
  /* top / left / width / height は JS でスクロール位置を維持して指定 */
}

/* セクション本体は負の top でずれても、背景は画面全体を覆ったまま */
.sec-bg-trigger.is-fixed .sec-bg {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100vh;
  margin-bottom: 0;
  z-index: 0;
  /* top は JS で -rect.top を指定し、画面上辺に合わせる */
}

.sec-bg-trigger.is-fixed .sec-inner {
  position: relative;
  z-index: 1;
}

.sec-bg-spacer {
  width: 100%;
  pointer-events: none;
  visibility: hidden;
}

.sec-bg {
  position: sticky;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100vh;
  margin-bottom: -100vh;
  pointer-events: none;
}

.sec-bg__list {
  width: 100%;
  height: 100%;
  display: flex;
}

.sec-bg__item {
  width: calc(25vw + 2px);
  height: 100%;
  margin-left: -1px;
  transform: scaleY(0);
  transform-origin: center bottom;
  transition: transform 0.7s cubic-bezier(0.22, 1.4, 0.36, 1);

  &:nth-child(2) {
    transition-delay: 0.1s;
  }

  &:nth-child(3) {
    transition-delay: 0.2s;
  }

  &:nth-child(4) {
    transition-delay: 0.3s;
  }
}

.sec-bg-trigger.is-in .sec-bg__item,
.sec-bg-trigger.is-fixed .sec-bg__item {
  transform: scaleY(1);
}

.sec-bg.--w .sec-bg__item {
  background-color: #fff;
}

.sec-bg.--p .sec-bg__item {
  background-color: var(--color-purple);
}

.sec-bg.--ow .sec-bg__item {
  background-color: var(--color-offwhite);
}

.sec-inner {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s 0.55s ease-out, transform 0.5s 0.55s ease-out;
}

.sec-bg-trigger.is-in .sec-inner,
.sec-bg-trigger.is-fixed .sec-inner {
  opacity: 1;
  transform: translateY(0);
}

/* NEWS以降は固定レイヤーを解除し通常スクロール */
.main_container.is-scroll-released .sec-bg-trigger {
  z-index: auto;
}

.main_container.is-scroll-released .sec-bg__item {
  transform: scaleY(1);
}

.main_container.is-scroll-released .sec-inner {
  opacity: 1;
  transform: none;
}

.sec-bgline {
  width: 90%;
  max-width: 1240px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);

  &::before,
  &::after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.15);
    position: absolute;
    top: 0;
    transform: translateX(-50%);
  }

  &::before {
    left: calc((100% / 3) * 1);
  }

  &::after {
    left: calc((100% / 3) * 2);
  }
}

.sec-title {
  position: relative;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  padding-left: 18px;
  margin: 0 0 40px 20px;

  &::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: var(--color-yellow);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin-block: auto;
  }

  &.--w {
    color: #fff;
  }
}

@media screen and (min-width: 769px) {
  .sec-title {
    font-size: 16px;
    padding-left: 28px;
    margin: 0 0 98px 60px;

    &::before {
      width: 12px;
      height: 12px;
    }
  }
}

.sec-copy {
  font-size: 22px;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 769px) {
  .sec-copy {
    font-size: 30px;
  }
}

@media screen and (min-width: 1025px) {
  .sec-copy {
    font-size: 44px;
  }
}

.l-footer{
  position: relative;
  z-index: 1;
}

/* モーダル */
.modal_layer {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  position: fixed;
  width: 100%;
  height: 100svh;
  z-index: 10000;
  top: 0;
  left: 0;
}

.modal_layer.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
}

.modal-content.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* 中身が active でないコンテナは隠す（白背景で他モーダルを潰さない） */
.modal_container_course:not(:has(.modal-content.active)),
.modal_container_mentor:not(:has(.modal-content.active)),
.modal_container_interview:not(:has(.modal-content.active)) {
  display: none;
  visibility: hidden;
  pointer-events: none;
}

.modal_bg {
  background: rgba(219, 219, 219, 0.6);
  backdrop-filter: blur(25px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.close_btn {
  position: absolute;
  /* top: calc((100vh - 530px) / 2); */
  top: 10svh;
  /* right: calc((100vw - 337px) / 2); */
  right: 5%;
  transform: translate(0, -120%) rotate(45deg);
  z-index: 15;
  aspect-ratio: 1 / 1;
  width: min(8vw, 50px);
  height: auto;
}

@media screen and (min-width: 769px) {
  .close_btn {
    top: max(calc((100vh - 640px) / 2), 10svh);
    right: max(((100vw - 1100px) / 2), 5%);
    transform: translate(0, -150%) rotate(45deg);
  }
}

@media screen and (min-width: 1025px) {
  .close_btn {
    top: calc((100vh - 640px) / 2);
    right: calc((100vw - 1100px) / 2);
    transform: translate(110%, 0) rotate(45deg);
  }
}

.close_btn::before,
.close_btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #FFF;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.close_btn::after {
  transform: rotate(90deg);
}

.modal_layer.is-mentor .close_btn {
  top: 60px;
  right: 20px;
}

@media screen and (min-width: 769px) {
  .modal_layer.is-mentor .close_btn {
    top: 24px;
    right: 24px;
  }
}

.modal_layer.is-mentor .close_btn::before,
.modal_layer.is-mentor .close_btn::after {
  background-color: #111;
}

@media screen and (min-width: 769px) {
  .modal_layer.is-mentor .close_btn {
    top: 3vw;
    right: 6vw;
  }
}

.mainv {
  position: relative;
  aspect-ratio: 375 / 667;
  width: 100vw;
  height: fit-content;

  &::after {
    content: "";
    display: block;
    aspect-ratio: 425 / 170;
    width: calc(((85 / 1440) * 100vw) * 5);
    height: fit-content;
    background: url('../img/academics/gakubuinfoenginee/2607/mainv_deco.svg') no-repeat center center / contain;
    position: absolute;
    bottom: calc(((85 / 1440) * 100vw) * -2);
    left: calc((85 / 1440) * 100vw);
  }
}

@media screen and (min-width: 769px) {
  .mainv {
    aspect-ratio: 1440 / 705;
  }
}

.mainv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec-intro {
  padding: 60px 0 120px;
}

@media screen and (min-width: 769px) {
  .sec-intro {
    padding: min(calc((85 / 1440) * 100vw * 2), 170px) 0 240px;
  }
}

.sec-intro__inner {
  padding: 0 20px;
  margin: 0 auto;
  display: grid;
  gap: 50px 0;
}

@media screen and (min-width: 769px) {
  .sec-intro__inner {
    max-width: 1354px;
    padding: 0 50px;
    grid-template-columns: 1fr min(calc((580 / 1440) * 100vw), 580px);
    gap: 0 5.6%;
  }
}

.intro_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px 0;
}

@media screen and (min-width: 769px) {
  .intro_box {
    gap: 66px 0;
  }
}

.sec-intro .sec-copy span {
  background: linear-gradient(180deg, #EDF341 0%, #252525 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.intro_txt {
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .intro_txt {
    width: 88%;
  }
}

.intro_img {
  position: relative;
  width: 70%;
  height: fit-content;
  margin-inline: auto;

  &::before {
    content: "";
    display: block;
    aspect-ratio: 1 / 1;
    width: 175px;
    height: fit-content;
    background: url('../img/academics/gakubuinfoenginee/2607/intro_deco_top.webp') no-repeat center center / cover;
    position: absolute;
    top: -70px;
    right: -35px;
  }

  &::after {
    content: "";
    display: block;
    aspect-ratio: 1 / 1;
    width: 105px;
    height: fit-content;
    background: url('../img/academics/gakubuinfoenginee/2607/intro_deco_bottom.webp') no-repeat center center / cover;
    position: absolute;
    bottom: -70px;
    left: -35px;
  }
}

@media screen and (min-width: 769px) {
  .intro_img {
    width: 100%;

    &::before {
      width: min(calc(((85 / 1440) * 100vw) * 5), 425px);
      /* max-width: 425px; */
      top: calc(((85 / 1440) * 100vw) * -2);
      right: calc(((85 / 1440) * 100vw) * -1);
    }

    &::after {
      width: min(calc(((85 / 1440) * 100vw) * 3), 255px);
      /* max-width: 255px; */
      bottom: calc(((85 / 1440) * 100vw) * -2);
      left: calc(((85 / 1440) * 100vw) * -1);
    }
  }
}

@media screen and (min-width: 1441px) {
  .intro_img {
    width: 100%;

    &::before {
      /* width: calc((425 / 1440) * 100vw); */
      /* max-width: 425px; */
      top: -170px;
      right: -85px;
    }

    &::after {
      /* width: calc((255 / 1440) * 100vw); */
      /* max-width: 255px; */
      bottom: -170px;
      left: -85px;
    }
  }
}

.sec-topic {}

.sec-topic__inner {
  position: relative;
  z-index: 1;
  padding: 250px 0 140px;
  overflow: hidden;
}

.sec-topic .c-btn {
  margin: 20px auto 0;
}

.topic_bg {
  display: flex;
  align-items: center;
  gap: 0 1rem;
  position: absolute;
  top: 40%;
  animation: bg-txt-slide 100s linear infinite;
}

@media screen and (min-width: 769px) {
  .topic_bg {
    gap: 0 5rem;
    top: 37%;
  }
}

@keyframes bg-txt-slide {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translate(calc(-100% - 1rem));
  }
}

@media screen and (min-width: 769px) {
  @keyframes bg-txt-slide {
    0% {
      transform: translate(0);
    }
    100% {
      transform: translate(calc(-100% - 5rem));
    }
  }
}

.topic_bg p {
  display: block;
  font-family: var(--font-en2);
  font-size: 100px;
  line-height: 1;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgb(255, 255, 255);
}

@media screen and (min-width: 769px) {
  .topic_bg p {
    font-size: 300px;
  }
}

.topic_head {
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .topic_head {
    max-width: 1340px;
    padding: 0 50px;
  }
}
.sec-topic .sec-copy {
  color: #fff;
}

.sec-topic .sec-copy span {
  background: linear-gradient(90deg, #EDF341 0%, #FFFFFF 79.33%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.topic_slide_wrap {
  position: relative;
  width: 100vw;
  margin-top: 60px;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .topic_slide_wrap {
    margin-top: 75px;
  }
}

.topic_slide_empty {
  margin: 0;
  padding: 110px 20px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
}

.topic_slide.swiper {
  overflow: hidden;
  width: 100%;
  padding-bottom: 20px;
}

.topic_slide.swiper .swiper-slide {
  flex-shrink: 0;
  height: auto;
}

.topic_slide.swiper .swiper-slide .topic_slide_item {
  transform-origin: center center;
  transition: transform 0.6s ease;
}

.topic_slide.swiper .swiper-slide-prev .topic_slide_item {
  transform: scale(0.776) rotate(-4.5deg) translateY(70px);
}

.topic_slide.swiper .swiper-slide-next .topic_slide_item {
  transform: scale(0.776) rotate(4.5deg) translateY(70px);
}

.topic_slide.swiper .swiper-slide-active .topic_slide_item {
  transform: scale(1);
}

.topic_slide_item {
  display: block;
  width: 100%;
  border-radius: 20px;
  background-color: #fff;
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .topic_slide_item {}
}

.topic_slide_img {
  margin: 0;
  aspect-ratio: 560 / 350;
  overflow: hidden;
}

.topic_slide_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topic_slide_box {
  min-width: 0;
  padding: 20px 20px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 10px;
}

@media screen and (min-width: 769px) {
  .topic_slide_box {
    padding: 40px 30px 45px;
    gap: 10px 15px;
  }
}

.topic_slide_date {
  font-family: var(--font-en);
  font-size: 11px;
  color: #cfcfcf;
  line-height: 1;
}

@media screen and (min-width: 769px) {
  .topic_slide_date {
    font-size: 15px;
  }
}

.topic_slide_cate {
  display: flex;
  align-items: center;
  gap: 0 10px;
}

.topic_slide_cate span {
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  background-color: var(--color-yellow);
  padding: 7px 10px 5px;
  border-radius: 9999px;
}

@media screen and (min-width: 769px) {
  .topic_slide_cate span {
    font-size: 14px;
  }
}

.topic_slide_ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  width: 100%;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

@media screen and (min-width: 769px) {
  .topic_slide_ttl {
    -webkit-line-clamp: 1;
  }
}

.topic_slide_nav {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: calc((280 / 375) * 100%);
  transform: translate(-50%, -110%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

@media screen and (min-width: 769px) {
  .topic_slide_nav {
    width: calc((680 / 1440) * 100%);
    transform: translate(-50%, -85%);
  }
}

.topic_slide_btn {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  margin: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  pointer-events: auto;
  transition: all 0.3s ease;
}

@media screen and (min-width: 769px) {
  .topic_slide_btn {
    width: 80px;
    height: 80px;
  }
}

.topic_slide_btn::after {
  content: "";
  display: block;
  aspect-ratio: 1 / 1;
  width: calc((17 / 80) * 100%);
  height: auto;
  color: transparent;
  border-top: 1px solid var(--color-black);
  border-right: 1px solid var(--color-black);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 50%;
}

.topic_slide_btn.swiper-button-prev::after {
  transform: translate(-20%, -50%) rotate(-135deg);
}

.topic_slide_btn.swiper-button-next::after {
  transform: translate(-80%, -50%) rotate(45deg);
}

@media (hover: hover) and (pointer: fine) {
  .topic_slide_btn:hover {
    background-color: rgba(255, 255, 255, 0.7);
  }
}

.topic_slide_pagination {
  position: relative;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

@media screen and (min-width: 769px) {
  .topic_slide_pagination {
    gap: 20px;
  }
}

.topic_slide_pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.35);
  opacity: 1;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

@media screen and (min-width: 769px) {
  .topic_slide_pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

.topic_slide_pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}

.sec-curriculum {
  position: relative;
}

.curriculm_bg {
  overflow: hidden;

  &::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(75, 69, 89, 0.4);
    backdrop-filter: blur(15px);
    position: absolute;
    top: 0;
    left: 0;
  }
}

.curriculm_bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec-curriculum__inner {
  padding: 110px 0 150px;
}

.curriculum_head {
  padding: 0 20px;
  margin: 0 auto;
  display: grid;
  gap: 20px 0;
}

@media screen and (min-width: 769px) {
  .curriculum_head {
    max-width: 1340px;
    padding: 0 50px;
    grid-template-columns: 1fr 56%;
    gap: 0 6.2%;
  }
}

.sec-curriculum .sec-copy {
  color: #FFF;
}

.curriculum_head_txt {
  color: #FFF;
}

.curriculum_list {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  margin-top: 40px;
  gap: 50px 0;
}

@media screen and (min-width: 769px) {
  .curriculum_list {
    padding: 0 50px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 60px;
    gap: 0 0;
  }
}

.curriculum_item {
  padding: 0 36px;
  display: grid;
  gap: 20px 0;
}

@media screen and (min-width: 769px) {
  .curriculum_item {
    gap: 36px 0;

    &:nth-child(2) {
      margin-top: 50px;
    }

    &:nth-child(3) {
      margin-top: 100px;
    }
  }
}

.curriculum_item_img {
  aspect-ratio: 340 / 240;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.curriculum_item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.curriculum_item_ttl {
  font-size: 18px;
  font-weight: 600;
  color: #FFF;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .curriculum_item_ttl {
    font-size: 22px;
  }
}

.curriculum_item_taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 11px;
}

.curriculum_item_tagitem {
  position: relative;
  font-size: 12px;
  line-height: 1;
  color: #FFF;
  border-radius: 9999px;
  border: 1px solid #FFF;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 10px 13px 10px 35px;
  display: flex;
  align-items: center;
  width: fit-content;

  &::before {
    content: "#";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 9999px;
    background-color: var(--color-purple);
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 300;
    color: #FFF;
    line-height: 1;
    position: absolute;
    top: 0;
    bottom: 0;
    margin-block: auto;
    left: 8px;
  }
}

@media screen and (min-width: 769px) {
  .curriculum_item_tagitem {
    font-size: 15px;
    padding: 15px 20px 15px 50px;

    &::before {
      width: 24px;
      height: 24px;
      font-size: 14px;
      left: 16px;
    }
  }
}

.sec-course {}

.sec-course__inner {
  padding: 190px 0 55px;
}

.course_head {
  padding: 0 20px;
  margin: 0 auto;
  display: grid;
  gap: 20px 0;
}

@media screen and (min-width: 769px) {
  .course_head {
    max-width: 1340px;
    padding: 0 50px;
    gap: 55px 0;
  }
}

.sec-course .sec-copy {}

.sec-course .course_head_txt {
  margin-bottom: 75px;
}

.course_list {
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .course_list {
    max-width: 1420px;
    padding: 0 50px;
  }
}

.course_item {
  border-radius: 15px;
  padding: 40px 20px 50px 20px;
  display: grid;
  gap: 20px 0;
  position: sticky;
  top: var(--course-item-sticky-top, 18vw);
}

@media screen and (min-width: 769px) {
  .course_item {
    border-radius: 20px;
    padding: 60px 50px 60px 100px;
    display: grid;
    grid-template-columns: 1fr 42.5%;
    gap: 0 6.7%;
  }
}

.course_item:nth-child(odd) {
  background-color: var(--color-purple);
}

.course_item:nth-child(even) {
  background-color: var(--color-yellow);
}

.course_item_box {}

.course_item_num {
  display: block;
  font-family: var(--font-en2);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-block: calc((0.2em - 1lh) / 2);
}

@media screen and (min-width: 769px) {
  .course_item_num {
    font-size: 55px;
    margin-left: -60px;
  }
}

@media screen and (min-width: 1025px) {
  .course_item_num {
    font-size: 80px;
  }
}

.course_item:nth-child(odd) .course_item_num {
  color: var(--color-yellow);
}

.course_item:nth-child(even) .course_item_num {
  color: var(--color-purple);
}

.course_item_ttl {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 25px;
}

@media screen and (min-width: 769px) {
  .course_item_ttl {
    font-size: 28px;
    margin-top: 50px;
  }
}

@media screen and (min-width: 1025px) {
  .course_item_ttl {
    font-size: 38px;
    margin-top: 90px;
  }
}

.course_item:nth-child(odd) .course_item_ttl {
  color: #FFF;
}

.course_item:nth-child(even) .course_item_ttl {
  color: var(--color-black);
}

.course_item_copy {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0;
  font-weight: 700;
  margin-top: 10px;
}

@media screen and (min-width: 1025px) {
  .course_item_copy {
    font-size: 18px;
    line-height: 1.8;
  }
}

.course_item:nth-child(odd) .course_item_copy {
  color: var(--color-yellow);
}

.course_item:nth-child(even) .course_item_copy {
  color: var(--color-purple);
}

.course_item_txt {
  margin-top: 20px;
}

@media screen and (min-width: 1025px) {
  .course_item_txt {
    margin-top: 60px;
  }
}

.course_item:nth-child(odd) .course_item_txt {
  color: #FFF;
}

.course_item:nth-child(even) .course_item_txt {
  color: var(--color-black);
}

.course_item_img {
  position: relative;
  aspect-ratio: 496 / 500;
  width: 70%;
  height: auto;
  margin: 0 auto;

  &::before {
    content: "";
    display: block;
    aspect-ratio: 546 / 500;
    width: auto;
    height: calc(100% + 2px);
    position: absolute;
    top: -1px;
    left: -1px;
  }
}

@media screen and (min-width: 769px) {
  .course_item_img {
    width: 100%;
  }
}

.course_item:nth-child(odd) .course_item_img::before {
  background: url('../img/academics/gakubuinfoenginee/2607/course_img_deco_p.svg') no-repeat center center / cover;
}

.course_item:nth-child(even) .course_item_img::before {
  background: url('../img/academics/gakubuinfoenginee/2607/course_img_deco_y.svg') no-repeat center center / cover;
}

.course_item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course_detail {
  margin-top: 140px;
}

.course_detail_copy {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  background: radial-gradient(73.64% 771.08% at 73.64% 152.94%, rgba(237, 243, 65, 0.2) 5.29%, #623FAE 26.57%, rgba(237, 243, 65, 0.8) 68.75%, #623FAE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

@media screen and (min-width: 769px) {
  .course_detail_copy {
    font-size: 50px;
  }
}

@media screen and (min-width: 1025px) {
  .course_detail_copy {
    font-size: 66px;
  }
}

.course_detail_listwrap {
  padding: 227px 0;
  overflow: visible;
}

@media screen and (min-width: 769px) {
  .course_detail_listwrap {
    padding: 95px 0;
  }
}

.course_detail_inner {
  position: relative;
  aspect-ratio: 278 / 535;
  width: calc((278 / 375) * 100vw);
  max-width: 278px;
  height: auto;
  margin-inline: auto;
  display: grid;
  align-items: center;
  overflow: visible;

  &::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 447 860"><path d="M352.5501619,405.732338c-15.1184768,10.7020049-15.1134688,37.8150344.0032064,48.5190535,59.3044057,41.9920399,96.9947722,112.0390658,94.3122593,190.0591513-4.2388864,123.2841009-107.6788044,219.7912016-231.0408044,215.5551751C92.4638005,855.6297524-4.1052536,752.2536273.1344265,628.9695264c2.4925734-72.5170291,39.3098605-135.7701039,94.3156458-174.7041273,15.1185684-10.7020354,15.1135604-37.8150344-.0029926-48.5190535C35.1425862,363.7543056-2.5482696,293.7082563.1344265,215.688186,4.3731294,92.404581,107.8145103-4.1019241,231.1755178.1342949c123.3613128,4.2364587,219.9288434,107.610799,215.6901098,230.8949076-2.4933674,72.5170444-39.3103789,135.7691121-94.3154352,174.7031355h-.0000305Z"/></svg>') no-repeat center / contain;
    background: linear-gradient(85.87deg, #623FAE 8.03%, #EDF341 94.82%);;
  }
}

@media screen and (min-width: 769px) {
  .course_detail_inner {
    aspect-ratio: 860 / 447;
    width: 65vw;
    max-width: 860px;
    grid-template-columns: 1fr 1fr;

    &::before {
      mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 860 447" xmlns="http://www.w3.org/2000/svg"><path d="M405.732 94.3901C416.434 109.499 443.547 109.494 454.251 94.3869C496.243 35.12 566.29 -2.54653 644.31 0.134288C767.594 4.3705 864.101 107.745 859.865 231.029C855.629 354.312 752.253 450.82 628.969 446.583C556.452 444.092 493.199 407.298 454.265 352.327C443.563 337.218 416.45 337.223 405.746 352.33C363.754 411.597 293.708 449.264 215.688 446.583C92.4045 442.347 -4.10192 338.971 0.134295 215.688C4.37075 92.4047 107.745 -4.10178 231.029 0.134288C303.546 2.62609 366.798 39.4198 405.732 94.3901Z"/></svg>') no-repeat center / contain;
      background: linear-gradient(85.87deg, #623FAE 8.03%, #EDF341 94.82%);
    }
  }
}

@media screen and (min-width: 1025px) {
  .course_detail_inner {
    width: calc((860 / 1440) * 100vw);
  }
}

.course_detail_box {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px 0;
}

@media screen and (min-width: 769px) {
  .course_detail_box {
    gap: 27px 0;
  }
}

.course_detail_box:nth-child(odd) {
  padding: 0 0;
  transform: translateY(10%);
}

@media screen and (min-width: 769px) {
  .course_detail_box:nth-child(odd) {
    transform: translate(5%, 0);
  }
}

.course_detail_box:nth-child(even) {
  padding: 0 0;
  transform: translateY(-2%);
}

@media screen and (min-width: 769px) {
  .course_detail_box:nth-child(even) {
    transform: translate(-5%, 0);
  }
}

.course_detail_txt {
  /* font-size: min(0.902vw, 13px); */
  font-size: 13px;
  line-height: 1.7;
  color: #FFF;
  text-align: center;
}

.course_detail_ttl {
  /* font-size: min(1.667vw, 24px); */
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: #FFF;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .course_detail_ttl {
    line-height: 1.5;
  }
}

.course_modal_btn {
  aspect-ratio: 165 / 100;
  width: calc((165 / 278) * 100%);
  height: auto;
  position: absolute;
  z-index: 2;
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  .course_modal_btn {
    aspect-ratio: 240 / 126;
    width: calc((240 / 860) * 100%);
  }
}

.course_modal_btn.--01 {
  top: -24%;
  left: 19%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 769px) {
  .course_modal_btn.--01 {
    top: 0;
    left: 25%;
    transform: translate(-50%, -50%);
  }
}

.course_modal_btn.--02 {
  bottom: -2%;
  left: 19%;
  transform: translate(-50%, 50%);
}

@media screen and (min-width: 769px) {
  .course_modal_btn.--02 {
    top: 0;
    bottom: auto;
    left: auto;
    right: 25%;
    transform: translate(50%, -50%);
  }
}

.course_modal_btn.--03 {
  bottom: -2%;
  right: 19%;
  transform: translate(50%, 50%);
}

@media screen and (min-width: 769px) {
  .course_modal_btn.--03 {
    top: 25%;
    bottom: auto;
    right: 0;
    transform: translate(80%, -25%);
  }
}

.course_modal_btn.--04 {
  bottom: -24%;
  left: 19%;
  transform: translate(-50%, 50%);
}

@media screen and (min-width: 769px) {
  .course_modal_btn.--04 {
    bottom: 25%;
    left: auto;
    right: 0;
    transform: translate(80%, 25%);
  }
}

.course_modal_btn.--05 {
  bottom: -24%;
  right: 19%;
  transform: translate(50%, 50%);
}

@media screen and (min-width: 769px) {
  .course_modal_btn.--05 {
    bottom: 0;
    right: 25%;
    transform: translate(50%, 50%);
  }
}

.course_modal_btn.--06 {
  top: -2%;
  right: 19%;
  transform: translate(50%, -50%);
}

@media screen and (min-width: 769px) {
  .course_modal_btn.--06 {
    top: auto;
    bottom: 0;
    left: 25%;
    right: auto;
    transform: translate(-50%, 50%);
  }
}

.course_modal_btn.--07 {
  top: -2%;
  left: 19%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 769px) {
  .course_modal_btn.--07 {
    top: auto;
    bottom: 25%;
    left: 0;
    transform: translate(-80%, 25%);
  }
}

.course_modal_btn.--08 {
  top: -24%;
  right: 19%;
  transform: translate(50%, -50%);
}

@media screen and (min-width: 769px) {
  .course_modal_btn.--08 {
    top: 25%;
    left: 0;
    right: auto;
    transform: translate(-80%, -25%);
  }
}

.course_modal_btn_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 165 100"><path fill="%23FFFFFF99" d="M0,16C0,7.1634402,7.1634402,0,16,0h133c8.8370056,0,16,7.1634402,16,16v36.0565987c0,8.8053017-7.1380005,15.9434013-15.9429932,15.9434013-8.8059998,0-15.9440002,7.1663971-15.9440002,15.9716034,0,8.8365936-7.1630096,16.0283966-16.0000076,16.0283966H16c-8.8365598,0-16-7.1633987-16-16V16Z"/></svg>') no-repeat center / contain;
  filter: drop-shadow(0 4px 10px rgba(40, 23, 112, 0.18));
}

@media screen and (min-width: 769px) {
  .course_modal_btn_img {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 240 126"><path fill="%23FFFFFF99" d="M0,18C0,8.0588799,8.0588703,0,18,0h204c9.9409943,0,18,8.0588799,18,18v52c0,9.9411011-8.0590057,18-18,18h-1.8869934c-9.9410095,0-18,8.0588989-18,18v2c0,9.9410019-8.0590057,18-18,18H18c-9.9411201,0-18-8.0589981-18-18V18Z"/></svg>') no-repeat center / contain;
  }
}

.course_modal_btn_inner {
  aspect-ratio: 165 / 100;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 165 100"><path d="M0,16C0,7.1634402,7.1634402,0,16,0h133c8.8370056,0,16,7.1634402,16,16v36.0565987c0,8.8053017-7.1380005,15.9434013-15.9429932,15.9434013-8.8059998,0-15.9440002,7.1663971-15.9440002,15.9716034,0,8.8365936-7.1630096,16.0283966-16.0000076,16.0283966H16c-8.8365598,0-16-7.1633987-16-16V16Z"/></svg>') no-repeat center / contain;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 165 100"><path d="M0,16C0,7.1634402,7.1634402,0,16,0h133c8.8370056,0,16,7.1634402,16,16v36.0565987c0,8.8053017-7.1380005,15.9434013-15.9429932,15.9434013-8.8059998,0-15.9440002,7.1663971-15.9440002,15.9716034,0,8.8365936-7.1630096,16.0283966-16.0000076,16.0283966H16c-8.8365598,0-16-7.1633987-16-16V16Z"/></svg>') no-repeat center / contain;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  display: grid;
  place-content: center;
}

@media screen and (min-width: 769px) {
  .course_modal_btn_inner {
    aspect-ratio: 240 / 126;
    padding: min(1.041vw, 15px) min(0.694vw, 10px) min(0.694vw, 10px) min(1.736vw, 25px);
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 240 126"><path d="M0,18C0,8.0588799,8.0588703,0,18,0h204c9.9409943,0,18,8.0588799,18,18v52c0,9.9411011-8.0590057,18-18,18h-1.8869934c-9.9410095,0-18,8.0588989-18,18v2c0,9.9410019-8.0590057,18-18,18H18c-9.9411201,0-18-8.0589981-18-18V18Z"/></svg>') no-repeat center / contain;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 240 126"><path d="M0,18C0,8.0588799,8.0588703,0,18,0h204c9.9409943,0,18,8.0588799,18,18v52c0,9.9411011-8.0590057,18-18,18h-1.8869934c-9.9410095,0-18,8.0588989-18,18v2c0,9.9410019-8.0590057,18-18,18H18c-9.9411201,0-18-8.0589981-18-18V18Z"/></svg>') no-repeat center / contain;
  }
}

.course_modal_btn_ttl {
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0;
  transform: translateX(-1em);
}

@media screen and (min-width: 769px) {
  .course_modal_btn_ttl {
    font-size: min(1.04vw, 15px);
    display: flex;
    align-items: center;
    gap: 0 8px;
    transform: translateX(0);
  }
}

.course_modal_btn_ttl span {
  display: block;
  aspect-ratio: 1 / 1;
  width: 28px;
  height: auto;
  margin-inline: auto;
  transform: translateX(1em);
}

@media screen and (min-width: 769px) {
  .course_modal_btn_ttl span {
    width: min(1.667vw, 24px);
    margin-inline: unset;
    transform: translateX(0);
  }
}

.course_modal_btn_txt {
  position: relative;
  z-index: 1;
  font-size: min(0.625vw, 9px);
  line-height: 1.5;
  width: 75%;
  margin-top: min(1.042vw, 15px);
  text-align: left;
    display: none;
  }

@media screen and (min-width: 769px) {
  .course_modal_btn_txt {
    display: block;
  }
}

.course_modal_btn_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  width: calc((26 / 165) * 100%);
  height: auto;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: var(--color-purple);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  transition: all 0.3s ease;

  &::before,
  &::after {
    content: "";
    display: block;
    aspect-ratio: 10 / 2;
    width: calc((10 / 32) * 100%);
    height: auto;
    background-color: #FFF;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }

  &::after {
    transform: rotate(90deg);
  }
}

@media screen and (min-width: 769px) {
  .course_modal_btn_icon {
    width: calc((32 / 240) * 100%);
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 1025px) {
  .course_modal_btn:hover .course_modal_btn_inner {
    background-color: rgba(255, 255, 255, 1);
  }

  .course_modal_btn:hover .course_modal_btn_icon {
    transform: scale(1.1);
  }
}

.modal_container_course {
  background-color: #fff;
  position: absolute;
  z-index: 11;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 90%;
  max-width: 1100px;
  height: 80svh;
  max-height: 640px;
  border-radius: 20px;
  overflow-y: scroll;
  transition: all 0.5s;
}

.course_modal {
  padding: 20px 20px;
}

@media screen and (min-width: 769px) {
  .course_modal {
    padding: min(3.472vw, 50px) min(3.472vw, 50px);
  }
}

.course_modal_head {
  display: grid;
  gap: 20px 0;
}

@media screen and (min-width: 769px) {
  .course_modal_head {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.course_modal_box {}

@media screen and (min-width: 769px) {
  .course_modal_box {
    width: calc((466 / 1000) * 100%);
  }
}

.course_modal_ttl {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  padding-top: 35px;
}

@media screen and (min-width: 769px) {
  .course_modal_ttl {
    font-size: min(2.638vw, 38px);
    padding-top: min(4.861vw, 70px);
  }
}

.course_modal_ttl span {
  aspect-ratio: 1 / 1;
  width: 30px;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 769px) {
  .course_modal_ttl span {
    width: min(3.472vw, 50px);
  }
}

.course_modal_txt {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-purple);
  line-height: 1.8;
  margin-top: 10px;
}

@media screen and (min-width: 769px) {
  .course_modal_txt {
    font-size: 18px;
  }
}

.course_modal_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

@media screen and (min-width: 769px) {
  .course_modal_tags {
    gap: 10px;
    margin-top: 30px;
  }
}

.course_modal_tags span {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid #DDDDDD;
  padding: 8px 10px 8px 30px;
  font-size: 12px;
  line-height: 1;

    &::before {
    content: "#";
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-en);
    font-size: 10px;
    font-weight: 300;
    color: #FFF;
    width: 17px;
    height: 17px;
    border-radius: 9999px;
    background-color: var(--color-purple);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 8px;
    margin-block: auto;
  }
}

@media screen and (min-width: 769px) {
  .course_modal_tags span {
    padding: 15px 16px 15px 42px;
    font-size: 14px;

    &::before {
      font-size: 14px;
      width: 20px;
      height: 20px;
      left: 16px;
    }
  }
}

.course_modal_img {
  aspect-ratio: 460 / 340;
  width: 100%;
  height: auto;
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .course_modal_img {
    width: calc((460 / 1000) * 100%);
  }
}

.course_modal_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course_modal_copy {
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
  display: grid;
  gap: 2px 0;
}

@media screen and (min-width: 769px) {
  .course_modal_copy {
    font-size: min(1.944vw, 28px);
    margin-top: min(2.986vw, 43px);
    gap: 5px 0;
  }
}

.course_modal_copy span {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 500;
  color: var(--color-purple);
  letter-spacing: 0;
  display: block;
}

@media screen and (min-width: 769px) {
  .course_modal_copy span {
    font-size: 11px;
  }
}

.course_modal_detail {
  margin-top: 15px;
  font-size: 13px;
}

@media screen and (min-width: 769px) {
  .course_modal_detail {
    margin-top: 15px;
    font-size: 16px;
  }
}

.course_modal_class {
  background-color: #F4F3FF;
  min-height: 100px;
  display: grid;
  margin-top: 25px;
}

@media screen and (min-width: 769px) {
  .course_modal_class {
    grid-template-columns: 174px 1fr;
    margin-top: min(2.43vw, 35px);
  }
}

.course_modal_class_dt {
  position: relative;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-purple);
  padding: 15px 40px;

  &::after {
      content: "";
      display: block;
    width: calc(100% - 40px);
    height: 1px;
    background-color: #DCD3EF;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-inline: auto;
  }
}

@media screen and (min-width: 769px) {
  .course_modal_class_dt {
    padding: 20px 40px;
    font-size: 16px;

    &::after {
      width: 1px;
      height: calc(100% - 40px);
      top: 0;
      bottom: 0;
      left: auto;
      right: 0;
      margin-inline: unset;
      margin-block: auto;
    }
  }
}

.course_modal_class_dd {
  padding: 20px 40px;
}

@media screen and (min-width: 769px) {
  .course_modal_class_dd {
    display: flex;
    align-items: center;
  }
}

.course_modal_class_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 40px;
}

@media screen and (min-width: 769px) {
  .course_modal_class_list {
    gap: 20px 40px;
  }
}

.course_modal_class_item {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  padding-left: 30px;

  &::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url('../img/academics/gakubuinfoenginee/2607/course_modal_check.svg') no-repeat center / contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin-block: auto;
  }
}

@media screen and (min-width: 769px) {
  .course_modal_class_item {
    font-size: 15px;
    padding-left: 35px;

    &::before {
      width: 26px;
      height: 26px;
    }
  }
}

.course_modal_class_dd .note {
  font-size: 12px;
  text-align: right;
  margin-top: 10px;
}

@media screen and (min-width: 769px) {
  .course_modal_class_dd .note {
    font-size: 14px;
    text-align: left;
    margin-left: 25px;
  }
}

.sec-mentor {}

.sec-mentor__inner {
  padding: 205px 0 10px;
}

.mentor_head {
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .mentor_head {
    max-width: 1340px;
    padding: 0 50px;
  }
}

.sec-mentor .sec-copy {
  color: #FFF;
}

.mentor_block {
  --mentor-card-w: 220px;
  --mentor-card-h: 300px;
  --mentor-gap: 14px;
  position: relative;
  width: 100%;
  height: var(--mentor-card-h);
  margin: 60px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
}

@media screen and (min-width: 769px) {
  .mentor_block {
    --mentor-card-w: 440px;
    --mentor-card-h: 600px;
    --mentor-gap: 28px;
    perspective: 2400px;
  }
}

.mentor_list_wrap {
  position: relative;
  width: 1px;
  height: 1px;
  transform-style: preserve-3d;
}

.mentor_list {
  position: absolute;
  top: 0;
  left: 0;
  transform-style: preserve-3d;
}

.mentor_item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--mentor-card-w);
  height: var(--mentor-card-h);
  overflow: hidden;
  backface-visibility: hidden;
}

.mentor_modal_btn {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.mentor_block.is-cursor-detail,
.mentor_block.is-cursor-detail * {
  cursor: none !important;
}

.mentor_cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  aspect-ratio: 1 / 1;
  width: calc((140 / 1440) * 100vw);
  max-width: 140px;
  height: fit-content;
  margin: 0;
  padding-top: 3.5%;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.4);
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
  will-change: translate, opacity, transform;

  &::before {
    content: "";
    display: block;
    aspect-ratio: 21 / 8;
    width: 21px;
      height: auto;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 12"><polygon points="21 7.999939 17 3.9998779 17 7.0001068 2 7.0001068 2 0 0 0 0 9.0001373 17 9.0001373 17 12 21 7.999939"/></svg>') no-repeat center / contain;
    background-color: #FFF;
    position: absolute;
    bottom: 33%;
    left: 0;
    right: 0;
    margin-inline: auto;
    transition: all 0.3s ease;
  }
}

.mentor_cursor.is-show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* .mentor_cursor span {
  display: block;
  max-width: 5em;
} */

.mentor_item_img {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;

  &::before {
    content: "";
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: url('../img/academics/gakubuinfoenginee/2607/mentor_img_deco.svg') no-repeat center / cover;
    position: absolute;
    top: -1px;
    left: -1px;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
  }
}

.mentor_item.is-active .mentor_item_img::before {
  opacity: 1;
}

.mentor_item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor_item_box {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px 0;
  opacity: 0;
}

@media screen and (min-width: 769px) {
  .mentor_item_box {
    right: 40px;
    gap: 10px 0;
  }
}

.mentor_item.is-active .mentor_item_box {
  opacity: 1;
}

.mentor_item_name {
  font-size: 20px;
  font-weight: 600;
  color: #FFF;
  line-height: 1;
  letter-spacing: 0;
}

@media screen and (min-width: 769px) {
  .mentor_item_name {
    font-size: 30px;
  }
}

.mentor_item_name-en {
  font-family: var(--font-en2);
  font-size: 15px;
  color: #FFF;
  line-height: 1;
  letter-spacing: 0;
  opacity: 0.3;
}

@media screen and (min-width: 769px) {
  .mentor_item_name-en {
    font-size: 26px;
  }
}

.mentor_num_box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 10px auto 0;
  gap: 0 25px;

  &::before {
    content: "";
      display: block;
    width: 1px;
    height: 70%;
    background: #FFF;
    position: absolute;
    top: 50%;
    transform: translate(4px, -50%) rotate(15deg);
    left: 0;
    right: 0;
    margin-inline: auto;
  }
}

@media screen and (min-width: 769px) {
  .mentor_num_box {
    margin: 22px auto 0;
    gap: 0 35px;
  }
}

.mentor_num {
  font-family: var(--font-en2);
  line-height: 1;

  &.--current {
    font-size: 30px;
    color: var(--color-yellow);
  }

  &.--total {
    font-size: 20px;
    color: #FFF;
  }
}

@media screen and (min-width: 769px) {
  .mentor_num {
    &.--current {
      font-size: 50px;
    }

    &.--total {
      font-size: 40px;
    }
  }
}

.sec-mentor .c-btn {
  margin: 30px auto 0;
}

.modal_container_mentor {
  background-color: #fff;
  position: absolute;
  z-index: 11;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100vw;
  height: 100svh;
  overflow-y: auto;
  transition: all 0.5s;
}

.mentor_modal {
  position: relative;
  
  &::before {
    content: "";
    display: block;
    aspect-ratio: 4 / 1;
    width: 100%;
    height: fit-content;
    background: url('../img/academics/gakubuinfoenginee/2607/mentor_modal_bg.webp') no-repeat center / cover;
    position: absolute;
    top: -1%;
    right: -1%;
    z-index: -1;
    filter: blur(30px);
    transform: scale(1.2);
  };
}

@media screen and (min-width: 769px) {
  .mentor_modal::before {
    aspect-ratio: 1871 / 342;
    width: calc((935 / 1440) * 100vw);
  }
}

.mentor_modal.active {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

@media screen and (min-width: 769px) {
  .mentor_modal.active {
    flex-direction: row-reverse;
    align-items: flex-start;
  }
}

.mentor_modal_left {
  position: relative;
  width: 100vw;
  height: 50vh;
  flex-shrink: 0;
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .mentor_modal_left {
    width: 43.75%;
    height: 100vh;
    position: sticky;
    top: 0;
    left: 0;
  }
}

.mentor_modal_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(30px);
  transform: scale(1.3);
}

@media screen and (min-width: 769px) {
  .mentor_modal_bg {
    transform: scale(1.1);
  }
}

.mentor_modal_img {
  z-index: 1;
  margin: 0;
  aspect-ratio: 310 / 440;
  width: 50%;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media screen and (min-width: 769px) {
  .mentor_modal_img {
    width: calc((310 / 1440) * 100vw);
  }
}

.mentor_modal_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor_modal_right {
  flex: 1;
  padding: 70px 30px 50px;
}

@media screen and (min-width: 769px) {
  .mentor_modal_right {
    width: 56.25%;
    padding: 6.39vw 5.28vw 6.94vw 6.53vw;
  }
}

.mentor_modal_ttl {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.7;
  display: flex;
  align-items: center;
  gap: 0 1vw;
}

.mentor_modal_ttl span {
  display: block;
  font-family: var(--font-en2);
  font-size: 0.65em;
  opacity: 0.4;
  color: #FFF;
}

.mentor_modal_list {
  display: grid;
  margin-top: 30px;
}

.mentor_modal_item {
  display: grid;
  margin: 0;
  border-top: 1px solid #DDDDDD;
}

@media screen and (min-width: 769px) {
  .mentor_modal_item {
    grid-template-columns: 14em 1fr;
  }
}

.mentor_modal_item dt {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-purple, #5b2c8a);
  padding: 15px 10px 3px;
}

@media screen and (min-width: 769px) {
  .mentor_modal_item dt {
    font-size: 16px;
    padding: 22px 10px;
  }
}

.mentor_modal_item dd {
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0;
  padding: 3px 10px 15px;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 769px) {
  .mentor_modal_item dd {
    font-size: 16px;
    padding: 22px 0;
  }
}

.mentor_modal_video {
  margin-top: 25px;
  overflow: hidden;
  aspect-ratio: 600 / 388;
  width: 100%;
  height: fit-content;
}

.mentor_modal_video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor_modal_right .c-btn {
  margin: 30px auto 0;
}

@media screen and (min-width: 769px) {
  .mentor_modal_right .c-btn {
    margin: 60px auto 0;
  }
}

.sec-facility {}

.sec-facility__inner {
  padding: 265px 0 170px;
}

.facility_head {
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .facility_head {
    max-width: 1340px;
    padding: 0 50px;
  }
}

.sec-facility .sec-copy {
  margin-bottom: 30px;
}

@media screen and (min-width: 769px) {
  .sec-facility .sec-copy {
    margin-bottom: 55px;
  }
}

.facility_head_txt {
  line-height: 2;
  letter-spacing: 0;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .facility_head_txt {
    width: 64%;
  }
}

.facility_img {
  display: flex;
  gap: 0 15px;
  margin-top: 25px;
}

@media screen and (min-width: 769px) {
  .facility_img {
    gap: 0 25px;
    margin-top: 55px;
  }
}

.facility_img_list {
  display: flex;
  align-items: flex-start;
  gap: 0 15px;
  animation: facility_img 60s linear infinite;
}

@media screen and (min-width: 769px) {
  .facility_img_list {
    gap: 0 25px;
  }
}

@keyframes facility_img {
  0% {
    transform: translate(0);
  }

  100% {
    transform: translate(calc(-100% - 15px));
  }
}

@media screen and (min-width: 769px) {
  @keyframes facility_img {
    0% {
      transform: translate(0);
    }

    100% {
      transform: translate(calc(-100% - 25px));
    }
  }
}

.facility_img_item {
  aspect-ratio: 510 / 330;
  width: 30vw;
  height: auto;
}

@media screen and (min-width: 769px) {
  .facility_img_item {
    width: calc((510 / 1440) * 100vw);
  }
}

.facility_img_item:nth-child(2n) {
  margin-top: 60px;
}

@media screen and (min-width: 769px) {
  .facility_img_item:nth-child(2n) {
    margin-top: 155px;
  }
}

.facility_img_item:nth-child(3n) {
  margin-top: 30px;
}

@media screen and (min-width: 769px) {
  .facility_img_item:nth-child(3n) {
    margin-top: 64px;
  }
}

.facility_img_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility_img_txt {
  font-size: 12px;
  line-height: 1;
  margin-top: 8px;
}

@media screen and (min-width: 769px) {
  .facility_img_txt {
    font-size: 14px;
    margin-top: 15px;
  }
}

.sec-woman__inner {
  width: 90%;
  margin: 50px auto 0;
  display: grid;
  overflow: hidden;
  background: url('../img/academics/gakubuinfoenginee/2607/woman_bg.webp') no-repeat center / cover;
}

@media screen and (min-width: 769px) {
  .sec-woman__inner {
    max-width: 1240px;
    display: flex;
    flex-direction: row-reverse;
    margin: 6.5vw auto 0;
  }
}

.woman_box {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 30px 30px;
}

@media screen and (min-width: 769px) {
  .woman_box {
    width: calc((675 / 1240) * 100%);
    padding: min(23.36%, 157px) min(12%, 81px) min(17.33%, 117px) min(6.52%, 44px);
  }
}

.woman_copy {
  font-size: 20px;
  font-weight: 500;
  color: #FFF;
  line-height: 1.5;
}

@media screen and (min-width: 769px) {
  .woman_copy {
    font-size: min(2.083vw, 30px);
  }
}

.woman_txt {
  color: #FFF;
  line-height: 1.7;
  margin-top: 20px;
}

@media screen and (min-width: 769px) {
  .woman_txt {
    margin-top: 40px;
  }
}

.woman_box .c-btn {
  margin: 20px auto 0;
}

@media screen and (min-width: 769px) {
  .woman_box .c-btn {
    margin: 40px auto 0 0;
  }
}

.woman_imgwrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0 70px;
}

@media screen and (min-width: 769px) {
  .woman_imgwrap {
    width: calc((565 / 1240) * 100%);
    padding: 0 0;
  }
}

.woman_img {}

.woman_img.--01 {
  position: relative;
  z-index: 1;
  width: calc((368 / 565) * 100%);
  height: auto;
  transform: translateX(5%);
}

.woman_img.--02 {
  width: calc((244 / 565) * 100%);
  height: auto;
  opacity: 0.8;
  filter: blur(7px);
  position: absolute;
  top: -14%;
  left: 6%;
}

@media screen and (min-width: 769px) {
  .woman_img.--02 {
    filter: blur(10px);
  }
}

.woman_img.--03 {
  width: calc((140 / 565) * 100%);
  height: auto;
  opacity: 0.7;
  filter: blur(7px);
  position: absolute;
  bottom: 8%;
  right: 0;
}

@media screen and (min-width: 769px) {
  .woman_img.--03 {
    filter: blur(10px);
  }
}

.woman_label {
  aspect-ratio: 1 / 1;
  width: calc((160 / 565) * 100%);
  height: auto;
  border-radius: 9999px;
  background-color: var(--color-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 11.5%;
  left: 12%;
  z-index: 2;
}

.woman_label_txt {
  font-size: 10px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--color-purple);
  text-align: center;
}

@media screen and (min-width: 769px) {
  .woman_label_txt {
    font-size: min(calc((17 / 1440) * 100vw), 17px);
  }
}

.woman_label_txt span {
  display: block;
  font-size: 1.6em;
}

.sec-interview {}

.sec-interview__inner {
  padding: 160px 0 100px;
}

.interview_head {
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .interview_head {
    max-width: 1340px;
    padding: 0 50px;
  }
}

.sec-interview .sec-copy {}

.interview_list {
  padding: 0 20px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 15px;
  margin-top: 30px;
}

@media screen and (min-width: 769px) {
  .interview_list {
    max-width: 1340px;
    padding: 0 50px;
    grid-template-columns: repeat(3, 1fr);
    gap: 95px 50px;
    margin-top: 75px;
  }
}

.interview_btn {
  padding: 0 0;
}

.interview_btn_img_box {
  position: relative;
}

.interview_btn_img {
  aspect-ratio: 380 / 503;
  width: 100%;
  height: fit-content;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 380 503"><path class="st0" d="M18.0009498,0C8.0593198,0,0,8.0588703,0,18v467c0,9.9410095,8.0593198,18,18.0009498,18h285.5598169c9.9415604,0,18.0009975-8.0589905,18.0009975-18v-21.9979858c0-9.9410095,8.0594676-18,18.0009975-18h22.4362408c9.9415604,0,18.0009975-8.059021,18.0009975-18V18c0-9.9411201-8.0594371-18-18.0009975-18H18.0009498Z"/></svg>') no-repeat center / contain;

  &::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(98, 63, 174, 0) 40%, #623FAE 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
}

@media screen and (min-width: 769px) {
  .interview_btn_img::before {
    background: linear-gradient(180deg, rgba(98, 63, 174, 0) 57.35%, #623FAE 100%);
  }
}

.interview_btn_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.interview_btn_ttl {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #FFF;
  text-align: left;
  width: 75%;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

@media screen and (min-width: 769px) {
  .interview_btn_ttl {
    font-size: 22px;
    bottom: 30px;
    left: 20px;
  }
}

.interview_btn_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  color: #FFF;
  aspect-ratio: 1 / 1;
  width: calc((40 / 380) * 100%);
  height: auto;
  border-radius: 9999px;
  background-color: var(--color-yellow);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  transition: all 0.3s ease;

  &::before,
  &::after {
    content: "";
    display: block;
    aspect-ratio: 8 / 1;
    width: calc((16 / 40) * 100%);
    height: auto;
    background-color: var(--color-purple);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }

  &::after {
    transform: rotate(90deg);
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 1025px) {
  .interview_btn:hover .interview_btn_img img {
    transform: scale(1.05);
  }

  .interview_btn:hover .interview_btn_icon {
    transform: scale(1.1);
  }
}

.interview_btn_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 15px;
  padding: 0 5px;
  gap: 10px 10px;
}

@media screen and (min-width: 769px) {
  .interview_btn_box {
    margin-top: 30px;
    padding: 0 10px;
    gap: 15px 35px;
  }
}

.interview_btn_name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

@media screen and (min-width: 769px) {
  .interview_btn_name {
    font-size: 22px;
  }
}

.interview_btn_grade {
  font-size: 10px;
  line-height: 1;
}

@media screen and (min-width: 769px) {
  .interview_btn_grade {
    font-size: 12px;
  }
}

.interview_brn_course {
  position: relative;
  display: block;
  font-size: 8px;
  line-height: 1;
  border-radius: 9999px;
  border: 1px solid #DDDDDD;
  padding: 7px 11px 6px 20px;

  &::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 9px;
    margin-block: auto;
  }

  &.--ds::before {
    background-color: var(--color-yellow);
  }

  &.--cs::before {
    background-color: var(--color-purple);
  }
}

@media screen and (min-width: 769px) {
  .interview_brn_course {
    font-size: 12px;
    padding: 8px 15px 8px 30px;

    &::before {
      width: 8px;
      height: 8px;
      left: 15px;
    }
  }
}

.modal_container_interview {
  background-color: #fff;
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 90%;
  max-width: 1100px;
  height: 80svh;
  max-height: 640px;
  border-radius: 20px;
  overflow-y: scroll;
  transition: all 0.5s;
}

.interview_modal {
  position: relative;
  padding: 40px 20px;

  &::before {
    content: "";
    display: block;
    aspect-ratio: 4 / 1;
    width: 100%;
    height: fit-content;
    background: url('../img/academics/gakubuinfoenginee/2607/interview_modal_bg.webp') no-repeat center / cover;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    filter: blur(30px);
  }
}

@media screen and (min-width: 769px) {
  .interview_modal {
    padding: min(3.472vw, 50px) min(3.472vw, 50px);

    &::before {
      aspect-ratio: 1962 / 313;
      width: calc((981 / 1100) * 100%);
      filter: blur(68.8657px);
    }
  }
}

.interview_modal_head {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px 0;
}

@media screen and (min-width: 769px) {
  .interview_modal_head {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0 0;
  }
}

.interview_modal_box {}

@media screen and (min-width: 769px) {
  .interview_modal_box {
    width: calc((477 / 1000) * 100%);
    padding-top: min(6.5%, 65px);
  }
}

.interview_modal_course {
  position: relative;
  font-size: 12px;
  line-height: 1;
  border-radius: 9999px;
  background-color: #FFF;
  width: fit-content;
  padding: 10px 15px 10px 30px;

  &::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    margin-block: auto;
  }
}

@media screen and (min-width: 769px) {
  .interview_modal_course {
    font-size: 15px;
    padding: 15px 15px 12px 30px;

    &::before {
      width: 10px;
      height: 10px;
    }
  }
}

.interview_modal_course.--ds::before {
  background-color: var(--color-yellow);
}

.interview_modal_course.--cs::before {
  background-color: var(--color-purple);
}

.interview_modal_ttl {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 20px;
}

@media screen and (min-width: 769px) {
  .interview_modal_ttl {
    font-size: 32px;
    margin-top: min(2.5%, 25px);
  }
}

.interview_modal_info {
  display: flex;
  align-items: center;
  margin-top: min(5.5%, 55px);
  gap: 0 20px;
}

@media screen and (min-width: 769px) {
  .interview_modal_info {
    gap: 0 30px;
  }
}

.interview_modal_name {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;

  &::after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background-color: #DDDDDD;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -11px;
    margin-block: auto;
  }
}

@media screen and (min-width: 769px) {
  .interview_modal_name {
    font-size: 22px;

    &::after {
      right: -16px;
    }
  }
}

.interview_modal_grade {
  font-size: 12px;
  line-height: 1;
}

.interview_modal_img {
  aspect-ratio: 460 / 440;
  width: 80%;
  height: auto;
  overflow: hidden;
  margin-inline: auto;
}

@media screen and (min-width: 769px) {
  .interview_modal_img {
    width: calc((460 / 1000) * 100%);
    margin-inline: unset;
  }
}

.interview_modal_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview_modal_list {
  display: grid;
  gap: 30px 0;
  margin-top: 40px;
}

@media screen and (min-width: 769px) {
  .interview_modal_list {
    gap: 40px 0;
    margin-top: 60px;
  }
}

.interview_modal_item {
  display: grid;
  gap: 15px 0;
}

@media screen and (min-width: 769px) {
  .interview_modal_item {
    gap: 22px 0;
  }
}

.interview_modal_item_dt {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  padding: 10px 14px;

  &::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(108.22deg, #7F6FFF 5.11%, #F9FFAA 93.88%);
    opacity: 0.2;
  }
}

@media screen and (min-width: 769px) {
  .interview_modal_item_dt {
    font-size: 20px;
    line-height: 1.5;
    padding: 10px 30px;
  }
}

.interview_modal_item_dd {
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0;
}

@media screen and (min-width: 769px) {
  .interview_modal_item_dd {
    font-size: 16px;
  }
}

.interview_modal_message {
  display: grid;
  gap: 15px 0;
  border-radius: 0 30px 30px 30px;
  background-color: var(--color-purple);
  padding: 30px 20px;
  margin-top: 40px;
}

@media screen and (min-width: 769px) {
  .interview_modal_message {
    gap: 23px 0;
    border-radius: 0 80px 80px 80px;
    padding: min(3.8%, 38px) min(6%, 60px) min(4%, 40px) min(6%, 60px);
    margin-top: 60px;
  }
}

.interview_modal_message_ttl {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-yellow);
  text-align: center;
}

@media screen and (min-width: 769px) {
  .interview_modal_message_ttl {
    font-size: 20px;
  }
}

.interview_modal_message_txt {
  font-size: 13px;
  line-height: 1.7;
  color: #FFF;
}

@media screen and (min-width: 769px) {
  .interview_modal_message_txt {
    font-size: 16px;
  }
}

.sec-future {
  position: relative;
}

.future_bg {
  overflow: hidden;

  &::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(75, 69, 89, 0.4);
    backdrop-filter: blur(15px);
    position: absolute;
    top: 0;
    left: 0;
  }
}

.future_bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec-future__inner {
  padding: 105px 0 180px;
}

@media screen and (min-width: 769px) {
  .sec-future__inner {}
}

.future_head {
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .future_head {
    max-width: 1340px;
    padding: 0 50px;
  }
}

.sec-future .sec-copy {
  color: #FFF;
}

.future_box {
  padding: 0 20px;
  margin: 0 auto;
  display: grid;
  gap: 30px 0;
  margin-top: 50px;
}

@media screen and (min-width: 769px) {
  .future_box {
    max-width: 1340px;
    padding: 0 50px;
    gap: 40px 0;
  }
}

.future_box_dl {
  background-color: var(--color-purple);
  padding: 30px 20px;
  display: grid;
  gap: 15px 0;
}

@media screen and (min-width: 769px) {
  .future_box_dl {
    padding: 40px 40px 40px 0;
    grid-template-columns: 210px 1fr;
    gap: 0 0;
  }
}

.future_box_dt {
  font-size: 18px;
  font-weight: 500;
  color: #FFF;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 769px) {
  .future_box_dt {
    font-size: 24px;
    line-height: 1.7;
  }
}

.future_box_dd {
  background-color: #FFF;
  padding: 30px 20px;
}

@media screen and (min-width: 769px) {
  .future_box_dd {
    padding: 50px 40px;
  }
}

.future_list {
  display: grid;
  gap: 10px 0;
}

@media screen and (min-width: 769px) {
  .future_list {
    grid-template-columns: repeat(2, auto);
    gap: 20px 0;
  }
}

@media screen and (min-width: 1025px) {
  .future_list {
    grid-template-columns: repeat(3, auto);
    gap: 30px 0;
  }
}

.future_item {
  position: relative;
  font-weight: 500;
  padding-left: 30px;
  font-size: 12px;

  &::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url('../img/academics/gakubuinfoenginee/2607/future_check.svg') no-repeat center / contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin-block: auto;
  }
}

@media screen and (min-width: 1025px) {
  .future_item {
    padding-left: 45px;
    font-size: 16px;

    &::before {
      width: 30px;
      height: 30px;
    }
  }
}

.sec-faq {
  background-color: var(--color-offwhite);
}

/* sec-bg なしのため、スナップ直後のみ画面全体を不透明に覆う（常時 fixed にしない） */
.sec-faq.sec-bg-trigger.is-in.is-snapping::before {
  content: "";
  position: fixed;
  inset: 0;
  background-color: var(--color-offwhite);
  z-index: -1;
  pointer-events: none;
}

.sec-faq__inner {
  padding: 160px 0 105px;
}

.faq_head {}

.faq_head {
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .faq_head {
    max-width: 1340px;
    padding: 0 50px;
  }
}

.faq_content {
  padding: 0 30px;
  margin: 43px auto 0;
  display: grid;
  gap: 40px 0;
}

@media screen and (min-width: 769px) {
  .faq_content {
    width: 90%;
    max-width: 1090px;
    padding: 0 50px;
    gap: 75px 0;
  }
}

.faq_content_box {
  display: grid;
  gap: 20px 0;
}

@media screen and (min-width: 769px) {
  .faq_content_box {
    gap: 30px 0;
  }
}

.faq_content_ttl {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  padding-left: 20px;

  &::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: var(--color-purple);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin-block: auto;
  }
}

@media screen and (min-width: 769px) {
  .faq_content_ttl {
    font-size: 22px;
    padding-left: 30px;
  }
}

.faq_list {
  display: grid;
  gap: 12px 0;
}

@media screen and (min-width: 769px) {
  .faq_list {
    gap: 20px 0;
  }
}

.faq_item {
  background-color: #FFF;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(37, 37, 37, 0.07);
  padding: 8px 8px;
}

@media screen and (min-width: 769px) {
  .faq_item {
    border-radius: 10px;
    box-shadow: 0px 8px 20px rgba(37, 37, 37, 0.07);
    padding: 10px 10px;
  }
}

.faq_item::details-content {
  height: 0;
  opacity: 0;
  overflow: clip;
}

.faq_item[open]::details-content {
  height: auto;
  opacity: 1;
}

@supports (interpolate-size: allow-keywords) {
  :root {
    interpolate-size: allow-keywords;
  }

  .faq_item::details-content {
    transition: height 0.3s, opacity 0.3s, content-visibility 0.3s allow-discrete;
  }
}

.faq_item_p {
  position: relative;
  display: block;
  font-weight: 600;
  padding: 10px 35px 10px 50px;

  &::before {
    content: "Q";
    font-family: var(--font-en);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--color-yellow);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin-block: auto ;
  }
}

@media screen and (min-width: 769px) {
  .faq_item_p {
    padding: 27px 90px;

    &::before {
      font-size: 20px;
      width: 60px;
      height: 60px;
    }
  }
}

summary::-webkit-details-marker {
  display: none;
}

.faq_item_p .icon {
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin-block: auto;

  &::before,
  &::after {
    content: "";
    display: block;
    aspect-ratio: 16 / 2;
    width: 100%;
    height: auto;
    background-color: var(--color-black);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }

  &::after {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
  }
}

@media screen and (min-width: 769px) {
  .faq_item_p .icon {
    width: 16px;
    height: 16px;
    right: 18px;
  }
}

.faq_item[open] .icon::after {
  transform: rotate(180deg);
}

.faq_item_a {
  position: relative;
  line-height: 2;
  letter-spacing: 0;
  padding: 20px 10px 10px 50px;

  &::before {
    content: "A";
    font-family: var(--font-en);
    font-size: 15px;
    font-weight: 500;
    color: #A0A0A0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #F1F1F1;
    position: absolute;
    top: 10px;
    bottom: 0;
    left: 0;
  }

  &::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #EEE;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin-inline: auto;
  }
}

@media screen and (min-width: 769px) {
  .faq_item_a {
    padding: 30px 60px 30px 90px;

    &::before {
      font-size: 20px;
      width: 60px;
      height: 60px;
    }
  }
}

.sec-news {
  position: relative;
  background-color: var(--color-offwhite);
  margin-top: -1px;
}

.sec-news__inner {
  position: relative;
  padding: 0 0 90px;
}

.news_list_wrap {
  position: relative;
  width: 90%;
  margin: 46px auto 0;
}

@media screen and (min-width: 769px) {
  .news_list_wrap {
    max-width: 990px;
  }
}

.news_img {
  position: absolute;
}

.news_img.--01 {
  width: min(31.25vw, 450.5px);
  height: auto;
  top: min(-15.625vw, -225px);
  right: min(-18.75vw, -270px);
}

.news_img.--02 {
  width: min(18.26vw,263.5px);
  height: auto;
  opacity: 0.9;
  filter: blur(10px);
  z-index: 1;
  bottom: min(-9.027vw, -130px);
  left: min(-8.33vw, -120px);
}

.news_img.--03 {
  width: min(8.81vw, 127.5px);
  height: auto;
  opacity: 0.8;
  filter: blur(2px);
  z-index: 2;
  bottom: min(7.29vw, 105px);
  left: min(12.84vw, -185px);
}

.news_list {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  padding: 10px 25px;
  min-height: 120px;
  z-index: 2;
}

@media screen and (min-width: 769px) {
  .news_list {
    padding: 35px 65px;
    min-height: 200px;
  }
}

.news_item + .news_item {
  border-top: 1px solid #EEE;
}

.news_empty {
  margin: 0;
  padding: 40px 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-black, #111);
}

.news_link {
  display: grid;
  align-items: center;
  gap: 5px 0;
  padding: 15px 0;
}

@media screen and (min-width: 769px) {
  .news_link {
    grid-template-columns: 6em 1fr;
    gap: 0 23px;
    padding: 29px 0;
  }
}

.news_date {
  font-family: var(--font-en);
  font-size: 12px;
  color: #CFCFCF;
  transition: color 0.3s ease;
}

@media screen and (min-width: 769px) {
  .news_date {
    font-size: 15px;
  }
}

.news_ttl {
  line-height: 1.7;
  transition: color 0.3s ease;
}

.sec-news .c-btn {
  margin: 45px auto 0;
}






@media screen and (min-width: 769px) {}

@media screen and (min-width: 1025px) {}

@media (hover: hover) and (pointer: fine) and (min-width: 1025px) {}