@charset "utf-8";
/*============================
        common
=============================*/
:root {
  /* color */
  --black: #000;
  --white: #fff;
  --maincolor: #00a0d2;
  --cv: #fff100;
  --subcolor: #ff8cb4;
  --blue-gradation: linear-gradient(180deg,rgba(0, 160, 210, 1) 0%, rgba(0, 125, 209, 1) 100%);
  --pink-gradation: linear-gradient(180deg,rgba(255, 191, 214, 1) 0%, rgba(255, 140, 180, 1) 50%, rgba(233, 84, 132, 1) 100%);
  /* font family */
  --en: "Poppins", sans-serif;
  --ja: "Noto Sans JP", sans-serif;
  --serif: "Noto Serif JP", serif;
  --font-size-xs: clamp(1.2rem, 1.13rem + 0.19vw, 1.4rem);
  --font-size-md: clamp(1.3rem, 1.19rem + 0.28vw, 1.6rem);
  --font-size-lg: clamp(1.4rem, 1.26rem + 0.38vw, 1.8rem);
  --font-size-xl: clamp(1.8rem, 1.59rem + 0.56vw, 2.4rem);
  --font-size-xl-2: clamp(2.2rem, 1.85rem + 0.94vw, 3.2rem);
  --font-size-xxl: clamp(2.8rem, 2.38rem + 1.13vw, 4rem);
  --font-size-ttl: clamp(4rem, 3.30rem + 1.88vw, 6rem);
}
::selection {
  background: var(--subcolor);
  color: var(--white);
}
::-moz-selection {
  background: var(--subcolor);
  color: var(--white);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-size: 10px;
  scroll-behavior: smooth;
}
img {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
body {
  font-size: var(--font-size-md);
  font-family: var(--ja);
  font-weight: 500;
  color: var(--font);
  animation: fadeIn 4s forwards;
  position: relative;
  letter-spacing: 0.05;
  line-height: 1.5;
}
a {
  text-decoration: none;
  color: initial;
  transition: 0.4s all;
  color: var(--font);
}
.pc {
  display: block;
}
.sp {
  display: none;
}
.wrap {
  width: 90%;
  max-width: 1266px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.flex {
  display: flex;
}
h2{
  font-size: var(--font-size-md);
  color: var(--maincolor);
  text-align: center;
  line-height: 1.2;
}
h2 span{
  font-family: var(--en);
  font-size: var(--font-size-ttl);
}
h3{
  font-size: var(--font-size-xxl);
  font-family: var(--serif);
  letter-spacing: .1rem;
  line-height: 1.2;
}
@media screen and (max-width: 1266px) {

}
@media screen and (max-width: 1024px) {

}
@media screen and (max-width: 550px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/*============================
    animation
=============================*/
/*----------------------------------
fadeIn
----------------------------------*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*----------------------------------
    text fade effect
----------------------------------*/
.inview-blur {
  opacity: 0;
  transition: transform 0.5s linear;
  animation-duration: 1.5s;
  animation-fill-mode: both;
}
.blur {
  animation-name: imageBlur !important;
  opacity: 1;
  transition: 0.8s;
}
@keyframes imageBlur {
  from {
    opacity: 0;
    filter: blur(15px);
  }
  to {
    opacity: 1;
    filter: blur(0px);
  }
}
/*---------------------
  scroll fade-in
---------------------*/
.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}
.fade-in-up {
  transform: translate(0, 80px);
}
.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}
/*---------------------
  delayScrollAnime box
---------------------*/
.delayScroll > * {
  opacity: 0;
  position: relative;
  top: 0;
}
.fadeUp {
  animation: fadeUpAnime 0.6s ease-out forwards;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    top: 20px;
    filter: blur(3px);
  }
  to {
    opacity: 1;
    top: 0;
    filter: blur(0);
  }
}

/*============================
    bgsakura
=============================*/
.bgsakura{
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: -999;
}
.bgsakura::before{
  content: "";
  position: absolute;
  background: url(../img/bg_sakura.png) repeat-y;
  background-size: contain;
  width: 480px;
  height: 100vh;
  top: 0;
  left: -20vw;
}
.bgsakura::after{
  content: "";
  position: absolute;
  background: url(../img/bg_sakura.png) repeat-y;
  background-size: contain;
  width: 480px;
  height: 100vh;
  top: 0;
  right: -20vw;
  transform: scale(-1, 1);
}
@media screen and (max-width: 1040px) {
    .bgsakura::before{
    width: 300px;
  }
  .bgsakura::after{
    width: 300px;
  }

}
@media screen and (max-width: 550px) {
  .bgsakura::before{
    width: 200px;
    left: -35vw;
  }
  .bgsakura::after{
    width: 200px;
    right: -35vw;
  }
}
/*============================
    header
=============================*/
header ul.logo{
  position: fixed;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 4px;
  z-index: 999;
}
header ul.logo a{
  transition: .4s all;
}
header ul.logo a:hover{
  opacity: 0.7;
}
header .cv{
  position: fixed;
  top: 50%;
  right: -33px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 1000;
  width: 65px;
  aspect-ratio: 65 / 301;
}
header .cv a:hover{
  opacity: .6;
}
.hamburger-menu {
  position: fixed;
  top: 0px;
  right: 0px;
  width: 100px;
  height: 100px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 1002;
  background: var(--subcolor);
}
.hamburger-line {
  width: 50%;
  height: 3px;
  background-color: var(--white);
  transition: all 0.3s ease-in-out;
}
.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(10px, -10px);
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}
.slide-menu.overlay-menu {
  position: fixed;
  top: 0;
  right: -30vw;
  width: 30vw;
  height: 100vh;
  background: var(--subcolor);
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  overflow-x: hidden;
}
.slide-menu.overlay-menu.active {
  right: 0;
}
.menu-list {
  list-style: none;
  padding: 100px 0 0 0;
  margin: 0;
}
.menu-list li {
  margin: 0;
  padding: 0;
}
.menu-list a {
  display: block;
  padding: 16px 32px;
  color: var(--white);
  text-decoration: none;
  font-size: var(--font-size-lg);
  transition: background-color 0.3s ease;
}
.menu-list a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.menu-list li:last-child a:hover{
  background: var(--subcolor);
}
.menu-list li:last-child img{
  transition: .4s all;
}
.menu-list li:last-child img:hover{
  opacity: .6;
}
@media screen and (max-width: 1024px) {
    header ul.logo{
    top: 15px;
    left: 10px;
  }
  header ul.logo li img {
    height: 48px;
  }
  .hamburger-menu{
    width: 70px;
    height: 70px;
  }
  header .cv{
    right: -24px;
    width: 48px;
  }
}
@media screen and (max-width: 1024px) {
  .slide-menu.overlay-menu{
    right: -60vw;
    width: 60vw;
  }
}
@media screen and (max-width: 550px) {
  header .cv {
    width: 101vw;
    bottom: -51px;
    top: auto;
    right: -51%;
    aspect-ratio: 1244 / 225;
  }
  header ul.logo li img{
    height: 35px;
  }
  .hamburger-menu{
    width: 64px;
    height: 64px;
    gap: 5px;
  }
  .hamburger-menu.active .hamburger-line:nth-child(3){
    transform: rotate(-45deg) translate(4px, -4px);
  }
  .slide-menu.overlay-menu{
    right: -80vw;
    width: 80vw;
  }
  .menu-list{
    padding-top: 64px;
  }
  .menu-list a{
    padding: 16px 24px;    
  }
}
/*============================
    mainVisual
=============================*/
#mainVisual{
  position: relative;
  overflow: hidden;
  /* min-height: 900px; */
  height: 100vh;
}
#mainVisual .ttl{
  position: absolute;
  bottom: 20px;
  left: 2.78vw;
   width: 62.92%;
  max-width: 906px;
}
#mainVisual .ttl figure{
  margin-bottom: 20px;
  opacity: 0;
  transform: translateX(-50px);
}
.ttl.animate figure {
  animation: fadeSlide 0.6s ease forwards;
}
.ttl.animate figure:nth-child(1) { animation-delay: 0.2s; }
.ttl.animate figure:nth-child(2) { animation-delay: 0.6s; }
.ttl.animate figure:nth-child(3) { animation-delay: 1s; }
@keyframes fadeSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
#mainVisual .mainImg img{
  width: 100vw;
  /* min-height: 900px; */
  height: 100vh;
  object-fit: cover;
}
@media screen and (max-width: 1266px) {
}
@media screen and (max-width: 1024px) {
    /* #mainVisual{
    height: 85vh;
  }
  #mainVisual .mainImg img{
    height: 85vh;
  } */
}
@media screen and (max-width: 550px) {
  #mainVisual{
    height: 90vh;
  }
  #mainVisual .mainImg img{
    height: 90vh;
  }
  #mainVisual .ttl{
    width: 85%;
    bottom: 40px;
  }
  #mainVisual .ttl figure{
    margin-bottom: 10px;
  }
}
/*============================
    mainLead
=============================*/
#mainLead{
  padding: 100px 0;
}
#mainLead h4{
  font-size: var(--font-size-xl);
  text-align: center;
  color: var(--maincolor);
  font-family: var(--serif);
  line-height: 1.5;
  margin-bottom: 32px;
}
#mainLead p{
  text-align: center;
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 550px) {
  #mainLead {
    padding: 64px 0;
  }
  #mainLead h4{
    margin-bottom: 24px;
  }
}
/*============================
    image
=============================*/
#image{
  padding: 120px 0 100px;
}
#image h3{
  text-align: center;
  margin-bottom: 40px;
}
#image h3 span{
  color: var(--maincolor);
}
#image ul.imageList{
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
#image ul.imageList li{
  position: relative;
  font-size: var(--font-size-lg);
  text-align: center;
  background: var(--white);
  width: calc((100% - 40px) / 3);
  padding: 32px 0;
  box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.15);
}
#image ul.imageList li::before{
  content: "";
  position: absolute;
  background: url(../img/icon_moyamoya.png) no-repeat;
  background-size: contain;
  width: 61px;
  aspect-ratio: 61 / 63;
  top: -16px;
  left: 0;
}
#image .lead{
  text-align: center;
}
#image .lead span{
  display: block;
  font-family: var(--serif);
  font-size: var(--font-size-xl);
  color: var(--maincolor);
  text-align: center;
}
@media screen and (max-width: 1266px) {
}
@media screen and (max-width: 1024px) {
  #image ul.imageList{
    display: block;
  }
  #image ul.imageList li{
    width: 70%;
    margin: 0 auto 20px;
  }
  #image ul.imageList li:last-child{
    margin-bottom: 0;
  }
  #image ul.imageList li::before{
    width: 48px;
  }
}
@media screen and (max-width: 550px) {
  #image{
    padding: 56px 0 72px;
  }
  #image ul.imageList li{
    width: 100%;
    padding: 24px 0;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  }
  #image ul.imageList li::before{
    width: 42px;
  }
}
/*============================
    benefits
=============================*/
#benefits{
  padding: 80px 0;
  position: relative;
  background: var(--maincolor);
  background: var(--blue-gradation);
  overflow-x: clip;
}
#benefits::before{
  content: "";
  position: absolute;
  background: url(../img/sakura.png) no-repeat;
  background-size: contain;
  max-width: 406px;
  width: 100%;
  aspect-ratio: 406 / 382 ;
  top: -56px;
  left: -32px;
  z-index: 1;
}
#benefits::after{
  content: "";
  position: absolute;
  background: url(../img/sakura.png) no-repeat;
  background-size: contain;
  max-width: 406px;
  width: 100%;
  aspect-ratio: 406 / 382 ;
  bottom: -50px;
  right: -40px;
  z-index: 1;
  transform: rotate(180deg)
}
#benefits .wrap{
  max-width: 1080px;
}
#benefits h2{
  text-align: center;
  color: var(--white);
  margin-bottom: 24px;
}
#benefits .lead{
  text-align: center;
  color: var(--white);
  margin-bottom: 48px;
}
#benefits ul.benefitsList{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
#benefits ul.benefitsList li{
  position: relative;
  width: calc((100% - 20px) / 2);
  background: var(--white);
  padding: 35px 0;
  border-radius: 80px 0 0;
}
#benefits ul.benefitsList li figure{
  text-align: center;
}
#benefits ul.benefitsList li:first-child::before{
  content: "";
  position: absolute;
  background: url(../img/benefits01.png) no-repeat;
  background-size: contain;
  max-width: 120px;
  width: 100%;
  aspect-ratio: 120 / 115;
  top: -28px;
  left: -16px;
}
#benefits ul.benefitsList li:first-child img{
  max-width: 353px;
  width: 80%;
  aspect-ratio: 353 / 172;
}
#benefits ul.benefitsList li:nth-child(2)::before{
  content: "";
  position: absolute;
  background: url(../img/benefits02.png) no-repeat;
  background-size: contain;
  max-width: 120px;
  width: 100%;
  aspect-ratio: 120 / 115;
  top: -28px;
  left: -16px;
}
#benefits ul.benefitsList li:nth-child(2) img{
  max-width: 318px;
  width: 80%;
  aspect-ratio: 318 / 157;
}
#benefits ul.precautions{
    background: var(--white);
    padding-bottom: 24px;
    margin-bottom: 16px;
}
#benefits ul.precautions li{
  font-size: var(--font-size-xs);
  padding-left: 40px;
}
#benefits ul.precautions li:first-child{
  text-align: center;
  color: var(--white);
  background: #e95484;
  padding: 16px 0;
  font-size: var(--font-size-md);
  margin-bottom: 20px;
}
#benefits .period{
  font-size: var(--font-size-xl);
  color: var(--white);
  text-align: center;
}
#benefits .period b{
  font-size: var(--font-size-xxl);
  font-family: var(--en);
}
@media screen and (max-width: 1266px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 550px) {
  #benefits{
    padding: 64px 0;
  }
  #benefits ul.benefitsList{
    display: block;
  }
  #benefits ul.benefitsList li{
    width: 100%;
    border-radius: 50px 0 0;
    padding: 25px 0;
  }
  #benefits ul.benefitsList li:first-child{
    margin-bottom: 24px;
  }
  #benefits ul.benefitsList li:first-child img{
    width: 70%;
  }
  #benefits ul.benefitsList li:nth-child(2) img{
    width: 70%;
  }
  #benefits ul.benefitsList li:first-child::before{
    max-width: 90px;
    top: -16px;
  }
  #benefits ul.benefitsList li:nth-child(2)::before{
    max-width: 90px;
    top: -16px;
  }
  #benefits ul.precautions li{
    padding: 0 16px;
  }
  #benefits::before{
    max-width: 186px;
    top: -26px;
    left: -12px;
  }
  #benefits::after{
    max-width: 126px;
    bottom: -25px;
    right: -12px;
  }
  #benefits h2{
    margin-bottom: 16px;
  }
  #benefits .lead{
    margin-bottom: 32px;
  }
  #benefits ul.precautions li:first-child{
    padding: 10px 0;
  }
  #benefits ul.precautions{
    margin-bottom: 24px;
  }
}
/*============================
    environment
=============================*/
#environment{
  padding: 120px 0;
  background: url(../img/bg_environment.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
#environment h3{
  text-align: center;
  margin-bottom: 32px;
}
#environment h3 span{
  color: var(--subcolor);
}
#environment .lead1{
  text-align: center;
  margin-bottom: 80px;
}
#environment h5{
  font-family: var(--serif);
  text-align: center;
  font-size: var(--font-size-xl-2);
  margin-bottom: 32px;
  line-height: 1.2;
}
#environment h5 span{
  color: var(--subcolor);
}
#environment .lead2{
  text-align: center;
  margin-bottom: 40px;
}
#environment ul.detail{
  display: flex;
  gap: 20px;
}
#environment ul.detail li{
  width: calc((100% - 40px) / 3);
  background: var(--white);
  padding: 32px 0;
  box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.15);
}
#environment ul.detail li p{
  font-size: var(--font-size-xs);
  text-align: center;
}
#environment ul.detail li p span{
  display: block;
  font-size: var(--font-size-lg);
  text-align: center;
  color: var(--subcolor);
  margin-bottom: 5px;
}
@media screen and (max-width: 1266px) {
}
@media screen and (max-width: 1024px) {
  #environment ul.detail{
    display: block;
  }
  #environment ul.detail li{
    width: 70%;
    padding: 20px 0 24px;
    margin: 0 auto 16px;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  }
  #environment ul.detail li:last-child{
    margin-bottom: 0;
  }
  #environment ul.detail li p span{
    margin-bottom: 3px;
  }
}
@media screen and (max-width: 550px) {
  #environment {
    padding: 72px 0;
  }
  #environment h3{
    margin-bottom: 24px;
  }
  #environment .lead1{
    margin-bottom: 48px;
  }
  #environment h5{
    margin-bottom: 24px;
  }
  #environment ul.detail li{
    width: 100%;
  }
}
/*============================
    lesson
=============================*/
#lesson{
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}
/* #lesson::before{
  content: "";
  position: absolute;
  background: var(--maincolor);
  background: var(--blue-gradation);
  width: 100vw;
  max-height: 443px;
  height: 50vh;
  bottom: 0;
  left: 0;
  z-index: -1;
} */
#lesson h2{
  margin-bottom: 32px;
}
#lesson .swiper{
  padding: 32px 0;
}
#lesson .p-controls{
  margin-top: 0;
}
#lesson .p-slide{
  position: relative;
  padding: 64px 24px 32px;
  box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.15);
}
#lesson .p-slide span{
  position: absolute;
  font-family: var(--en);
  color: var(--subcolor);
  font-size: clamp(5rem, 3.94rem + 2.82vw, 8rem);
  opacity: 0.5;
  top: -56px;
  left: 0;
  z-index: 1;
}
#lesson .p-slide h5{
  text-align: center;
  margin-bottom: 32px;
}
#lesson .lessonBtn{
  display: block;
  max-width: 500px;
  width: 100%;
  padding: 24px 0;
  background: var(--maincolor);
  color: var(--white);
  /* margin: 56px auto 100px; */
  margin: 56px auto 0px;
  border-radius: 100px;
  text-align: center;
  font-size: var(--font-size-lg);
}
#lesson .lessonBtn span{
  position: relative;
  padding-right: 18px;
}
#lesson .lessonBtn span::before{
  content: "";
  position: absolute;
  background: url(../img/icon_arrow-wh.png) no-repeat;
  background-size: contain;
  width: 14px;
  aspect-ratio: 12 / 11;
  top: 8px;
  right: 0;
  transform: rotate(-20deg);
}
#lesson h6{
  text-align: center;
  margin-bottom: 32px;
  font-size: var(--font-size-xl);
}
#lesson .youtube{
  text-align: center;
}
#lesson iframe{
  aspect-ratio: 16 / 9;
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 1266px) {
}
@media screen and (max-width: 1024px) {
  #lesson .p-slide{
    padding: 40px 24px 32px;
  }
  #lesson .p-slide span{
    top: -45px;
  }
  #lesson::before{
    max-height: 313px;
  }
}
@media screen and (max-width: 550px) {
  #lesson{
    padding: 64px 0;
  }
  #lesson h2 {
    margin-bottom: 0;
  }
  .p-controls{
    margin-top: 16px !important;
  }
  #lesson .swiper{
    padding: 32px 0;
  }
  #lesson .p-slide span{
    top: -30px;
  }
  #lesson .p-slide{
    padding: 32px 24px 32px;
        box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  }
  #lesson .p-slide h5 {
    margin-bottom: 16px;
  }
  #lesson .lessonBtn{
    margin: 40px auto 0;
    /* margin: 40px auto 54px; */
  }
  #lesson::before{
    height: 20vh;
    max-height: 150px;
  }
  #lesson iframe{
    width: 100%;
  }
  #lesson h6{
    margin-bottom: 16px;
  }
  #lesson .lessonBtn span::before{
    top: 4px;
  }
  #lesson .p-controls{
    margin-top: 0 !important;
  }
}
/*============================
    education
=============================*/
#education{
  padding: 120px 0 80px;
}
#education h2{
  margin-bottom: 32px;
}
#education .lead{
  text-align: center;
  margin-bottom: 56px;
}
#education ul.stepList{
  display: flex;
  gap: 20px;
  margin-bottom: 80px;
}
#education ul.stepList li{
  width: calc((100% - 60px) / 4);
  padding: 32px 24px;
  background: var(--white);
  box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.15);
}
#education ul.stepList .ttl{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 2%;
}
#education ul.stepList .step{
  font-family: var(--en);
  font-size: 2rem;
  color: var(--white);
  text-align: center;
  background: var(--subcolor);
  padding: 12px 0 ;
  max-width: 142px;
  width: 47.33%;
  border-radius: 100px;
}
#education ul.stepList .phase{
  color: var(--subcolor);
  font-size: 3.2rem;
  padding-right: 8%;
  line-height: 1.2;
  width: auto;
}
#education ul.stepList figure{
  margin-bottom: 20px;
}
#education ul.stepList .detail{
  font-size: var(--font-size-xs);
}
#education .subLead{
  text-align: center;
  margin-bottom: 80px;
}
#education ul.danceProgram{
  position: relative;
  display: flex;
  justify-content: space-between;
  background: var(--white);
  padding: 24px 0;
  margin-bottom: 32px;
  box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.15);
}
#education ul.danceProgram::before{
  content: "DANCE";
  position: absolute;
  font-family: var(--en);
  color: var(--maincolor);
  font-size: 2.4rem;
  top: -17px;
  left: 0;
}
#education ul.danceProgram li{
  position: relative;
  color: var(--maincolor);
  width: calc(100% / 4);
  text-align: center;
}
#education ul.danceProgram li::before{
  content: "";
  position: absolute;
  background: url(../img/icon_arrow-blue.png) no-repeat;
  background-size: contain;
  width: 14px;
  aspect-ratio: 14 / 12;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#education ul.danceProgram li:last-child::before{
  display: none;
}
#education ul.vocalProgram{
  position: relative;
  display: flex;
  justify-content: space-between;
  background: var(--white);
  padding: 24px 0;
  box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.15);
}
#education ul.vocalProgram::before{
  content: "VOCAL";
  position: absolute;
  font-family: var(--en);
  color: var(--subcolor);
  font-size: 2.4rem;
  top: -17px;
  left: 0;
}
#education ul.vocalProgram li{
  position: relative;
  color: var(--subcolor);
  width: calc(100% / 4);
  text-align: center;
}
#education ul.vocalProgram li::before{
  content: "";
  position: absolute;
  background: url(../img/icon_arrow-pink.png) no-repeat;
  background-size: contain;
  width: 14px;
  aspect-ratio: 14 / 12;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#education ul.vocalProgram li:last-child::before{
  display: none;
}
@media screen and (max-width: 1266px) {
}
@media screen and (max-width: 1024px) {
  #education ul.stepList{
    flex-wrap: wrap;
    gap: 16px;
  }
  #education ul.stepList li{
    width: calc((100% - 48px) / 4);
    padding: 24px 16px;
  } 
  #education ul.stepList .phase{
    width: auto;
  }
  #education ul.stepList .step{
    padding: 8px 0;
  }
  #education ul.stepList .ttl{
    margin-bottom: 16px;
  }
  #education ul.stepList{
    margin-bottom: 54px;
  }
  #education ul.stepList li{
    width: calc(50% - 8px);
    padding: 24px 16px;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  }
  #education .subLead{
    margin-bottom: 54px;
  }
  #education .lead{
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 550px) {
  #education{
    padding: 64px 0 0;
  }
  #education h2{
    margin-bottom: 24px;
  }
    #education ul.danceProgram{
      display: block;
      box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.15);
    }
    #education ul.danceProgram li{
      width: 100%;
      margin-bottom: 24px;
    }
    #education ul.danceProgram li:last-child{
      margin-bottom: 0;
    }
    #education ul.danceProgram li::before{
      top: 139%;
      right: 48%;
      transform: rotate(90deg);
              width: 11px;
    }
        #education ul.vocalProgram{
      display: block;
    }
    #education ul.vocalProgram li{
      width: 100%;
      margin-bottom: 24px;
    }
    #education ul.vocalProgram li:last-child{
      margin-bottom: 0;
    }
    #education ul.vocalProgram li::before{
      top: 139%;
      right: 48%;
      transform: rotate(90deg);
              width: 11px;
    }
  #education ul.stepList .step{
        max-width: 100%;
        font-size: 1.4rem;
        margin: 0 auto 0 0;
        width: 60%;
  }
  #education ul.stepList .phase {
    padding-right: 0;
    text-align: center;
    font-size: 2rem;
  }
      #education ul.stepList .ttl {
        margin-bottom: 12px;
        /* display: block; */
    }
    #education ul.stepList figure {
    margin-bottom: 10px;
}
}
/*============================
    voice
=============================*/
.voice {
  padding: 100px 0;
}
.voice h2{
  text-align: left;
  font-size: 1.6rem;
  margin-bottom: 40px;
}
.voice h2 span{
  font-size: clamp(4rem, 3.58rem + 1.13vw, 5.2rem);
}
.voice .ttl{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--black);
  margin-bottom: 24px;
  padding-bottom: 16px;
}
.voice .ttl img{
  width: 60px;
}
.voice .name{
  font-size: 1.3rem;
}
.voice .name span{
  color: var(--maincolor);
  font-size: var(--font-size-md);
}
.voice .card {
  position: relative;
  /* width: 55%; */
  width: 371px;
  height: auto;
  box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  padding: 24px;
  box-sizing: border-box;
  aspect-ratio: 3 / 4;
}
.voice .detail{
  font-size: var(--font-size-xs);
}
.voice .cardTags{
  position: absolute;
  bottom: 24px;
  left: 23px;
}
.voice .cardTags span{
  margin-right: 5px;
  font-family: var(--en);
  background: #fff;
  border: 1px solid #808080;
  color: #808080;
  padding: 4px 10px;
  font-size: 1.3rem;
}
/*----- swiper setting -----*/
.slider-flex-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 90px;
  /* overflow: hidden; */
  padding-left: calc((100% - min(90%, 1266px)) / 2);
}
.control-side {
  flex-shrink: 0;
}
.slider-side {
  flex-grow: 1;
  min-width: 0;
  position: relative;
}
.slider-side::before{
  content: "";
  position: absolute;
  background: var(--maincolor);
  background: var(--blue-gradation);
  width: 50vw;
  max-height: 273px;
  height: 30.33vh;
  top: -50px;
  right: 0;
}
.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}
.js-filter-btn {
  font-family: var(--en);
  background: #fff;
  border: 1px solid #808080;
  color: #808080;
  padding: 4px 10px;
  cursor: pointer;
  transition: 0.3s;
}
.js-filter-btn.is-active {
  background: var(--maincolor);
  color: #fff;
  border-color: var(--maincolor);
}
.navigation-group {
  display: flex;
  gap: 27px;
  margin-top: 353px;
}
.swiper-button-prev,
.swiper-button-next {
  position: static;
  width: 50px;
  height: 50px;
  border: 1px solid #00aeef;
  border-radius: 50%;
  color: #00aeef;
  position: relative;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: .6;
}
.swiper-button-next::after{
  content: "";
  position: absolute;
  background: url(../img/icon_arrow-blue.png) no-repeat;
  background-size: contain;
  width: 14px;
  aspect-ratio: 14 / 12;
  top: 50%;
  right: 30%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.swiper-button-prev::after{
  content: "";
  position: absolute;
  background: url(../img/icon_arrow-blue.png) no-repeat;
  background-size: contain;
  width: 14px;
  aspect-ratio: 14 / 12;
  top: 38%;
  right: 38%;
  transform: scaleX(-1);
}
.swiper-slide.is-hidden {
  display: none !important;
}
.swiper-pagination {
  position: relative !important;
  bottom: 0 !important;
  display: flex !important;
  width: 100% !important;
  left: 0 !important;
  margin: 30px 0 0 auto !important;
}
.swiper-pagination-bullet {
  flex: 1;
  height: 8px !important;
  background: #eee !important;
  border-radius: 0 !important;
  opacity: 1 !important;
  margin: 0 !important;
  transition: background-color 0.3s ease;
}
.swiper-pagination-bullet-active {
  background: var(--maincolor) !important;
}
#parentVoices{
  padding-top: 150px;
}
@media screen and (min-width: 1440px) {
  /* .voice .card{
    width: calc(100% / 3);
  } */
}
@media screen and (max-width: 1024px) {
  .voice h2{
    margin-bottom: 16px;
  }
  .filter-group{
    margin-bottom: 80px;
  }
  .slider-flex-container{
    display: block;
    position: relative;
    padding-bottom: 24px;
  }
  .navigation-group{
    margin-top: 0;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .swiper-pagination{
    width: 70% !important;
  }
  #parentVoices{
    padding-top: 100px;
  }
}
@media screen and (max-width: 550px) {
  .voice{
    padding: 80px 0;
  }
  #parentVoices{
    padding-top: 64px;
  }
  .voice .card{
    width: 325px;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  }
}
/*============================
    benefits2
=============================*/
#benefits2{
  padding: 80px 0;
  position: relative;
  background: var(--maincolor);
  background: var(--blue-gradation);
  overflow-x: clip;
}
#benefits2::before{
  content: "";
  position: absolute;
  background: url(../img/sakura.png) no-repeat;
  background-size: contain;
  max-width: 406px;
  width: 100%;
  aspect-ratio: 406 / 382 ;
  top: -56px;
  left: -32px;
  z-index: 1;
}
#benefits2::after{
  content: "";
  position: absolute;
  background: url(../img/sakura.png) no-repeat;
  background-size: contain;
  max-width: 406px;
  width: 100%;
  aspect-ratio: 406 / 382 ;
  bottom: -50px;
  right: -40px;
  z-index: 1;
  transform: rotate(180deg)
}
#benefits2 .wrap{
  max-width: 1080px;
}
#benefits2 .flex{
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
#benefits2 .detail{
  width: 52%;
}
#benefits2 h4{
  color: var(--white);
  font-size: clamp(4.2rem, 3.43rem + 2.07vw, 6.4rem);
  margin-bottom: 56px;
}
#benefits2 h4 img{
  max-width: 105px;
  width: 100%;
  aspect-ratio: 105 / 101;
  vertical-align: sub;
}
#benefits2 h4 span{
  font-size: var(--font-size-xxl);
}
#benefits2 .periodTTl{
  text-align: center;
  font-size: var(--font-size-xl);
  color: var(--maincolor);
  background: var(--white);
  padding: 6px 0;
  border-radius: 100px;
  max-width: 423px;
  width: 100%;
  margin: 0 auto 0 0;
}
#benefits2 .period{
  font-size: var(--font-size-xl);
  color: var(--white);
  /* text-align: center; */
  margin-bottom: 40px;
}
#benefits2 .period b{
  font-size: var(--font-size-xxl);
  font-family: var(--en);
}
#benefits2 ul.precautions li{
  color: var(--white);
  font-size: 1.3rem;
}
#benefits2 ul.precautions li:first-child{
  margin-bottom: 8px;
}
#benefits2 ul.benefitsList{
  width: 48%;
}
#benefits2 ul.benefitsList li{
  position: relative;
  background: var(--white);
  padding: 32px 0;
  border-radius: 80px 0 0;
}
#benefits2 ul.benefitsList li figure{
  text-align: center;
}
#benefits2 ul.benefitsList li:first-child{
  margin-bottom: 20px;
}
#benefits2 ul.benefitsList li:first-child::before{
  content: "";
  position: absolute;
  background: url(../img/benefits01.png) no-repeat;
  background-size: contain;
  max-width: 120px;
  width: 100%;
  aspect-ratio: 120 / 115;
  top: -28px;
  left: -16px;
}
#benefits2 ul.benefitsList li:first-child img{
  max-width: 353px;
  aspect-ratio: 353 / 172;
}
#benefits2 ul.benefitsList li:nth-child(2)::before{
  content: "";
  position: absolute;
  background: url(../img/benefits02.png) no-repeat;
  background-size: contain;
  max-width: 120px;
  width: 100%;
  aspect-ratio: 120 / 115;
  top: -28px;
  left: -16px;
}
#benefits2 ul.benefitsList li:nth-child(2) img{
  max-width: 318px;
  aspect-ratio: 318 / 157;
}
.waribiki{
  padding: 24px 0;
  background: var(--subcolor);
}
.waribiki h5{
  text-align: center;
  color: var(--white);
  font-size: var(--font-size-xl-2);
  margin-bottom: 8px;
  line-height: 1.2;
}
.waribiki img{
  max-width: 247px;
  width: 100%;
  aspect-ratio: 500 / 127;
  vertical-align: sub;
}
.waribiki p{
  text-align: center;
  color: var(--white);
  font-size: 1.3rem;
}
@media screen and (max-width: 1266px) {
}
@media screen and (max-width: 1024px) {
  #benefits2 ul.benefitsList{
    width: 44%;
  }
  #benefits2::before{
    max-width: 226px;
    top: -26px;
    left: -12px;
  }
  #benefits2::after{
    max-width: 206px;
    bottom: -25px;
    right: -12px;
  }
  #benefits2 ul.benefitsList li{
    width: 100%;
    border-radius: 50px 0 0;
  }
  #benefits2 ul.benefitsList li:first-child{
    margin-bottom: 24px;
  }
  #benefits2 ul.benefitsList li:first-child img{
    width: 70%;
  }
  #benefits2 ul.benefitsList li:nth-child(2) img{
    width: 70%;
  }
  #benefits2 ul.benefitsList li:first-child::before{
    max-width: 90px;
    top: -16px;
  }
  #benefits2 ul.benefitsList li:nth-child(2)::before{
    max-width: 90px;
    top: -16px;
  }
}
@media screen and (max-width: 820px) {
  #benefits2 h4 img{
    max-width: 80px;
  }
#benefits2 .detail {
    width: 71%;
}
}
@media screen and (max-width: 550px) {
  #benefits2{
    padding: 64px 0;
  }
  #benefits2 .flex{
    display: block;
  }
  #benefits2 .detail{
    width: 100%;
  }
  #benefits2 ul.benefitsList{
    width: 100%;
  }
  #benefits2::before{
    max-width: 176px;
    top: -26px;
    left: -22px;
  }
  #benefits2::after{
    max-width: 126px;
    bottom: -25px;
    right: -12px;
  }
  #benefits2 h4{
  margin-bottom: 40px;
  }
  #benefits2 h4 img{
    max-width: 57px;
  }
  #benefits2 .period{
    margin-bottom: 32px;
  }
   #benefits2 ul.precautions{
    margin-bottom: 32px;
   }
  .waribiki img{
    max-width: 167px;
  }
  .waribiki p{
    font-size: 1.1rem;
  }
  #benefits2 ul.benefitsList li{
    padding: 25px 0;
  }
}
/*============================
    merit
=============================*/
#merit{
  padding: 100px 0 100px;
}
#merit h3{
  color: var(--subcolor);
  text-align: center;
  margin-bottom: 40px;
}
#merit ul{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#merit ul li{
  width: calc((100% - 20px) / 2);
  background: var(--white);
  text-align: center;
  padding: 32px 0;
  box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.15);
}
#merit ul li span{
  position: relative;
  font-size: var(--font-size-lg);
  padding-left: 30px;
}
#merit ul li span::before{
  content: "";
  position: absolute;
  background: url(../img/icon_checkbox.png) no-repeat;
  background-size: contain;
  width: 26px;
  aspect-ratio: 26 / 21;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 1266px) {
}
@media screen and (max-width: 1024px) {
  #merit ul li{
    width: 70%;
    padding: 24px 0 24px 48px;
    margin: 0 auto;
  }
  #merit ul li span{
    padding: 0;
  }
  #merit ul li span::before{
    left: -32px;
  }
}
@media screen and (max-width: 550px) {
  #merit{
    padding: 64px 0;
  }
  #merit h3{
    margin-bottom: 24px;
  }
  #merit ul li{
    width: 100%;
    padding: 24px 0 24px 64px;
    text-align: left;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  }
}
/*============================
    cv
=============================*/
#cv{
  padding: 40px 0 56px;
  background: var(--subcolor);
  background: var(--pink-gradation);
}
#cv .comment{
  color: var(--white);
  text-align: center;
}
#cv a{
  display: block;
  max-width: 500px;
  width: 100%;
  background: var(--cv);
  padding: 24px 0;
  border-radius: 100px;
  margin: 10px auto 12px;
  text-align: center;
}
#cv a:hover{
  opacity: 0.6;
}
#cv a span{
  position: relative;
  font-size: var(--font-size-xl);
  padding-left: 28px;
}
#cv a span::before{
  content: "";
  position: absolute;
  background: url(../img/expg_logo.png) no-repeat;
  background-size: contain;
  width: 45px;
  aspect-ratio: 45 / 35;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
#cv .add{
  color: var(--white);
  text-align: center;
  font-size: 1.3rem;
}
@media screen and (max-width: 1266px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 550px) {
  #cv{
    padding: 32px 0 40px;
  }
  #cv a{
    width: 90%;
    padding: 20px 0;
    margin: 6px auto 8px;
  }
  #cv .add{
    font-size: 1rem;
  }
}
/*============================
    flow
=============================*/
#flow{
  padding: 100px 0;
}
#flow h2{
  margin-bottom: 40px;
}
#flow .flowList{
  display: flex;
  justify-content: space-between;
  gap: 56px;
  margin-bottom: 56px;
}
#flow .flowList li{
  position: relative;
  color: var(--maincolor);
  width: calc(100% / 5);
  text-align: center;
}
#flow .flowList li figure{
  position: relative;
  margin-bottom: 16px;
}
#flow .flowList li figure::before{
  content: "";
  position: absolute;
  background: url(../img/icon_arrow-blue.png) no-repeat;
  background-size: contain;
  width: 27px;
  aspect-ratio: 14 / 12;
  top: 50%;
  right: -20%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#flow .flowList li:last-child figure::before{
  display: none;
}
#flow .flowList li .ttl{
  color: var(--maincolor);
  text-align: center;
}
#flow .lead{
  text-align: center;
}
@media screen and (max-width: 1266px) {
}
@media screen and (max-width: 1024px) {
  #flow{
    padding: 80px 0 0 ;
  }
  #flow .flowList li figure::before{
    width: 20px;
    right: -30%;
  }
}
@media screen and (max-width: 550px) {
  #flow {
    padding: 64px 0 0;
}
#flow h2{
  margin-bottom: 16px;
}
  #flow .flowList{
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
    }
  #flow .flowList li{
        width: calc((100% - 40px) / 3);
  }
  #flow .flowList li figure::before{
    width: 14px;
right: -18%;
  }
  #flow .flowList li:nth-child(3) figure::before{
    display: none;
  }
  #flow .flowList li:nth-child(4) figure::after{
    content: "";
    position: absolute;
    background: url(../img/icon_arrow-blue.png) no-repeat;
    background-size: contain;
    width: 14px;
    aspect-ratio: 14 / 12;
    top: 50%;
    left: -18%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  #flow .flowList li .ttl{
    font-size: 1.1rem;
  }
}
/*===================
    faq
===================*/
#faq {
  padding: 100px 0 100px;
  position: relative;
  overflow: hidden;
}
#faq .wrap{
  max-width: 1080px;
}
#faq .accordion-content {
  display: none;
}
#faq .accordion-header {
  position: relative;
  font-size: var(--font-size-lg);
  background: var(--white);
  padding: 25px 40px 25px 24px;
  margin: 32px 0 0;
  transition: background 0.3s ease;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.15);
}
#faq .accordion-header::before,
#faq .accordion-header::after {
  position: absolute;
  content: "";
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 18px;
  height: 2px;
  margin: auto;
  background: #151e2f;
}
#faq .accordion-header::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
#faq .accordion-header.active::after {
  transform: rotate(0deg);
}
#faq .accordion-content {
  background-color: #fff;
  padding: 25px 40px 0 24px;
  line-height: 1.8;
  font-size: var(--font-size-md);
}
#faq .accordion-header span,
#faq .accordion-content span {
  padding-left: 32px;
  position: relative;
  display: inline-block;
}
#faq .accordion-header span::before {
  position: absolute;
  content: "Q.";
  color: var(--maincolor);
  font-family: var(--en);
  font-size: var(--font-size-xl);
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#faq .accordion-content span.aq::before {
  position: absolute;
  content: "A.";
  color: var(--subcolor);
  font-family: var(--en);
  font-size: var(--font-size-xl);
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
/* #faq .accordion-header:hover {
  background-color: #f2f2f2;
} */
#faq .accordion-box {
  /* box-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.16); */
}
#faq span.indent {
  display: inline-block;
  padding-left: 1rem;
  text-indent: -1rem;
}
/* #faq .category {
  font-size: var(--font-size-xl);
  font-weight: 900;
  line-height: 1.58;
  margin-top: 64px;
} */
#faq .add{
  font-size: 1.2rem;
  text-align: right;
  margin-top: 32px;
}
@media screen and (max-width: 1024px) {
  #faq {
    padding: 80px 0 60px;
  }
  .regular #faq {
    padding: 60px 0 60px;
  }
  #faq::before {
    max-width: 80px;
  }
  #faq::after {
      max-width: 80px;
  }
}
@media screen and (max-width: 550px) {
      #faq {
        padding: 64px 0 0;
    }
  #faq .accordion-header {
    padding: 20px 40px 20px 16px;
    margin: 24px 0 0;
  }
  #faq .accordion-content {
    padding: 16px 40px 0 16px;
  }
  #faq .accordion-content span.aq::before {
   top: 14px;
  }
  #faq .accordion-header::before, #faq .accordion-header::after{
    width: 16px;
  }
  #faq .add{
    margin-top: 16px;
  }
}
/*============================
    #reason
=============================*/
#reason{
  position: relative;
  padding: 100px 0 0;
  margin: 100px 0 0;
}
#reason::before{
  content: "";
    position: absolute;
    background: var(--maincolor);
    background: var(--blue-gradation);
    width: 50vw;
    max-height: 419px;
    height: 46.55vh;
    top: 0;
    right: 0;
}
#reason .wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5%;
}
#reason .ttl h3{
  margin-bottom: 40px;
}
#reason .ttl h3 span{
  color: var(--maincolor);
}
#reason figure{
  width: 53.96%;
}
@media screen and (max-width: 1024px) {
  #reason{
    margin: 50px 0 0;
  }
  #reason::before{
    width: 45vw;
  }
}
@media screen and (max-width: 820px) {
  #reason{
    margin: 0;
  }
  #reason::before{
    width: 40vw;
    max-height: 179px;
    height: 46.55vh;
    top: 70px;
  }
}
@media screen and (max-width: 550px) {
#reason .wrap{
  display: block;
}
#reason figure{
  width: 100%;
          margin-top: 54px;
}
#reason::before{
      width: 70vw;
    height: 26.55vh;
    top: 270px;
}
}
/*============================
    photo slider
=============================*/
.photoWrap .ttl{
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 32px;
}
.photoWrap .ttl h5{
  color: var(--maincolor);
}
.photoWrap .ttl h5 span{
  font-family: var(--en);
  font-size: 4rem;
}
.photoWrap .ttl .detail{

}
/*---- swiper setting -----*/
.photo-section {
  padding: 60px 0;
}
.p-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.p-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.p-navigation {
  display: flex;
  gap: 10px;
}
.photoSwiper .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}
.p-prev, .p-next {
  z-index: 10;
  width: 50px;
  height: 50px;
  border: 1px solid #00aeef;
  border-radius: 50%;
  color: #00aeef;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}
.p-prev:hover,
.p-next:hover{
  opacity: .6;
}
.p-next::after{
  content: "";
  position: absolute;
  background: url(../img/icon_arrow-blue.png) no-repeat;
  background-size: contain;
  width: 14px;
  aspect-ratio: 14 / 12;
  top: 50%;
  right: 30%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.p-prev::after{
  content: "";
  position: absolute;
  background: url(../img/icon_arrow-blue.png) no-repeat;
  background-size: contain;
  width: 14px;
  aspect-ratio: 14 / 12;
  top: 38%;
  right: 38%;
  transform: scaleX(-1);
}
.p-pagination-container {
  flex-grow: 1;
}
.p-pagination {
  display: flex !important;
  width: 67% !important;
  position: relative !important;
  top: auto !important;
  margin: 0 0 0 auto !important;
}
.p-pagination .swiper-pagination-bullet {
  flex: 1;
  height: 8px !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background: #eee !important;
  opacity: 1 !important;
}
.p-pagination .swiper-pagination-bullet-active {
  background: #00aeef !important;
}
@media screen and (max-width: 1266px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 550px) {
  .p-pagination {
    width: 100% !important;
  }
  .photoWrap .ttl{
    display: block;
    margin-bottom: 24px;
  }
  .photoWrap .ttl h5{
    margin-bottom: 16px;
  }
}

/*============================
    #challenge
=============================*/
#challenge{
  padding: 56px 0 0;
}
/*============================
    #grow
=============================*/
#grow{
  padding: 56px 0 0;
}
/*============================
    #support
=============================*/
#support{
  padding: 56px 0 120px;
}
@media screen and (max-width: 1266px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 550px) {
  #support{
  padding: 56px 0 64px;
}
}
/*============================
    form
=============================*/
#form{
  position: relative;
  padding: 120px 0 180px;
  background: #f7f7f7;
  overflow: hidden;
}
#form::before{
  content: "";
  position: absolute;
  background: url(../img/bg_expg-logo.png) no-repeat;
  background-size: contain;
  max-width: 775px;
  width: 100%;
  aspect-ratio: 775 / 597;
  top: -10px;
  right: -130px;
  opacity: 0.07;
}
#form::after{
  content: "";
  position: absolute;
  background: url(../img/bg_form.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  bottom: 0;
  right: 0;
}
#form .wrap{
  position: relative;
  z-index: 1;
}
#form h3{
  text-align: center;
  margin-bottom: 56px;
}
#form h3 span{
  color: var(--subcolor);
}
#form .lead{
  font-size: var(--font-size-lg);
  text-align: center;
  margin-bottom: 56px;
}
#form h4{
  font-size: var(--font-size-xl);
  text-align: center;
}
#form .period{
  font-size: var(--font-size-xl);
  color: var(--subcolor);
  text-align: center;
}
#form .period b{
  font-size: var(--font-size-xxl);
  font-family: var(--en);
}
#form .add{
  font-size: 1.3rem;
  text-align: center;
}
#form ul.schoolList{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 40px;
  padding-top: 64px;
}
#form ul.schoolList li{
  width: calc((100% - 60px) / 4 );
}
#form ul.schoolList .ttl{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
#form ul.schoolList .ttl .schoolname{
  font-size: var(--font-size-xl);
  line-height: 0.9;
}
#form ul.schoolList .ttl .schoolname span{
  font-size: 1.3rem;
  font-family: var(--en);
}
#form ul.schoolList .ttl a{
  position: relative;
  display: block;
  font-size: var(--font-size-xs);
  text-align: center;
  background-color: var(--cv);
  padding: 16px 0;
  max-width: 179px;
  width: 59.47%;
  border-radius: 100px;
}
#form ul.schoolList .ttl a::before{
  content: "";
  position: absolute;
  background: url(../img/icon_arrow-bk.png) no-repeat;
  background-size: contain;
  width: 12px;
  aspect-ratio: 12 / 11;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: .2s all;
}
#form ul.schoolList .ttl a:hover::before{ 
  right: 8px;
}
/* #form ul.schoolList figure{
  overflow: hidden;
}
#form ul.schoolList figure img{
  transition: all 0.4s;
}
#form ul.schoolList li:has(.ttl a:hover) figure img{
  transform: scale(1.1);
} */
/*---------- modal ----------*/
.openBtn {
    position: relative;
    font-size: var(--font-size-xs);
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid var(--black);
    margin: 12px 0 0 0;
    padding: 0 16px 5px 0;
    transition: .4s all;
    color: var(--black);
    background: none;
}
.openBtn::before {
  content: "";
  position: absolute;
  background: url(../img/icon_modal-window.png) no-repeat;
  background-size: contain;
  width: 13px;
  aspect-ratio: 1 / 1;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.openBtn:hover{
  opacity: 0.5;
}
.closeBtn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: var(--font-size-md);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(79, 79, 79, 0.5);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.modal.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}
.modalContent {
    background: #fff;
    padding: 64px 4.42%;
    width: 81%;
    max-width: calc(1266px - 4.42%);
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    height: 80vh;
    max-height: 650px;
    overflow-y: scroll;
}
.modal.active .modalContent {
    animation: fadeInScale 0.4s ease forwards;
}
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.mapBox iframe{
  aspect-ratio: 4 / 3;
  max-width: 729px;
  width: 50vw;
}
.batsu {
  display: block;
  position: relative;
  width: 20px;
  height: 40px;
}
.batsu::before, .batsu::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 30px;
  background: var(--black);
}
.batsu::before {
  transform: translate(-50%,-50%) rotate(45deg);
} 
.batsu::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
.modal.active .modalContent h2{
  color: var(--maincolor);
  font-family: var(--en);
  font-size: var(--font-size-xxl);
  margin-bottom: 24px;
  text-align: left;
}
.modal.active .modalContent h2 span{
  font-family: var(--ja);
  font-size: var(--font-size-md);
  margin-left: 8px;
}
.modal .schoolDetail {
  width: 100%;
  min-width: 300px;
  font-size: 14px;
  padding-left: 40px;
}
.modal .schoolDetail dt {
  margin-bottom: 4px;
}
.modal .schoolDetail dd {
  padding-bottom: 18px;
}
.modal .schedule{
  position: relative;
  display: block;
  background: var(--black);
  color: var(--white);
  border-radius: 100px;
  text-align: center;
  padding: 24px 0;
  max-width: 320px;
  margin-top: 24px;
}
.modal .schedule::before{
  content: "";
  position: absolute;
  background: url(../img/icon_arrow-wh.png) no-repeat;
  background-size: contain;
  width: 12px;
  aspect-ratio: 12 / 11;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.modal .experience{
  position: relative;
  display: block;
  background: var(--cv);
  color: var(--black);
  border-radius: 100px;
  text-align: center;
  padding: 24px 0;
  max-width: 320px;
  margin-top: 16px;
}
.modal .experience::before{
  content: "";
  position: absolute;
  background: url(../img/icon_arrow-bk.png) no-repeat;
  background-size: contain;
  width: 12px;
  aspect-ratio: 12 / 11;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
body.modal-open{
  overflow: hidden;
}
@media screen and (max-width: 1266px) {
  #form ul.schoolList{
    gap: 16px;
  }
  #form ul.schoolList li {
      width: calc((100% - 48px) / 4);
  }
}
@media screen and (max-width: 1024px) {
  #form {
    padding: 80px 0 120px;
  }
  #form ul.schoolList li{
    width: calc((100% - 32px) / 3);
  }
  #form ul.schoolList .ttl a::before{
    right: 10px;
  }
}
@media screen and (max-width: 550px) {
  #form {
    padding: 64px 0 100px;
  }
  #form h3{
    margin-bottom: 32px;
  }
  #form .lead{
    margin-bottom: 40px;
  }
  #form h4{
    margin-bottom: 16px;
  }
  #form .period {
    line-height: 1;
    margin-bottom: 8px;
  }
  #form .add{
    font-size: 1.2rem;
    margin-bottom: 0;
  }
  #form ul.schoolList{
    row-gap: 24px;
    padding-top: 48px;
  }
  #form ul.schoolList li{
    width: calc(50% - 8px);
  }
  #form ul.schoolList .ttl{
    margin-bottom: 10px;
  }
  #form ul.schoolList .ttl a{
    padding: 10px 0;
  }
  .openBtn{
        margin: 10px 0 0 0;
  }
      #form ul.schoolList .ttl a::before {
        right: 7px;
        width: 7px;
    }
    .modalContent .flex{
    display: block;
  }
  .mapBox iframe{
    width: 100%;
        margin-bottom: 24px;
  }
  .modal .schoolDetail{
    padding-left: 0;
    min-width: auto;
}  
.modal .schedule{
  width: 100%;
        padding: 16px 0;
}
.modal .experience{
  width: 100%;
        padding: 16px 0;
}
#form ul.schoolList .ttl .schoolname{
 font-size: 1.6rem;
}
#form ul.schoolList .ttl .schoolname span{
  font-size: 1.1rem;
}
}
/*============================
    bnr
=============================*/
#bnr{
  padding: 80px 0;
}
#bnr .wrap{
  max-width: 1080px;
  z-index: 0;
}
#bnr ul{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#bnr ul li{
  width: calc((100% - 20px) / 3);
  border: 1px solid #ccc;
}
#bnr ul li a{
  transition: .4s all;
}
#bnr ul li a:hover{
  opacity: .6;
}
@media screen and (max-width: 1266px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 550px) {
#bnr {
    padding: 40px 0;
}
#bnr ul li{
  width: calc((100% - 10px) / 2);
}
}
/*============================
    footer
=============================*/
footer p{
  font-size: 1.1rem;
  font-family: var(--en);
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 20px 0 ;  
}
@media screen and (max-width: 1266px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 550px) {
  footer {
    margin-bottom: 51px;
}
}