@charset "UTF-8";
body {
  font-family: "Zen Old Mincho", serif;
  line-height: 1.7;
  background: #faf5f5;
  color: #111;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 576px) {
  .inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.button {
  font-weight: 700;
  letter-spacing: 0.48px;
  padding: 8px 28px;
  display: inline-block;
  border-radius: 60px;
  border: 2px solid currentColor;
  background: #de7fa9;
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  min-width: 150px;
  text-align: center;
  -webkit-transition: background-color 0.5s, opacity 0.5s;
  transition: background-color 0.5s, opacity 0.5s;
}
.button:hover {
  opacity: 0.7;
  color: #fff;
}
.button--type1 {
  border-color: #fff;
  background-color: #00B900;
  color: #fff;
  -webkit-transition: background-color 0.5s, opacity 0.5s;
  transition: background-color 0.5s, opacity 0.5s;
}
.button--type1:hover {
  opacity: 0.7;
  background-color: #00B900;
}

.tel__button {
  position: relative;
}
@media (min-width: 768px) {
  .tel__button a[href^="tel:"] {
    pointer-events: none;
  }
}
.tel__button::after {
  content: "";
  position: absolute;
  background: url(../img/phone_in_talk_24dp_FFF_FILL0_wght400_GRAD0_opsz24.svg);
  background-size: contain;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

.section {
  padding-block: 40px;
}
@media screen and (min-width: 768px) {
  .section {
    padding-block: 60px;
  }
}
.section__title {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .section__title {
    font-size: 40px;
  }
}

.en {
  font-family: "Yellowtail", cursive;
  font-size: 24px;
  text-shadow: 2px 3px 2px rgba(179, 179, 179, 0.4);
}

/* ===============================================
# Header
=============================================== */
.header {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 15px;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .header__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.header__logo a {
  font-weight: 700;
}
.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}
.header__nav a:not(:first-child) {
  margin-left: 12px;
}

.sp__menu {
  display: block;
  background: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-block: 20px;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .sp__menu {
    display: none;
  }
}
.sp__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sp__nav a:not(:first-child) {
  margin-left: 12px;
}

/* ===============================================
# Mv
=============================================== */
.mv {
  margin-top: 127px;
}
.mv img {
  height: calc(100vh - 127px);
  -o-object-fit: contain;
     object-fit: contain;
}

/* ===============================================
# Worries
=============================================== */
.worries {
  background: #fffcf5;
  text-align: center;
}
.worries__contents {
  margin-top: 20px;
}
.worries__contents p {
  font-size: 15px;
  line-height: 2;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .worries__contents p {
    font-size: 24px;
  }
}
.worries__contents > * + * {
  margin-top: 20px;
}
.worries__title {
  font-weight: 700;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .worries__title {
    font-size: 40px;
  }
}

/* ===============================================
# Point
=============================================== */
.point__steps {
  margin-top: 40px;
}
.point__box {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
}
.point__box:not(:first-child) {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .point__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.point__box--head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 90px;
  height: 90px;
  border: 2px solid #111;
  border-radius: 50%;
  background: #f5810e;
  margin-left: auto;
  margin-right: auto;
}
.is__type2 .point__box--head {
  background-color: #fabe00;
}
.is__type3 .point__box--head {
  background-color: #35d57f;
}
.is__type4 .point__box--head {
  background-color: #30b1e0;
}
.is__type5 .point__box--head {
  background-color: #fc5efe;
}
@media screen and (min-width: 768px) {
  .point__box--head {
    margin-left: 0;
    margin-right: 0;
  }
}
.point__box--head-text {
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  color: #fff;
}
.point__box--head-number {
  font-size: 34px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3.4px;
  margin-top: 3px;
}
.point__box--body {
  text-align: center;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .point__box--body {
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
  }
}
.point__box--body-title {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .point__box--body-title {
    font-size: 32px;
  }
}
.point__box--body-text {
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .point__box--body-text {
    font-size: 18px;
  }
}

/* ===============================================
# After
=============================================== */
.after__title {
  text-align: center;
  color: #ff0000;
}
.after__contents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .after__contents {
    grid-template-columns: repeat(3, 1fr);
  }
}
.after__banner {
  margin-top: 40px;
}

/* ===============================================
# Banner
=============================================== */
.banner {
  margin-top: 40px;
}
.banner__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .banner__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}
.banner__thumb {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .banner__thumb {
    width: 40%;
  }
}

/* ===============================================
# Prof
=============================================== */
.prof {
  background-color: #fbf8f3;
}
.prof__title {
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .prof__title {
    font-size: 40px;
  }
}
.prof__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .prof__contents {
    gap: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 60px;
  }
}
.prof__thumb {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .prof__thumb {
    width: 50%;
  }
}
.prof__thumb img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.prof__body {
  width: 100%;
  margin-top: 24px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .prof__body {
    width: 50%;
  }
}
.prof__sub--title {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .prof__sub--title {
    font-size: 32px;
  }
}
.prof__text {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .prof__text {
    margin-top: 40px;
    font-size: 24px;
  }
}
.prof__text p {
  margin-top: 16px;
  font-size: 16px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .prof__text p {
    font-size: 18px;
  }
}

.em {
  color: #de7fa9;
  font-weight: 700;
}

/* ===============================================
# Treatment
=============================================== */
@media screen and (min-width: 768px) {
  .treatment {
    padding-block: 60px;
  }
}
.treatment__title {
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .treatment__title {
    font-size: 40px;
  }
}
.treatment__boxes {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .treatment__boxes {
    margin-top: 60px;
    gap: 40px;
  }
}
.treatment-box {
  background-color: #fff;
  padding: 24px;
  border-radius: 20px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .treatment-box {
    padding: 20px 18px;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .treatment-box.is__reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .treatment-box__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 50px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .treatment-box__contents.is__reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.treatment-box__thumb {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .treatment-box__thumb {
    width: 38.0434782609%;
  }
}
.treatment-box__thumb img {
  margin: 0 auto;
  display: block;
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
.treatment-box__body {
  margin-top: 18px;
}
@media screen and (min-width: 768px) {
  .treatment-box__body {
    margin-top: 0;
    width: 56.5217391304%;
  }
}
.treatment-box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .treatment-box__head {
    gap: 28px;
  }
}
.treatment-box__number {
  font-size: 70px;
  color: #fabe00;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .treatment-box__number {
    font-size: 110px;
  }
}
.treatment-box__title {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .treatment-box__title {
    font-size: 32px;
    letter-spacing: 2px;
  }
}
.treatment-box__text {
  font-size: 15px;
  line-height: 2;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .treatment-box__text {
    font-size: 18px;
    margin-top: 16px;
  }
}

/* ===============================================
# support
=============================================== */
.support {
  background-color: #fff;
}
.support__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .support__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}
@media screen and (min-width: 768px) {
  .support__body {
    width: 50%;
  }
}
.support__body--title {
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .support__body--title {
    font-size: 26px;
  }
}
.support__body--text {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .support__body--text {
    margin-top: 32px;
  }
}
.support__body--text p {
  font-size: 15px;
  font-weight: 700;
  border-bottom: 1px dotted #111;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .support__body--text p {
    font-size: 18px;
  }
}
.support__body--text p::before {
  content: "✔️";
  margin-right: 8px;
}
.support__thumb {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .support__thumb {
    width: 50%;
  }
}

/* ===============================================
# Map
=============================================== */
.map {
  width: 100%;
  max-width: 800px;
  padding-block: 40px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .map {
    max-width: none;
    padding-block: 60px;
  }
}

.iframe-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}
@media screen and (min-width: 768px) {
  .iframe-wrap {
    height: 700px;
    padding-top: 0;
  }
}

.iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ===============================================
# Footer
=============================================== */
.footer {
  background: #fff;
  padding: 10px;
  text-align: center;
}

.copy__right {
  font-size: 12px;
  color: #908f8f;
}

/* ===============================================
# Age
=============================================== */
.ageafter {
  margin-top: 120px;
}
.ageafter__title {
  text-align: center;
  margin-top: 40px;
}
.ageafter__title span {
  display: block;
}
.ageafter__title--main {
  font-weight: 700;
  font-size: 32px;
}
@media screen and (min-width: 768px) {
  .ageafter__title--main {
    font-size: 40px;
  }
}
.ageafter__title--sub {
  font-weight: 700;
  font-size: 56px;
}
@media screen and (min-width: 768px) {
  .ageafter__title--sub {
    font-size: 80px;
  }
}
.ageafter__contents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem 1rem;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .ageafter__contents {
    grid-template-columns: repeat(3, 1fr);
  }
}

.banner__thumb {
  margin-top: 40px;
}
.banner__thumb img {
  display: block;
  height: 200px;
}