@charset "UTF-8";
/* ===============================================
#変数
=============================================== */
:root {
  --color-orange: #ff7218;
  --color-lightorange: #ffcfb0;
  --color-gray: #787878;
  --font-family-common: "Zen Maru Gothic", serif;
  --font-family-noto: "Noto Sans JP", sans-serif;
  --side-space: 20px;
}
/* ===============================================
#共通
=============================================== */
html {
  font-size: 62.5%;
}

body {
  background-color: #fbf5f2;
  font-family: var(--font-family-common);
  line-height: normal;
  color: #333;
  font-size: 2rem;
  font-weight: 700;

  @media (width <= 767px) {
    font-size: 1.4rem;
  }
}

.l-container {
  overflow-x: clip;
}

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

a {
  display: inline-block;
  transition: opacity 0.3s;

  &:hover {
    opacity: 0.7;
  }
}

.sp {
  @media (width >= 768px) {
    display: none;
  }
}

.td_sp {
  @media (width >= 1024px) {
    display: none;
  }
}

.pc_tb {
  @media (width <= 767px) {
    display: none;
  }
}

.text-center {
  text-align: center;
}

.inner {
  margin-inline: auto;
  padding-inline: var(--side-space);

  &.max-1368 {
    max-width: calc(1368px + (var(--side-space) * 2));
  }

  &.max-1240 {
    max-width: calc(1240px + (var(--side-space) * 2));
  }

  &.max-1200 {
    max-width: calc(1200px + (var(--side-space) * 2));
  }

  &.max-1140 {
    max-width: calc(1140px + (var(--side-space) * 2));
  }

  &.max-1100 {
    max-width: calc(1100px + (var(--side-space) * 2));
  }

  &.max-1080 {
    max-width: calc(1080px + (var(--side-space) * 2));
  }

  &.max-1040 {
    max-width: calc(1040px + (var(--side-space) * 2));
  }

  &.max-1020 {
    max-width: calc(1020px + (var(--side-space) * 2));
  }

  &.max-1000 {
    max-width: calc(1000px + (var(--side-space) * 2));
  }

  &.max-800 {
    max-width: calc(800px + (var(--side-space) * 2));
  }

  @media (width <= 767px) {
    padding-inline: 18px;
  }
}

.c-text__border {
  color: var(--color-orange);
  font-size: 2.4rem;
  position: relative;
  font-family: var(--font-family-common);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: normal;

  &::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    border-radius: 50vw;
    background: #fdffb0;
    z-index: 1;
  }

  span {
    position: relative;
    z-index: 2;
  }

  @media (width <= 767px) {
    font-size: 1.8rem;
  }
}

/* ===============================================
#ボタン
=============================================== */
.c-btn__box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;

  @media (width <= 1023px) {
    flex-direction: column;
  }

  @media (width <= 767px) {
    max-width: 345px;
    margin-inline: auto;
    width: 100%;
    gap: 16px;
  }
}

.c-btn__btn {
  display: flex;
  padding: 18px 70px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  border-radius: 50vw;

  .c-btn__btn-top {
    font-size: 1.6rem;
    letter-spacing: 0.04em;
  }

  .c-btn__btn-bottom {
    font-size: 2.4rem;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 10px;

    img {
      width: 12px;
    }
  }

  &.orange {
    background: var(--color-orange);
    box-shadow: 4px 6px 0px 0px #a24f1b;
    .c-btn__btn-top {
      color: var(--color-lightorange);
    }

    .c-btn__btn-bottom {
      color: #fff;
    }
  }

  &.white {
    border: 1px solid var(--color-gray);
    background: #fff;
    box-shadow: 4px 6px 0px 0px #958b84;
    .c-btn__btn-top {
      color: var(--color-orange);
    }
  }

  @media (width <= 767px) {
    padding: 18px 30px;
    width: 100%;
    .c-btn__btn-bottom {
      font-size: 2rem;

      img {
        width: 10px;
      }
    }

    &.orange {
      .c-btn__btn-top {
        font-size: 1.8rem;
      }

      .c-btn__btn-bottom {
        color: #fff;
      }
    }

    &.white {
      .c-btn__btn-top {
        font-size: 2rem;
      }
    }
  }
}

.c-btn__common {
  display: flex;
  flex-direction: column;
  padding: 18px 70px;
  justify-content: center;
  align-items: center;
  gap: 3px;
  border-radius: 50vw;
  background: #fff;
  box-shadow: 4px 6px 0px 0px #a24f1b;
  margin-inline: auto;
  width: fit-content;
  position: relative;
  z-index: 2;

  @media (width <= 767px) {
    padding: 12px 40px;
    min-width: 300px;
  }
}

.c-btn__common-top {
  color: var(--color-orange);
  font-size: 1.6rem;
  letter-spacing: 0.04em;

  @media (width <= 767px) {
    font-size: 1.4rem;
  }
}

.c-btn__common-bottom {
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;

  @media (width <= 767px) {
    font-size: 2rem;
  }

  img {
    width: 10px;
    padding-top: 2px;
  }
}

/* ===============================================
#余白
=============================================== */
.mt-24 {
  margin-top: 24px !important;
}
/* ===============================================
#header
=============================================== */
.header {
  position: fixed;
  width: 100%;
  z-index: 100;
  left: 0;
  @media (width >= 1301px) {
    top: 21px;
    padding-inline: 70px;
  }

  @media (width <= 1300px) {
    &.open {
      height: 100vh;
      top: 0;
      overflow: scroll;
    }
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  max-width: 1300px;
  width: 100%;

  @media (width >= 1301px) {
    box-shadow: 0px 9px 44px 0px rgba(68, 68, 68, 0.08);
    padding: 16px 40px;
    border-radius: 50vw;
    margin-inline: auto;
  }

  @media (width <= 1300px) {
    display: none;

    &.open {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
    }
  }
}

.header__logo {
  max-width: 291px;
}

.header__logo-box {
  @media (width <= 1300px) {
    order: 3;
    padding-top: 37px;
    padding-bottom: 133px;
  }
}

.header__nav {
  @media (width <= 1300px) {
    padding-top: 127px;
    background-color: var(--color-orange);
    width: 100%;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 36px;

  @media (width <= 1300px) {
    flex-direction: column;
    align-items: flex-start;
    max-width: 230px;
    margin-inline: auto;
    gap: 0px;
  }
}

.header__nav-item {
  font-size: 1.5rem;
  letter-spacing: 0.2em;

  @media (width <= 1300px) {
    padding-block: 16px;
    color: #fff;
    width: 100%;
    font-size: 1.6rem;
    letter-spacing: 0.04em;

    &:nth-of-type(n + 2) {
      border-top: 1px solid var(--color-lightorange);
    }

    a {
      position: relative;
      display: flex;
      align-items: center;
      gap: 23px;

      &::before {
        content: "";
        top: 0;
        left: 0;
        width: 6px;
        height: 6px;
        background-color: var(--color-lightorange);
        border-radius: 50%;
      }
    }
  }
}

.header__btn {
  border-radius: 50vw;
  background: var(--color-orange);
  box-shadow: 2px 3px 0px 0px #cacaca;
  display: flex;
  padding: 10px 40px;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  @media (width <= 1300px) {
    background-color: #fff;
    box-shadow: 4px 6px 0px 0px #a24f1b;
    padding: 12px 40px;
    width: 300px;
    margin-inline: auto;
  }
}

.header__btn-box {
  @media (width <= 1300px) {
    background-color: var(--color-orange);
    padding-top: 74px;
    padding-bottom: 87px;
    width: 100%;
  }
}

.header__btn-top {
  color: var(--color-lightorange);
  font-size: 1.1rem;
  letter-spacing: 0.04em;

  @media (width <= 1300px) {
    font-size: 1.4rem;
    color: var(--color-orange);
  }
}

.header__btn-bottom {
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;

  @media (width <= 1300px) {
    font-size: 2rem;
    color: #333;
  }

  img {
    width: 10px;
    margin-bottom: 3px;
    vertical-align: middle;
  }
}

.header__hamburger {
  display: none;

  @media (width <= 1300px) {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    position: fixed;
    right: 20px;
    top: 18px;
    z-index: 101;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0px 0px 34px 0px rgba(0, 0, 0, 0.04);

    span {
      width: 17px;
      height: 2px;
      background-color: var(--color-orange);
      border-radius: 50vw;
      transition: all 0.3s;
      position: relative;
    }

    &.open {
      span:nth-of-type(1) {
        top: 7px;
        transform: rotate(45deg);
      }
      span:nth-of-type(2) {
        opacity: 0;
      }
      span:nth-of-type(3) {
        bottom: 7px;
        transform: rotate(-45deg);
      }
    }
  }
}

/* ===============================================
#fv
=============================================== */
.fv {
  background: transparent url(./../img/fv-bg.webp) no-repeat center center / cover;
  padding-top: 145px;
  padding-bottom: 70px;
  position: relative;

  @media (width <= 1300px) {
    padding-top: 59px;
    padding-bottom: 195px;
    
  }
}

.fv__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}

.fv__fukidashi {
  max-width: 737px;
  margin-inline: auto;
  
  @media (width <= 767px) {
    max-width: 315px;
    margin-inline: auto;
    display: block;
  }
}

.fv__text-box {
  width: 724px;
  position: relative;
  z-index: 2;
  padding-top: 174px;
  padding-left: 60px;
  padding-bottom: 58px;
  overflow: hidden;

  &::before,
  &::after {
    content: "";
    position: absolute;
    width: 676px;
    height: 676px;
    background-color: #fffcfb;
    border-radius: 50%;
    display: block;
    z-index: 2;
  }

  &::before {
    top: 0;
    left: -106px;
  }

  &::after {
    bottom: -240px;
    right: 0;
  }

  @media (width <= 1100px) {
    margin-top: -30px;
  }

  @media (width <= 767px) {
    width: 370px;
    padding-top: 70px;
    padding-left: 20px;
    padding-bottom: 25px;

    &::before,
    &::after {
      width: 350px;
      height: 350px;
    }

    &::before {
      top: 0;
      left: -70px;
    }

    &::after {
      bottom: -120px;
      right: 0;
    }
  }
}

.fv__top-text {
  font-size: 4.6rem;
  letter-spacing: 0.2em;
  position: relative;
  z-index: 3;

  span {
    background-image: radial-gradient(circle at center, var(--color-orange) 15%, transparent 15%);
    background-position: top left;
    background-repeat: repeat-x;
    background-size: 1.18em 0.3em;
    padding-top: 0.4em;
  }

  @media (width <= 767px) {
    font-size: 2.2rem;
    padding-left: 8px;
  }
}

.fv__center-text-box {
  margin-top: 23px;
  display: flex;
  align-items: center;
  gap: 7px;
  position: relative;
  z-index: 3;
  margin-left: -15px;

  @media (width <= 767px) {
    gap: 3px;
    margin-top: 5px;
    margin-left: -1px;
  }
}

.fv__img-text {
  max-width: 395px;

  @media (width <= 767px) {
    max-width: 186px;
  }
}

.fv__center-text {
  color: var(--color-orange);
  -webkit-text-stroke: 4px #FFF;
  text-stroke: 4px #FFF;
  font-size: 10.5rem;
  font-weight: 900;
  letter-spacing: .12em;
  
  small {
    font-size: 8.6rem;
  }
  
  @media (width <= 1023px) {
    font-size: 6rem;
    -webkit-text-stroke: 3px #FFF;
    text-stroke: 3px #FFF;
    
    small {
      font-size: 4.8rem;
    }
  }
  
  @media (width <= 767px) {
    font-size: 4rem;
    -webkit-text-stroke: 2px #FFF;
    text-stroke: 2px #FFF;
    
    small {
      font-size: 3rem;
    }
    
  }
}

.fv__center-rotate {
  color: var(--color-orange);
  font-size: 7.5rem;
  font-weight: 500;
  rotate: 22deg;
  margin-left: 20px;
  margin-top: 40px;

  @media (width <= 767px) {
    font-size: 3.3rem;
    margin-left: 8px;
    margin-top: 27px;
  }
}

.fv__bottom-text {
  font-size: 3.1rem;
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 0.08em;
  padding: 8px 24px;
  background-color: rgba(255, 255, 255, .81);
  border-radius: 20px;
  
  @media (width <= 1023px) {
    font-size: 2.4rem;
  }
  
  @media (width <= 767px) {
    font-size: 1.4rem;
    padding: 8px;
  }
}

.fv__img {
  @media (width >= 1101px) {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    max-width: 845px;
    width: 75%;

    img {
      border-radius: 80px;
    }
  }

  @media (width <= 1100px) {
    position: relative;
    width: calc(100% - 20px);

    img {
      border-radius: 0 20px 20px 0;
    }
  }
}

.fv__object {
  position: absolute;
  bottom: 0;
  z-index: 2;
  
  &.left {
    width: 28%;
    max-width: 438px;
    left: 0;
  }
  
  &.right {
    width: 30%;
    max-width: 480px;
    right: 0;
  }
  
  @media (width <= 767px) {
    &.left {
      width: 100%;
      max-width: 220px;
    }
    
    &.right {
      width: 100%;
      max-width: 217px;
    }
  }
}

.fv__reservation-box {
  background-color: #fff;
  border-radius: 16px;
  padding: 10px 10px 0 10px;
  margin-top: 40px;
  
  @media (width <= 767px) {
    width: 100%;
    padding: 0;
    
    iframe {
      width: 100%;
    }
  }
}

/* ===============================================
#leading
=============================================== */
.leading {
  padding-bottom: 52px;
  background-color: var(--color-orange);
  position: relative;

  @media (width <= 767px) {
    padding-bottom: 71px;
  }
}

.leading__btn-container {
  background: transparent url(./../img/back-net.webp) no-repeat center center / cover;
  padding-top: 20px;
  padding-bottom: 20px;
  
  @media (width <= 1100px) {
    background: transparent url(./../img/back-net.webp) repeat center center / 300%;
    
  }
}

.leading__btn-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  @media (width <= 1100px) {
    flex-direction: column;
    gap: 23px;
  }
}

.leading__btn {
  display: flex;
  flex-direction: column;
  padding: 18px 70px;
  justify-content: center;
  align-items: center;
  gap: 3px;
  border-radius: 50vw;
  background: #fff;
  box-shadow: 4px 6px 0px 0px #a24f1b;
  width: fit-content;
  position: relative;
  z-index: 2;
  
  @media (width <= 1100px) {
    min-width: 360px;
  }

  @media (width <= 767px) {
    padding: 7px 20px;
    min-width: 240px;
  }
}

.leading__btn-top {
  color: var(--color-orange);
  font-size: 1.6rem;
  letter-spacing: 0.04em;

  @media (width <= 767px) {
    font-size: 1.3rem;
  }
}

.leading__btn-bottom {
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;

  @media (width <= 767px) {
    font-size: 1.6rem;
  }

  img {
    width: 10px;
    padding-top: 2px;
  }
}

.leading__heading {
  margin-top: 86px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  font-size: 3.6rem;
  letter-spacing: 0.2em;

  @media (width <= 767px) {
    font-size: 2.3rem;
    gap: 9px;
  }
}

.leading__heading-top {
  color: #fff;
}

.leading__heading-bottom {
  position: relative;
  background: transparent url(./../img/leading-heading-bg.webp) no-repeat center center / contain;
  padding: 6px 0px 6px 20px;
  &::before {
    content: "";
    position: absolute;
    bottom: -9px;
    right: -104px;
    width: 81px;
    height: 85px;
    background: transparent url(./../img/leading-object.webp) no-repeat center center / contain;
  }

  @media (width <= 767px) {
    padding: 4px 0px 4px 17px;

    &::before {
      bottom: -15px;
      right: -36px;
      width: 39px;
      height: 41px;
    }
  }
}

.leading__container {
  border-radius: 40px;
  background: #fff;
  padding: 62px 40px;
  margin-top: 32px;
  margin-bottom: 38px;
  text-align: center;
  font-family: var(--font-family-noto);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.76;
  font-size: 2rem;

  @media (width <= 767px) {
    padding: 47px 20px 55px;
    font-size: 1.4rem;
    border-radius: 20px;
    margin-top: 41px;
    margin-bottom: 28px;
  }
}

.leading__text {
  &:nth-of-type(n + 2) {
    margin-top: 1.6em;
  }
}

/* ===============================================
#problem
=============================================== */
.problem {
  padding-bottom: 140px;
  padding-top: 58px;

  @media (width <= 767px) {
    padding-bottom: 40px;
    padding-top: 36px;
  }
}

.problem__heading {
  font-size: 3.6rem;
  letter-spacing: 0.2em;
  text-align: center;
  position: relative;
  z-index: 2;

  span {
    color: var(--color-orange);
    font-size: 4.6rem;
    letter-spacing: 0.2em;
  }

  @media (width <= 767px) {
    font-size: 2.4rem;
    letter-spacing: 0.04em;
    span {
      font-size: 3.6rem;
    }
  }
}

.problem__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  position: relative;
  margin-top: 57px;

  @media (width <= 1100px) {
    flex-direction: column;
  }

  @media (width <= 767px) {
    margin-top: 30px;
    gap: 12px;
  }
}

.problem__object {
  position: absolute;
  right: -28px;
  bottom: -111px;
  width: 110px;

  @media (width <= 1200px) {
    width: 90px;
  }

  @media (width <= 767px) {
    width: 62px;
    right: 5px;
    bottom: -40px;
  }
}

.problem__lists {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 29px;
  width: fit-content;

  @media (width <= 1100px) {
    order: 2;
    gap: 18px;
  }

  @media (width <= 767px) {
    gap: 12px;
  }
}

.problem__list {
  background: #fff;
  padding: 10px 28px;
  border-radius: 50vw;
  white-space: nowrap;
  display: flex;
  align-items: center;
  font-size: 2.4rem;
  letter-spacing: 0.04em;

  &::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--color-orange);
    margin-right: 10px;
  }

  @media (width <= 767px) {
    font-size: 1.6rem;

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

.problem__img {
  max-width: 431px;
  flex: 1;
  img {
    border-radius: 49px;
  }

  @media (width <= 1100px) {
    order: 1;
    margin-bottom: 13px;
  }

  @media (width <= 767px) {
    margin-bottom: 19px;
  }
}
/* ===============================================
#cause
=============================================== */
.cause {
  background-color: #fff;
  padding-top: 25px;
  padding-bottom: 91px;
  position: relative;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    translate: 0 -50%;
    width: 100%;
    height: 112px;
    background: transparent url(./../img/cause-object_2.webp) no-repeat center center / 100% 100%;
    z-index: 1;
  }

  @media (width <= 767px) {
    padding-top: 37px;
    padding-bottom: 76px;

    &::before {
      height: 29px;
      background: transparent url(./../img/cause-object_2.webp) no-repeat center center / cover;
    }
  }
}

.cause__container {
  margin-top: 32px;
  background-color: #fbf5f2;
  padding: 50px 10px;
  border-radius: 30px;
  position: relative;
  text-align: center;
  font-family: var(--font-family-noto);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.76;
  font-size: 2rem;

  @media (width <= 767px) {
    margin-top: 20px;
    padding: 30px 21px;
    font-size: 1.4rem;
  }
}

.cause__object {
  position: absolute;
  bottom: 38px;
  right: 53px;
  width: 88px;

  @media (width <= 767px) {
    bottom: -34px;
    right: 4px;
    width: 40px;
  }
}

.cause__text {
  &:nth-of-type(n + 2) {
    margin-top: 1.6em;
  }
}

/* ===============================================
#if
=============================================== */
.if {
  background-color: #fff;
  padding-bottom: 44px;
}

.if__heading {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  padding-left: 62px;

  &::before {
    content: "";
    position: absolute;
    top: -27px;
    left: -91px;
    width: 110px;
    height: 120px;
    background: transparent url(./../img/if-object.webp) no-repeat center center / contain;
  }

  @media (width <= 1023px) {
    text-align: left;

    &::before {
      top: 10px;
    }
  }

  @media (width <= 767px) {
    padding-left: 100px;

    &::before {
      top: -3px;
      left: -7px;
      width: 87px;
      height: 96px;
    }

    span {
      font-size: 3rem;
      letter-spacing: 0.04em;
    }
  }
}

.if__container {
  margin-top: 74px;
  display: flex;
  gap: 64px;

  @media (width <= 1023px) {
    flex-direction: column;
    gap: 30px;
  }

  @media (width <= 767px) {
    margin-top: 42px;
  }
}

.if__img {
  width: calc(54% + (100vw - 100%) / 2);
  margin-left: calc((100vw - 100%) / -2);

  @media (width <= 1023px) {
    width: 100vw;
  }
}

.if__text-box {
  width: calc(46% - 64px);

  @media (width <= 1023px) {
    width: 100%;
  }
}

.if__text-top {
  font-size: 1.8rem;
  line-height: 1.76;
  letter-spacing: 0.08em;
  font-family: var(--font-family-noto);
  font-weight: 500;

  .if__text {
    &:nth-of-type(n + 2) {
      margin-top: 1.9em;
    }
  }

  @media (width <= 767px) {
    font-size: 1.6rem;

    span {
      font-size: 2rem;
    }
  }
}

.if__text-bottom {
  font-size: 1.8rem;
  line-height: 1.76;
  letter-spacing: 0.08em;
  font-family: var(--font-family-noto);
  font-weight: 500;
  margin-top: 87px;
  display: flex;
  flex-direction: column;
  gap: 24px;

  @media (width <= 767px) {
    font-size: 1.6rem;
    margin-top: 42px;
  }
}

.if__lists {
  display: flex;
  flex-direction: column;
  gap: 5px;

  @media (width <= 767px) {
    gap: 0px;
  }
}

.if__list {
  padding: 10px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  font-family: var(--font-family-common);

  &::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--color-orange);
  }

  @media (width <= 767px) {
    padding: 10px 0px;
    &::before {
      width: 10px;
      height: 10px;
    }
  }
}
/* ===============================================
#doctor
=============================================== */
.doctor {
  padding-top: 84px;
  padding-bottom: 103px;

  @media (width <= 767px) {
    padding-top: 41px;
    padding-bottom: 32px;
  }
}

.doctor__heading {
  font-size: 3.6rem;
  letter-spacing: 0.2em;

  span {
    color: var(--color-orange);
    font-size: 4.6rem;
    position: relative;
    letter-spacing: 0.2em;
  }
  .pc-border {
    &::before {
      content: "";
      position: absolute;
      bottom: -15px;
      left: 20px;
      width: calc(100% - 20px);
      height: 11px;
      background: transparent url(./../img/doctor-text-wave.webp) no-repeat center center / 100% 100%;
    }
    @media (width <= 1023px) {
      &::before {
        display: none;
      }
    }
  }

  .sp-border-1 {
    &::before {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 20px;
      width: calc(100% - 20px);
      height: 10px;
      background: transparent url(./../img/doctor-text-wave-sp_1.webp) no-repeat center center / 100% 100%;
    }
    @media (width >= 1024px) {
      &::before {
        display: none;
      }
    }

    @media (width <= 767px) {
      &::before {
        height: 7px;
        bottom: -3px;
      }
    }
  }

  .sp-border-2 {
    margin-bottom: 10px;
    display: inline-block;
    &::before {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 0px;
      width: 100%;
      height: 10px;
      background: transparent url(./../img/doctor-text-wave-sp_2.webp) no-repeat center center / 100% 100%;
    }
    @media (width >= 1024px) {
      &::before {
        display: none;
      }
    }

    @media (width <= 767px) {
      &::before {
        height: 7px;
        bottom: -3px;
      }
    }
  }

  @media (width <= 1023px) {
    text-align: center;
  }

  @media (width <= 767px) {
    font-size: 2.4rem;
    letter-spacing: 0.04em;

    span {
      font-size: 3rem;
      letter-spacing: 0.033em;
    }
  }
}

.doctor__container {
  margin-top: 65px;
  display: flex;
  gap: 31px;
  flex-direction: column;

  @media (width <= 767px) {
    margin-top: 42px;
  }
}

.doctor__wrapper {
  display: flex;
  padding: 50px 60px;
  align-items: center;
  gap: 40px;
  border-radius: 30px;
  background: #fff;

  &:nth-of-type(even) {
    flex-direction: row-reverse;
  }

  @media (width <= 1023px) {
    flex-direction: column-reverse;

    &:nth-of-type(even) {
      flex-direction: column-reverse;
    }
  }

  @media (width <= 767px) {
    padding: 50px 20px;
  }
}

.doctor__text-box {
  width: 523px;

  @media (width <= 1023px) {
    width: 100%;
  }
}

.doctor__name {
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  color: var(--color-orange);
}

.doctor__text {
  margin-top: 12px;
  font-family: var(--font-family-noto);
  font-size: 1.8rem;
  line-height: 1.76;
  letter-spacing: 0.08em;
  font-weight: 500;

  @media (width <= 767px) {
    font-size: 1.5rem;
  }
}

.doctor__career-box {
  margin-top: 28px;
}

.doctor__career-text {
  font-family: var(--font-family-noto);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 0.08em;
}

.doctor__lists {
  margin-top: 9px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.doctor__list {
  padding-bottom: 5px;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  font-family: var(--font-family-noto);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 0.08em;

  @media (width <= 767px) {
    font-size: 1.3rem;
  }
}

.doctor__career-year {
  width: 72px;
  white-space: nowrap;
  color: var(--color-gray);
}

.doctor__career-list-text {
  flex: 1;
}

.doctor__img {
  width: calc(100% - 523px - 40px);

  @media (width <= 1023px) {
    width: 100%;
  }
}
/* ===============================================
#case
=============================================== */
.case {
  padding-top: 78px;
  padding-bottom: 84px;
  background-color: var(--color-lightorange);
  display: none;

  @media (width <= 767px) {
    padding-top: 56px;
    padding-bottom: 97px;
  }
}

.case__heading {
  padding: 17px 50px;
  border-radius: 50vw;
  background: #fff;
  width: fit-content;
  margin-inline: auto;
  font-size: 3.6rem;
  letter-spacing: 0.2em;
  text-align: center;

  span {
    color: var(--color-orange);
    font-size: 4.6rem;
    letter-spacing: 0.2em;
  }

  @media (width <= 767px) {
    font-size: 2rem;
    letter-spacing: 0.04em;

    span {
      font-size: 2.4rem;
      letter-spacing: 0.04em;
    }
  }
}

.case__conteainer {
  margin-top: 43px;
  padding-inline: 84px;

  @media (width <= 767px) {
    margin-top: 23px;
    padding-inline: 0px;
  }
}

.case__slide {
  background-color: #fff;
  border-radius: 40px;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.09);
  display: flex;
  padding: 70px 40px;
  gap: 14px;
  box-shadow: none;

  @media (width <= 1200px) {
    flex-wrap: wrap;
    gap: 32px 6px;
  }

  @media (width <= 767px) {
    padding: 30px 21px;
  }
}

.case__gallery {
  width: calc(29.6% - 14px);

  @media (width <= 1200px) {
    width: calc(50% - 3px);
  }
}

.case__gallery-text {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--color-orange);

  @media (width <= 767px) {
    font-size: 1.3rem;
  }
}

.case__gallery-img-box {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  @media (width <= 767px) {
    gap: 4px;
    margin-top: 3px;
  }
}

.case__gallery-img {
  aspect-ratio: 3 / 2;
  width: calc(100% / 2 - 8px * 1 / 2);

  &:first-of-type {
    width: 100%;
  }

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

  @media (width <= 767px) {
    width: calc(100% / 2 - 4px * 1 / 2);
  }
}

.case__text-box {
  width: 40.8%;
  padding: 32px 40px;

  @media (width <= 1200px) {
    width: 100%;
    padding: 0;
  }
}

.case__lists {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case__list {
  display: flex;
  align-items: center;
  gap: 12px;
}

.case__dt {
  white-space: nowrap;
  width: 140px;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--color-orange);

  @media (width <= 767px) {
    font-size: 1.5rem;
  }
}

.case__dd {
  flex: 1;
  font-family: var(--font-family-noto);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 0.08em;

  span {
    color: var(--color-orange);
    font-size: 2rem;
    letter-spacing: 0.08em;
  }

  @media (width <= 767px) {
    span {
      font-size: 1.8rem;
    }
  }
}

.splide__arrow--prev {
  left: -84px;

  @media (width <= 767px) {
    left: 0px;
  }
}

.splide__arrow--next {
  right: -84px;

  @media (width <= 767px) {
    right: 0px;
  }
}

.splide__arrow {
  border-radius: 50%;
  background: #fff;
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.09);
  width: 60px;
  height: 60px;
  opacity: 1;

  img {
    width: 8px;
  }

  @media (width <= 767px) {
    width: 48px;
    height: 48px;
    bottom: -10px;
    transform: translateY(0%);
    top: calc(100% + 22px);
  }
}
/* ===============================================
#dentition
=============================================== */
.dentition {
  padding-top: 82px;
  padding-bottom: 135px;
  background-color: var(--color-orange);

  @media (width <= 767px) {
    padding-top: 50px;
    padding-bottom: 65px;
  }
}

.dentition__heading {
  color: #fff;
  font-size: 3.6rem;
  letter-spacing: 0.2em;
  text-align: center;

  span {
    font-size: 4.6rem;
    letter-spacing: 0.2em;
  }

  @media (width <= 767px) {
    font-size: 2.4rem;
    letter-spacing: 0.04em;
    span {
      font-size: 3rem;
      letter-spacing: 0.04em;
    }
  }
}

.dentition__lists {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 40px;
  margin-top: 88px;

  @media (width <= 1150px) {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
    max-width: 550px;
    margin-inline: auto;
  }

  @media (width <= 767px) {
    margin-top: 44px;
    max-width: 326px;
  }
}

.dentition__item-box {
  padding-top: 80px;
  background-color: #fff;
  aspect-ratio: 1 / 1;
  border-radius: 50%;

  @media (width <= 767px) {
    padding-top: 52px;
  }
}

.dentition__img {
  width: 107px;
  margin-inline: auto;

  @media (width <= 767px) {
    width: 65px;
  }
}

.dentition__item-text {
  margin-top: 34px;
  text-align: center;
  font-size: 2.4rem;
  color: #000;
  letter-spacing: 0.04em;

  @media (width <= 767px) {
    font-size: 1.5rem;
    margin-top: 21px;
  }
}

.dentition__add-btn {
  margin-top: 16px;
  display: flex;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: fit-content;
  border-radius: 50vw;
  background: #fff;
  box-shadow: 4px 6px 0px 0px #a24f1b;
  margin-inline: auto;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  font-family: var(--font-family-noto);
  font-weight: 500;
  line-height: 1.76;
  display: none;

  img {
    width: 16px;
  }

  @media (width <= 767px) {
    font-size: 1.4rem;
    padding: 7px 19px;
    gap: 6px;

    img {
      width: 12px;
    }
  }
}
/* ===============================================
#consul
=============================================== */
.consul {
  padding-top: 81px;
  padding-bottom: 83px;

  @media (width <= 767px) {
    padding-top: 58px;
    padding-bottom: 69px;
  }
}

.consul__heading {
  font-size: 3.6rem;
  letter-spacing: 0.2em;
  text-align: center;
  span {
    color: var(--color-orange);
    font-size: 4.6rem;
    letter-spacing: 0.2em;
  }

  @media (width <= 767px) {
    font-size: 2.4rem;
    letter-spacing: 0.04em;
    span {
      font-size: 3rem;
      letter-spacing: 0.04em;
    }
  }
}

.consul__lead {
  font-family: var(--font-family-noto);
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 9px;

  @media (width <= 767px) {
    margin-top: 14px;
  }
}

.consul__grid-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 53px;

  @media (width <= 1023px) {
    grid-template-columns: repeat(1, 1fr);
  }

  @media (width <= 767px) {
    margin-top: 29px;
    gap: 16px;
  }
}

.consul__grid-item {
  padding: 40px 48px;
  border-radius: 20px;
  background: #fff;
  position: relative;

  @media (width <= 767px) {
    padding: 40px 24px;
  }
}

.consul__object {
  position: absolute;
  bottom: 5px;
  right: 55px;
  width: 72px;

  @media (width <= 1023px) {
    top: 8px;
    bottom: auto;
  }

  @media (width <= 767px) {
    width: 55px;
    right: 28px;
    top: -13px;
  }
}

.consul__item-title {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  height: 107px;

  @media (width <= 1023px) {
    height: auto;
  }

  @media (width <= 767px) {
    align-items: center;
  }
}

.consul-number-box {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.consul__pattern {
  color: var(--color-orange);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.consul__number {
  color: var(--color-orange);
  font-size: 4.6rem;
  letter-spacing: 0em;
  line-height: 1;

  @media (width <= 767px) {
    font-size: 3.6rem;
  }
}

.consul__title {
  color: #000;
  font-size: 3.6rem;
  letter-spacing: 0.2em;
  line-height: 1;
  padding-top: 15px;
  strong {
    color: var(--color-orange);
  }

  @media (width <= 767px) {
    font-size: 2.4rem;
    letter-spacing: 0.04em;
    padding-top: 0;
  }
}

.consul__item-text {
  font-family: var(--font-family-noto);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 0.08em;

  span {
    color: var(--color-orange);
    font-size: 2.4rem;
    font-family: var(--font-family-common);
    font-weight: 700;
    line-height: normal;
  }

  @media (width <= 1023px) {
    margin-top: 20px;
    font-size: 1.6rem;
    letter-spacing: 0.04em;

    span {
      font-size: 2rem;
      letter-spacing: 0.04em;
    }
  }
}

.consul__small {
  font-size: 2.4rem;
  line-height: normal;
  letter-spacing: 0.04em;

  @media (width <= 767px) {
    font-size: 1.8rem;
  }
}

.consul__bottom-box {
  border-radius: 30px;
  background: #fff;
  padding: 50px 40px;
  margin-top: 32px;
  font-family: var(--font-family-noto);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 0.08em;

  @media (width <= 767px) {
    margin-top: 16px;
    padding: 40px;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    font-size: 1.6rem;
  }
}

.consul__bottom-text {
  span {
    color: var(--color-orange);
    font-size: 2.4rem;
    font-family: var(--font-family-common);
    font-weight: 700;
    line-height: normal;
  }
  &:nth-of-type(n + 2) {
    margin-top: 1.6em;
  }

  @media (width <= 767px) {
    span {
      font-size: 2rem;
      letter-spacing: 0.04em;
    }
  }
}

/* ===============================================
#flow
=============================================== */
.flow {
  padding-top: 89px;
  padding-bottom: 107px;
  background-color: #fff;

  @media (width <= 767px) {
    padding-top: 56px;
    padding-bottom: 49px;
  }
}

.flow__heading {
  font-size: 3.6rem;
  letter-spacing: 0.2em;
  text-align: center;

  span {
    color: var(--color-orange);
    font-size: 4.6rem;
    letter-spacing: 0.2em;
  }

  @media (width <= 767px) {
    font-size: 3rem;
    letter-spacing: 0.04em;
    span {
      font-size: 3.6rem;
      letter-spacing: 0.04em;
    }
  }
}

.flow__lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 65px;
  margin-top: 71px;

  @media (width <= 767px) {
    display: flex;
    flex-direction: column;
    gap: 78px;
    margin-top: 26px;
    max-width: 334px;
    margin-inline: auto;
  }
}

.flow__list {
  position: relative;

  &:nth-of-type(n + 2)::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -47px;
    width: 29px;
    height: 41px;
    background: transparent url(./../img/arrow-orange.svg) no-repeat center center / contain;
  }

  @media (width <= 767px) {
    &:nth-of-type(n + 2)::before {
      rotate: 90deg;
      top: -58px;
      transform: translate(0%, -50%);
      left: 41%;
    }
  }
}

.flow__list-text {
  font-family: var(--font-family-noto);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 0.08em;

  @media (width <= 767px) {
    font-size: 1.6rem;
    margin-top: 8px;
  }
}

.flow__list-img {
  img {
    border-radius: 20px;
  }
}

.flow__list-title {
  display: flex;
  gap: 13px;
  align-items: center;

  @media (width <= 767px) {
    margin-top: 8px;
  }
}

.flow__list-number {
  color: var(--color-orange);
  font-size: 3.6rem;
  line-height: 1;
}

.flow__list-title-text {
  margin-top: 11px;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
}

.flow__container {
  border-radius: 40px;
  background: #ff7218;
  display: flex;
  align-items: center;
  padding: 54px 75px;
  gap: 38px;
  position: relative;
  margin-top: 83px;
  margin-bottom: 46px;

  @media (width <= 1150px) {
    flex-direction: column;
    max-width: 728px;
    margin-inline: auto;
  }

  @media (width <= 767px) {
    margin-top: 32px;
    margin-bottom: 44px;
    padding: 24px 20px;
    border-radius: 30px;
    gap: 14px;
    max-width: 345px;
  }
}

.flow__object {
  position: absolute;
  top: -36px;
  right: 60px;
  width: 185px;

  @media (width <= 1150px) {
    top: 45%;
    right: 75px;
    width: 150px;
  }

  @media (width <= 767px) {
    top: 184px;
    right: 20px;
    width: 82px;
  }
}

.flow__img {
  width: 36%;

  img {
    border-radius: 20px;
  }

  @media (width <= 1150px) {
    width: 100%;
  }
}

.flow__text-box {
  width: calc(64% - 38px);

  @media (width <= 1150px) {
    width: 100%;
  }
}

.flow__title {
  color: #fff;
  font-size: 3.6rem;
  letter-spacing: 0.2em;

  @media (width <= 767px) {
    font-size: 2.4rem;
  }
}

.flow__text {
  color: #fff;
  font-family: var(--font-family-noto);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 0.08em;
  margin-top: 30px;

  @media (width <= 767px) {
    font-size: 1.6rem;
    margin-top: 12px;
  }
}
/* ===============================================
#plan
=============================================== */
.plan {
  padding-top: 114px;
  padding-bottom: 139px;

  @media (width <= 767px) {
    padding-top: 44px;
    padding-bottom: 40px;
  }
}

.plan__heading {
  font-size: 3.6rem;
  letter-spacing: 0.2em;
  text-align: center;

  span {
    color: var(--color-orange);
    font-size: 4.6rem;
    letter-spacing: 0.2em;
  }

  @media (width <= 767px) {
    font-size: 2.4rem;
    letter-spacing: 0.04em;
    span {
      font-size: 3rem;
      letter-spacing: 0.04em;
    }
  }
}

.plan__lead {
  text-align: center;
  font-family: var(--font-family-noto);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 0.08em;
  margin-top: 24px;
  margin-bottom: 46px;

  @media (width <= 767px) {
    font-size: 1.4rem;
    margin-top: 14px;
    margin-bottom: 32px;
  }
}

.plan__table {
  margin-top: 73px;
  border-radius: 20px;
  overflow: hidden;

  @media (width <= 1023px) {
    overflow: scroll;
  }

  @media (width <= 767px) {
    margin-top: 49px;
  }

  table {
    border-collapse: collapse;

    @media (width <= 1023px) {
      width: 1100px;
    }

    @media (width <= 767px) {
      width: 800px;
    }

    th,
    td {
      vertical-align: middle;
      padding: 16px;
      border-right: 1px solid var(--color-lightorange);
      border-bottom: 1px solid var(--color-lightorange);

      &:nth-last-of-type(1) {
        border-right: none;
      }

      @media (width <= 767px) {
        padding: 10px;
      }
    }

    thead {
      th {
        color: #fff;
        font-size: 2.4rem;
        text-align: center;
        letter-spacing: 0.04em;
        background-color: #ff9c6a;

        &:nth-of-type(2) {
          background-color: var(--color-orange);
        }

        &:nth-of-type(3) {
          background-color: #333;
        }

        @media (width <= 767px) {
          font-size: 2rem;
        }
      }
    }

    tbody {
      th {
        background-color: #ff9c6a;
        color: #fff;
        font-size: 2rem;
        letter-spacing: 0.04em;
        text-align: center;
        width: 20%;

        @media (width <= 767px) {
          font-size: 1.6rem;
        }
      }

      td {
        width: 40%;
        font-family: var(--font-family-noto);
        font-size: 1.8rem;
        font-weight: 500;
        line-height: 1.76;
        letter-spacing: 0.08em;
        padding: 16px 27px;

        &:nth-of-type(1) {
          color: var(--color-orange);
          background-color: #fbf5f2;
        }
        &:nth-of-type(2) {
          background-color: #fff;
        }

        @media (width <= 767px) {
          font-size: 1.6rem;
        }
      }

      tr {
        &:nth-last-of-type(1) {
          td,
          th {
            border-bottom: none;
          }
        }
      }
    }
  }
}

.plan__notice {
  margin-top: 16px;
  color: var(--color-gray);
  font-family: var(--font-family-noto);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 0.08em;

  @media (width <= 767px) {
    margin-top: 29px;
    font-size: 1.3rem;
  }
}

.plan__notice-text {
  &:nth-of-type(n + 2) {
    margin-top: 8px;
  }
}

.plan__bottom-box {
  margin-top: 114px;
}

/* ===============================================
#merit
=============================================== */
.merit {
  position: relative;
  padding-top: 92px;
  padding-bottom: 129px;
  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(#f2f2f2 1px, transparent 1px), linear-gradient(to right, #f2f2f2 1px, #fff 1px);
    background-size: 26px 26px;
    z-index: -1;
  }

  @media (width <= 767px) {
    padding-top: 58px;
    padding-bottom: 49px;
  }
}

.merit__heading {
  text-align: center;
  font-size: 3.6rem;
  letter-spacing: 0.2em;
  width: fit-content;
  margin-inline: auto;
  position: relative;

  span {
    color: var(--color-orange);
    font-size: 4.6rem;
    letter-spacing: 0.2em;
  }

  &::before {
    content: "";
    position: absolute;
    right: -143px;
    bottom: 14px;
    width: 100px;
    height: 151px;
    background: transparent url(./../img/merit-object.webp) no-repeat center center / contain;
  }

  @media (width <= 1023px) {
    &::before {
      right: 27px;
      bottom: 54px;
      width: 80px;
    }
  }

  @media (width <= 767px) {
    font-size: 2.4rem;
    letter-spacing: 0.04em;

    &::before {
      right: 10px;
      bottom: 52px;
      width: 47px;
      height: 71px;
    }

    span {
      font-size: 3rem;
      letter-spacing: 0.04em;
    }
  }
}

.merit__lists {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 48px;

  @media (width <= 767px) {
    margin-top: 33px;
    gap: 40px;
  }
}

.merit__list {
  display: flex;
  align-items: center;
  gap: 60px;

  &:nth-of-type(even) {
    flex-direction: row-reverse;
  }

  @media (width <= 767px) {
    flex-direction: column;
    gap: 16px;

    &:nth-of-type(even) {
      flex-direction: column;
    }
  }
}

.merit__list-img {
  width: calc(40% - 60px);

  img {
    border-radius: 20px;
  }

  @media (width <= 767px) {
    width: 100%;
  }
}

.merit__list-text-box {
  width: 60%;

  @media (width <= 767px) {
    width: 100%;
  }
}

.merit__list-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.merit__number {
  color: var(--color-orange);
  font-size: 3.6rem;
}

.merit__list-title-text {
  margin-top: 3px;
  font-size: 2.4rem;
  letter-spacing: 0.04em;

  @media (width <= 767px) {
    font-size: 2rem;
  }
}

.merit__list-text {
  font-family: var(--font-family-noto);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 0.08em;
  margin-top: 16px;

  @media (width <= 767px) {
    font-size: 1.6rem;
  }
}

/* ===============================================
#cost
=============================================== */
.cost {
  padding-top: 89px;
  padding-bottom: 142px;
  background-color: var(--color-orange);

  @media (width <= 767px) {
    padding-top: 43px;
    padding-bottom: 47px;
  }
}

.cost__heading {
  color: #fff;
  font-size: 4.6rem;
  letter-spacing: 0.2em;
  text-align: center;

  @media (width <= 767px) {
    font-size: 3rem;
  }
}

.cost__container {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 52px;

  @media (width <= 767px) {
    gap: 27px;
  }
}

.cost__wrapper {
  border-radius: 20px;
  padding: 48px;
  background: #fff;
  position: relative;

  @media (width <= 767px) {
    padding: 32px 10px;
  }
}

.cost__period-box {
  position: absolute;
  top: -28px;
  right: -22px;
  width: 160px;
  height: 160px;
  border: 3px solid #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color-orange);
  color: #fff;

  @media (width <= 767px) {
    top: -18px;
    right: -10px;
    width: 116px;
    height: 116px;
  }
}

.cost__period-top {
  font-size: 2rem;
  letter-spacing: 0.04em;

  @media (width <= 767px) {
    font-size: 1.4rem;
  }
}

.cost__period-bottom {
  letter-spacing: 0.08em;
  font-size: 1.6rem;
  font-family: var(--font-family-noto);
  font-weight: 500;
  line-height: 1.76;

  span {
    letter-spacing: 0.04em;
    font-size: 3rem;
    font-family: var(--font-family-common);
    font-weight: 700;
  }

  @media (width <= 767px) {
    font-size: 1.1rem;
    span {
      font-size: 2.1rem;
    }
  }
}

.cost__img {
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 24px;

  img {
    border-radius: 40px;
  }

  @media (width <= 767px) {
    margin-bottom: 16px;
  }
}

.cost__wrapper-title {
  color: var(--color-orange);
  font-size: 3.6rem;
  letter-spacing: 0.2em;
  text-align: center;

  @media (width <= 767px) {
    font-size: 3rem;
    letter-spacing: 0.04em;
  }
}

.cost__detail-top {
  margin-top: 24px;

  @media (width <= 767px) {
    margin-top: 16px;
  }
}

.cost__price-title {
  text-align: center;
  letter-spacing: 0.04em;
  font-size: 2rem;

  @media (width <= 767px) {
    font-size: 1.8rem;
  }
}

.cost__price {
  background-color: #fbf5f2;
  border-radius: 8px;
  min-width: 306px;
  margin-inline: auto;
  padding: 14px 64px;
  width: fit-content;
  text-align: center;
  font-family: var(--font-family-noto);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 0.08em;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;

  span {
    color: var(--color-orange);
    font-family: var(--font-family-common);
    font-weight: 700;
    font-size: 3rem;
    margin-inline: 6px;
  }

  @media (width <= 767px) {
    min-width: 100%;
    gap: 0px;
    flex-direction: column;
    padding: 14px;
  }
}

.cost__notice {
  margin-top: 8px;
  color: var(--color-gray);
  font-family: var(--font-family-noto);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 0.08em;
  text-align: center;

  @media (width <= 767px) {
    font-size: 1.4rem;
  }
}

.cost__detail-bottom {
  margin-top: 24px;
}

.cost__lead {
  text-align: center;
  font-family: var(--font-family-noto);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 1.44px;
  margin-top: 8px;

  @media (width <= 767px) {
    font-size: 1.6rem;
    margin-top: 16px;
  }
}
/* ===============================================
#payment
=============================================== */
.payment {
  padding-top: 96px;
  padding-bottom: 166px;

  @media (width <= 767px) {
    padding-top: 57px;
    padding-bottom: 56px;
  }
}

.payment__heading {
  font-size: 3.6rem;
  letter-spacing: 0.2em;
  text-align: center;

  span {
    color: var(--color-orange);
    font-size: 4.6rem;
    letter-spacing: 0.2em;
  }

  @media (width <= 767px) {
    font-size: 2rem;
    letter-spacing: 0.04em;
    span {
      font-size: 3rem;
      letter-spacing: 0.04em;
    }
  }
}

.payment__lead {
  margin-top: 24px;
  font-family: var(--font-family-noto);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 0.08em;
  text-align: center;

  span {
    font-size: 2.4rem;
    color: var(--color-orange);
    font-family: var(--font-family-common);
    font-weight: 700;
  }

  @media (width <= 767px) {
    font-size: 1.6rem;
    margin-top: 12px;

    span {
      font-size: 1.8rem;
    }

    &:nth-of-type(n + 2) {
      margin-top: 24px;
    }
  }
}

.payment__box {
  padding: 50px 80px;
  border-radius: 20px;
  background: #fff;
  margin-top: 24px;
  position: relative;

  &.bottom {
    margin-top: 104px;
    margin-bottom: 32px;
  }

  @media (width <= 767px) {
    padding: 24px 32px;

    &.bottom {
      margin-top: 40px;
      margin-bottom: 90px;
      padding: 50px 20px;
    }
  }
}

.payment__box-title {
  text-align: center;
  color: var(--color-orange);
  font-size: 2.4rem;
  letter-spacing: 0.04em;
}

.payment__box-text {
  color: #000;
  font-family: var(--font-family-noto);
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 0.08em;
  margin-top: 10px;

  @media (width <= 767px) {
    font-size: 1.4rem;
    margin-top: 10px !important;
  }
}

.payment__box-img {
  max-width: 342px;
  margin-inline: auto;
}

.payment__object {
  position: absolute;
  top: -22px;
  left: 44px;
  width: 71px;

  @media (width <= 1023px) {
    top: auto;
    left: auto;
    bottom: -42px;
    right: 14px;
  }

  @media (width <= 767px) {
    bottom: -32px;
    right: 12px;
    width: 58px;
  }
}

.payment__bottom-title {
  font-size: 3rem;
  letter-spacing: 0.04em;
  text-align: center;

  span {
    color: var(--color-orange);
    letter-spacing: 0.04em;
  }

  @media (width <= 767px) {
    font-size: 2.4rem;
  }
}
/* ===============================================
#intro
=============================================== */
.intro {
  padding-top: 86px;
  padding-bottom: 161px;
  background-color: #fff;

  @media (width <= 767px) {
    padding-top: 62px;
    padding-bottom: 75px;
  }
}

.intro__heading {
  font-size: 4.6rem;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 86px;
  position: relative;
  width: fit-content;
  margin-inline: auto;

  &::before {
    content: "";
    position: absolute;
    bottom: -18px;
    right: -290px;
    width: 234px;
    height: 166px;
    background: transparent url(./../img/intro-object.webp) no-repeat center center / contain;
  }

  @media (width <= 1023px) {
    &::before {
      bottom: -8px;
      right: -150px;
      width: 134px;
      height: 97px;
    }
  }

  @media (width <= 767px) {
    font-size: 3rem;
    letter-spacing: 0.04em;
    margin-bottom: 43px;
    padding-right: 98px;

    &::before {
      bottom: -5px;
      right: 0px;
      width: 88px;
      height: 62px;
    }
  }
}

.intro__container {
  position: relative;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    width: 80vw;
    height: 100%;
    background: #fbf5f2;
    z-index: 1;
  }

  &:nth-of-type(odd) {
    &::before {
      left: calc((100vw - 100%) / -2);
      border-radius: 0px 40px 40px 0px;
    }
  }

  &:nth-of-type(even) {
    &::before {
      right: calc((100vw - 100%) / -2);
      border-radius: 40px 0 0 40px;
    }
  }

  @media (width <= 767px) {
    &::before {
      width: 90vw;
    }

    &:nth-of-type(odd) {
      &::before {
        border-radius: 0px 11px 11px 0px;
      }
    }

    &:nth-of-type(even) {
      &::before {
        border-radius: 11px 0 0 11px;
      }
    }
  }
}

.intro__container-1 {
  max-width: 1206px;

  &:last-of-type {
    margin-top: 134px;
  }

  &::before {
    top: 36px;
    height: calc(100% + 22px);
  }

  .intro__img {
    margin-top: 28px;
  }

  @media (width <= 767px) {
    &:last-of-type {
      margin-top: 99px;

      &::before {
        top: 24px;
        height: calc(100% + 10px);
      }
    }

    &::before {
      top: auto;
      bottom: -25px;
      height: 50%;
    }

    .intro__img {
      margin-top: 25px;
    }
  }
}

.intro__text-box {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px 26px;

  &.column {
    flex-direction: column;
    width: fit-content;
  }

  @media (width <= 1023px) {
    flex-direction: column;
    align-items: flex-start;
  }

  @media (width <= 767px) {
    gap: 12px;
  }
}

.intro__title {
  border-radius: 50vw;
  background: var(--color-orange);
  padding: 14px 32px;
  color: #fff;
  font-size: 3.6rem;
  letter-spacing: 0.2em;

  @media (width <= 767px) {
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    padding: 10px 32px;
  }
}

.intro__detail {
  font-family: var(--font-family-noto);
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 0.08em;

  @media (width <= 767px) {
    font-size: 1.6rem;
  }
}

.intro__img {
  position: relative;
  z-index: 2;
}

.intro__container-2 {
  margin-top: 160px;
  max-width: 1350px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;

  &::before {
    top: -46px;
    height: calc(100% + 92px);
  }

  .intro__img {
    max-width: 869px;
    flex: 1;
    margin-right: -58px;
  }

  @media (width <= 1023px) {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 25px;

    .intro__img {
      max-width: calc(100% + var(--side-space));
      width: calc(100% + var(--side-space));
      margin-right: 0;
    }
  }

  @media (width <= 767px) {
    margin-top: 62px;

    &::before {
      top: auto;
      bottom: -46px;
      height: 30%;
    }

    .intro__img {
      max-width: calc(100% + 18px);
      width: calc(100% + 18px);
    }
  }
}

.intro__top-text {
  color: var(--color-orange);
  letter-spacing: 0.04em;
  text-align: center;

  @media (width <= 767px) {
    font-size: 1.6rem;
  }
}

.intro__container-3 {
  max-width: 1350px;
  margin-top: 156px;

  &::before {
    top: -54px;
    height: calc(100% + 4px);
  }

  @media (width <= 767px) {
    margin-top: 114px;

    &::before {
      top: -36px;
      width: calc(100% - 18px);
      height: 38%;
    }
  }
}

.intro__wrapper {
  display: flex;
  align-items: center;
  gap: 33px;
  padding-left: 40px;

  .intro__img {
    flex: 1;
    max-width: 914px;
  }

  @media (width <= 767px) {
    padding-left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;

    .intro__img {
      margin-left: -18px;
    }
  }
}

.intro__lists {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;

  @media (width <= 767px) {
    gap: 12px;
  }
}

.intro__list {
  border-radius: 50vw;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  padding: 10px 28px;

  &::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--color-orange);
  }

  @media (width <= 767px) {
    font-size: 1.6rem;

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

.intro__bottom-img {
  position: relative;
  z-index: 2;
  max-width: 992px;
  margin-top: -36px;

  @media (width <= 767px) {
    margin-top: 32px;
  }
}

.intro__container-4 {
  margin-top: 87px;
  max-width: 1302px;

  &::before {
    top: 40px;
    height: calc(100% + 6px);
  }

  .intro__text-box {
    justify-content: flex-end;
  }

  .intro__img {
    margin-top: 38px;
    max-width: 1166px;
    margin-left: auto;
  }

  @media (width <= 767px) {
    margin-top: 68px;

    &::before {
      top: 24px;
      height: calc(100% + 34px);
    }

    .intro__img {
      margin-top: 21px;
    }
  }
}
/* ===============================================
#qa
=============================================== */
.qa {
  padding-top: 89px;
  padding-bottom: 207px;
  background-color: var(--color-orange);

  @media (width <= 767px) {
    padding-top: 62px;
    padding-bottom: 105px;
    position: relative;
  }
}

.qa__heading {
  font-size: 4.6rem;
  letter-spacing: 0.2em;
  text-align: center;
  width: fit-content;
  margin-inline: auto;
  background: transparent url(./../img/qa-heading-bg.webp) no-repeat center center / contain;
  padding: 17px 25px 22px 31px;

  @media (width <= 767px) {
    font-size: 3rem;
    letter-spacing: 0.04em;
  }
}

.qa__container {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 20px;

  @media (width >= 768px) {
    position: relative;
  }

  @media (width <= 767px) {
    gap: 8px;
    margin-top: 39px;
  }
}

.qa__object {
  width: 94px;
  position: absolute;
  right: 131px;
  bottom: 100%;

  @media (width <= 767px) {
    width: 68px;
    top: -9px;
    right: 25px;
  }
}

.qa__list {
  &[open] {
    .qa__question::after {
      background: transparent url(./../img/minus-icon.svg) no-repeat center center / contain;
    }
  }
}

.qa__question {
  padding: 26px 40px;
  border-radius: 50vw;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;

  &::after {
    content: "";
    width: 24px;
    height: 24px;
    background: transparent url(./../img/plus-icon.svg) no-repeat center center / contain;
    position: relative;
  }

  @media (width <= 767px) {
    padding: 18px 40px;

    &::after {
      width: 14px;
      height: 14px;
    }
  }
}

.qa__q-mark,
.qa__a-mark {
  color: var(--color-orange);
  font-size: 3.6rem;
  line-height: 0.9;

  @media (width <= 767px) {
    font-size: 2rem;
  }
}

.qa__a-mark {
  @media (width <= 767px) {
    margin-top: 3px;
  }
}

.qa__question-text {
  flex: 1;
  font-size: 2.4rem;
  letter-spacing: 0.04em;

  @media (width <= 767px) {
    font-size: 1.5rem;
  }
}

.qa__answer {
  padding: 18px 40px;
  border-radius: 40px;
  background: #fff;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 8px;

  @media (width <= 767px) {
    padding: 17px 40px;
  }
}

.qa__answer-text {
  flex: 1;
  font-family: var(--font-family-noto);
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 0.08em;
}
/* ===============================================
#access
=============================================== */
.access {
  background-color: #fff;
  padding-block: 92px;

  @media (width <= 767px) {
    padding-top: 46px;
    padding-bottom: 75px;
  }
}

.access__heading {
  font-size: 4.6rem;
  letter-spacing: 0.2em;
  text-align: center;

  @media (width <= 767px) {
    font-size: 3rem;
    letter-spacing: 0.04em;
    span {
      display: none;
    }
  }
}

.access__img {
  margin-top: 47px;
  img {
    border-radius: 35px;
  }

  @media (width <= 767px) {
    img {
      border-radius: 16px;
    }
  }
}

.access__container {
  margin-top: 48px;
  margin-bottom: 48px;
  max-width: 944px;
  margin-inline: auto;
  display: flex;
  gap: 47px;

  @media (width <= 1023px) {
    flex-direction: column;
  }

  @media (width <= 767px) {
    margin-top: 21px;
    gap: 24px;
    margin-bottom: 51px;
  }
}

.access__container-left {
  width: calc(49% - 47px);

  @media (width <= 1023px) {
    width: 100%;
    max-width: 302px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}

.access__text {
  color: var(--color-gray);
  font-family: var(--font-family-noto);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 0.08em;
  margin-top: 37px;

  @media (width <= 767px) {
    font-size: 1.1rem;
    margin-top: 16px;
  }
}

.access__sns-box {
  margin-top: 37px;
  display: flex;
  align-items: center;
  gap: 58px;

  @media (width <= 767px) {
    margin-top: 16px;
    gap: 42px;
  }
}

.access__sns-item {
  img {
    zoom: 0.5;
  }

  @media (width <= 767px) {
    img {
      zoom: 0.36;
    }
  }
}

.access__container-right {
  width: 51%;

  @media (width <= 1023px) {
    width: 100%;
    max-width: 550px;
    margin-inline: auto;
  }

  @media (width <= 767px) {
    max-width: 340px;
  }
}

.access__title {
  color: var(--color-orange);
  letter-spacing: 0.04em;
}

.access__time-table {
  background-color: var(--color-orange);
  padding: 25px 40px 25px 28px;
  color: #fff;
  margin-top: 9px;

  @media (width <= 767px) {
    margin-top: 6px;
    padding: 18px 29px 18px 20px;
  }

  table {
    width: 100%;
    th,
    td {
      font-size: 1.8rem;
      letter-spacing: 0.2em;
      text-align: center;
      vertical-align: middle;
      padding: 4px 0;

      @media (width <= 767px) {
        font-size: 1.3rem;
      }
    }

    th {
      &:nth-of-type(1) {
        font-size: 1.6rem;
        letter-spacing: 0.04em;
        white-space: nowrap;
        text-align: right;
        padding-right: 10px;
        width: 25%;

        @media (width <= 767px) {
          font-size: 1.1rem;
        }
      }
    }

    thead {
      th {
        font-size: 2rem;

        @media (width <= 767px) {
          font-size: 1.4rem;
        }
      }
    }

    .access__day-off {
      font-size: 1.5rem;
      text-align: left;
      padding-left: 10px;

      @media (width <= 767px) {
        font-size: 1rem;
        padding-left: 8px;
      }
    }
  }
}
/* ===============================================
#footer
=============================================== */
.footer {
  > iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 39 / 10;

    @media (width <= 767px) {
      aspect-ratio: 1 / 1;
    }
  }
}

/* ===============================================
#fixed-btn
=============================================== */
.c-fixed-btn {
  display: none;

  @media (width <= 767px) {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 10px 0;
  }
}