/* ==========================================================================
   CSS Reset (ress.css の簡易版)
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-padding-top: 70px;
}

@media (max-width: 768px) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  color: #222222;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  color: #222222;
  text-decoration: none;
  word-break: break-all;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

em {
  font-style: normal;
}

@media (min-width: 1300px) {
  main {
    padding-top: 0;
  }
}

/* ==========================================================================
   フォント定義
   ========================================================================== */
@font-face {
  font-family: "Mochiy Pop One";
  src:
    url(../fonts/MochiyPopOne-Regular.woff2) format("woff2"),
    url(../fonts/MochiyPopOne-Regular.woff) format("woff"),
    url(../fonts/MochiyPopOne-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   レスポンシブ表示切り替え
   ========================================================================== */
@media (max-width: 768px) {
  .u-pc-only {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .u-sp-only {
    display: none !important;
  }
}

/* ==========================================================================
   レイアウト - PC/SPコンテナ
   ========================================================================== */
@media (min-width: 769px) {
  .layout-pc-width {
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "main";
    gap: 20px;
    padding: 20px;
    align-items: center;
    justify-items: center;
  }

  .layout-pc-width > :first-child {
    display: none;
  }

  .layout-pc-width > :nth-child(2) {
    grid-area: main;
  }

  .layout-sp-width-wrapper {
    display: grid;
    place-content: center;
    height: 100%;
    position: relative;
  }

  .layout-pc-width > :nth-child(3) {
    display: none;
  }

  .pcWidth {
    position: relative;
  }

  .pcWidth--pinkWave:before,
  .pcWidth--pinkWave:after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 44px;
    background: url(../images/common/pc-wave-pink.png) center / 148px 44px repeat-x;
  }

  .pcWidth--pinkWave:before {
    top: 0;
  }

  .pcWidth--pinkWave:after {
    bottom: 0;
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
  }
}

@media (min-width: 1200px) {
  .layout-pc-width {
    margin: 0 auto;
    grid-template-columns: 1fr 390px 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "logo main menu";
    align-items: center;
  }

  .layout-pc-width > :first-child {
    grid-area: logo;
    display: grid;
    place-content: center;
  }

  .layout-pc-width > :nth-child(3) {
    grid-area: menu;
    display: grid;
    place-content: center;
  }
}

.layout-sp-width--pinkWave {
  display: block;
}

/* スマホ表示 - 背景とwaveを非表示 */
@media (max-width: 768px) {
  .bg-square--pink-wave {
    background: none;
  }

  .bg-square--pink-wave::before,
  .bg-square--pink-wave::after {
    display: none;
  }
}

.layout-sp-width {
  width: 100%;
  min-height: 100vh;
  background: #fff;
  position: relative;
}

/* PC表示 - スマホプレビューコンテナ */
@media (min-width: 769px) {
  .layout-sp-width {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    width: 390px;
    height: 86vh;
    min-height: unset;
    overflow-y: scroll;
    margin: 0 auto;
    border-radius: 16px;
    border: 2px solid #4f4f4f;
    background: #fff;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.16);
    -ms-overflow-style: none;
    scrollbar-width: none;
    position: absolute;
    transform: translateY(-50%) translateX(-50%);
    top: 50%;
    left: 50%;
  }

  .layout-sp-width::-webkit-scrollbar {
    display: none;
  }
}

.bg-square {
  background-image:
    linear-gradient(0deg, transparent calc(100% - 1px), #f7f9fb calc(100% - 1px)),
    linear-gradient(90deg, transparent calc(100% - 1px), #f7f9fb calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
  background-color: #fff;
}

/* スマホ表示 - 背景グリッド無効化 */
@media (max-width: 768px) {
  .bg-square {
    background-image: none;
    background-color: transparent;
  }

  /* ハンバーガーメニューとフッターの背景は表示 */
  .header__hamburger-menu-block.bg-square,
  .footer__block.bg-square {
    background-image:
      linear-gradient(0deg, transparent calc(100% - 1px), #f7f9fb calc(100% - 1px)),
      linear-gradient(90deg, transparent calc(100% - 1px), #f7f9fb calc(100% - 1px));
    background-size: 16px 16px;
    background-repeat: repeat;
    background-position: center center;
    background-color: #fff;
  }
}

/* ==========================================================================
   PC Left
   ========================================================================== */
@media (max-width: 768px) {
  .layout-pc-left {
    display: none !important;
  }
}

.layout-pc-left {
  display: none;
}

@media (min-width: 769px) {
  .layout-pc-left {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
}

.layout-pc-left__logo {
  z-index: 1;
  transition: 0.3s;
  width: 305px;
  height: 155.5px;
  margin: 0 auto;
}

.layout-pc-left__logo:hover {
  opacity: 0.7;
}

.layout-pc-left__logo img {
  width: 100%;
  height: auto;
}

/* ==========================================================================
   PC Right
   ========================================================================== */
@media (max-width: 768px) {
  .layout-pc-right {
    display: none !important;
  }
}

.layout-pc-right {
  display: none;
}

@media (min-width: 1200px) {
  .layout-pc-right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
}

.layout-pc-right__menu-wrap {
  width: 100%;
  max-width: 375px;
}

.layout-pc-right__menu-wrap .layout-pc-right__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 66px;
  padding: 0 15px;
  background: #fff;
}

.layout-pc-right__menu-wrap .layout-pc-right__logo img {
  width: 78px;
  height: auto;
}

.layout-pc-right__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.layout-pc-right__menu-item {
  position: relative;
  margin-bottom: 0;
  border-bottom: 1px solid #f5f5f5;
  background: #fff;
}

.layout-pc-right__menu-item:first-child {
  border-top: 1px solid #f5f5f5;
}

.layout-pc-right__menu-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: #067289;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s;
}

.layout-pc-right__menu-item:hover::after {
  opacity: 0.7;
}

.layout-pc-right__menu-item::before {
  content: "";
  position: absolute;
  right: 7px;
  top: calc(50% + 1px);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #fff;
  z-index: 1;
  cursor: pointer;
}

.layout-pc-right__menu-link {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 150%;
  color: #067289;
  text-decoration: none;
  padding: 10px 40px 10px 14px;
  transition: 0.3s;
}

.layout-pc-right__menu-link:hover {
  opacity: 0.7;
}

.layout-pc-right__cta-button {
  display: block;
  margin-top: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.layout-pc-right__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.layout-pc-right__cta-button img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 1440px) {
  .layout-pc-right__menu-wrap {
    max-width: 429px;
  }

  .layout-pc-right__menu-link {
    font-size: 16px;
  }

  .layout-pc-right__cta-button {
    font-size: 18px;
  }
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed;
  background: #4cb2e4;
  display: flex;
  width: 100%;
  height: 60px;
  padding: 8px 0 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 100;
  top: 0;
  left: 0;
  opacity: 0;
}

@media (min-width: 769px) and (max-width: 1299px) {
  .header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: -70px;
  }
}

@media (min-width: 1300px) {
  .header {
    display: none !important;
  }
}

.header__logo {
  width: 154px;
  height: 42px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  margin: 0;
}

.header__logo img {
  width: 100%;
  height: auto;
}

.header__logo a:active {
  background: #ccc;
}

.header__hamburger-btn {
  position: absolute;
  top: 9px;
  right: 20px;
  display: grid;
  place-content: center;
  width: 43px;
  height: 43px;
  padding: 0;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #606060;
  cursor: pointer;
}

.header__hamburger-line {
  position: relative;
  width: 17px;
  height: 1px;
  border-radius: 1px;
  background: #606060;
}

.header__hamburger-line::after,
.header__hamburger-line::before {
  position: absolute;
  content: "";
  display: block;
  width: 17px;
  height: 1px;
  border-radius: 1px;
  background: #606060;
  transition: transform 0.3s ease-out;
}

.header__hamburger-line::before {
  top: -5px;
}

.header__hamburger-line::after {
  bottom: -5px;
}

.header__hamburger-btn.active .header__hamburger-line {
  transform: rotate(0deg);
  background: transparent;
}

.header__hamburger-btn.active .header__hamburger-line::after,
.header__hamburger-btn.active .header__hamburger-line::before {
  top: 0;
}

.header__hamburger-btn.active .header__hamburger-line::before {
  transform: rotate(45deg);
}

.header__hamburger-btn.active .header__hamburger-line::after {
  transform: rotate(-45deg);
}

.header__hamburger-menu {
  height: 100vh;
  height: 100dvh;
  position: fixed;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  top: 60px;
  width: 100%;
  left: 0;
}

@media (min-width: 769px) {
  .header__hamburger-menu {
    height: calc(86vh - 70px);
  }
}

.header__hamburger-menu.active {
  overflow-y: scroll;
  opacity: 1;
  visibility: visible;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  -webkit-overflow-scrolling: touch;
  background: rgba(255, 255, 255, 0.85);
}

@media (min-width: 769px) and (max-width: 1299px) {
  .header__hamburger-menu.active {
    background: transparent;
  }
}

.header__hamburger-menu-bg {
  background-color: #f5fcff;
  width: 100%;
  min-height: calc(100vh - 60px);
  min-height: calc(100dvh - 60px);
  border-radius: 0px 0px 16px 16px;
  padding: 20px;
  position: relative;
}

@media (min-width: 769px) {
  .header__hamburger-menu-bg {
    min-height: calc(86vh - 70px);
  }
}

.header__hamburger-menu-block {
  display: flex;
  padding: 32px 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  border-radius: 12px;
}

.header__hamburger-menu-block > a {
  align-self: center;
  width: 100%;
  display: flex;
  justify-content: center;
}

.header__hamburger-menu-list {
  width: 100%;
  margin: 0;
  padding: 0;
}

.header__hamburger-menu-item > a::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 4px;
  background-image: url(../images/icons/icon-capsule.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.header__hamburger-menu-item:hover > a::before {
  transform: scale(1.2) rotate(5deg);
}

.header__hamburger-menu-item {
  padding: 11.5px 8px;
  border-bottom: 1.5px solid #4f4f4f;
  background: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.header__hamburger-menu-item:first-child {
  border-top: none;
}

.header__hamburger-menu-list .header__hamburger-menu-item > a {
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  display: flex;
  align-items: center;
  color: #050a30;
  transition: opacity 0.3s ease;
}

.header__hamburger-menu-item:hover > a {
  opacity: 0.7;
}

.header__hamburger-menu-item > a img {
  flex-shrink: 0;
  display: block;
}

.header__hamburger-menu-item > a span {
  display: inline-block;
  line-height: 1;
}

/* ==========================================================================
   Main Content
   ========================================================================== */
.main {
  background-color: #fff;
  background-image:
    linear-gradient(0deg, rgba(0, 0, 0, 0) calc(100% - 1px), #f7f9fb calc(100% - 1px)),
    linear-gradient(90deg, rgba(0, 0, 0, 0) calc(100% - 1px), #f7f9fb calc(100% - 1px));
  background-position: center;
  background-repeat: repeat;
  background-size: 16px 16px;
}

.main__inner {
  padding-bottom: 100px;
}

.hero {
  position: relative;
}

.hero__cta-button {
  position: absolute;
  bottom: 22%;
  left: 10%;
  display: block;
  width: 80%;
  height: 20%;
  z-index: 10;
  cursor: pointer;
  background: transparent;
  text-decoration: none;
  overflow: hidden;
}

.hero__cta-button::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}

.products {
  position: relative;
  background-image: url(../images/unique/products-bg.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 780 / 2760;
  padding-bottom: 100px;
}

.products__image {
  position: absolute;
  bottom: 6%;
  width: 100%;
}

.section-with-polygon {
  position: relative;
  padding-top: 80px;
}

.section-with-polygon::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 58px;
  height: 58px;
  background-image: url(../images/unique/polygon-shape.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
  padding: 0;
  margin: 0;
}

/* ==========================================================================
   Image Styles
   ========================================================================== */
.image {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.image--left {
  text-align: left;
}

.image--center {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100%;
}

.image--center > a {
  display: inline-block;
  width: auto;
  margin: 0 auto;
}

.image--right {
  text-align: right;
}

/* ==========================================================================
   Anchor Link Buttons
   ========================================================================== */
.anchor-link-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  background-color: #f7f9fb;
}

.anchor-link-buttons__button {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #222;
  text-decoration: none;
  border-top: 0.5px solid #333333;
  border-right: 0.5px solid #333333;
  cursor: pointer;
  min-height: 65px;
  padding: 12px 0 6px;
}

.anchor-link-buttons__button:nth-child(3n) {
  border-right: 0;
}

.anchor-link-buttons__button:first-child::after,
.anchor-link-buttons__button:nth-child(2)::after {
  position: absolute;
  bottom: -2.5px;
  right: -3.5px;
  content: "";
  display: block;
  width: 6px;
  height: 4px;
  background-color: #fff;
  z-index: 1;
}

.anchor-link-buttons__button-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  white-space: pre-line;
}

.anchor-link-buttons__button-text::after {
  content: "";
  display: block;
  width: 16px;
  height: 8px;
  margin-top: 8px;
  background-image: url(../images/unique/anker-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.anchor-link-buttons__button-text img {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   Certificate Section
   ========================================================================== */
.certificate {
  padding: 27px 20px 0;
  color: #222;
  position: relative;
}

.certificate__inner {
  padding: 24px 20px;
  border-radius: 16px;
  background: #f7f9fb;
}

.certificate__box {
  padding: 19px;
  border-radius: inherit;
  background: #fff;
  text-align: center;
}

/* ==========================================================================
   Doctor Section
   ========================================================================== */
.doctor {
  padding: 24px 20px;
  color: #222;
  position: relative;
}

.doctor::before {
  position: absolute;
  content: "";
  background-image: url(../images/common/white-wave.webp);
  background-size: cover;
  width: 100%;
  height: 30px;
  left: 0;
  top: -1px;
}

.doctor__inner {
  padding: 24px 20px;
  border-radius: 16px;
  background: #f7f9fb;
}

.doctor__title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  margin: 0;
}

.doctor__title + * {
  margin-top: 16px;
}

.doctor__box {
  padding: 24px 20px;
  border-radius: inherit;
  background: #fff;
}

.doctor__box + .doctor__box {
  margin-top: 12px;
}

.doctor__heading {
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  margin: 0;
}

.doctor__heading + * {
  margin-top: 20px;
}

.doctor__message-text {
  font-size: 14px;
  line-height: 1.7;
  text-align: justify;
}

.doctor__message-image {
  width: 100%;
  max-width: 270px;
  height: auto;
  display: block;
}

.doctor__img {
  margin-top: 20px;
  text-align: center;
}

.doctor__img img {
  width: 106px;
}

.doctor__img figcaption {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.7;
}

.doctor__list-title {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  margin: 0;

  &:not(:first-child) {
    margin-top: 10px;
  }
}

.doctor__list-title::before {
  content: "● ";
}

.doctor__list-title + * {
  margin-top: 6px;
}

.doctor__list {
  display: flex;
  flex-direction: column;
  margin: 5px 0 0;
  padding: 0;
}

.doctor__list-item {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px dashed #ccc;
}

.doctor__list-item:last-child {
  border-bottom: none;
}

.doctor__list-item dt,
.doctor__list-item dd {
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}

.doctor__list-item dt {
  flex: 0 0 80px;
  padding-top: 4px;
  padding-bottom: 7px;
}

.doctor__list-item dd {
  flex: 1 1 calc(100% - 80px);
  min-width: 0;
  padding-top: 4px;
  padding-left: 12px;
  padding-bottom: 7px;
}

.doctor__info {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.4;
  text-align: justify;
  margin: 7px 0 0;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq {
  position: relative;
  margin: 91px auto 30px;
  padding: 32px 0;
  background: #f5fcff;
}

.faq::before,
.faq::after {
  position: absolute;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 100%;
  height: 27px;
  background-image: url(../images/common/divider-faq-01.png);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.faq::after {
  top: auto;
  bottom: -27px;
  background-image: url(../images/common/divider-faq-02.png);
}

.faq__each-text-anime {
  text-align: right;
}

.faq__section-icon {
  margin: 0 auto 0;
  text-align: center;
}

.faq__section-icon img {
  width: 24px;
}

.faq__title-wrap {
  width: fit-content;
  margin: 0 auto;
}

.faq__each-text-anime {
  line-height: 0.8;
  margin: 0;
}

.faq__each-text-anime span {
  opacity: 0;
  color: #fff064;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: 3.16px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #4f4f4f;
}

.faq__each-text-anime.appeartext span {
  animation: text_anime_on 2.5s ease-out forwards;
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.faq__section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.92px;
  margin-bottom: 46px;
  margin-top: 0;
}

.faq__inner {
  padding: 0 20px;
}

.faq__qa-item {
  display: flex;
  padding: 12px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
  border-radius: 12px;
  border: 1px solid #4f4f4f;
  background: #fff;
  margin-bottom: 16px;
}

.faq__qa-item:last-of-type {
  margin-bottom: 0;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}

.faq__q-title {
  color: #222;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: justify;
  position: relative;
  padding-left: 34px;
  margin: 0;
}

.faq__q-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 25px;
  height: 18px;
  background-image: url(../images/icons/icon-q.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.faq__q-title .u-ja {
  margin-top: -3px;
}

.faq__questionImage {
  width: 90%;
  height: auto;
  display: block;
}

.faq__answer {
  display: none;
  width: 100%;
}

.faq__answer.open {
  display: block;
}

.faq__answerBlock {
  border-radius: 12px;
  background: #f7f9fb;
  display: flex;
  padding: 12px;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  position: relative;
  padding-left: 48px;
}

.faq__answerBlock::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 16px;
  width: 27px;
  height: 20px;
  background-image: url(../images/icons/icon-a.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.faq__answerBlock a {
  text-decoration: underline;
  color: #4cb2e4;
}

.faq__answerTextWrap {
  width: 100%;
}

.faq__answerText {
  color: #222;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  text-align: justify;
}

.faq__answerImage {
  width: 100%;
  height: auto;
  display: block;
}

.faq__toggle {
  background-image: url(../images/common/toggle-open.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
  cursor: pointer;
  transition: background-image 0.3s ease;
}

.faq__toggle.open {
  background-image: url(../images/common/toggle-close.svg);
}

.faq__accordion {
  cursor: pointer;
}

.faq__accordion.open .faq__toggle {
  background-image: url(../images/common/toggle-close.svg);
}

/* ==========================================================================
   Medical Flow Section
   ========================================================================== */
.medical-flow {
  margin-top: 54px;
  padding-top: 48px;
  background-image: url(../images/unique/treatment-bg.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 50px;
  margin-bottom: 14px;
  overflow: visible;
}

.medical-flow__inner {
  max-width: 100%;
  margin: 0;
  position: relative;
  overflow: visible;
  overflow-x: hidden;
  margin-top: 40px;
}

.medical-flow__swiper {
  width: 100%;
  padding-bottom: 30px !important;
  overflow: visible;
  margin-top: 16px;
}

.medical-flow__swiper .swiper-wrapper {
  overflow: visible;
}

.medical-flow__swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.6s ease;
  max-width: 315px !important;
  flex-shrink: 0;
}

.medical-flow__swiper .swiper-slide-active {
  opacity: 1;
}

.medical-flow__swiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.medical-flow__swiper .swiper-pagination {
  bottom: 10px !important;
  position: absolute !important;
}

.medical-flow__swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ccc;
  opacity: 0.7;
}

.medical-flow__swiper .swiper-pagination-bullet-active {
  background: #4cb2e4;
  opacity: 1;
}

/* ==========================================================================
   Price Section
   ========================================================================== */
#price {
  max-width: 100%;
}

.price__slider-wrapper {
  max-width: 100%;
  margin-top: 6px;
  position: relative;
  overflow: visible;
  overflow-x: hidden;
  padding-bottom: 20px;
}

.price__slider-button {
  position: absolute;
  top: 0;
  right: 12%;
  z-index: 10;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  width: 9%;
  height: 9%;
  transition: transform 0.2s ease;
}

.price__slider-button:active {
  transform: scale(1.4) translateY(-3px);
}

.price__slider-button img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}

.price__swiper {
  width: 100%;
  overflow: visible;
  padding-bottom: 30px;
}

.price__swiper .swiper-wrapper {
  overflow: visible;
}

.price__slide-content {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow: visible;
  box-sizing: border-box;
}

.price__swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 100%;
}

.price__swiper .swiper-slide img {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
}

.price__swiper .swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  margin-bottom: 0;
}

.price__swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #e0e0e0;
  opacity: 1;
  border-radius: 5px !important;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0 !important;
  overflow: hidden;
}

.price__swiper .swiper-pagination-bullet:hover {
  background: #ffb3d1;
  transform: scale(1.2);
}

.price__swiper .swiper-pagination-bullet-active {
  width: 24px;
  height: 10px;
  background: #ff6ba3;
  border-radius: 5px;
  opacity: 1;
}

.price__swiper .swiper-pagination-bullet-active:hover {
  background: #ff6ba3;
  transform: scale(1);
}

/* ==========================================================================
   PMD Section
   ========================================================================== */
.pmd {
  padding: 30px 20px;
  color: #222;
  position: relative;
}

.pmd__inner {
  padding: 14px 20px 24px;
  border-radius: 16px;
  background: #f7f9fb;
}

.pmd__image {
  border-bottom: 1px dashed #ccc;
  max-width: 310px;
  margin: 0 auto;
}

.pmd__image:last-child {
  border-bottom: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  padding: 0px 20px 100px 20px;
  background: #4cb2e4;
  position: relative;
}

@media (min-width: 769px) {
  .footer {
    padding-bottom: 20px;
  }
}

.footer::before {
  position: absolute;
  content: "";
  background-image: url(../images/common/wave-blue.webp);
  background-size: cover;
  background-position: top;
  width: 100%;
  height: 30px;
  left: 0;
  top: -29px;
}

.footer__page-top {
  text-align: center;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
}

.footer__page-top a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer__page-top a:hover {
  opacity: 0.7;
}

.footer__page-top a::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-image: url(../images/common/arrow-top.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.footer__logo {
  max-width: 170px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer__logo img {
  width: 100%;
  height: auto;
}

.footer__block {
  padding: 48px 20px 20px;
  border-radius: 12px;
  position: relative;
}

.footer__block.bg-square {
  background-image:
    linear-gradient(0deg, transparent calc(100% - 1px), #f7f9fb calc(100% - 1px)),
    linear-gradient(90deg, transparent calc(100% - 1px), #f7f9fb calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
  background-color: #fff;
}

@media (max-width: 768px) {
  .footer__block.bg-square {
    background-image:
      linear-gradient(0deg, transparent calc(100% - 1px), #f7f9fb calc(100% - 1px)),
      linear-gradient(90deg, transparent calc(100% - 1px), #f7f9fb calc(100% - 1px));
    background-size: 16px 16px;
    background-repeat: repeat;
    background-position: center center;
    background-color: #fff;
  }
}

.footer__block::after {
  position: absolute;
  right: -14px;
  bottom: 0;
  content: "";
  width: 204px;
  height: 97px;
  background-image: url(../images/common/footer-illust.webp);
  background-size: contain;
}

.footer__menu-list {
  margin: 0;
  padding: 0;
}

.footer__menu-list .footer__menu-item {
  border-bottom: 1px dashed #ccc;
  background: #fff;
}

.footer__menu-list .footer__menu-item:first-child {
  border-top: 1px dashed #ccc;
}

.footer__menu-list .footer__menu-item a {
  transition: 0.3s;
}

.footer__menu-list .footer__menu-item a:hover {
  opacity: 0.7;
}

.footer__menu-item > a::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 4px;
  background-image: url(../images/icons/icon-capsule.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.footer__menu-item:hover > a::before {
  transform: scale(1.2) rotate(5deg);
}

.footer__menu-list .footer__menu-item {
  padding: 11.5px 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer__menu-list .footer__menu-item a {
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #050a30;
}

.footer__menu-list .footer__menu-item > a img {
  flex-shrink: 0;
}

.footer__menu-list .footer__menu-item > a span {
  display: inline-block;
}

.footer__copyright {
  font-size: 10px;
  font-weight: 400;
  line-height: 150%;
  margin-top: 48px;
  padding-left: 12px;
  position: relative;
  z-index: 1;
}

.footer__certification {
  margin-top: 40px;
  width: 85px;
  height: 73px;
  position: relative;
  z-index: 1;
}

.footer__certification img {
  width: 100%;
  height: auto;
}

.footer__menu {
  margin-top: 48px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.footer__link {
  margin-top: 24px;
  width: 100%;
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
}

.footer__link li {
  height: 32px;
  padding: 0px 12px;
}

.footer__link li a {
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
  transition: 0.3s;
}

.footer__link li a:hover {
  opacity: 0.7;
}

.footer__link li a {
  color: #222222;
}

.footer__link li a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  padding: 4px;
  background-image: url(../images/icons/icon-blank.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  margin-left: 2px;
}

/* ==========================================================================
   CTA Navi
   ========================================================================== */
.cta-navi {
  width: 100%;
  height: auto;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 769px) {
  .cta-navi {
    display: none;
  }
}

.cta-navi img {
  width: 100%;
  height: auto;
}

/* ==========================================================================
   アニメーション
   ========================================================================== */
.u-fade-up-trigger {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.u-fade-up-active {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ヘッダーアニメーション */
#HeaderMain.upMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-70px);
  }
}

#HeaderMain.downMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-70px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   ユーティリティクラス - Margin & Padding
   ========================================================================== */
/* Margin - 全方向 */
.u-m-0 {
  margin: 0;
}
.u-m-5 {
  margin: 5px;
}
.u-m-10 {
  margin: 10px;
}
.u-m-15 {
  margin: 15px;
}
.u-m-20 {
  margin: 20px;
}
.u-m-25 {
  margin: 25px;
}
.u-m-30 {
  margin: 30px;
}
.u-m-35 {
  margin: 35px;
}
.u-m-40 {
  margin: 40px;
}
.u-m-45 {
  margin: 45px;
}
.u-m-50 {
  margin: 50px;
}
.u-m-55 {
  margin: 55px;
}
.u-m-60 {
  margin: 60px;
}
.u-m-65 {
  margin: 65px;
}
.u-m-70 {
  margin: 70px;
}
.u-m-75 {
  margin: 75px;
}
.u-m-80 {
  margin: 80px;
}
.u-m-85 {
  margin: 85px;
}
.u-m-90 {
  margin: 90px;
}
.u-m-95 {
  margin: 95px;
}
.u-m-100 {
  margin: 100px;
}

/* Margin - Top */
.u-mt-0 {
  margin-top: 0;
}
.u-mt-5 {
  margin-top: 5px;
}
.u-mt-10 {
  margin-top: 10px;
}
.u-mt-15 {
  margin-top: 15px;
}
.u-mt-20 {
  margin-top: 20px;
}
.u-mt-25 {
  margin-top: 25px;
}
.u-mt-30 {
  margin-top: 30px;
}
.u-mt-35 {
  margin-top: 35px;
}
.u-mt-40 {
  margin-top: 40px;
}
.u-mt-45 {
  margin-top: 45px;
}
.u-mt-50 {
  margin-top: 50px;
}
.u-mt-55 {
  margin-top: 55px;
}
.u-mt-60 {
  margin-top: 60px;
}
.u-mt-65 {
  margin-top: 65px;
}
.u-mt-70 {
  margin-top: 70px;
}
.u-mt-75 {
  margin-top: 75px;
}
.u-mt-80 {
  margin-top: 80px;
}
.u-mt-85 {
  margin-top: 85px;
}
.u-mt-90 {
  margin-top: 90px;
}
.u-mt-95 {
  margin-top: 95px;
}
.u-mt-100 {
  margin-top: 100px;
}

/* Margin - Right */
.u-mr-0 {
  margin-right: 0;
}
.u-mr-5 {
  margin-right: 5px;
}
.u-mr-10 {
  margin-right: 10px;
}
.u-mr-15 {
  margin-right: 15px;
}
.u-mr-20 {
  margin-right: 20px;
}
.u-mr-25 {
  margin-right: 25px;
}
.u-mr-30 {
  margin-right: 30px;
}
.u-mr-35 {
  margin-right: 35px;
}
.u-mr-40 {
  margin-right: 40px;
}
.u-mr-45 {
  margin-right: 45px;
}
.u-mr-50 {
  margin-right: 50px;
}
.u-mr-55 {
  margin-right: 55px;
}
.u-mr-60 {
  margin-right: 60px;
}
.u-mr-65 {
  margin-right: 65px;
}
.u-mr-70 {
  margin-right: 70px;
}
.u-mr-75 {
  margin-right: 75px;
}
.u-mr-80 {
  margin-right: 80px;
}
.u-mr-85 {
  margin-right: 85px;
}
.u-mr-90 {
  margin-right: 90px;
}
.u-mr-95 {
  margin-right: 95px;
}
.u-mr-100 {
  margin-right: 100px;
}

/* Margin - Bottom */
.u-mb-0 {
  margin-bottom: 0;
}
.u-mb-5 {
  margin-bottom: 5px;
}
.u-mb-10 {
  margin-bottom: 10px;
}
.u-mb-15 {
  margin-bottom: 15px;
}
.u-mb-20 {
  margin-bottom: 20px;
}
.u-mb-25 {
  margin-bottom: 25px;
}
.u-mb-30 {
  margin-bottom: 30px;
}
.u-mb-35 {
  margin-bottom: 35px;
}
.u-mb-40 {
  margin-bottom: 40px;
}
.u-mb-45 {
  margin-bottom: 45px;
}
.u-mb-50 {
  margin-bottom: 50px;
}
.u-mb-55 {
  margin-bottom: 55px;
}
.u-mb-60 {
  margin-bottom: 60px;
}
.u-mb-65 {
  margin-bottom: 65px;
}
.u-mb-70 {
  margin-bottom: 70px;
}
.u-mb-75 {
  margin-bottom: 75px;
}
.u-mb-80 {
  margin-bottom: 80px;
}
.u-mb-85 {
  margin-bottom: 85px;
}
.u-mb-90 {
  margin-bottom: 90px;
}
.u-mb-95 {
  margin-bottom: 95px;
}
.u-mb-100 {
  margin-bottom: 100px;
}

/* Margin - Left */
.u-ml-0 {
  margin-left: 0;
}
.u-ml-5 {
  margin-left: 5px;
}
.u-ml-10 {
  margin-left: 10px;
}
.u-ml-15 {
  margin-left: 15px;
}
.u-ml-20 {
  margin-left: 20px;
}
.u-ml-25 {
  margin-left: 25px;
}
.u-ml-30 {
  margin-left: 30px;
}
.u-ml-35 {
  margin-left: 35px;
}
.u-ml-40 {
  margin-left: 40px;
}
.u-ml-45 {
  margin-left: 45px;
}
.u-ml-50 {
  margin-left: 50px;
}
.u-ml-55 {
  margin-left: 55px;
}
.u-ml-60 {
  margin-left: 60px;
}
.u-ml-65 {
  margin-left: 65px;
}
.u-ml-70 {
  margin-left: 70px;
}
.u-ml-75 {
  margin-left: 75px;
}
.u-ml-80 {
  margin-left: 80px;
}
.u-ml-85 {
  margin-left: 85px;
}
.u-ml-90 {
  margin-left: 90px;
}
.u-ml-95 {
  margin-left: 95px;
}
.u-ml-100 {
  margin-left: 100px;
}

/* Padding - 全方向 */
.u-p-0 {
  padding: 0;
}
.u-p-5 {
  padding: 5px;
}
.u-p-10 {
  padding: 10px;
}
.u-p-15 {
  padding: 15px;
}
.u-p-20 {
  padding: 20px;
}
.u-p-25 {
  padding: 25px;
}
.u-p-30 {
  padding: 30px;
}
.u-p-35 {
  padding: 35px;
}
.u-p-40 {
  padding: 40px;
}
.u-p-45 {
  padding: 45px;
}
.u-p-50 {
  padding: 50px;
}
.u-p-55 {
  padding: 55px;
}
.u-p-60 {
  padding: 60px;
}
.u-p-65 {
  padding: 65px;
}
.u-p-70 {
  padding: 70px;
}
.u-p-75 {
  padding: 75px;
}
.u-p-80 {
  padding: 80px;
}
.u-p-85 {
  padding: 85px;
}
.u-p-90 {
  padding: 90px;
}
.u-p-95 {
  padding: 95px;
}
.u-p-100 {
  padding: 100px;
}

/* Padding - Top */
.u-pt-0 {
  padding-top: 0;
}
.u-pt-5 {
  padding-top: 5px;
}
.u-pt-10 {
  padding-top: 10px;
}
.u-pt-15 {
  padding-top: 15px;
}
.u-pt-20 {
  padding-top: 20px;
}
.u-pt-25 {
  padding-top: 25px;
}
.u-pt-30 {
  padding-top: 30px;
}
.u-pt-35 {
  padding-top: 35px;
}
.u-pt-40 {
  padding-top: 40px;
}
.u-pt-45 {
  padding-top: 45px;
}
.u-pt-50 {
  padding-top: 50px;
}
.u-pt-55 {
  padding-top: 55px;
}
.u-pt-60 {
  padding-top: 60px;
}
.u-pt-65 {
  padding-top: 65px;
}
.u-pt-70 {
  padding-top: 70px;
}
.u-pt-75 {
  padding-top: 75px;
}
.u-pt-80 {
  padding-top: 80px;
}
.u-pt-85 {
  padding-top: 85px;
}
.u-pt-90 {
  padding-top: 90px;
}
.u-pt-95 {
  padding-top: 95px;
}
.u-pt-100 {
  padding-top: 100px;
}

/* Padding - Right */
.u-pr-0 {
  padding-right: 0;
}
.u-pr-5 {
  padding-right: 5px;
}
.u-pr-10 {
  padding-right: 10px;
}
.u-pr-15 {
  padding-right: 15px;
}
.u-pr-20 {
  padding-right: 20px;
}
.u-pr-25 {
  padding-right: 25px;
}
.u-pr-30 {
  padding-right: 30px;
}
.u-pr-35 {
  padding-right: 35px;
}
.u-pr-40 {
  padding-right: 40px;
}
.u-pr-45 {
  padding-right: 45px;
}
.u-pr-50 {
  padding-right: 50px;
}
.u-pr-55 {
  padding-right: 55px;
}
.u-pr-60 {
  padding-right: 60px;
}
.u-pr-65 {
  padding-right: 65px;
}
.u-pr-70 {
  padding-right: 70px;
}
.u-pr-75 {
  padding-right: 75px;
}
.u-pr-80 {
  padding-right: 80px;
}
.u-pr-85 {
  padding-right: 85px;
}
.u-pr-90 {
  padding-right: 90px;
}
.u-pr-95 {
  padding-right: 95px;
}
.u-pr-100 {
  padding-right: 100px;
}

/* Padding - Bottom */
.u-pb-0 {
  padding-bottom: 0;
}
.u-pb-5 {
  padding-bottom: 5px;
}
.u-pb-10 {
  padding-bottom: 10px;
}
.u-pb-15 {
  padding-bottom: 15px;
}
.u-pb-20 {
  padding-bottom: 20px;
}
.u-pb-25 {
  padding-bottom: 25px;
}
.u-pb-30 {
  padding-bottom: 30px;
}
.u-pb-35 {
  padding-bottom: 35px;
}
.u-pb-40 {
  padding-bottom: 40px;
}
.u-pb-45 {
  padding-bottom: 45px;
}
.u-pb-50 {
  padding-bottom: 50px;
}
.u-pb-55 {
  padding-bottom: 55px;
}
.u-pb-60 {
  padding-bottom: 60px;
}
.u-pb-65 {
  padding-bottom: 65px;
}
.u-pb-70 {
  padding-bottom: 70px;
}
.u-pb-75 {
  padding-bottom: 75px;
}
.u-pb-80 {
  padding-bottom: 80px;
}
.u-pb-85 {
  padding-bottom: 85px;
}
.u-pb-90 {
  padding-bottom: 90px;
}
.u-pb-95 {
  padding-bottom: 95px;
}
.u-pb-100 {
  padding-bottom: 100px;
}

/* Padding - Left */
.u-pl-0 {
  padding-left: 0;
}
.u-pl-5 {
  padding-left: 5px;
}
.u-pl-10 {
  padding-left: 10px;
}
.u-pl-15 {
  padding-left: 15px;
}
.u-pl-20 {
  padding-left: 20px;
}
.u-pl-25 {
  padding-left: 25px;
}
.u-pl-30 {
  padding-left: 30px;
}
.u-pl-35 {
  padding-left: 35px;
}
.u-pl-40 {
  padding-left: 40px;
}
.u-pl-45 {
  padding-left: 45px;
}
.u-pl-50 {
  padding-left: 50px;
}
.u-pl-55 {
  padding-left: 55px;
}
.u-pl-60 {
  padding-left: 60px;
}
.u-pl-65 {
  padding-left: 65px;
}
.u-pl-70 {
  padding-left: 70px;
}
.u-pl-75 {
  padding-left: 75px;
}
.u-pl-80 {
  padding-left: 80px;
}
.u-pl-85 {
  padding-left: 85px;
}
.u-pl-90 {
  padding-left: 90px;
}
.u-pl-95 {
  padding-left: 95px;
}
.u-pl-100 {
  padding-left: 100px;
}

/* ==========================================================================
   ユーティリティクラス - Width
   ========================================================================== */
.u-w-0 {
  width: 0;
}
.u-w-5 {
  width: 5%;
}
.u-w-10 {
  width: 10%;
}
.u-w-15 {
  width: 15%;
}
.u-w-20 {
  width: 20%;
}
.u-w-25 {
  width: 25%;
}
.u-w-30 {
  width: 30%;
}
.u-w-35 {
  width: 35%;
}
.u-w-40 {
  width: 40%;
}
.u-w-45 {
  width: 45%;
}
.u-w-50 {
  width: 50%;
}
.u-w-55 {
  width: 55%;
}
.u-w-60 {
  width: 60%;
}
.u-w-65 {
  width: 65%;
}
.u-w-70 {
  width: 70%;
}
.u-w-75 {
  width: 75%;
}
.u-w-80 {
  width: 80%;
}
.u-w-85 {
  width: 85%;
}
.u-w-90 {
  width: 90%;
}
.u-w-95 {
  width: 95%;
}
.u-w-100 {
  width: 100%;
}

/* ==========================================================================
   セマンティッククラス - インラインスタイルの置き換え
   ========================================================================== */
/* Section 02 padding */
.section-02-wrapper {
  padding: 0 22px;
}

/* Section 03 margin */
.section-03-wrapper {
  margin-top: 32px;
}

/* CTA Button spacing */
.cta-button-wrapper {
  margin-top: 10px;
}

.cta-button-wrapper--spacing-14 {
  margin-top: 14px;
}

.cta-button-wrapper--spacing-20 {
  margin-top: 20px;
}

.cta-button-wrapper--spacing-24 {
  margin-top: 24px;
}

/* Square Coupon with CTA */
.square-coupon-wrapper {
  padding: 0 32px;
  margin-top: 30px;
}

.square-coupon-cta-wrapper {
  margin-top: 14px;
}

/* Achievement section */
.achievement-wrapper {
  padding: 32px 32px 24px;
  margin-top: 32px;
}

/* Doctor message image */
.doctor-message-wrapper {
  margin-top: 18px;
}

/* Price section */
.price-title-wrapper {
  padding: 0 35px;
  margin-top: 64px;
}

.price-label-wrapper {
  margin-top: 18px;
  padding: 0 22px;
}

.price-slider-image-wrapper {
  padding: 18px 22px 0;
}

.price-plan-wrapper {
  margin-top: 30px;
  padding: 0 22px;
}

/* PMD image */
.pmd__image-wrapper {
  padding: 10px 0;
}

/* CTA Navi */
.cta-navi img {
  max-width: 350px;
}

/* FAQ animation delay */
.faq__animation-delay-0 {
  animation-delay: 0s;
}

.faq__animation-delay-1 {
  animation-delay: 0.1s;
}

.faq__animation-delay-2 {
  animation-delay: 0.2s;
}
