@charset "UTF-8";
/**** 共通カラー ****/
.section_mv {
  position: relative;
  height: 100svh;
  overflow: hidden;
  box-sizing: border-box;
  color: #333333;
  background-color: #ffffff;
  padding: calc(16px + min(90px, 6.25vw)) 40px 20px;
}
@media screen and (max-width: 700px) {
  .section_mv {
    padding: calc(32px + min(90px, 6.25vw)) 20px 16px;
  }
}
@media screen and (max-width: 768px) {
  .section_mv {
    padding-top: 80px;
  }
}

.mv_frame {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}
@media screen and (max-width: 700px) {
  .mv_frame {
    border-radius: 12px;
  }
}

.mv_swiper {
  height: 100%;
}
.mv_swiper .swiper-slide,
.mv_swiper picture,
.mv_swiper img {
  width: 100%;
  height: 100%;
}
.mv_swiper img {
  object-fit: cover;
  display: block;
}
.mv_swiper .swiper-pagination {
  bottom: 32px;
}
.mv_swiper .swiper-pagination-bullet {
  background: #333333;
  opacity: 0.4;
}
.mv_swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

.section_mv_catch {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(8, 6, 5, 0.5) 0%, rgba(8, 6, 5, 0.1) 60%, transparent 100%);
}
.section_mv_catch .l_inner {
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .section_mv_catch .l_full {
    transform: translateY(-80px);
  }
}

.section_mv_title {
  font-size: clamp(3.333rem, 2.778vw, 4rem);
  line-height: 1.5;
  color: #ffffff;
  margin-left: 8.3333333333vw;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .section_mv_title {
    font-size: clamp(2rem, 1.667vw, 2.4rem);
    margin-left: 10px;
    margin-bottom: 30px;
  }
}

.section_mv_description {
  color: #ffffff;
  font-size: clamp(1.667rem, 1.389vw, 2rem);
  line-height: 1.6;
  margin-left: 8.3333333333vw;
}
@media screen and (max-width: 768px) {
  .section_mv_description {
    font-size: clamp(1.4rem, 1.111vw, 1.6rem);
    margin-left: 10px;
  }
}

.scroll_bar {
  position: absolute;
  transform: rotate(90deg) translate(-100%, 0);
  transform-origin: bottom left;
  bottom: 4.1666666667vw;
  left: 40px;
  z-index: 2;
  width: 140px;
  height: 30px;
}
@media screen and (max-width: 768px) {
  .scroll_bar {
    left: 18px;
  }
}
.scroll_bar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url(../image/index/mv-deco.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  transform: scaleY(-1);
  pointer-events: none;
}
.scroll_bar > span {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1rem, 0.833vw, 1.2rem);
  text-align: center;
  line-height: 30px;
  transform: translateX(-16px);
  position: relative;
}
.scroll_bar > span::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  top: 2px;
  bottom: 0;
  left: 100px;
  margin: auto;
  background-color: #cccccc;
}
.scroll_bar > span::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #2c8ed6;
  top: 2px;
  bottom: 0;
  left: 123px;
  margin: auto;
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

.section_blog {
  color: #eaf6ff;
  background-color: #ffffff;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}
.section_blog::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url(../image/common/section_bg_deco_right.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 91.6666666667vw;
  height: 37.9166666667vw;
  pointer-events: none;
}
.section_blog .l_inner {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .section_blog .list_blog {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem 1.6rem;
  }
}

.section_blog_more,
.section_about_more {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .section_blog_more,
  .section_about_more {
    margin-top: 30px;
  }
}

.section_greeting {
  padding: 120px 0 70px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .section_greeting {
    padding: 80px 0 20px;
  }
}
.section_greeting::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  background-image: url(../image/common/section_bg_deco_top.webp);
  background-size: contain;
  background-position: right top;
  background-repeat: no-repeat;
  width: 91.6666666667vw;
  height: 37.9166666667vw;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .section_greeting::before {
    top: 0;
  }
}
.section_greeting .l_inner {
  position: relative;
  z-index: 2;
}
.section_greeting .l_flex {
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .section_greeting .l_flex {
    flex-direction: column;
  }
}
.section_greeting .l_flex .image_wrap {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .section_greeting .l_flex .image_wrap {
    width: 53.3333333333vw;
    margin: auto;
  }
}
.section_greeting .l_flex .image_wrap p {
  margin-top: 12px;
}
.section_greeting .l_flex .text_wrap {
  width: 59.7222222222%;
}
@media screen and (max-width: 768px) {
  .section_greeting .l_flex .text_wrap {
    width: 100%;
  }
}
.section_greeting .l_flex .text_wrap .description {
  font-size: clamp(1.4rem, 1.111vw, 1.6rem);
  line-height: 1.6;
}
.section_greeting .l_flex .section_tit {
  margin-left: 0;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .section_greeting .l_flex .section_tit {
    width: fit-content;
    margin: 30px auto 20px;
  }
}
.section_greeting .section_about_more {
  margin-left: 0;
  margin-right: auto;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .section_greeting .section_about_more {
    justify-content: center;
    margin: 30px auto;
  }
}

.section_treatment {
  background: linear-gradient(180deg, #eaf6ff 0%, #eaf6ff 43%, #2c8ed6 100%);
  padding-top: 18.0555555556vw;
  position: relative;
  padding-bottom: 80px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .section_treatment {
    padding-bottom: 40px;
  }
}
.section_treatment::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  background-image: url(../image/index/semicircle_white.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: 10.0694444444vw;
}
.section_treatment .lead {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .section_treatment .lead {
    padding: 0 15px;
  }
}
.section_treatment .l_inner {
  background-color: rgba(255, 255, 255, 0.8);
  padding-top: 80px;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 120px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .section_treatment .l_inner {
    padding: 30px 15px 80px 15px;
  }
}
.section_treatment .l_flex {
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .section_treatment .l_flex {
    flex-direction: column;
  }
}
.section_treatment .image_wrap {
  width: 37.5%;
}
@media screen and (max-width: 768px) {
  .section_treatment .image_wrap {
    width: 100%;
  }
}
.section_treatment .text_wrap.lead_wrap {
  font-family: "NotoSansJP-Bold";
  width: 54.1666666667%;
  font-size: clamp(2.667rem, 2.222vw, 3.2rem);
  color: #1e78c8;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .section_treatment .text_wrap.lead_wrap {
    width: 100%;
    font-size: clamp(2rem, 1.667vw, 2.4rem);
    margin-top: 20px;
  }
}
.section_treatment h3 {
  margin: 30px 0 20px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .section_treatment h3 {
    justify-content: center;
  }
}
.section_treatment h3::before {
  content: "";
  display: inline-block;
  background-color: #f08300;
  width: 12px;
  aspect-ratio: 1;
  border-radius: 50%;
  margin-right: 6px;
}
.section_treatment .card_flex {
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .section_treatment .card_flex {
    gap: 15px;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.section_treatment .item {
  background-color: #eaf6ff;
  border-radius: 20px;
  border: solid 2px #2c8ed6;
  text-align: center;
  padding: 25px;
}
@media screen and (max-width: 768px) {
  .section_treatment .item {
    width: calc((100% - 15px) / 2);
  }
  .section_treatment .item:last-child {
    margin-left: auto;
    margin-right: auto;
  }
}
.section_treatment .item p {
  width: fit-content;
  margin: auto;
  margin-top: 20px;
  padding: 4px 10px;
  background-color: #2c8ed6;
  color: #ffffff;
  border-radius: 20px;
}
.section_treatment .treatment_echo {
  display: grid;
  width: 56.6666666667%;
  max-width: 68rem;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 32%);
  grid-template-areas: "text machine" "scene machine" "more more";
  column-gap: clamp(2rem, 3.5vw, 4rem);
  row-gap: 2.4rem;
  align-items: start;
  margin-top: 6rem;
}
.section_treatment .treatment_echo .treatment_echo_text {
  grid-area: text;
  font-size: clamp(1.667rem, 1.389vw, 2rem);
  line-height: 1.8;
  color: #333333;
}
.section_treatment .treatment_echo .treatment_echo_scene {
  grid-area: scene;
  width: 100%;
  border-radius: 2rem;
  object-fit: cover;
  display: block;
}
.section_treatment .treatment_echo .treatment_echo_machine {
  grid-area: machine;
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  object-fit: cover;
  object-position: bottom center;
  display: block;
  align-self: stretch;
}
.section_treatment .treatment_echo .treatment_echo_more {
  grid-area: more;
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
}
@media screen and (max-width: 768px) {
  .section_treatment .treatment_echo {
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr auto auto;
    grid-template-areas: "text text text" "more more more" ". scene machine";
    column-gap: 10px;
    row-gap: 2.4rem;
    margin-top: 4rem;
  }
  .section_treatment .treatment_echo .treatment_echo_scene,
  .section_treatment .treatment_echo .treatment_echo_machine {
    align-self: end;
    height: auto;
    max-height: none;
  }
  .section_treatment .treatment_echo .treatment_echo_scene {
    width: 160px;
    align-self: self-start;
  }
  .section_treatment .treatment_echo .treatment_echo_machine {
    width: 90px;
    margin-left: 0;
    position: relative;
    z-index: 1;
  }
  .section_treatment .treatment_echo .treatment_echo_more {
    margin-top: 0;
  }
}
.section_treatment .training_tit {
  font-size: clamp(2rem, 1.667vw, 2.4rem);
  text-align: center;
  font-family: "NotoSansJP-Bold";
  margin-top: 120px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .section_treatment .training_tit {
    margin: 30px 0;
    font-size: clamp(1.667rem, 1.389vw, 2rem);
    line-height: 1.6;
    text-align: left;
    text-indent: -1rem;
    padding-left: 1rem;
  }
}
.section_treatment .training_tit::before {
  content: "";
  display: inline-block;
  margin-right: 12px;
  width: 4px;
  height: 28px;
  background-color: #2c8ed6;
  transform: translateY(4px);
}
@media screen and (max-width: 768px) {
  .section_treatment .training_tit::before {
    margin-right: 0.5rem;
    transform: translateY(8px);
  }
}
.section_treatment .training_flex {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .section_treatment .training_flex {
    flex-direction: column;
    margin-bottom: 60px;
  }
}
.section_treatment .training_flex .image_wrap {
  width: 37.5%;
}
@media screen and (max-width: 768px) {
  .section_treatment .training_flex .image_wrap {
    width: 100%;
    margin-bottom: 10px;
  }
}
.section_treatment .training_flex .text_wrap {
  width: 47.5%;
}
@media screen and (max-width: 768px) {
  .section_treatment .training_flex .text_wrap {
    width: 100%;
  }
}
.section_treatment .training_flex .text_wrap .tit {
  font-size: clamp(2rem, 1.667vw, 2.4rem);
  color: #1e78c8;
  font-family: "NotoSansJP-Bold";
  margin-bottom: 26px;
}
@media screen and (max-width: 768px) {
  .section_treatment .training_flex .text_wrap .tit {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
.section_treatment .training_flex .text_wrap .description {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .section_treatment .training_flex .text_wrap .description {
    margin-bottom: 20px;
  }
}
.section_treatment .training_flex .text_wrap .training_more {
  display: flex;
  justify-content: flex-end;
}
.section_treatment .echo_master_tit {
  text-align: center;
  font-size: clamp(2rem, 1.667vw, 2.4rem);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .section_treatment .echo_master_tit {
    font-size: clamp(1.667rem, 1.389vw, 2rem);
    margin-bottom: 30px;
  }
}
.section_treatment .echo_master_tit::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: #2c8ed6;
  margin-right: 6px;
}
@media screen and (max-width: 768px) {
  .section_treatment .echo_master_tit::before {
    width: 20px;
    margin-right: 3px;
  }
}
.section_treatment .echo_master_tit::after {
  content: "";
  width: 40px;
  height: 2px;
  background-color: #2c8ed6;
  margin-left: 6px;
}
@media screen and (max-width: 768px) {
  .section_treatment .echo_master_tit::after {
    width: 20px;
    margin-left: 3px;
  }
}
.section_treatment .echo_flex {
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: flex-start;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .section_treatment .echo_flex {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.section_treatment .echo_flex .image_wrap {
  width: 37.5%;
}
@media screen and (max-width: 768px) {
  .section_treatment .echo_flex .image_wrap {
    width: 100%;
    margin-bottom: 10px;
  }
}
.section_treatment .echo_flex .text_wrap {
  width: 47.5%;
}
@media screen and (max-width: 768px) {
  .section_treatment .echo_flex .text_wrap {
    width: 100%;
  }
}
.section_treatment .echo_flex .text_wrap .tit {
  font-size: clamp(2rem, 1.667vw, 2.4rem);
  font-family: "NotoSansJP-Bold";
  color: #2c8ed6;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .section_treatment .echo_flex .text_wrap .tit {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
.section_treatment .echo_flex .text_wrap .description {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .section_treatment .echo_flex .text_wrap .description {
    margin-bottom: 12px;
  }
}
.section_treatment .echo_flex .text_wrap .description.last {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .section_treatment .echo_flex .text_wrap .description.last {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .section_treatment .echo_flex .echo_more {
    display: flex;
    justify-content: flex-end;
  }
}
.section_treatment .shockwave_flex {
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .section_treatment .shockwave_flex {
    flex-direction: column;
  }
}
.section_treatment .shockwave_flex .image_wrap {
  width: 37.5%;
}
@media screen and (max-width: 768px) {
  .section_treatment .shockwave_flex .image_wrap {
    width: 100%;
    margin-bottom: 10px;
  }
}
.section_treatment .shockwave_flex .text_wrap {
  width: 47.5%;
}
@media screen and (max-width: 768px) {
  .section_treatment .shockwave_flex .text_wrap {
    width: 100%;
  }
}
.section_treatment .shockwave_flex .text_wrap .tit {
  font-size: clamp(2rem, 1.667vw, 2.4rem);
  font-family: "NotoSansJP-Bold";
  color: #2c8ed6;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .section_treatment .shockwave_flex .text_wrap .tit {
    margin-bottom: 16px;
  }
}
.section_treatment .shockwave_flex .text_wrap .description {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .section_treatment .shockwave_flex .text_wrap .description {
    margin-bottom: 20px;
  }
}
.section_treatment .shockwave_flex .text_wrap .note {
  margin-top: 20px;
  font-size: 1.4rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .section_treatment .shockwave_flex .text_wrap .note {
    margin-top: 16px;
  }
}
.section_treatment .shockwave_more {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .section_treatment .shockwave_more {
    flex-direction: column;
    align-items: flex-end;
  }
}
.section_treatment .shockwave_more a:first-child {
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .section_treatment .shockwave_more a:first-child {
    margin-right: 0;
    margin-bottom: 16px;
  }
}

.section_guide {
  padding: 80px 0;
  background-color: #f7f7f7;
}
.section_guide .l_flex {
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.section_guide .tit_wrap {
  position: sticky;
  top: calc(min(90px, 6.25vw) + 32px);
  z-index: 2;
  flex: 0 0 auto;
  width: 26.6666666667%;
  max-width: 320px;
  align-self: flex-start;
}
.section_guide .tit_wrap .section_tit {
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 0;
}
.section_guide .tit_wrap h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: clamp(1.667rem, 1.389vw, 2rem);
  font-family: "NotoSansJP-Bold";
}
.section_guide .tit_wrap .adress,
.section_guide .tit_wrap .tel,
.section_guide .tit_wrap .info {
  font-size: clamp(1.4rem, 1.111vw, 1.6rem);
}
.section_guide .tit_wrap .tel {
  font-size: clamp(2rem, 1.667vw, 2.4rem);
  margin: 12px 0;
  color: #1e78c8;
  font-family: "NotoSansJP-Bold";
}
.section_guide .guide_wrap {
  flex: 1;
  min-width: 0;
}
.section_guide .guide_wrap h4 {
  margin-bottom: 24px;
  font-size: clamp(1.667rem, 1.389vw, 2rem);
  font-family: "NotoSansJP-Bold";
  display: flex;
  align-items: center;
}
.section_guide .guide_wrap h4::before {
  content: "";
  background-image: url(../image/index/triangle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  aspect-ratio: 1;
  margin-right: 8px;
}
.section_guide .guide_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 30px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .section_guide .guide_list {
    margin-bottom: 30px;
  }
}
.section_guide .guide_list img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 12px;
  border-radius: 5px;
}
.section_guide .guide_list p {
  font-size: clamp(1.4rem, 1.111vw, 1.6rem);
}
.section_guide .guide_list p:first-of-type {
  margin-bottom: 8px;
  font-family: "NotoSansJP-Bold";
}
@media screen and (max-width: 768px) {
  .section_guide {
    padding: 48px 0;
  }
  .section_guide .l_flex {
    flex-direction: column;
    gap: 32px;
  }
  .section_guide .tit_wrap {
    position: static;
    width: 100%;
    max-width: none;
  }
  .section_guide .tit_wrap .access_wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
  }
  .section_guide .tit_wrap h3 {
    margin-top: 16px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .section_guide .tit_wrap .access_info {
    flex: 1;
    min-width: 0;
    margin-top: 16px;
  }
  .section_guide .guide_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.deco_roop_slider {
  overflow: hidden;
  padding: 8vw 0;
  background-color: #2c8ed6;
}
@media screen and (max-width: 768px) {
  .deco_roop_slider {
    margin-top: -2px;
    padding: 20px 0 80px 0;
  }
}

.slider_bg_wrap {
  overflow: hidden;
}

.slider_wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.slider_wrap.is_multi {
  transform: rotate(-8deg) scale(1.15);
}

.slider {
  display: flex;
  width: max-content;
  padding-bottom: 40px;
  animation: loop 40s linear infinite;
  will-change: transform;
}
.slider_wrap.is_multi .slider:nth-child(2) {
  animation-name: loop-r;
  animation-duration: 50s;
}
.slider_wrap.is_multi .slider:nth-child(3) {
  animation-duration: 45s;
}

.slider_track {
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
  gap: 2rem;
  padding-right: 2rem;
}
.slider_track .img {
  width: 32rem;
  height: 22rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 10px;
}
.slider_track .img:nth-child(even) {
  transform: translateY(40px);
}
@media screen and (max-width: 768px) {
  .slider_track .img {
    width: 22rem;
    height: 15rem;
  }
}
.slider_track .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*# sourceMappingURL=index.css.map */
