.header {
  position: fixed;
}
/*-----------------------------------------------------------
Hero（首页全屏轮播：图片 / 视频）
-----------------------------------------------------------*/
.hero {
  position: relative;
  z-index: 10;
  color: #fff;
  min-height: 100vh;
  min-height: 100svh;
}
.hero-banner {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}
.hero-splide.splide {
  height: 100vh;
  height: 100svh;
}
.hero-splide .splide__track,
.hero-splide .splide__list,
.hero-splide .splide__slide {
  height: 100%;
}
.hero-splide .splide__slide {
  overflow: hidden;
}
.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
}
.hero-slide .hero-slide-content {
  position: absolute;
  left: 6.77%;
  right: 6.77%;
  bottom: 21%;
  letter-spacing: 4px;
}
.hero-slide .hero-slide-content.animation {
  animation: fadeInUp 1s ease-in-out;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-slide .hero-slide-content .hero-slide-en-ttl {
  font-size: 69px;
  text-transform: uppercase;
}
.hero-slide .hero-slide-content .hero-slide-ch-ttl {
  font-size: 34px;
  margin-top: 6px;
}
.hero-slide img,
.hero-slide video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-banner-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(12, 8, 20, 0.15) 0%, transparent 35%, rgba(12, 8, 20, 0.45) 100%);
}
.hero-splide .splide__pagination {
  bottom: 55px;
  z-index: 4;
  gap: 6px;
  display: none;
}
.hero-splide .splide__pagination__page {
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
}
.hero-splide .splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.15);
}
.hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.12em;
  transition: opacity 0.25s ease, color 0.25s ease;
}
@media (any-hover: hover) {
  .hero-scroll-hint:hover {
    color: #fff;
  }
}
.hero-scroll-hint-label {
  font-size: 10px;
  opacity: 0.85;
}
.hero-scroll-hint-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  position: relative;
  box-sizing: border-box;
}
.hero-scroll-hint-mouse::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 5.5px;
  width: 3.5px;
  height: 5.5px;
  margin-left: -1.75px;
  background: #fff;
  border-radius: 2px;
  animation: hero-scroll-dot 1.6s ease-in-out infinite;
}
@keyframes hero-scroll-dot {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(7.5px);
    opacity: 0.35;
  }
}
.hero-pagination {
  display: none;
}
@media (max-width: 1024px) {
  .hero-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.12rem;
    position: absolute;
    left: 50%;
    bottom: 0.75rem;
    transform: translateX(-50%);
    z-index: 4;
    pointer-events: auto;
  }
  .hero-pagination__btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0.28rem;
    height: 0.28rem;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
  }
  .hero-pagination__btn.is-active {
    width: 0.46rem;
    height: 0.46rem;
  }
  .hero-pagination__dot {
    display: block;
    width: 0.12rem;
    height: 0.12rem;
    border-radius: 50%;
    background: #fff;
  }
  .hero-pagination__ring {
    position: absolute;
    inset: 0;
    display: block;
  }
  .hero-pagination__ring svg {
    display: block;
    width: 100%;
    height: 100%;
  }
  .hero-pagination__track {
    fill: none;
    stroke: rgba(255, 255, 255, 0.35);
    stroke-width: 2;
  }
  .hero-pagination__bar {
    fill: none;
    stroke: #3b8cff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 119.38;
    stroke-dashoffset: 119.38;
    transform: rotate(-90deg);
    transform-origin: 22px 22px;
    animation: hero-pagination-progress var(--hero-pagination-duration, 6500ms) linear forwards;
  }
  .hero-pagination.is-paused .hero-pagination__bar {
    animation-play-state: paused;
  }
  .hero-pagination.is-reduced-motion .hero-pagination__bar {
    animation: none;
    stroke-dashoffset: 0;
  }
  .hero-pagination__num {
    position: relative;
    z-index: 1;
    font-size: 0.2rem;
    color: #fff;
    line-height: 1;
  }
  .hero-scroll-hint {
    bottom: 24px;
  }
}
@keyframes hero-pagination-progress {
  to {
    stroke-dashoffset: 0;
  }
}
/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
.contents {
  background-color: #fff;
  position: relative;
}
/*------------
Common
--------------*/
.t-ttl-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.t-ttl-wrap .t-ttl {
  margin-bottom: 0;
}
.t-ttl {
  background: url("ttl_deco.png") no-repeat top left;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 5px 0 0 30px;
  margin-bottom: 80px;
}
.t-ttl .ch {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 400;
}
.t-ttl .en {
  font-size: 24px;
  position: relative;
  line-height: 1;
  padding-left: 25px;
  margin-top: 10px;
  letter-spacing: 0.1em;
}
.t-ttl .en::before {
  content: "";
  background-color: #9837BC;
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
/*------------
Block
--------------*/
.sec01 {
  padding: 76px 0 100px;
}
.top-work-layout {
  display: grid;
  grid-template-columns: 40% 1fr;
  align-items: flex-start;
  gap: 120px;
}
.top-work-layout .l-img {
  aspect-ratio: 590/695;
  position: relative;
  z-index: 0;
}
.top-work-layout .l-img::before {
  content: "";
  border-radius: 20px;
  background-image: var(--gra01);
  position: absolute;
  inset: 0;
  rotate: 4deg;
  z-index: 0;
}
.top-work-layout .l-img .item {
  position: absolute;
  inset: 0;
  rotate: -4deg;
  transform-origin: left center;
  will-change: transform, opacity;
  opacity: 0;
}
.top-work-layout .l-img .item .img {
  border-radius: 20px;
  width: 100%;
  height: auto;
}
.top-work-layout .l-img .item .text {
  opacity: 0;
  position: absolute;
  bottom: -16%;
  right: -10%;
  transition: all 0.5s var(--easing);
  z-index: 1;
}
.top-work-layout .l-img .item.inactive {
  animation: turnoverout 0.5s var(--easing) forwards;
  z-index: 1;
}
.top-work-layout .l-img .item.active {
  opacity: 1;
  animation: turnoverin 0.5s var(--easing) forwards;
  z-index: 5;
}
.top-work-layout .l-img .item.active .text {
  opacity: 1;
}
.top-work-layout .l-desc {
  flex: 1;
  margin-top: -20px;
}
@keyframes turnoverin {
  0% {
    transform: translate(-2%, -30px) rotate(-4deg);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0) rotate(0);
    opacity: 1;
  }
}
@keyframes turnoverout {
  0% {
    opacity: 1;
    transform: translate(0, 0) rotate(0);
    will-change: transform, opacity;
  }
  100% {
    opacity: 0;
    transform: translate(-2%, -30px) rotate(-4deg);
  }
}
.top-work-list a {
  display: flex;
  gap: 10px;
  padding: 32px 0 30px;
  line-height: 1;
  border-bottom: 1px solid var(--color_border);
  position: relative;
}
.top-work-list li:first-child a {
  padding-top: 0;
}
.top-work-list a::after {
  content: "";
  background-color: #723489;
  width: 0;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
  transition: width 0.5s;
}
.top-work-list a:hover::after {
  width: 100%;
}
.top-work-list a:hover .arrow {
  background: linear-gradient(320deg, #723489 0%, #C63BF9 100%);
  border: none;
}
.top-work-list a:hover .arrow::before {
  background-color: #fff;
}
.top-work-list a.no-link {
  pointer-events: none;
}
.top-work-list .num {
  color: #757575;
  font-size: 24px;
  margin-right: 25px;
}
.top-work-list .wrapper {
  flex: 1;
  display: flex;
  gap: 70px;
  justify-content: space-between;
  color: #757575;
}
.top-work-list .wrapper .text_sub {
  transition: color 0.3s;
  margin-top: 10px;
  line-height: 1.5;
}
.top-work-list .text {
  font-size: 20px;
  transition: color 0.3s;
}
.top-work-list .arrow {
  border-radius: 50px;
  border: 1px solid var(--color_primary);
  width: 50px;
  height: 50px;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
  margin-left: auto;
  flex: none;
  top: 8x;
}
.top-work-list .arrow::before {
  content: "";
  background-color: var(--color_primary);
  width: 9px;
  height: 9px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s ease-in;
  z-index: 1;
}
.top-work-list .arrow::after {
  content: "";
  background-image: #723489;
  position: absolute;
  inset: 0;
  transition: opacity 0.3s ease-in;
  opacity: 0;
  z-index: 0;
}
.top-work-list .junbi {
  color: #959595;
  margin-left: auto;
}
.top-work-list .sp-img {
  display: none;
}
@media (any-hover: hover) {
  .top-work-list .active .wrapper {
    color: #000;
  }
  .top-work-list .active .num {
    color: #000;
  }
  .top-work-list .active .arrow::after {
    opacity: 1;
  }
}
.sec-curriculum {
  padding: 76px 0 74px;
  background-color: #fff;
}
.sec-curriculum .curriculum-layout {
  display: flex;
  justify-content: space-between;
}
.sec-curriculum .curriculum-intro .t-ttl {
  margin-bottom: 16px;
}
.sec-curriculum .curriculum-lead {
  font-size: 44px;
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 20px;
  letter-spacing: 4px;
}
.sec-curriculum .curriculum-desc {
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  max-width: 542px;
}
.sec-curriculum .curriculum-feature {
  width: 41.14%;
  max-width: 683px;
}
.sec-curriculum .curriculum-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.sec-curriculum .curriculum-photo img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.sec-curriculum .curriculum-badge {
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #fff;
  border-radius: 1px;
  background: linear-gradient(310deg, #714BB5 0%, #A17CDC 100%);
  display: inline-block;
}
.sec-curriculum .curriculum-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px 45px;
  margin-top: 18px;
  align-items: start;
}
.sec-curriculum .curriculum-detail-label {
  font-size: 33px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding-top: 15px;
}
.sec-curriculum .curriculum-detail-body {
  min-width: 0;
}
.sec-curriculum .curriculum-detail-ttl {
  font-size: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: 1px;
}
.sec-curriculum .curriculum-detail-text {
  color: #707070;
  line-height: 1.85;
  margin: 0;
  letter-spacing: 1px;
}
.sec02 {
  position: relative;
  padding-bottom: 64px;
  overflow: hidden;
  z-index: 0;
}
.sec02::before {
  content: "";
  background-color: var(--color_secondary);
  border-radius: 0 60px 60px 0;
  position: absolute;
  inset: 40px 6.77% 0 0;
  z-index: -1;
}
.sec02-scroll {
  padding-top: 170px;
  overflow: hidden;
  position: relative;
}
.sec02-cards-wrapper {
  display: flex;
  position: relative;
  width: 100%;
}
.sec02-cards {
  display: flex;
  align-items: center;
  gap: 50px;
}
.sec02-cards .item {
  position: relative;
}
.sec02-cards a {
  display: block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  aspect-ratio: 4/5;
  min-width: 400px;
}
.sec02-cards a::before {
  content: "";
  background-image: url("mask.webp");
  background-color: oklch(from var(--color_black) l c h / 0.3);
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: opacity 0.3s;
}
.sec02-wrapper {
  position: relative;
  padding: 80px 0 77px;
}
.sec02-wrapper::before {
  content: "";
  background-color: #F5F5F5;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
}
@media (any-hover: hover) {
  .sec02-cards a:hover::before {
    opacity: 0;
  }
}
.sec02-cards .label {
  background-image: var(--gra01);
  position: absolute;
  top: 0;
  left: 0;
  padding: 7px 22px;
  border-radius: 100px;
  color: #fff;
  z-index: 5;
}
.sec02-cards .item-desc {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  inset: 30px 35px 31px 35px;
  z-index: 5;
}
.sec02-cards .item-ttl {
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
}
.sec02-cards .item-info {
  margin-top: 14px;
  line-height: 1.7;
}
.sec03 {
  overflow: hidden;
}
.sec03-loop-text {
  pointer-events: none;
  display: flex;
  font-family: var(--font_en);
  font-size: 100px;
  font-weight: 100;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.66);
  margin-top: 72px;
}
.sec03-loop-text * {
  backface-visibility: hidden;
  display: flex;
  flex-shrink: 0;
}
.sec03-loop-text img {
  margin: 0 25px;
}
.sec03-loop-text .item:nth-child(odd) {
  animation: loop 100s -50s linear infinite;
  transform: translateX(100%);
}
.sec03-loop-text .item:nth-child(even) {
  animation: loop2 100s linear infinite;
  transform: translateX(0);
}
.sec02-slider {
  position: relative;
  margin-bottom: 70px;
}
.sec02-slider .splide__slide a {
  transform: scale(0.8);
  transition: transform 0.3s;
  transform-origin: center;
}
.sec02-slider .splide__slide.is-active a {
  transform: scale(1);
}
.sec02-slider a {
  display: block;
  background-color: #fff;
  border-radius: 22px;
  border: 1px solid #D9D9D9;
  padding: 34px 35px 50px;
}
@media (any-hover: hover) {
  .sec02-slider a:hover .slide-img img {
    transform: scale(1.05);
  }
}
.sec02-slider .slide-img {
  border-radius: 14px;
  overflow: hidden;
}
.sec02-slider .slide-img img {
  transition: transform 0.5s;
}
.sec02-slider .slide-desc {
  padding: 45px 25px 0 30px;
  width: 100%;
  position: relative;
}
.sec02-slider .slide-desc::before {
  top: -20px;
  left: 0;
}
.sec02-slider .slide-desc::after {
  top: 70px;
  right: -20px;
}
.sec02-slider .num {
  display: block;
  background-image: var(--gra01);
  border-radius: 6px;
  color: #fff;
  padding: 10px 11px;
  margin: -70px 0 20px;
  width: fit-content;
  position: relative;
  z-index: 5;
  font-weight: 400;
}
.sec02-slider .slide-ttl {
  font-size: 24px;
  margin-bottom: 12px;
  line-height: 1;
  font-weight: 400;
}
.sec02-slider .slide-ttl span {
  display: block;
  color: #723489;
  font-size: 20px;
}
.sec02-slider .splide__arrow--prev {
  left: calc(50% - 435px);
}
.sec02-slider .splide__arrow--next {
  right: calc(50% - 435px);
}
.sec02-wrapper .btn-more .arrow {
  width: 50px;
  height: 50px;
}
.talk-member {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  line-height: 1;
}
.talk-member .title {
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.5;
  text-align: justify;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.talk-member .desc {
  color: #707070;
  margin-top: 0;
  text-align: justify;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.sec05-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
}
.sec05-layout .t-ttl {
  margin-bottom: 45px;
}
.sec05-layout .l-desc {
  padding: 180px 0;
  max-width: 660px;
}
.sec05-layout .l-desc .l-desc-text {
  line-height: 2.1;
  text-align: justify;
}
.sec05-layout .l-btn {
  margin-top: 45px;
}
.sec05-layout .l-img {
  overflow: hidden;
  max-height: 750px;
}
.sec05-layout .l-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  gap: 20px;
}
.sec05-layout .l-img .item {
  display: grid;
  gap: 20px;
}
.sec05-layout .l-img .item:nth-child(2) {
  margin-top: -400px;
}
.sec05-layout .l-img .item img {
  border-radius: 20px;
}
.sec03 {
  background-image: url(../img/index/img.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 490px;
  background-attachment: fixed;
}
/*-----------------------------------------------------------
Common
-----------------------------------------------------------*/
.pc-only {
  display: block;
}
.tac {
  text-align: center;
}
@media (max-width: 1024px) {
  .pc-only {
    display: none;
  }
}
/*------------
lenis
-------------*/
html.lenis,
html.lenis body {
  height: auto;
}
/*------------
splide
-------------*/
.splide__container {
  box-sizing: border-box;
  position: relative;
}
.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}
.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}
.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}
.splide:not(.is-overflow) .splide__pagination {
  display: none;
}
.splide__progress__bar {
  width: 0;
}
.splide {
  position: relative;
  visibility: hidden;
}
.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}
.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}
.splide__slide img {
  vertical-align: bottom;
}
.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}
.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}
.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}
.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}
.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.splide--rtl {
  direction: rtl;
}
.splide__track--ttb > .splide__list {
  display: block;
}
.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: var(--color_black);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 65px;
  width: 65px;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.splide__arrow--prev::after,
.splide__arrow--next::after {
  content: "";
  width: 16px;
  height: 16px;
  border: solid #fff;
  border-width: 2px 2px 0 0;
}
.splide__arrow--prev::after {
  margin-left: 4px;
  transform: rotate(-135deg);
}
.splide__arrow--next::after {
  margin-right: 4px;
  transform: rotate(45deg);
}
.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}
.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}
.splide__arrow:disabled {
  opacity: 0.3;
}
.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__arrow--prev {
  left: 1em;
}
.splide__arrow--prev svg {
  transform: scaleX(-1);
}
.splide__arrow--next {
  right: 1em;
}
.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__pagination {
  gap: 10px;
  bottom: 0.5em;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}
.splide__pagination__page {
  background: #fff;
  border: 1px solid var(--color_primary);
  border-radius: 2px;
  display: inline-block;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  height: 10px;
  width: 10px;
}
.splide__pagination__page.is-active {
  background: var(--color_primary);
  z-index: 1;
}
.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}
.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__progress__bar {
  background: #ccc;
  height: 3px;
}
.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.splide__slide:focus {
  outline: 0;
}
@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}
.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}
.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}
.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}
.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}
.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}
.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}
.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}
.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}
.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}
.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}
.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}
.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}
.f-entry {
  background-image: var(--gra01);
  color: #fff;
  padding-bottom: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 5;
  font-size: 36px;
}
.f-entry .container {
  padding-top: 70px;
}
.btn-entry {
  background-color: #fff;
  border-radius: 10px;
  color: var(--color_primary);
  display: flex;
  justify-content: center;
  max-width: 833px;
  margin: 0 auto;
  min-width: 600px;
  width: 50%;
  padding: 35px 25px;
  margin-top: 50px;
  margin-bottom: 40px;
  font-size: 36px;
  line-height: 1;
  position: relative;
}
.btn-entry::before {
  content: "";
  background-color: #9D77D8;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 4%;
  transform: translateY(-50%);
}
.btn-entry .text {
  display: block;
  overflow: hidden;
  position: relative;
  line-height: 1;
}
.btn-entry .text .f,
.btn-entry .text .b {
  color: currentColor;
  display: block;
}
.btn-entry .text .f {
  transform: translateY(0);
  transition: transform var(--transition);
}
.btn-entry .text .b {
  position: absolute;
  top: 0;
  left: 0;
  transition: color var(--transition), transform var(--transition), opacity var(--transition);
  transform: translateY(38px);
  opacity: 0;
}
@media (any-hover: hover) {
  .btn-entry:hover .f {
    transform: translateY(-38px);
  }
  .btn-entry:hover .b {
    opacity: 1;
    transform: translateY(0px);
  }
  .btn-entry:hover .arrow::before {
    background-color: #fff;
  }
  .btn-entry:hover .arrow::after {
    opacity: 1;
  }
}
.btn-entry02 {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
.btn-entry02 .arrow {
  border-radius: 50px;
  border: 2px solid #fff;
  width: 44px;
  height: 44px;
  overflow: hidden;
  position: relative;
  z-index: 0;
  transition: 0.3s;
}
.btn-entry02 .text {
  display: block;
  overflow: hidden;
  position: relative;
  line-height: 1;
}
.btn-entry02 .text .f,
.btn-entry02 .text .b {
  color: currentColor;
  display: block;
}
.btn-entry02 .text .f {
  transform: translateY(0);
  transition: transform var(--transition);
}
.btn-entry02 .text .b {
  position: absolute;
  top: 0;
  left: 0;
  transition: color var(--transition), transform var(--transition), opacity var(--transition);
  transform: translateY(37px);
  opacity: 0;
}
@media (any-hover: hover) {
  .btn-entry02:hover .f {
    transform: translateY(-37px);
  }
  .btn-entry02:hover .b {
    opacity: 1;
    transform: translateY(0px);
  }
  .btn-entry02:hover .arrow::before {
    background-color: #fff;
  }
  .btn-entry02:hover .arrow::after {
    opacity: 1;
  }
}
.f-loop-text {
  pointer-events: none;
  color: rgba(255, 255, 255, 0.66);
  display: flex;
  font-family: var(--font_en);
  font-size: 126px;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
  font-style: italic;
  padding-top: 30px;
}
.f-loop-text * {
  backface-visibility: hidden;
  display: flex;
  flex-shrink: 0;
  padding-left: 25px;
}
.f-loop-text .item:nth-child(odd) {
  animation: loop 100s -50s linear infinite;
  transform: translateX(100%);
}
.f-loop-text .item:nth-child(even) {
  animation: loop2 100s linear infinite;
  transform: translateX(0);
}
@media screen and (max-width: 1600px) {
  .top-work-list a {
    padding: 22px 0 20px;
  }
  .top-work-list .num {
    margin-right: 15px;
    font-size: 22px;
  }
  .top-work-list .text {
    font-size: 18px;
  }
  .top-work-list .wrapper {
    gap: 40px;
  }
  .top-work-list .wrapper .text_sub {
    font-size: 14px;
  }
  .top-work-list .arrow {
    width: 44px;
    height: 44px;
  }
  .top-work-list .arrow::before {
    width: 7px;
    height: 7px;
  }
  .top-work-layout {
    gap: 90px;
  }
  .top-work-layout .l-img {
    aspect-ratio: 630 / 755;
  }
  .sec-curriculum .curriculum-detail-label {
    font-size: 28px;
  }
  .sec-curriculum .curriculum-detail {
    gap: 30px;
  }
  .sec-curriculum .curriculum-detail-ttl {
    font-size: 20px;
  }
  .sec-curriculum .curriculum-detail-text {
    font-size: 14px;
    line-height: 1.6;
  }
  .sec-curriculum .curriculum-lead {
    font-size: 38px;
  }
  .sec-curriculum .curriculum-desc {
    font-size: 18px;
  }
  .t-ttl .ch {
    font-size: 32px;
  }
  .t-ttl .en {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .hero-scroll-hint {
    display: none;
  }
  .hero-slide .hero-slide-content {
    left: 0.3rem;
    right: 0.3rem;
    bottom: 1.85rem;
  }
  .hero-slide .hero-slide-content .hero-slide-en-ttl {
    font-size: 0.69rem;
  }
  .hero-slide .hero-slide-content .hero-slide-ch-ttl {
    font-size: 0.34rem;
  }
  .hero-slide .hero-slide-content .hero-slide-en-btn {
    font-size: 0.49rem;
    padding: 0.2rem 0.4rem;
    border-radius: 0.1rem;
    background-color: #723489;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .hero-slide .hero-slide-content .hero-slide-en-btn:hover {
    background-color: #532f14;
  }
  .top-work-layout .l-desc {
    margin-top: 0;
  }
  .top-work-layout .top-work-list {
    padding-top: 0.36rem;
  }
  .t-ttl-wrap {
    flex-direction: column;
    margin-bottom: 0.46rem;
  }
  .t-ttl-wrap .t-ttl {
    margin-bottom: 0;
  }
  .t-ttl {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    padding: 0.13rem 0 0 0.36rem;
    margin-bottom: 0.6rem;
    background-size: 0.24rem auto;
  }
  .t-ttl .ch {
    font-size: 0.46rem;
  }
  .t-ttl .en {
    font-size: 0.32rem;
    padding-left: 0;
    margin-top: 0.14rem;
  }
  .t-ttl .en::before {
    display: none;
  }
  .sec01 {
    padding: 1rem 0;
  }
  .top-work-layout {
    grid-template-columns: 1fr;
    gap: 100px;
  }
  .top-work-layout .l-img {
    display: none;
  }
  .top-work-list {
    border-top: 1px solid var(--color_border);
    position: relative;
  }
  .top-work-list .text {
    opacity: 1;
    font-size: 0.38rem;
    color: #000000;
  }
  .top-work-list .text_sub {
    font-size: 0.28rem;
    color: #000;
  }
  .top-work-list a {
    gap: 0.24rem;
    padding: 0.36rem 0;
    min-height: 0;
    align-items: center;
  }
  .top-work-list .num {
    display: none;
  }
  .top-work-list .arrow {
    display: none;
  }
  .top-work-list .junbi {
    font-size: 14px;
    white-space: nowrap;
  }
  .top-work-list .sp-img {
    display: block;
    border-radius: 3px;
    width: 2rem;
    height: 2.36rem;
    object-fit: cover;
  }
  .top-work-list .no-link .wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .top-work-list .junbi {
    margin-left: 0;
  }
  .sec02 {
    padding-bottom: 0.82rem;
  }
  .sec02::before {
    inset: 0;
  }
  .sec02-scroll {
    padding-top: 2.3rem;
  }
  .sec02-scroll::before {
    width: 150px;
    height: 177px;
    right: 0;
    bottom: 50px;
  }
  .sec02-cards {
    gap: 0.3rem;
  }
  .sec02-cards .item-info {
    font-size: 0.2rem;
  }
  .sec02-cards a {
    min-width: 5.6rem;
  }
  .sec02-cards a::before {
    background-color: oklch(from var(--color_black) l c h / 0);
  }
  .sec02-cards .label {
    padding: 0.08rem 0.3rem;
    font-size: 0.2rem;
  }
  .sec02-cards .item-desc {
    inset: 15px;
  }
  .sec02-cards .item-ttl {
    font-size: 0.26rem;
  }
  .sec02-slider {
    margin-bottom: 0.5rem;
  }
  .sec02-slider .splide__track {
    padding-bottom: 1px;
  }
  .sec02-slider a {
    padding: 0.27rem 0.3rem 0.45rem;
    border-radius: 0.22rem;
  }
  .sec02-slider .slide-desc {
    padding: 0.15rem 0 0;
    margin: -0.4rem 0 0 0;
  }
  .sec02-slider .slide-desc .talk-member .title {
    font-size: 0.32rem;
    margin-bottom: 0.17rem;
  }
  .sec02-slider .slide-desc .talk-member .desc {
    font-size: 0.28rem;
  }
  .sec02-slider .slide-desc::before,
  .sec02-slider .slide-desc::after {
    width: 15px;
    height: 15px;
  }
  .sec02-slider .slide-desc::before {
    top: -14px;
    left: 0;
  }
  .sec02-slider .slide-desc::after {
    top: 26px;
    right: -14px;
  }
  .sec02-slider .num {
    font-size: 0.26rem;
    padding: 0.07rem 0.1rem;
    margin: 0 0 0.25rem 0.23rem;
    border-radius: 0.08rem;
  }
  .sec02-slider .slide-ttl {
    font-size: 0.28rem;
    margin-bottom: 0.12rem;
  }
  .sec02-slider .slide-ttl span {
    font-size: 15px;
  }
  .sec02-slider .splide__arrow--prev {
    left: 2%;
  }
  .sec02-slider .splide__arrow--next {
    right: 2%;
  }
  .sec02-wrapper .btn-more .arrow {
    width: 0.7rem;
    height: 0.7rem;
  }
  .sec02-wrapper .btn-more .arrow::before {
    height: 0.14rem;
    width: 0.14rem;
  }
  .talk-member .job {
    font-size: 10px;
  }
  .talk-member .name {
    font-size: 15px;
  }
  .sec03-loop-text {
    font-size: 1.52rem;
    margin-top: 0.15rem;
  }
  .sec03 {
    height: 7.68rem;
  }
  .sec-curriculum {
    padding: 0.7rem 0 0.9rem;
  }
  .sec-curriculum .curriculum-layout {
    flex-direction: column;
  }
  .sec-curriculum .curriculum-intro .t-ttl {
    margin-bottom: 0.2rem;
  }
  .sec-curriculum .curriculum-lead {
    font-size: 0.44rem;
    margin-bottom: 0.37rem;
    padding-left: 0.36rem;
  }
  .sec-curriculum .curriculum-desc {
    margin-bottom: 0.2rem;
    padding-left: 0.36rem;
    max-width: none;
    font-size: 0.28rem;
  }
  .sec-curriculum .btn-more {
    margin-left: 0.36rem;
    margin-bottom: 0.6rem;
  }
  .sec-curriculum .curriculum-feature {
    width: 100%;
  }
  .sec-curriculum .curriculum-badge {
    font-size: 0.28rem;
    padding: 0.08rem 0.3rem;
  }
  .sec-curriculum .curriculum-detail {
    margin-top: 0.27rem;
    gap: 0.45rem;
  }
  .sec-curriculum .curriculum-detail .curriculum-detail-label {
    font-size: 0.38rem;
  }
  .sec-curriculum .curriculum-detail .curriculum-detail-body .curriculum-detail-ttl {
    font-size: 0.34rem;
    padding-bottom: 0.14rem;
    margin-bottom: 0.16rem;
  }
  .sec-curriculum .curriculum-detail .curriculum-detail-body .curriculum-detail-text {
    font-size: 0.28rem;
    line-height: 1.7;
  }
  .sec02-wrapper {
    padding: 0.66rem 0 0.78rem;
  }
  .splide__arrow {
    height: 0.8rem;
    width: 0.8rem;
    top: 47%;
  }
  .splide__arrow--prev::after,
  .splide__arrow--next::after {
    width: 0.2rem;
    height: 0.2rem;
    border-width: 1px 1px 0 0;
  }
  .sec05-layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 1.4rem;
  }
  .sec05-layout .t-ttl {
    margin-bottom: 0.5rem;
  }
  .sec05-layout .l-desc {
    padding: 0.93rem 0 0.53rem;
    font-size: 0.28rem;
  }
  .sec05-layout .l-btn {
    margin-top: 0.5rem;
  }
  .sec05-layout .l-img {
    max-height: 8.5rem;
  }
  .btn-entry {
    min-width: 100%;
    padding: 0.32rem 0 0.4rem;
    font-size: 0.45rem;
    margin: 0.45rem 0 0.4rem;
  }
  .btn-entry::before {
    width: 0.22rem;
    height: 0.22rem;
    left: 0.54rem;
  }
  .btn-entry02 {
    font-size: 0.45rem;
  }
  .f-entry .container {
    padding-top: 0.54rem;
  }
  .f-entry .f-loop-text {
    font-size: 1.52rem;
    padding-top: 0.1rem;
    line-height: 2.13rem;
  }
}
