@charset "UTF-8";

/* ==== color ========================== */
:root {
  --color-black: #000000;
  --color-white: #ffffff;

  --color-green: #22BCB2;
  --color-yellow: #E0FF19;

  --color-gray: #D4D4D4;

  --noto: "Noto Sans JP", sans-serif;
  --en: "Kumbh Sans", sans-serif;


  --header: 10rem;
  scroll-padding: var(--header);
}

@media screen and (max-width:768px) {
  :root {
    --header: 7rem;
    scroll-padding: var(--header);
  }
}


/*================================================
 *  一般・共通設定
 ================================================*/
html {
  scroll-behavior: smooth;

  font-size: clamp(6px, 0.66137vw, 10px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

body {
  font-size: 1.6rem;
  line-height: 1.8;
  background: var(--color-white);
  color: var(--color-black);
}



a {
  text-decoration: none;
  transition: all .4s;
}

a:hover {
  opacity: 1;
}

img {
  max-width: 100%;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}

/* タイトル */


@media screen and (max-width:767px) {
  html {
    font-size: 2.666vw;
  }

  body {
    font-size: 1.4rem;
  }
}


/* ==================================================
  splash
====================================================*/

.loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: var(--color-white);
  z-index: 555;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader .inner {
  margin: auto;
  font-family: var(--en);
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  position: relative;
}


.loader .inner::before,
.loader .inner::after {
  position: absolute;
  content: "";
  aspect-ratio: 1/1;
  opacity: 0;
  transition: .4s;
}

.loader .inner::before {
  background: var(--color-yellow);
  width: 4rem;
  bottom: -1rem;
  right: -9rem;
  transition-delay: 0.5s;
}

.loader .inner::after {
  background: var(--color-green);
  width: 2rem;
  bottom: -2rem;
  right: -6rem;
  transition-delay: 0.1s;
}

.loader.loaded .inner::before,
.loader.loaded .inner::after {
  opacity: 1;
}


.loader .inner span {
  display: block;
  overflow: hidden;
  width: 0;
  height: 6.2rem;

  transition: width .8s ease .8s;
  line-height: 1;
  white-space: nowrap;
}

.loader.loaded .inner span {
  width: 100%;
}



@media screen and (max-width:767px) {
  .loader .inner {
    font-size: 3rem;
  }

  .loader .inner::before {

    width: 3rem;
    right: -4.5rem;
  }

  .loader .inner::after {
    width: 1.5rem;
    right: -2rem;
  }

}

/*================================================
 *  header / ヘッダー
 ================================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding-top: 8rem;
  transition: .4s;
}

.nav_inner {
  position: relative;
  transform: translateY(-22rem);
  transition: transform .6s ease 2s;
}

body:has(#mainVisual.show) .nav_inner {
  transform: translateY(0);
}



.nav_left {
  width: 43.5rem;
  position: absolute;
  left: 0;
  top: -8rem;
  z-index: 1;
  transition: .4s;
}

.nav_left a {
  background: var(--color-yellow);
  display: block;
  padding: 7rem 0 6rem;
  text-align: center;
  font-family: var(--en);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  position: relative;
  transition: .4s;
}

.nav_left a::before {
  position: absolute;
  content: "";
  width: 5rem;
  height: 5rem;
  background: var(--color-green);
  bottom: -2.5rem;
  right: -2.5rem;
  transition: .4s;
}

.nav_left a:hover {
  opacity: 1;
  color: var(--color-yellow);
  background: var(--color-black);
}

.nav_right {
  width: 84.7%;
  margin: 0 auto;
  min-width: 730px;
  transition: .4s;
}

.nav_right ul {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 2em;

}

.nav_right ul li a {
  color: var(--color-white);
}

.nav_right ul li a span {
  display: none;
}




header.changeNav {
  padding-top: 4rem;
}

.changeNav .nav_left {
  width: 26rem;
  top: -4rem;
}

.changeNav .nav_left a {
  padding: 3rem 0 3rem;
  font-size: 2.4rem;
}

.changeNav .nav_left a::before {
  width: 2.5rem;
  height: 2.5rem;
  bottom: -1.25rem;
  right: -1.25rem;
}

.changeNav .nav_right {
  width: 96%;
}

.changeNav .nav_right ul li a {
  color: var(--color-black);
}

.nav_right ul li a:hover,
.changeNav .nav_right ul li a:hover {
  color: var(--color-green);
}

.icon_insta {
  background-image: url(../images/icon_insta.png);
  width: 3rem;
  height: 3rem;
  transition: .4s;
}

.changeNav .icon_insta {
  background-image: url(../images/icon_insta_bk.png);
}

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

  header,
  header.changeNav {
    padding: 0;
  }

  .nav_left,
  .changeNav .nav_left {
    width: 18rem;
    position: static;
    top: auto;
  }

  .nav_left a,
  .changeNav .nav_left a {
    background: var(--color-yellow);
    padding: 2.6rem 0 2.4rem;
    font-size: 1.6rem;
  }

  .nav_left a::before,
  .changeNav .nav_left a::before {
    width: 2rem;
    height: 2rem;
    bottom: -1rem;
    right: -1rem;
  }

  .nav_right,
  .changeNav .nav_right {
    padding: 0;
  }

  .nav_right {
    width: 100%;
    margin: 0 auto;
    min-width: unset;
  }

  .hamburger {
    position: absolute;
    right: 0;
    top: 0;
    width: 7rem;
    height: 7rem;
    cursor: pointer;
    z-index: 300;
    transition: all .1s ease-out;
  }

  /* line open */
  .hamburger__line {
    position: absolute;
    left: 50%;
    width: 3rem;
    height: 1px;
    background-color: var(--color-white);
    transition: all .4s ease-out;
    transform: translateX(-50%);
  }

  .hamburger__line--1 {
    top: 40%;
  }

  .hamburger__line--3 {
    top: 50%;
  }

  /* line close */
  .open_nav .hamburger__line--1 {
    transform: translateX(-50%) rotate(35deg);
    top: 50%;
    background-color: var(--color-black);
  }

  .open_nav .hamburger__line--3 {
    transform: translateX(-50%) rotate(-35deg);
    top: 50%;
    background-color: var(--color-black);
  }

  .changeNav .hamburger__line {
    background-color: var(--color-black);
  }

  /* ハンバーガーメニュー内 */
  nav.global__nav {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100dvh;
    background: var(--color-yellow);
    transition: all .3s ease-out;
    z-index: 200;
    overflow-y: scroll;
    padding: 4rem 3rem;
    opacity: 0;
    pointer-events: none;
  }

  /* 表示 */
  .open_nav .global__nav {
    opacity: 1;
    pointer-events: fill;
  }


  .nav_right ul {
    display: block;
  }

  .nav_right ul li {
    margin-top: 2rem;
  }

  .nav_right ul li a {
    color: var(--color-black);
    position: relative;
    font-size: 1.4rem;
  }

  .nav_right ul li a span {
    display: block;
    font-family: var(--en);
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    line-height: 1.2;
  }

  .nav_right ul li.sp a span {
    font-size: 4rem;
    text-align: center;
    margin-top: 3rem;
  }

  .icon_insta {
    background-image: url(../images/icon_insta_bk.png);
  }


}

/*================================================
 *  section btn
 ================================================*/
section {
  position: relative;
  padding-bottom: 10rem;
}

.section {
  padding-top: 12rem;
}

.icon {
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
}

.icon_arrow {
  background-image: url(../images/icon_arrow.png);
}

.icon_arrow.wt {
  background-image: url(../images/icon_arrow_wt.png);
}

.icon_arrow.bk {
  background-image: url(../images/icon_arrow_bk.png);
}


.btnArea a {
  background: var(--color-green);
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 3rem;
  border-radius: 1000px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.btnArea a.yellow {
  background: var(--color-yellow);
  color: var(--color-black);
}

.btnArea a i {
  width: 2.5rem;
  height: 2.5rem;
}

.outer {
  max-width: 2200px;
  margin-left: auto;
  margin-right: auto;
}

.wrap_md {
  width: 84.65%;
  /* max-width: 128rem; */
  margin-left: auto;
  margin-right: auto;
}

.wrap_lg {
  /* max-width: 140rem; */
  margin-left: auto;
  margin-right: auto;
  width: 92.59%;
}

.hd {
  margin-bottom: 6rem;
}

.hd .ja {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.6;
}

.hd .en {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  font-family: var(--en);
  color: var(--color-green);
  padding-left: 3rem;
  position: relative;
  margin-top: 2.4rem;
  letter-spacing: 0.1em;
}

.hd .en::before {
  position: absolute;
  content: "";
  width: 2rem;
  aspect-ratio: 1/1;
  background: var(--color-green);
  opacity: 0.3;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width:767px) {
  section {
    padding-bottom: 8rem;
  }

  .section {
    padding-top: 8rem;
  }

  .wrap_md,
  .wrap_lg {
    width: 89.33%;
    max-width: unset;
  }


  .hd {
    margin-bottom: 6rem;
  }

  .hd .ja {
    font-size: 2.4rem;
  }

  .hd .en {
    font-size: 1.6rem;
    padding-left: 2.6rem;
    margin-top: 1rem;
  }

  .hd .en::before {
    width: 1.6rem;
  }
}

/*================================================
 *  fix_btn
 ================================================*/
#fix_btn {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 10;
  width: 22rem;
  height: 22rem;
  opacity: 0;
  transition: opacity .6s ease 2.4s;
}

body:has(#mainVisual.show) #fix_btn {
  opacity: 1;
}

#fix_btn a {
  width: 22rem;
  height: 22rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: var(--color-yellow);
  border-radius: 10000px;
  font-size: 2.4rem;
  font-weight: 700;
  padding-top: 3rem;
}

#fix_btn a:hover {
  opacity: 1;
  background: var(--color-black);
  color: var(--color-yellow);
}

#fix_btn a i {
  width: 4.5rem;
  height: 4.5rem;
  margin-top: 0.8rem;
  transition: .4s;
}

#fix_btn a:hover i {
  background-image: url(../images/icon_arrow_y.png);
}

#fix_btn a .en {
  font-family: var(--en);
  letter-spacing: 0.1em;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}

#fix_btn a .ja {
  line-height: 1.4;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0.3rem 0 0.8rem;
  display: block;
}

@media screen and (max-width:767px) {
  #fix_btn {
    width: 100%;
    height: auto;
    right: auto;
    left: 0;
    bottom: 0;
    opacity: 0;
    transition: .4s;
    pointer-events: none;
  }

  body:has(#mainVisual.show) #fix_btn {
    opacity: 0;
  }

  #fix_btn.changeBtn,
  body:has(#mainVisual.show) #fix_btn.changeBtn {
    opacity: 1;
    pointer-events: fill;
  }

  #fix_btn a {
    flex-direction: unset;
    width: 100%;
    height: auto;
    border-radius: 0;
    text-align: left;
    padding: 1rem 2rem;
    justify-content: space-between;
  }

  #fix_btn .fix_txt {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0.3rem;
  }

  #fix_btn a i {
    width: 3rem;
    height: 3rem;
    margin-top: 0.2rem;
  }

  #fix_btn a .ja {
    margin: 0.3rem 0 0;
    font-size: 1rem;
  }
}


/*================================================
* #mainVisual
================================================*/

#mainVisual {
  padding-bottom: 0;
}

#mainVisual::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: .6;
}

#mainVisual video {
  display: block;
  width: 100%;
  /* height: 85rem; */
  height: 100dvh;
  overflow: hidden;
  object-fit: cover;
  object-position: top center;
}

#mainVisual video.sp {
  display: none;
}

#mainVisual h2 {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 127rem;
}

#mainVisual h2 span {
  display: block;
  width: 0;
  height: 26.8rem;
  overflow: hidden;
  transition: all .8s ease .8s;
}

#mainVisual.show h2 span {
  width: 100%;
}


#mainVisual h2 span img {
  display: block;
  height: 100%;
  width: auto;
  max-width: unset;
}

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

  #mainVisual video.pc {
    display: none;
  }

  #mainVisual video.sp {
    display: block;
  }

  #mainVisual h2 {
    width: 37.5rem;
  }

  #mainVisual h2 span {
    height: 16.8rem;
  }
}


/*================================================
* about
================================================*/
#about {
  padding-top: 9rem;
  padding-bottom: 32rem;
}

#about h2 {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.7;
}

#about h2 span {
  display: block;
}

.about_logo {
  font-family: var(--en);
  font-size: 7.4rem;
  font-weight: 900;
  margin-top: 10rem;
  letter-spacing: 0.1em;
}

.about_logo span {
  display: block;
  overflow: hidden;
  height: 14.4rem;
  width: 0;
  transition: all .8s ease .8s;
  white-space: nowrap;
}


.about_logo.on span {
  width: 60rem;
}

.about_bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.about_bg-img {
  width: 80rem;
  overflow: hidden;
  margin-left: auto;
}

.about_bg img {
  width: 100%;
  display: block;
  opacity: 0;
  transform: scale(1.1);
  transition: all .8s ease .6s;
}

.about_bg.on img {
  opacity: 1;
  transform: scale(1);
}

.about_bg::before,
.about_bg::after {
  position: absolute;
  content: "";
  aspect-ratio: 1/1;
  z-index: 1;
}

.about_bg::before {
  background: var(--color-yellow);
  width: 7rem;
  top: -9rem;
  right: -2rem;
}

.about_bg::after {
  background: var(--color-green);
  width: 5rem;
  top: -3rem;
  right: 3.6rem;
}

@media screen and (max-width:767px) {
  #about {
    padding-top: 5rem;
    padding-bottom: 24rem;
  }

  #about h2 {
    font-size: 3rem;
    line-height: 1.9;
  }

  .about_logo span {
    height: 6.4rem;
  }

  .about_logo.on span {
    width: 32rem;
  }

  .about_logo {
    font-size: 3.8rem;
    margin-top: 6rem;
  }

  .about_bg,
  .about_bg-img {
    width: 100%;
  }

  .about_bg::before {
    width: 4.2rem;
    top: auto;
    right: auto;
    left: 4.5rem;
    bottom: -2.4rem;
  }

  .about_bg::after {
    width: 3rem;
    top: auto;
    right: auto;
    left: 2rem;
    bottom: -4.2rem;
  }
}

/*================================================
* philosophy
================================================*/
#philosophy {
  padding-top: 10rem;
}


.philosophy_box {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 6rem;
  padding-left: 11rem;
}

.philosophy_box.reverse {
  flex-direction: row-reverse;
  padding-right: 11rem;
  padding-left: 0;
  margin: 6rem 0;
  justify-content: start;
  margin-left: auto;
}

.philosophy_txt {
  width: 45.4%;
}

.philosophy_txt h3 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 2.4rem;
}

.philosophy_txt h3 span {
  display: block;
  color: var(--color-green);
  font-family: var(--en);
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 1.6rem;
  letter-spacing: 0.1em;
}

.philosophy_txt p {
  margin-top: 1em;
  line-height: 2;
}

.philosophy_img {
  width: 50%;
  max-width: 900px;
  position: relative;
}

.philosophy_img img {
  object-position: top center;
  max-height: 560px;
  overflow: hidden;
  object-fit: cover;
}

.philosophy_img::before,
.philosophy_img::after {
  position: absolute;
  content: "";
  aspect-ratio: 1/1;
  z-index: 1;
}

.box01 .philosophy_img::before {
  width: 6rem;
  background: var(--color-yellow);
  bottom: -2rem;
  right: -2rem;
}



.box02 .philosophy_img::before,
.box02 .philosophy_img::after {
  width: 5rem;
  background: var(--color-green);
  left: -3.6rem;
  bottom: 0;
}

.box02 .philosophy_img::after {
  left: 0.4rem;
  bottom: -3.5rem;
}

.box03 .philosophy_img::before,
.box03 .philosophy_img::after {
  width: 6rem;
  background: var(--color-yellow);
  bottom: -3rem;
  right: -2rem;
}

.box03 .philosophy_img::after {
  background: var(--color-green);
  right: -4rem;
  bottom: 2rem;
  width: 3rem;
}

@media screen and (max-width:767px) {
  #philosophy {
    padding-top: 8rem;
    padding-bottom: 2rem;
  }

  .philosophy_box {
    flex-wrap: wrap;
    padding: 0;

    gap: 2.4rem;
  }

  .philosophy_box.reverse {
    padding: 0;
    margin: 6rem auto;
  }

  .philosophy_txt {

    width: 89.33%;
    margin: 0 auto;
  }

  .philosophy_txt h3 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2.4rem;
  }

  .philosophy_txt h3 span {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
  }

  .philosophy_img {
    width: 100%;
    max-width: unset;
  }

  .philosophy_img img {
    max-height: unset;
  }


  .box01 .philosophy_img::before {
    width: 3.2rem;
    bottom: -1.6rem;
    right: 0.5rem;
  }

  .box02 .philosophy_img::before,
  .box02 .philosophy_img::after {
    width: 3rem;
    left: 0;
    bottom: 0;
  }

  .box02 .philosophy_img::after {
    left: 2.4rem;
    bottom: -2.1rem;
  }

  .box03 .philosophy_img::before,
  .box03 .philosophy_img::after {
    width: 3.2rem;
    bottom: -1.8rem;
    right: 1.6rem;
  }

  .box03 .philosophy_img::after {

    right: 0.8rem;
    bottom: 0.9rem;
    width: 1.5rem;
  }
}

/*================================================
* price
================================================*/
.ativities_list {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(2, 1fr);
}

.ativities_box {
  background: rgb(34 188 178 / 6%);
  padding: 6rem 5rem;
}

.ativities_box:first-of-type {
  background: transparent;
  padding: 0;
  display: grid;
  place-content: center;
  position: relative;
}

.ativities_box:first-of-type::before,
.ativities_box:first-of-type::after {
  position: absolute;
  content: "";
  aspect-ratio: 1/1;
}

.ativities_box:first-of-type::before {
  width: 6rem;
  background: var(--color-yellow);
  right: 0.8rem;
  bottom: 4rem;
}

.ativities_box:first-of-type::after {
  width: 3rem;
  background: var(--color-green);
  right: 5.6rem;
  bottom: 2rem;
}

.ativities_box .hd {
  margin-bottom: 3.2rem;
}

.ativities_box h4 {
  position: relative;
  height: 2.45rem;
}

.ativities_box h4::before,
.ativities_box h4::after {
  position: absolute;
  content: "";
  height: 1px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.ativities_box h4::before {
  width: 20rem;
  background: var(--color-gray);
}

.ativities_box h4::after {
  width: 5rem;
  background: var(--color-green);
}

.ativities_box h4 img {
  display: block;
  width: auto;
  max-width: unset;
  height: 2.45rem;
  margin-left: auto;
  overflow: hidden;
  object-fit: cover;
}


.ativities_box h3 {
  font-size: 3.2rem;
  font-weight: 700;
  margin: 4rem 0 2.5rem;
}

.ativities_box h3 i {
  width: 10rem;
  height: 10rem;
  display: block;
  margin-bottom: 0.6rem;
}


.ativities_box h3 .icon_seminar {
  background-image: url(../images/icon_seminar.png);
}

.ativities_box h3 .icon_study {
  background-image: url(../images/icon_study.png);
}

.ativities_box h3 .icon_event {
  background-image: url(../images/icon_event.png);
}

@media screen and (max-width:767px) {
  #ativities .wrap_lg {
    width: 100%;
  }

  .ativities_list {
    gap: 2rem;
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 4rem;
  }

  .ativities_box {
    padding: 4rem 2rem;
  }

  .ativities_box:first-of-type {
    display: block;
    margin: 0 2rem;
  }

  .ativities_box:first-of-type::before {
    width: 3.2rem;
    right: -1.4rem;
    bottom: 1rem;
  }

  .ativities_box:first-of-type::after {
    width: 1.5rem;
    right: 1.1rem;
    bottom: 0.5rem;
  }

  .ativities_box h4::before {
    width: 8rem;
  }

  .ativities_box h4::after {
    width: 3rem;
  }

  .ativities_box h4 img {
    height: 1.9rem;
  }

  .ativities_box h3 i {
    width: 8rem;
    height: 8rem;
    margin: 0;
  }

  .ativities_box h3 {
    font-size: 2.2rem;
    display: flex;
    align-items: end;
    justify-content: start;
    gap: 2rem;
  }

  #ativities .btnArea.sp a {
    margin: 0 auto;
  }
}

/*================================================
* flow
================================================*/
#flow {
  z-index: 1;
  color: var(--color-white);
  padding-bottom: 11rem;
  overflow: hidden;
}

#flow::before {
  position: absolute;
  content: "";
  background: url(../images/flow_bg.webp) no-repeat center bottom/cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  transform: scale(1.1);
  opacity: 0;
  transition: all .8s ease .2s;
}

#flow::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(12, 48, 46, 0) 0%, rgba(12, 48, 46, 0.85) 100%);
  z-index: -1;
  opacity: 0;
  transition: all .8s ease .2s;
}

#flow.on::after {
  opacity: 1;
}

#flow.on::before {
  opacity: 1;
  transform: scale(1);
}



#flow .wrap_md {
  padding-top: 37vw;
  min-width: 736px;
}

#flow h2 {
  width: 67.2rem;
}

#flow .en_ttl {
  font-family: var(--en);
  font-weight: 900;
  /* font-size: 10.4rem; */


  font-size: clamp(20px, 6.87vw, 10.4rem);
}




#flow .en_ttl span {
  display: block;
  width: 0;
  height: 18.8rem;
  overflow: hidden;
  transition: all 1s ease .2s;
  white-space: nowrap;
}

#flow .en_ttl.on span {
  width: 128rem;
}

.flow_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 128rem;
  margin-top: 3.2rem;
}

.flow_btn p {
  font-size: 2rem;
  line-height: 2;
  font-weight: 600;
}

.flow_btn .btnArea {
  max-width: 46.6rem;
}

.flow_btn .btnArea a {
  font-size: 3rem;
  padding-left: 9rem;
  padding-right: 9rem;
  flex-wrap: wrap;
  gap: 0 1rem;
}

.flow_btn .btnArea a span {
  font-size: 1.6rem;
  width: 100%;
  text-align: center;
  margin-bottom: -0.5rem;
}

.flow_btn .btnArea a i {
  width: 4rem;
  height: 4rem;
}

@media screen and (max-width:767px) {
  #flow {
    padding-bottom: 21rem;
  }

  #flow::before {
    background: url(../images/flow_bg_sp.webp) no-repeat center bottom/cover;
  }

  #flow::after {
    background: linear-gradient(180deg, rgba(12, 48, 46, 0.3) 0%, rgba(12, 48, 46, 0.55) 100%);
  }

  #flow .wrap_md {
    padding-top: 7rem;
    min-width: unset;
    width: 93.33%;
  }

  #flow h2 {
    width: 28.8rem;
  }

  #flow .en_ttl {
    font-size: 2.9rem;
  }

  #flow .en_ttl span {
    height: 4.8rem;
  }

  #flow .en_ttl.on span {
    width: 35rem;
  }

  .flow_btn {
    flex-wrap: wrap;
    gap: 3rem;
  }

  .flow_btn p {
    width: 100%;
    font-size: 1.4rem;
  }

  .flow_btn .btnArea a {
    font-size: 2.2rem;
    padding-left: 4.5rem;
    padding-right: 4.5rem;
    gap: 0 0.4rem;
  }

  .flow_btn .btnArea a span {
    font-size: 1.2rem;
  }

  .flow_btn .btnArea a i {
    width: 2.8rem;
    height: 2.8rem;
  }
}

/*================================================
* interview
================================================*/
#interview p {
  font-size: 2.4rem;
  font-weight: 500;
}

.loop_swiper .swiper-wrapper {
  transition-timing-function: linear;
}


@media screen and (max-width:767px) {
  #interview .hd {
    margin-bottom: 4rem;
  }

  #interview p {
    font-size: 1.8rem;
    font-weight: 500;
  }
}

/*================================================
 *  
 ================================================*/
.loop_swiper.swiper {
  position: relative;
  z-index: 3;
}

.loop_swiper .swiper-slide {
  width: 30rem;
  margin: 0 1rem;
}

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

  .loop_swiper .swiper-slide {
    width: 20rem;
    margin: 0 0.5rem;
  }
}

/*================================================
 *  footer
 ================================================*/
footer {
  position: relative;
  background: url(../images/ft_bg.webp) no-repeat center bottom/cover;
  padding: 16rem 0 38.3rem;
  z-index: 1;
  margin-top: -3.2rem;
  color: var(--color-white);
}

footer::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(12, 48, 46, 0.3) 0%, rgba(12, 48, 46, 0.85) 100%);
  z-index: -1;
}

.ft_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 4rem;
  margin-bottom: 6rem;
  border-bottom: 1px solid var(--color-white);
}

.ft_logo {
  font-family: var(--en);
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.ft_menu ul {
  display: flex;
  align-items: center;
  justify-content: end;
  font-size: 1.4rem;
  gap: 2em;
  font-weight: 500;
}


.ft_co {
  display: flex;
  align-items: center;
  justify-content: start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 1.5rem;
  font-size: 2.4rem;
  font-weight: 600;
}

.ft_co img {
  width: 8rem;

}

.ft_address p {

  margin-top: 2rem;
}

.ft_cpoy {
  position: relative;
  top: -3rem;
  font-size: 1.2rem;

  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}


.ft_catch {
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(126rem, 88.4vw, 133.7rem);
}

@media screen and (max-width:767px) {
  footer {
    background: url(../images/ft_bg.webp) no-repeat right 18.5% top / cover;
    padding: 10rem 0 35.4rem;
    margin-bottom: 6rem;
  }

  footer:before {
    background: linear-gradient(180deg, rgba(12, 48, 46, 0.3) 0%, rgba(12, 48, 46, 0.85) 100%);
  }

  .ft_top {
    flex-wrap: wrap;
    gap: calc(4rem - 1.5rem);
    margin-bottom: 4rem;
  }

  .ft_menu ul {
    display: block;
  }

  .ft_menu ul li {
    margin-top: 1.5rem;
  }

  .ft_catch {
    width: 100%;
  }


  .ft_co {
    font-size: 2rem;
  }

  .ft_co img {
    width: 6rem;
  }

  .ft_cpoy {
    top: 0;
    font-size: 1.2rem;
    width: 100%;
    text-align: right;
    margin-top: 6rem;
  }
}

/*================================================
* access
================================================*/


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

/*================================================
* price
================================================*/

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

/*================================================
* access
================================================*/


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

/*================================================
* price
================================================*/

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

/*================================================
* access
================================================*/


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

/*================================================
* price
================================================*/

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

/*================================================
* access
================================================*/


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

/*================================================
* price
================================================*/

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

/*================================================
* ani
================================================*/
/* zoom */
.zoom {
  overflow: hidden;
  display: block;
}

.zoom img {
  width: 100%;
  display: block;
  opacity: 0;
  transform: scale(1.1);
  transition: all .8s ease .6s;
}

.zoom.on img {
  opacity: 1;
  transform: scale(1);
}

/* fadeup */
.fadeIn {
  opacity: 0;
  transition: all 1s ease;
}

.fadeIn.on {
  opacity: 1;
}



.delay02 {
  transition-delay: .2s;
}

.delay03 {
  transition-delay: .3s;
}

.delay04 {
  transition-delay: .4s;
}

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