@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  width: 100%;
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*-------------------------------
inner
-------------------------------*/
/*-------------------------------
余白
-------------------------------*/
/*-------------------------------
フォント
-------------------------------*/
/*-------------------------------
ベースフォントサイズ
-------------------------------*/
/*-------------------------------
Color
-------------------------------*/
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 10px;
}
@media (max-width: 1200px) {
  html {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 390px) {
  html {
    font-size: 2.5641025641vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
  font-size: 1.6rem;
  background-color: #fff;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
  display: block;
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}
/*-------------------------------
l-header
-------------------------------*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 800;
}

/*-------------------------------
l-inner
-------------------------------*/
.l-inner {
  margin-inline: auto;
  padding-inline: 15px;
}

/*-------------------------------
c-cta-btn
-------------------------------*/
.c-cta-btn img {
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 342/67;
}

/*-------------------------------
c-float-btn
-------------------------------*/
.c-float-btn {
  display: none;
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 700;
}
@media screen and (max-width: 767px) {
  .c-float-btn {
    display: block;
    width: 100%;
    max-width: 50rem;
  }
}

.c-float-btn a {
  overflow: hidden;
}

.c-float-btn img {
  position: relative;
  left: 2px;
}

/*-------------------------------
p-clinic-list
-------------------------------*/
.p-clinic-list__area-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.p-clinic-list__area-label {
  padding-block: 2rem;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
  background-color: #fff;
  border-radius: 3rem;
  cursor: pointer;
  position: relative;
}

.p-clinic-list__area-label::before,
.p-clinic-list__area-label::after {
  content: "";
  width: 1.2rem;
  height: 0.2rem;
  position: absolute;
  top: 50%;
  right: 3.2rem;
  background-color: #44b063;
  transition: 0.4s;
}

.p-clinic-list__area-label::before {
  transform: translateY(-50%);
}

.p-clinic-list__area-label::after {
  transform: translateY(-50%) rotate(90deg);
}

.p-clinic-list__area-label.is-open::after {
  transform: translateY(-50%) rotate(180deg);
}

.p-clinic-list__area-body {
  margin-top: 1.6rem;
  display: none;
}

.p-clinic-list__list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.p-clinic-list__item-label {
  padding-block: 2rem;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
  background-color: #ffffaf;
  border-radius: 3rem;
  cursor: pointer;
  position: relative;
}

.p-clinic-list__item-label::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  position: absolute;
  top: 50%;
  right: 3.2rem;
  transition: 0.2s;
  border-bottom: 0.2rem solid #333;
  border-left: 0.2rem solid #333;
}

.p-clinic-list__item-label::before {
  transform: translateY(-50%) rotate(-45deg);
}

.p-clinic-list__item-label.is-open::before {
  transform: translateY(-50%) rotate(135deg);
}

.p-clinic-list__item-body {
  margin-top: 1.6rem;
  padding: 3.8rem 3rem;
  background-color: #ffffef;
  border-radius: 2.5rem;
  display: none;
}

.p-clinic-list__img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 300/200;
  border-radius: 1.5rem;
}

.p-clinic-list__img img {
  width: 100%;
}

.p-clinic-list__address,
.p-clinic-list__route {
  margin-top: 2rem;
  font-size: 1.4rem;
  line-height: 2.6rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/*-------------------------------
p-cta-section
-------------------------------*/
.p-cta-section {
  position: relative;
}

.p-cta-section__cta.c-cta-btn {
  width: 31rem;
  position: absolute;
  bottom: 13.9%;
  left: 50%;
  transform: translateX(-50%);
}

/*-------------------------------
p-faq-list
-------------------------------*/
.p-faq-list {
  border-bottom: 1px solid #666666;
}

.p-faq-list__item {
  padding-block: 0.4rem;
  border-top: 1px solid #666666;
  position: relative;
}

.p-faq-list__item-question,
.p-faq-list__item-answer {
  padding-block: 1.6rem;
  padding-inline: 4.8rem 5.7rem;
  position: relative;
  font-size: 1.4rem;
  line-height: 2.4rem;
  font-weight: 400;
}

.p-faq-list__item-question {
  cursor: pointer;
  position: relative;
}

.p-faq-list__item-question::before,
.p-faq-list__item-question::after {
  content: "";
  width: 1.2rem;
  height: 0.2rem;
  position: absolute;
  top: 50%;
  right: 3.2rem;
  background-color: #44b063;
  transition: 0.4s;
}

.p-faq-list__item-question::before {
  transform: translateY(-50%);
}

.p-faq-list__item-question::after {
  transform: translateY(-50%) rotate(90deg);
}

.p-faq-list__item-question.is-open::after {
  transform: translateY(-50%) rotate(180deg);
}

.p-faq-list__item-answer {
  display: none;
}

.p-faq-list__question-icon,
.p-faq-list__answer-icon {
  position: absolute;
  left: 1rem;
  width: 2.4rem;
  height: 2.4rem;
  background-image: url(../images/faq-question-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-faq-list__question-icon {
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/Q.png);
}

.p-faq-list__answer-icon {
  top: 1.8rem;
  background-image: url(../images/A.png);
}

.p-faq-list__list-item {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}

.p-faq-list__list-item:nth-of-type(2) {
  margin-top: 0.5rem;
}
.p-faq-list__list-item:last-of-type {
  margin-bottom: 1rem;
}

/*-------------------------------
p-footer
-------------------------------*/
.p-footer__list {
  margin-top: 3.6rem;
}

.p-footer__item {
  font-size: 1.2rem;
  line-height: 2rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-indent: -1em;
  padding-left: 1em;
}

.p-footer__privacypolicy {
  margin-top: 3rem;
}

.p-footer__privacypolicy a {
  padding-left: 1em;
  font-size: 1.2rem;
  line-height: 2rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: #44b063;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.p-footer__bottom {
  margin-top: 4rem;
  padding-block: 1.4rem;
  background-color: #44b063;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom {
    padding-bottom: 25%;
  }
}

.p-footer__logo {
  margin-inline: auto;
  width: 14rem;
}

.p-footer__logo img {
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 140/62;
}

/*-------------------------------
p-fv
-------------------------------*/
.p-fv {
  position: relative;
}

.p-fv__btn.c-cta-btn {
  width: 33rem;
  position: absolute;
  bottom: 4.4%;
  left: 50%;
  transform: translateX(-50%);
}

/*-------------------------------
p-header
-------------------------------*/
.p-header {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 5rem;
    background-color: #fff;
  }
}

.p-header__inner {
  padding-top: 0.9rem;
  padding-left: 1.6rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding: 0;
  }
}

.p-header__logo {
  width: 15rem;
  position: relative;
  z-index: 500;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 12rem;
  }
}

.p-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 150/67;
}

.p-header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 5.5rem;
  height: inherit;
  background-color: #333;
  cursor: pointer;
  transition: 0.3s;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    display: block;
  }
}

.p-header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1.8rem;
  height: 1px;
  background-color: #fff;
  transition: 0.5s;
  border-radius: 0.3rem;
}

.p-header__hamburger span:nth-of-type(1) {
  top: -0.7rem;
}

.p-header__hamburger span:nth-of-type(2) {
  top: 0;
}

.p-header__hamburger span:nth-of-type(3) {
  top: 0.7rem;
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.p-header__hamburger.is-open span:nth-of-type(3) {
  top: -0.2rem;
  transform: translateX(-50%) rotate(-45deg);
}

.p-header__drawer {
  width: 33rem;
  height: 100dvh;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0%;
  background-color: #44b063;
  overflow-y: scroll;
  scrollbar-width: none;
  transition: 0.6s;
}
@media screen and (max-width: 767px) {
  .p-header__drawer {
    width: 32rem;
    height: 37.6rem;
    max-height: 100dvh;
    top: 5rem;
    right: -120%;
    background-color: rgba(68, 176, 99, 0.95);
  }
}

.p-header__drawer.is-open {
  right: 0;
}

.p-header__drawer-nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.p-header__drawer-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.p-header__drawer-item a {
  padding-block: 2rem;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  display: inline-block;
  position: relative;
  opacity: 0.4;
  transition: 0.2s;
}

.p-header__drawer-item.is-active a {
  color: #fff;
  opacity: 1;
}

.p-header__drawer-item.is-active a::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  position: absolute;
  top: 50%;
  left: -1.6rem;
  transform: translateY(-50%);
  background-color: #fff;
  border-radius: 50%;
  z-index: 10;
}

.p-header__drawer-item a::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  position: absolute;
}

.p-header__drawer-cta {
  display: none;
  margin-top: 2rem;
  width: 28rem;
}
@media screen and (max-width: 1000px) {
  .p-header__drawer-cta {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-header__drawer-cta {
    display: none;
  }
}

/*-------------------------------
p-lp-content
-------------------------------*/
.p-lp-content {
  width: 39rem;
  height: calc(100vh - 5rem);
  position: relative;
  z-index: 100;
  background-color: #fff;
  border-radius: 3rem;
  overflow-y: scroll;
  scrollbar-width: none;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-lp-content {
    width: 100%;
    max-width: 50rem;
    height: 100%;
    border-radius: 0;
  }
}

.p-lp-content__inner {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}

/*-------------------------------
p-main-wrap
-------------------------------*/
.p-main-wrap {
  width: 100%;
  height: 100dvh;
  background-color: #e3e1e2;
}
@media screen and (max-width: 767px) {
  .p-main-wrap {
    padding-top: 5rem;
  }
}

.p-main-wrap__inner {
  width: calc(100% - 40rem);
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .p-main-wrap__inner {
    width: calc(100% - 33rem);
    justify-content: center;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-main-wrap__inner {
    width: 100%;
  }
}

/*-------------------------------
p-pc-bg
-------------------------------*/
.p-pc-bg {
  padding-inline: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4.7rem;
}
@media screen and (max-width: 1000px) {
  .p-pc-bg {
    display: none;
  }
}

.p-pc-bg__text {
  width: 29.7rem;
}

.p-pc-bg__text img {
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 297/190;
}

.p-pc-bg__cta a {
  width: 34.2rem;
}

/*-------------------------------
p-section3
-------------------------------*/
.p-section3 {
  margin-top: 2.4rem;
  position: relative;
}

/*-------------------------------
p-section3__course-swiper
-------------------------------*/
.p-section3__course-swiper.swiper {
  padding-inline: 1.6rem;
  padding-bottom: 2.8rem;
  width: 100%;
  position: absolute;
  bottom: 10.6%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
}

.p-section3__course-swiper .course-swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.p-section3__course-swiper .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  opacity: 1;
  background: #b3b3b3;
  border: none;
}

.p-section3__course-swiper .swiper-pagination-bullet-active {
  background: #44b063;
}

/*-------------------------------
p-section3__discount-swiper
-------------------------------*/
.p-section3__discount {
  padding: 1.2rem;
  width: calc(100% - 4.4rem);
  position: absolute;
  bottom: 4.6%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  background-color: #44b063;
  border-radius: 1.4rem;
}

.p-section3__discount::before {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: 0.2rem 0.2rem 0.2rem rgba(150, 134, 84, 0.2);
  mix-blend-mode: multiply;
  pointer-events: none;
  border-radius: 1.4rem;
}

.p-section3__discount-swiper.swiper {
  border-radius: 1.4rem;
}

.p-section3__discount-swiper .swiper-button-prev,
.p-section3__discount-swiper .swiper-button-next {
  width: 0.8rem;
  height: 0.8rem;
  top: 55.6%;
  border-bottom: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
}

.p-section3__discount-swiper .swiper-button-prev {
  left: 19.5%;
  transform: rotate(135deg);
}

.p-section3__discount-swiper .swiper-button-next {
  right: 19.5%;
  transform: rotate(-45deg);
}

/*-------------------------------
p-section5
-------------------------------*/
.p-section5 {
  margin-top: -6.4rem;
}

/*-------------------------------
p-section6
-------------------------------*/
.p-section6 {
  padding-bottom: 7.2rem;
}

.p-section6__title {
  margin-inline: auto;
  width: 17.1rem;
}

.p-section6__title img {
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 171/73;
}

.p-section6__list {
  margin-top: 4rem;
}

/*-------------------------------
p-section7
-------------------------------*/
/*-------------------------------
p-section7__top
-------------------------------*/
.p-section7__top {
  padding-block: 5.6rem 3.8rem;
  background-color: #ffffaf;
  border-radius: 3rem;
  position: relative;
}

.p-section7__title {
  margin-inline: auto;
  width: 12.8rem;
}

.p-section7__title img {
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 128/73;
}

.p-section7__read {
  padding-inline: 1.6rem;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: justify;
}

/*-------------------------------
p-section7__top-swiper
-------------------------------*/
.p-section7__top-swiper.swiper {
  margin-top: 3rem;
  padding-bottom: 3.6rem;
  position: relative;
  overflow: hidden;
}

.p-section7__top-swiper .swiper-wrapper {
  align-items: stretch;
}

.p-section7__top-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  height: auto;
}

.p-section7__top-swiper .swiper-slide picture {
  display: block;
  overflow: hidden;
  aspect-ratio: 721/441;
  background: #fff;
}

.p-section7__top-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: bottom;
}

.p-section7__top-swiper .swiper-slide p {
  margin-top: 2rem;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.p-section7__top-swiper .clinic-swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.p-section7__top-swiper .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  opacity: 1;
  background: #b3b3b3;
  border: none;
}

.p-section7__top-swiper .swiper-pagination-bullet-active {
  background: #44b063;
}

/*-------------------------------
p-section7__bottom
-------------------------------*/
.p-section7__bottom {
  padding-block: 2.6rem 5.6rem;
  background-color: #44b063;
  border-radius: 3rem;
}

.p-section7__logo {
  margin-inline: auto;
  width: 21.6rem;
}

.p-section7__logo img {
  aspect-ratio: 216/96;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-section7__clinic-info {
  margin-top: 3rem;
}
/*# sourceMappingURL=style.css.map */
