@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.cdnfonts.com/css/sloop");
/* modern-css-reset を採用*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

/* 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]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  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;
  }
}
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #373634;
  background-color: #fff;
}

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

a {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  display: inline-block;
}

@media (min-width: 751px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
li,
dd {
  list-style-type: none;
}

h5,
h6 {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

button {
  border: 0;
  padding: 0;
  margin: 0;
}

.is-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}

.is-tab {
  display: none;
}
@media screen and (max-width: 950px) {
  .is-tab {
    display: block;
  }
}

.l-inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding: 0 3.846vw;
  }
}
.l-inner.wide {
  max-width: 1340px;
}

.c-sec-ttl {
  text-align: center;
}
.c-sec-ttl__en {
  font-size: 24px;
  font-family: "Sloop", sans-serif;
  color: #D4A14E;
  letter-spacing: 0.1em;
  line-height: 1.2083333333;
}
@media screen and (max-width: 768px) {
  .c-sec-ttl__en {
    font-size: 5.128vw;
  }
}
.c-sec-ttl__ja {
  margin-top: 2px;
  font-size: 40px;
  letter-spacing: 0.08em;
  line-height: 1.425;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .c-sec-ttl__ja {
    margin-top: 0;
    font-size: 6.154vw;
  }
}

.c-btn {
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 716px;
  width: 100%;
  border-radius: 144px;
  margin: auto;
  background-color: #292826;
  border: 2px solid #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.16);
}
.c-btn::before {
  background-color: #fff;
  content: "";
  display: block;
  position: absolute;
  top: -100px;
  left: 0;
  width: 30px;
  height: 100%;
  opacity: 0;
  transition: 300ms;
  animation: shine 3s ease-in-out;
  animation-iteration-count: infinite;
  z-index: 5;
  pointer-events: none;
}
.c-btn__link {
  position: relative;
  color: #fff;
  font-weight: 600;
  line-height: 1.4411764706;
  width: 100%;
  overflow: hidden;
  padding: 12px 20px;
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  .c-btn__link {
    font-size: 5.128vw;
    line-height: 1.45;
    padding: 2.564vw 3.59vw;
  }
}
.c-btn__link::before {
  position: absolute;
  content: "";
  width: 107%;
  height: 127%;
  top: -66%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #404040;
  mix-blend-mode: color-dodge;
  border-radius: 50%;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .c-btn__link::before {
    width: 109%;
    height: 128%;
    top: -68%;
  }
}
.c-btn__link::after {
  position: absolute;
  content: "";
  top: 53%;
  right: 36px;
  transform: translateY(-50%);
  width: 27px;
  height: 27px;
  background: url(../img/icon_arrow.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .c-btn__link::after {
    width: 4.615vw;
    height: 4.615vw;
    right: 4.872vw;
  }
}
.c-btn__text {
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 769px) {
  .c-btn.clinic {
    max-width: 582px;
  }
  .c-btn.clinic .c-btn__link::before {
    width: 110%;
    height: 127%;
    top: -66%;
  }
}
@media screen and (max-width: 768px) {
  .c-btn.clinic .c-btn__link {
    font-size: 4.359vw;
    padding: 3.077vw 3.59vw 2.564vw;
  }
}

@keyframes shine {
  0%, 20% {
    transform: scale(2) rotate(45deg);
    opacity: 0;
  }
  24% {
    transform: scale(20) rotate(45deg);
    opacity: 0.6;
  }
  28% {
    transform: scale(30) rotate(45deg);
    opacity: 0.4;
  }
  32% {
    transform: scale(45) rotate(45deg);
    opacity: 0.2;
  }
  40%, 100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.c-faq {
  border-bottom: 1px solid #dbd5c9;
}
.c-faq__head {
  cursor: pointer;
  padding: 26px 26px;
}
@media screen and (max-width: 768px) {
  .c-faq__head {
    padding: 4.359vw 3.077vw 4.359vw 0;
  }
}
.c-faq__head .c-faq__question {
  padding-left: 27px;
  padding-right: 44px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-faq__head .c-faq__question {
    font-size: 3.846vw;
  }
}
.c-faq__head .c-faq__question.is-open::after {
  background: transparent url(../img/icon_minus.svg) no-repeat center center/contain;
}
.c-faq__head .c-faq__question::before {
  content: "Q.";
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c-faq__head .c-faq__question::before {
    font-size: 4.103vw;
    margin-top: -0.513vw;
  }
}
.c-faq__head .c-faq__question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: transparent url(../img/icon_plus.svg) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .c-faq__head .c-faq__question::after {
    width: 5.128vw;
    height: 5.128vw;
  }
}
.c-faq__body {
  padding: 2px 26px 33px;
  display: none;
}
@media screen and (max-width: 768px) {
  .c-faq__body {
    padding: 3.077vw 3.077vw 4.359vw 0;
  }
}
.c-faq__body .c-faq__answer {
  padding-left: 27px;
  padding-right: 72px;
  position: relative;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .c-faq__body .c-faq__answer {
    font-size: 3.846vw;
    padding-right: 9.231vw;
    line-height: 1.6666666667;
  }
}
.c-faq__body .c-faq__answer::before {
  content: "A.";
  position: absolute;
  top: 0;
  left: 0;
  color: #b19261;
}
@media screen and (max-width: 768px) {
  .c-faq__body .c-faq__answer::before {
    font-size: 4.103vw;
    margin-top: -0.513vw;
  }
}
.c-faq__body dl {
  margin-top: 28px;
}
@media screen and (max-width: 768px) {
  .c-faq__body dl {
    margin-top: 5.128vw;
  }
}
.c-faq__body dt {
  float: left;
}
.c-faq__body dt:not(:first-child) {
  margin-top: 18px;
}
@media screen and (max-width: 768px) {
  .c-faq__body dt:not(:first-child) {
    margin-top: 3.077vw;
  }
}
.c-faq__body dd {
  margin-left: 120px;
  margin-top: 18px;
}
@media screen and (max-width: 768px) {
  .c-faq__body dd {
    margin-left: 29.487vw;
    margin-top: 3.077vw;
  }
}

.p-header {
  position: relative;
  z-index: 30;
  background: transparent;
}
.p-header__inner {
  padding: 1.563vw;
}
@media screen and (max-width: 768px) {
  .p-header__inner {
    padding: 5.128vw 3.846vw;
  }
}
.p-header__logo {
  max-width: 13.385vw;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-header__logo {
    max-width: 43.077vw;
  }
}

.p-mv {
  background-color: #f5ecdf;
  position: relative;
  overflow: hidden;
  padding: 6.51vw 0 4.479vw;
  margin-top: -5.208vw;
}
@media screen and (max-width: 768px) {
  .p-mv {
    background: url(../img/bg_mv.webp) no-repeat center/cover;
    padding: 22.564vw 0 8.462vw;
    margin-top: -16.923vw;
  }
}
.p-mv::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  right: 37%;
  background: rgb(255, 255, 255);
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgb(244, 235, 221) 80%, rgb(244, 235, 221) 100%);
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgba(244, 235, 221, 0) 80%, rgba(244, 235, 221, 0) 100%);
  pointer-events: none;
  z-index: 3;
  max-width: 58.333vw;
}
@media screen and (max-width: 768px) {
  .p-mv::before {
    content: none;
  }
}
.p-mv__inner.wide {
  max-width: 1340px;
  max-width: 69.792vw;
}
@media screen and (max-width: 768px) {
  .p-mv__inner.wide {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-mv__inner {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.p-mv__text {
  z-index: 5;
  position: relative;
  max-width: 39.115vw;
}
@media screen and (max-width: 768px) {
  .p-mv__text {
    max-width: 100%;
    padding: 0 3.846vw;
  }
}
.p-mv__lead {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  line-height: 1.4137931034;
  font-size: 1.51vw;
}
.p-mv__lead span {
  font-family: "Times New Roman", serif;
  line-height: 1.1379310345;
}
@media screen and (max-width: 768px) {
  .p-mv__lead {
    font-size: 3.846vw;
  }
}
.p-mv__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.042vw;
}
.p-mv__main p {
  font-weight: 600;
  letter-spacing: 0.06em;
  font-family: "Noto Serif JP", serif;
  font-size: 3.438vw;
}
.p-mv__main div {
  margin: 0.781vw auto;
}
@media screen and (max-width: 768px) {
  .p-mv__main {
    margin-top: 2.564vw;
  }
  .p-mv__main p {
    font-size: 7.692vw;
  }
  .p-mv__main div {
    margin: 9px auto;
  }
}
.p-mv__achievements {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.458vw;
  margin-top: 2.448vw;
  max-width: 36.458vw;
}
@media screen and (max-width: 768px) {
  .p-mv__achievements {
    gap: 3.333vw;
    margin-top: 5.128vw;
    max-width: 100%;
  }
}
.p-mv__image {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  max-width: 47.292vw;
  left: auto;
  right: -3.385vw;
}
@media screen and (max-width: 768px) {
  .p-mv__image {
    position: static;
    width: 106.667vw;
    margin-top: 8.974vw;
    max-width: 106.667vw;
  }
}

.p-achievement {
  font-family: "Noto Serif JP", serif;
  text-align: center;
  position: relative;
}
.p-achievement::before, .p-achievement::after {
  position: absolute;
  content: "";
  top: 0;
  z-index: -1;
  width: 2.188vw;
  height: 4.948vw;
}
@media screen and (max-width: 768px) {
  .p-achievement::before, .p-achievement::after {
    width: 6.154vw;
    height: 13.846vw;
  }
}
.p-achievement::before {
  left: 0;
  background: url(../img/laurel_left.webp) no-repeat center/contain;
}
.p-achievement::after {
  right: 0;
  background: url(../img/laurel_right.webp) no-repeat center/contain;
}
.p-achievement__ttl {
  letter-spacing: 0.03em;
  font-size: 1.25vw;
}
@media screen and (max-width: 768px) {
  .p-achievement__ttl {
    font-size: 3.077vw;
  }
}
.p-achievement__num {
  line-height: 1;
  font-size: 1.458vw;
}
.p-achievement__num span {
  font-family: "Times New Roman", serif;
  background: linear-gradient(180deg, rgb(221, 175, 110) 0%, rgb(146, 98, 22) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 3px;
  font-size: 2.917vw;
}
@media screen and (max-width: 768px) {
  .p-achievement__num {
    font-size: 3.59vw;
    margin-top: 0.513vw;
  }
  .p-achievement__num span {
    font-size: 8.205vw;
  }
}
.p-achievement__note {
  letter-spacing: 0.03em;
  font-size: 0.833vw;
  margin-top: 0.365vw;
}
@media screen and (max-width: 768px) {
  .p-achievement__note {
    font-size: 2.308vw;
    margin-top: 1.026vw;
  }
}

.p-about {
  padding: 161px 0 85px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-about {
    padding: 52.564vw 0 15.385vw;
  }
}
.p-about::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 659px;
  height: 365px;
  background: url(../img/img_about_01.webp) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-about::before {
    width: 74.359vw;
    height: 41.026vw;
  }
}
.p-about::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 484px;
  height: 440px;
  background: url(../img/img_about_02.webp) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-about::after {
    content: none;
  }
}
.p-about__inner {
  position: relative;
}
.p-about__inner::before {
  position: absolute;
  content: "";
  height: 80px;
  width: 1px;
  background-color: #bcb2a3;
  top: -40px;
  transform: translateY(-100%);
  left: 50%;
}
@media screen and (max-width: 768px) {
  .p-about__inner::before {
    top: -7.692vw;
  }
}
.p-about__ttl {
  font-size: 26px;
  line-height: 1.4375;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
.p-about__ttl span {
  font-size: 32px;
  line-height: 1.425;
}
@media screen and (max-width: 768px) {
  .p-about__ttl {
    font-size: 7.179vw;
  }
  .p-about__ttl span {
    font-size: 8.205vw;
    line-height: 1.4375;
  }
}
.p-about__message {
  font-size: 18px;
  line-height: 2;
  text-align: center;
  margin-top: 40px;
}
.p-about__message span {
  font-weight: bold;
  color: #D4A14E;
}
@media screen and (max-width: 768px) {
  .p-about__message {
    margin-top: 6.154vw;
    font-size: 4.615vw;
    line-height: 1.6111111111;
    text-align: justify;
  }
}
.p-about__box {
  margin: 33px auto 0;
  border: 1px solid #bdb3a2;
  max-width: 800px;
  position: relative;
}
.p-about__box::before, .p-about__box::after {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  top: 10px;
}
@media screen and (max-width: 768px) {
  .p-about__box::before, .p-about__box::after {
    width: 4.615vw;
    height: 4.615vw;
    bottom: 2.564vw;
  }
}
.p-about__box::before {
  left: 10px;
  background: url(../img/icon_about_01.webp) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-about__box::before {
    left: 2.564vw;
  }
}
.p-about__box::after {
  right: 10px;
  background: url(../img/icon_about_02.webp) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-about__box::after {
    right: 2.564vw;
  }
}
.p-about__list {
  padding: 35px 48px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-about__list {
    padding: 13.59vw 2.564vw 13.333vw;
  }
}
.p-about__list::before, .p-about__list::after {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-about__list::before, .p-about__list::after {
    width: 4.615vw;
    height: 4.615vw;
    bottom: 2.564vw;
  }
}
.p-about__list::before {
  left: 10px;
  background: url(../img/icon_about_04.webp) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-about__list::before {
    left: 2.564vw;
  }
}
.p-about__list::after {
  right: 10px;
  background: url(../img/icon_about_03.webp) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-about__list::after {
    right: 2.564vw;
  }
}
.p-about__item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-about__item {
    align-items: flex-start;
  }
}
.p-about__item:not(:first-child) {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .p-about__item:not(:first-child) {
    margin-top: 2.821vw;
  }
}
.p-about__category {
  width: 126px;
  text-align: center;
}
.p-about__category span {
  font-size: 15px;
  text-align: center;
  padding: 2px 9px 3px;
  background-color: #f6eddf;
  border-radius: 16px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .p-about__category {
    width: fit-content;
    white-space: nowrap;
  }
  .p-about__category span {
    font-size: 4.103vw;
    padding: 0.769vw 3.846vw 1.282vw;
    border-radius: 4.103vw;
  }
}
.p-about__detail {
  margin-left: 18px;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .p-about__detail {
    margin-left: 1.795vw;
    font-size: 4.103vw;
    margin-top: 0.769vw;
  }
}

.p-problem {
  padding: 106px 0 231px;
  filter: drop-shadow(0 11px 20px rgba(0, 0, 0, 0.16));
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-problem {
    padding: 11.282vw 0 26.154vw;
  }
}
.p-problem::after {
  background: url(../img/bg_problem.webp) no-repeat center/cover;
  clip-path: polygon(0 0, 100% 0%, 100% 82%, 50% 100%, 0 82%);
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-problem::after {
    clip-path: polygon(0 0, 100% 0%, 100% 91%, 50% 100%, 0 91%);
  }
}
@media screen and (max-width: 768px) {
  .p-problem__inner {
    padding: 0;
    overflow: hidden;
  }
}
.p-problem__contents {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-problem__contents {
    flex-direction: column-reverse;
    margin: 0 3.846vw;
  }
}
.p-problem__text {
  max-width: 674px;
  width: 100%;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .p-problem__text {
    margin-top: 9.744vw;
  }
}
.p-problem__ttl {
  font-weight: bold;
  color: #fff;
  font-size: 42px;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  position: relative;
}
.p-problem__ttl::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -17px;
  transform: translate(-50%, 100%);
  width: 4px;
  height: 22px;
  background: url(../img/dot_problem.webp) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-problem__ttl {
    font-size: 8.205vw;
  }
  .p-problem__ttl::after {
    bottom: -5.128vw;
    width: 1.026vw;
    height: 5.641vw;
  }
}
.p-problem__list {
  margin-top: 65px;
}
@media screen and (max-width: 768px) {
  .p-problem__list {
    margin-top: 17.179vw;
  }
}
.p-problem__item {
  background-color: rgba(44, 44, 44, 0.86);
  padding: 15px 16px 15px 30px;
}
.p-problem__item p {
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  padding-left: 28px;
  position: relative;
}
.p-problem__item p::before {
  position: absolute;
  content: "";
  width: 19px;
  height: 17px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: url(../img/icon_caution.svg) no-repeat center/contain;
}
.p-problem__item p span {
  color: #F2D041;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-problem__item {
    padding: 2.821vw 3.077vw 2.821vw 5.128vw;
  }
  .p-problem__item p {
    font-size: 4.615vw;
    padding-left: 8.462vw;
  }
  .p-problem__item p::before {
    transform: translateY(-100%);
    width: 4.872vw;
    height: 4.359vw;
  }
}
.p-problem__item:not(:first-child) {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-problem__item:not(:first-child) {
    margin-top: 4.103vw;
  }
}
.p-problem__images {
  max-width: 555px;
  margin-left: -90px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1100px) {
  .p-problem__images {
    max-width: 450px;
  }
}
@media screen and (max-width: 768px) {
  .p-problem__images {
    max-width: 70vw;
    margin-left: -3.846vw;
  }
}
.p-problem__image:nth-of-type(2) {
  position: absolute;
  right: -80px;
  width: 321px;
  top: 264px;
}
@media screen and (max-width: 1340px) {
  .p-problem__image:nth-of-type(2) {
    right: 20px;
    top: 300px;
  }
}
@media screen and (max-width: 768px) {
  .p-problem__image:nth-of-type(2) {
    max-width: 40.513vw;
    width: 100%;
    right: -32.051vw;
    top: 23.333vw;
  }
}

.p-solution {
  padding: 242px 0 0;
  margin-top: -132px;
  background: url(../img/bg_solution.webp) no-repeat center/cover;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-solution {
    padding: 29.487vw 0 15.385vw;
    margin-top: -16.667vw;
  }
}
.p-solution__text {
  max-width: 1140px;
  margin: 0 auto;
  background-color: #fff;
  padding: 37px 46px 82px;
}
@media screen and (max-width: 768px) {
  .p-solution__text {
    padding: 8.718vw 4.103vw 14.872vw;
  }
}
.p-solution__lead {
  font-family: "Noto Serif JP", serif;
  font-size: 38px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.p-solution__lead span {
  font-family: "Times New Roman", serif;
  font-size: 41px;
  font-weight: 400;
  margin-top: 10px;
}
.p-solution__lead::before, .p-solution__lead::after {
  background-color: #CEB78F;
  content: "";
  flex-grow: 1;
  height: 1px;
}
.p-solution__lead::before {
  margin-right: 50px;
}
.p-solution__lead::after {
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .p-solution__lead {
    font-size: 5.128vw;
  }
  .p-solution__lead span {
    font-size: 5.897vw;
    margin-top: 1.282vw;
  }
  .p-solution__lead::before {
    margin-right: 3.077vw;
  }
  .p-solution__lead::after {
    margin-left: 3.077vw;
  }
}
.p-solution__list {
  margin: 26px 31px 0;
}
@media screen and (max-width: 768px) {
  .p-solution__list {
    margin: 4.615vw auto 0;
  }
}
.p-solution__item {
  font-family: "Noto Serif JP", serif;
  font-size: 27px;
  letter-spacing: 0.07em;
  padding-left: 32px;
  position: relative;
}
.p-solution__item::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../img/icon_check.svg) no-repeat center/contain;
  width: 20px;
  height: 17px;
}
.p-solution__item span {
  font-weight: bold;
  background: linear-gradient(transparent 64%, #F7EDDE 36%);
}
@media screen and (max-width: 768px) {
  .p-solution__item {
    font-size: 5.128vw;
    line-height: 1.5;
    padding-left: 7.179vw;
    text-align: justify;
  }
  .p-solution__item::before {
    top: 0;
    transform: translateY(50%);
    width: 5.128vw;
    height: 4.359vw;
  }
}
.p-solution__item:not(:first-child) {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .p-solution__item:not(:first-child) {
    margin-top: 5.641vw;
  }
}
.p-solution__gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: -28px;
}
@media screen and (max-width: 768px) {
  .p-solution__gallery {
    margin-top: -7.436vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-right: -3.846vw;
    margin-left: -3.846vw;
  }
}
@media screen and (max-width: 768px) {
  .p-solution__photo {
    max-width: 33.333vw;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-solution__photo:nth-of-type(1) {
    order: 1;
  }
  .p-solution__photo:nth-of-type(2) {
    order: 3;
  }
  .p-solution__photo:nth-of-type(3) {
    order: 2;
  }
  .p-solution__photo:nth-of-type(4) {
    order: 4;
  }
  .p-solution__photo:nth-of-type(5) {
    order: 5;
  }
}
.p-solution__bottom {
  display: flex;
  align-items: flex-end;
  position: relative;
  margin-top: 122px;
}
@media screen and (max-width: 1000px) {
  .p-solution__bottom {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .p-solution__bottom {
    flex-direction: column;
    margin-top: 10.769vw;
  }
}
.p-solution__left {
  max-width: 48%;
  max-width: 49.5%;
  width: 100%;
  margin-bottom: 65px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1000px) {
  .p-solution__left {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-solution__left {
    max-width: 100%;
    margin-bottom: 0;
  }
}
.p-solution__message {
  text-align: center;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  font-size: 50px;
}
@media screen and (max-width: 768px) {
  .p-solution__message {
    font-size: 7.692vw;
    line-height: 1.4;
  }
}
.p-solution__voices {
  margin-top: 25px;
}
@media screen and (max-width: 1000px) {
  .p-solution__voices {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-solution__voices {
    margin-top: 6.154vw;
  }
}
.p-solution__voice {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 20px 33px 20px 25px;
  max-width: 600px;
  width: 100%;
}
.p-solution__voice picture {
  width: 73px;
  flex-shrink: 0;
}
.p-solution__voice p {
  font-size: 18px;
  line-height: 1.7777777778;
  margin-left: 18px;
  text-align: justify;
}
.p-solution__voice p span {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-solution__voice {
    max-width: 100%;
    padding: 3.333vw 2.564vw;
  }
  .p-solution__voice picture {
    width: 10.513vw;
  }
  .p-solution__voice p {
    font-size: 4.103vw;
    line-height: 1.5;
    margin-left: 2.564vw;
  }
}
.p-solution__voice:not(:first-child) {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .p-solution__voice:not(:first-child) {
    margin-top: 2.564vw;
  }
}
.p-solution__voice:nth-child(even) {
  margin-left: 43px;
}
@media screen and (max-width: 768px) {
  .p-solution__voice:nth-child(even) {
    margin-left: 0;
  }
}
.p-solution__right {
  position: absolute;
  bottom: 0;
  right: -138px;
  max-width: 59.4%;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .p-solution__right {
    right: 0px;
    max-width: 300px;
    margin-top: -100px;
    z-index: 4;
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .p-solution__right {
    display: none;
  }
}

.p-ba1 {
  padding: 130px 0 143px;
  background: url(../img/bg_ba.webp) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .p-ba1 {
    padding: 19.744vw 0 15.385vw;
  }
}
.p-ba1__lead {
  font-family: "Noto Serif JP", serif;
  text-align: center;
  font-weight: 600;
}
.p-ba1__lead p:nth-child(1) {
  font-size: 34px;
}
.p-ba1__lead p:nth-child(1) span {
  font-family: "Times New Roman", serif;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .p-ba1__lead p:nth-child(1) {
    font-size: 3.846vw;
  }
}
.p-ba1__lead p:nth-child(2) {
  font-size: 46px;
  position: relative;
  display: inline-block;
  z-index: 3;
  padding-left: 94px;
  padding-right: 65px;
  line-height: 1.65;
}
.p-ba1__lead p:nth-child(2) .small {
  font-size: 40px;
}
.p-ba1__lead p:nth-child(2)::before, .p-ba1__lead p:nth-child(2)::after {
  position: absolute;
  content: "";
  width: 67px;
  height: 156px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.p-ba1__lead p:nth-child(2) .dot {
  background-image: radial-gradient(circle at center, #373634 14%, transparent 15%);
  background-position: top right 17%;
  background-repeat: repeat-x;
  background-size: 0.98em 0.3em;
  padding-top: 0.15em;
}
.p-ba1__lead p:nth-child(2)::before {
  left: 0;
  background: url(../img/laurel_left_orange.webp) no-repeat center/contain;
}
.p-ba1__lead p:nth-child(2)::after {
  right: 0;
  background: url(../img/laurel_right_orange.webp) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-ba1__lead p:nth-child(2) {
    font-size: 5.128vw;
    padding-left: 9.487vw;
    padding-right: 7.436vw;
    margin-top: -1.538vw;
  }
  .p-ba1__lead p:nth-child(2) .small {
    font-size: 4.359vw;
  }
  .p-ba1__lead p:nth-child(2)::before, .p-ba1__lead p:nth-child(2)::after {
    width: 7.692vw;
    height: 17.436vw;
  }
}
.p-ba1__connection {
  position: relative;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-weight: 600;
  margin-top: 35px;
}
.p-ba1__connection span {
  position: relative;
  z-index: 2;
}
.p-ba1__connection::after {
  position: absolute;
  content: "";
  max-width: 354px;
  width: 100%;
  height: 68px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/triangle.svg) no-repeat center/contain;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-ba1__connection {
    font-size: 4.103vw;
    margin-top: 5.385vw;
  }
  .p-ba1__connection::after {
    max-width: 43.077vw;
    height: 8.462vw;
  }
}
.p-ba1__message {
  max-width: 706px;
  width: 100%;
  margin: 45px auto 0;
}
@media screen and (max-width: 768px) {
  .p-ba1__message {
    margin-top: 5.897vw;
  }
}
@media screen and (min-width: 769px) {
  .p-ba1__wrapper {
    margin-top: 54px;
    padding: 76px 80px;
    background-color: rgba(255, 255, 255, 0.92);
  }
}

@media screen and (min-width: 769px) {
  .p-ba__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px 26px;
  }
}
@media screen and (max-width: 768px) {
  .p-ba__item {
    margin-top: 7.692vw;
    padding: 7.692vw 5.128vw;
    background-color: rgba(255, 255, 255, 0.92);
  }
}
.p-ba dl:not(:first-of-type) {
  border-top: 1px solid #C4C4C4;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .p-ba dl:first-of-type {
    margin-top: 0;
  }
}
.p-ba dt {
  color: #463616;
  font-size: 15px;
  font-weight: 600;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .p-ba dt {
    margin-top: 4.103vw;
    font-size: 3.846vw;
  }
}
.p-ba dd {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5714285714;
}
@media screen and (max-width: 768px) {
  .p-ba dd {
    margin-top: 1px;
    font-size: 3.59vw;
  }
}

.swiper-button-next, .swiper-button-prev {
  top: 44%;
  width: 10.256vw;
  height: 10.256vw;
}
@media screen and (min-width: 769px) {
  .swiper-button-next, .swiper-button-prev {
    display: none;
  }
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/icon_left.svg) no-repeat center/contain;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/icon_right.svg) no-repeat center/contain;
}

.p-cta {
  background: url(../img/bg_cta.webp) no-repeat center top/cover;
  text-align: center;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .p-cta {
    padding: 11.026vw 0 10.256vw;
  }
}
.p-cta__text {
  color: #fff;
  font-weight: 600;
  line-height: 1.4285714286;
  position: relative;
  display: inline-block;
  padding: 0 33px;
  font-size: 20px;
}
.p-cta__text::before, .p-cta__text::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 26px;
  bottom: 3px;
}
.p-cta__text::before {
  left: 0;
  background: url(../img/line_cta_left.webp) no-repeat center/contain;
}
.p-cta__text::after {
  right: 0;
  background: url(../img/line_cta_right.webp) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-cta__text {
    font-size: 5.128vw;
    padding: 0 8.718vw;
  }
  .p-cta__text::before, .p-cta__text::after {
    width: 6.41vw;
    height: 6.667vw;
    bottom: 0;
  }
}
.p-cta__btn {
  margin-top: 6px;
}
@media screen and (max-width: 768px) {
  .p-cta__btn {
    margin-top: 2.051vw;
  }
}

.p-promise {
  padding: 70px 0 110px;
  background: url(../img/bg_promise.webp) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .p-promise {
    padding: 11.795vw 0 15.385vw;
  }
}
.p-promise__ttl {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.4375;
}
.p-promise__ttl p {
  width: fit-content;
  border-bottom: 1px solid #bdb3a2;
  padding-bottom: 3px;
  margin: 12px auto 0;
}
.p-promise__ttl p:nth-child(2) {
  margin-top: 0;
}
.p-promise__ttl .small {
  font-size: 40px;
  line-height: 1.425;
}
.p-promise__ttl .strong {
  color: #D4A14E;
  font-size: 56px;
  line-height: 1.4285714286;
  padding: 0 34px;
  position: relative;
}
.p-promise__ttl .strong span {
  font-size: 48px;
  line-height: 1.4375;
}
.p-promise__ttl .strong::before, .p-promise__ttl .strong::after {
  position: absolute;
  content: "";
  width: 34px;
  height: 26px;
}
.p-promise__ttl .strong::before {
  left: 0;
  top: 0;
  background: url(../img/quote_left.svg) no-repeat center/contain;
}
.p-promise__ttl .strong::after {
  right: 0;
  bottom: 0;
  background: url(../img/quote_right.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-promise__ttl {
    font-size: 5.897vw;
    line-height: 1.4347826087;
  }
  .p-promise__ttl p:nth-child(2) {
    margin-top: 1.538vw;
  }
  .p-promise__ttl .small {
    font-size: 4.872vw;
  }
  .p-promise__ttl .strong {
    font-size: 6.923vw;
    padding: 0 4.872vw;
  }
  .p-promise__ttl .strong span {
    font-size: 5.897vw;
  }
  .p-promise__ttl .strong::before, .p-promise__ttl .strong::after {
    width: 4.359vw;
    height: 3.333vw;
  }
}
.p-promise__contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .p-promise__contents {
    flex-direction: column-reverse;
    margin-top: 6.41vw;
  }
}
.p-promise__text {
  max-width: 59%;
}
.p-promise__text p {
  font-size: 18px;
  line-height: 1.8888888889;
  letter-spacing: 0.03em;
}
.p-promise__text p:not(:first-child) {
  margin-top: 26px;
}
.p-promise__text .strong {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.3076923077;
  color: #D4A14E;
}
.p-promise__text .name {
  font-size: 16px;
}
.p-promise__text .name span {
  font-size: 24px;
  line-height: 1.5;
  margin-left: 7px;
}
@media screen and (max-width: 768px) {
  .p-promise__text {
    max-width: 100%;
    margin-top: 8.462vw;
    text-align: justify;
  }
  .p-promise__text p {
    font-size: 3.846vw;
    line-height: 1.6666666667;
  }
  .p-promise__text .strong {
    font-size: 5.897vw;
  }
  .p-promise__text p:not(:first-child) {
    margin-top: 3.846vw;
  }
  .p-promise__text .name {
    font-size: 3.59vw;
  }
  .p-promise__text .name span {
    font-size: 5.128vw;
  }
}
.p-promise__image {
  max-width: 34%;
}
@media screen and (max-width: 768px) {
  .p-promise__image {
    max-width: 82.051vw;
  }
}

.p-caution {
  background: rgb(55, 54, 52);
  background: linear-gradient(180deg, rgb(55, 54, 52) 0%, rgb(252, 248, 240) 100%);
}
.p-caution__top {
  padding: 55px 0 70px;
}
@media screen and (max-width: 768px) {
  .p-caution__top {
    padding: 14.103vw 0 9.231vw;
  }
}
.p-caution__ttl {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.4339622642;
}
.p-caution__ttl .strong {
  font-size: 54px;
  line-height: 1.4264705882;
  display: inline;
  background-image: linear-gradient(0deg, #fff 0px, #fff 2px, transparent 2px, transparent 7px, #fff 7px, #fff 9px);
  background-size: 100% 9px;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 14px;
}
.p-caution__ttl .strong .small {
  font-size: 49px;
}
.p-caution__ttl .dot {
  background-image: radial-gradient(circle at center, #fff 13%, transparent 14%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: 0.15em;
}
@media screen and (max-width: 768px) {
  .p-caution__ttl {
    font-size: 6.41vw;
    line-height: 1.44;
    line-height: 1.7;
  }
  .p-caution__ttl .strong {
    font-size: 8.205vw;
    line-height: 1.8;
    display: inline;
    background-image: linear-gradient(0deg, #fff 0px, #fff 0.256vw, transparent 0.256vw, transparent 1.282vw, #fff 1.282vw, #fff 1.538vw);
    background-size: 100% 1.538vw;
    padding-bottom: 0.769vw;
  }
  .p-caution__ttl .strong::after {
    bottom: -1.026vw;
  }
  .p-caution__ttl .strong .small {
    font-size: 6.41vw;
  }
}
.p-caution__bottom {
  background: url(../img/img_caution.webp) no-repeat center top/cover;
}
@media screen and (max-width: 768px) {
  .p-caution__bottom {
    background: url(../img/img_caution_sp.webp) no-repeat center top/contain;
  }
}
.p-caution__text {
  padding-top: 453px;
  padding-bottom: 120px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-caution__text {
    padding-top: 44.872vw;
    padding-bottom: 21.538vw;
  }
}
.p-caution__lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p-caution__lead p {
  font-size: 37px;
  padding: 14px 20px;
  background-color: rgba(26, 26, 26, 0.86);
  color: #fff;
  width: fit-content;
}
.p-caution__lead p .strong {
  color: #F2D041;
  font-weight: bold;
}
.p-caution__lead p:not(:first-child) {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .p-caution__lead p {
    font-size: 5.128vw;
    padding: 1.282vw 1.795vw;
  }
  .p-caution__lead p:not(:first-child) {
    margin-top: 1.795vw;
  }
}
.p-caution__desc {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 84px 30px 57px;
  margin-top: -29px;
  font-size: 22px;
  line-height: 1.2857142857;
  box-shadow: 0 0 33px rgba(0, 0, 0, 0.16);
}
.p-caution__desc .strong {
  font-weight: 600;
  color: #D4A14E;
}
.p-caution__desc p:not(:first-child) {
  margin-top: 28px;
}
@media screen and (max-width: 768px) {
  .p-caution__desc {
    padding: 12.308vw 3.846vw 7.949vw;
    font-size: 4.615vw;
    text-align: justify;
    margin-top: -5.641vw;
    line-height: 1.5;
  }
  .p-caution__desc p:not(:first-child) {
    margin-top: 3.846vw;
  }
}

.p-ba2 {
  background: url(../img/bg_ba2.webp) no-repeat center/cover;
  padding: 132px 0 149px;
}
@media screen and (max-width: 768px) {
  .p-ba2 {
    padding: 11.795vw 0 9.744vw;
  }
}
.p-ba2__message {
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
.p-ba2__message p:nth-child(1) {
  font-weight: 600;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-ba2__message p:nth-child(1) .en {
  font-family: "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
  margin-top: 7px;
}
.p-ba2__message p:nth-child(1) .box {
  font-size: 40px;
  color: #D4A14E;
  border: 1px solid #D4A14E;
  padding: 5px 12px;
  background-color: #fff;
  margin: 0 6px;
}
.p-ba2__message p:nth-child(1) .tab {
  display: none;
}
.p-ba2__message p:nth-child(2) {
  margin-top: 4px;
  font-weight: 600;
  font-size: 58px;
}
.p-ba2__message p:nth-child(2) .small {
  font-size: 50px;
}
.p-ba2__message p:nth-child(2) .color {
  background: linear-gradient(180deg, rgb(221, 175, 110) 0%, rgb(191, 129, 31) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .p-ba2__message p:nth-child(1) {
    display: block;
  }
  .p-ba2__message p:nth-child(1) .tab {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .p-ba2__message p:nth-child(1) {
    font-size: 3.333vw;
  }
  .p-ba2__message p:nth-child(1) .en {
    font-size: 4.359vw;
    margin-top: 0.513vw;
  }
  .p-ba2__message p:nth-child(1) .box {
    font-size: 4.359vw;
    padding: 0.513vw 1.282vw;
    margin: 0 0.769vw;
  }
  .p-ba2__message p:nth-child(2) {
    font-size: 7.179vw;
    margin-top: 0.256vw;
  }
  .p-ba2__message p:nth-child(2) .small {
    font-size: 6.154vw;
  }
}
.p-ba2__desc {
  font-size: 20px;
  text-align: center;
  margin-top: 55px;
}
.p-ba2__desc .strong {
  font-weight: bold;
  color: #D4A14E;
}
.p-ba2__desc p:nth-child(2) {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .p-ba2__desc {
    font-size: 4.103vw;
    margin-top: 6.154vw;
  }
  .p-ba2__desc p:nth-child(2) {
    margin-top: 4.103vw;
  }
}
.p-ba2__wrapper {
  margin-top: 2.564vw;
}
@media screen and (min-width: 769px) {
  .p-ba2__wrapper {
    margin-top: 76px;
    padding: 84px 80px 56px;
    background-color: rgba(255, 255, 255, 0.6);
  }
}

.p-message {
  padding: 100px 0 133px;
  background: url(../img/bg_message.webp) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .p-message {
    padding: 15.385vw 0 12.821vw;
  }
}
.p-message__contents {
  margin-top: 53px;
}
@media screen and (max-width: 768px) {
  .p-message__contents {
    margin-top: 7.692vw;
  }
}
.p-message__story {
  max-width: 1000px;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.92);
  padding: 20px 20px 40px;
}
.p-message__story p {
  text-align: center;
  font-size: 18px;
  line-height: 1.8888888889;
  margin-top: 70px;
}
.p-message__story p span {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4583333333;
  color: #D4A14E;
}
@media screen and (max-width: 768px) {
  .p-message__story {
    padding: 10.256vw 4.615vw;
    overflow: hidden;
  }
  .p-message__story p {
    font-size: 3.846vw;
    margin-top: 0;
    line-height: 2.1333333333;
  }
  .p-message__story p span {
    font-size: 5.385vw;
    line-height: 1.5238095238;
  }
  .p-message__story p:not(:first-child) {
    margin-top: 10.256vw;
  }
}
.p-message__illust {
  margin: 20px auto 0;
}
.p-message__illust:nth-of-type(1) {
  max-width: 540px;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .p-message__illust:nth-of-type(1) {
    margin-right: -15.385vw;
    margin-left: -15.385vw;
    margin-top: -10.513vw;
  }
}
.p-message__illust:nth-of-type(2) {
  max-width: 312px;
}
@media screen and (max-width: 768px) {
  .p-message__illust:nth-of-type(2) {
    max-width: 72.564vw;
    margin-top: 0.256vw;
    margin-left: 2.308vw;
  }
}
.p-message__illust:nth-of-type(3) {
  max-width: 420px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-message__illust:nth-of-type(3) {
    margin-top: 5.128vw;
  }
}
.p-message__illust:nth-of-type(4) {
  max-width: 688px;
}
@media screen and (max-width: 768px) {
  .p-message__illust:nth-of-type(4) {
    margin-right: -10.256vw;
    margin-left: -13.846vw;
    margin-top: -1.282vw;
  }
}
.p-message__doctor-son {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 110px;
}
@media screen and (max-width: 768px) {
  .p-message__doctor-son {
    margin-top: 0;
    background-color: rgba(255, 255, 255, 0.92);
    padding: 3.846vw 5.128vw 10.256vw;
    flex-direction: column-reverse;
  }
}
.p-message__text {
  max-width: 59%;
}
.p-message__text p {
  font-size: 20px;
  line-height: 1.6;
}
.p-message__text p span {
  font-weight: bold;
  background: linear-gradient(transparent 60%, #edd2a7 40%);
}
.p-message__text p:not(:first-child) {
  margin-top: 30px;
}
.p-message__text .strong {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.53125;
  color: #D4A14E;
}
@media screen and (max-width: 768px) {
  .p-message__text {
    margin-top: 7.179vw;
    max-width: 100%;
  }
  .p-message__text p {
    font-size: 3.846vw;
    line-height: 1.4666666667;
  }
  .p-message__text p:not(:first-child) {
    margin-top: 4.359vw;
  }
  .p-message__text .strong {
    font-size: 6.154vw;
    line-height: 1.4166666667;
  }
}
.p-message__image {
  max-width: 34%;
}
@media screen and (max-width: 768px) {
  .p-message__image {
    max-width: 100%;
  }
}

.p-doctors {
  padding: 60px 0 10px;
  background: url(../img/bg_doctors.webp) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .p-doctors {
    padding: 11.538vw 0 4.615vw;
  }
}
@media screen and (max-width: 768px) {
  .p-doctors__inner {
    padding: 0 2.564vw;
  }
}
.p-doctors__text {
  max-width: 649px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .p-doctors__text {
    max-width: 86.667vw;
  }
}
.p-doctors__image {
  max-width: 1645px;
  margin: 35px auto 0;
}
@media screen and (max-width: 768px) {
  .p-doctors__image {
    margin-top: 4.103vw;
  }
}

.p-flow {
  padding: 100px 0 132px;
  background: url(../img/bg_flow.webp) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .p-flow {
    padding: 15.385vw 0 16.154vw;
  }
}
.p-flow__inner {
  max-width: 949px;
}
.p-flow__contents {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .p-flow__contents {
    margin-top: 5.641vw;
  }
}
.p-flow__item {
  display: flex;
  align-items: center;
  padding: 28px 0;
  position: relative;
}
.p-flow__item::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 38px;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: #C7AE85;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-flow__item {
    align-items: flex-start;
    padding: 5.128vw 0;
  }
  .p-flow__item::after {
    left: 5.385vw;
    top: calc(50% + 10.513vw);
  }
}
.p-flow__item:first-child::after {
  height: 50%;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .p-flow__item:first-child::after {
    height: 100%;
    transform: translateY(-50%);
  }
}
.p-flow__item:last-child::after {
  height: 50%;
  transform: translateY(-100%);
}
@media screen and (max-width: 768px) {
  .p-flow__item:last-child::after {
    content: none;
  }
}
.p-flow__icon {
  width: 77px;
  height: 77px;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-flow__icon {
    width: 11.026vw;
    height: 11.026vw;
  }
}
.p-flow__text {
  margin-left: 32px;
  max-width: 800px;
}
@media screen and (max-width: 768px) {
  .p-flow__text {
    margin-left: 3.333vw;
    margin-top: 1.795vw;
  }
}
.p-flow__ttl {
  font-size: 28px;
  color: #795F35;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.4285714286;
}
@media screen and (max-width: 768px) {
  .p-flow__ttl {
    font-size: 4.615vw;
  }
}
.p-flow__desc {
  line-height: 1.625;
  margin-top: 16px;
}
.p-flow__desc span {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .p-flow__desc {
    font-size: 3.59vw;
    margin-top: 1.538vw;
    line-height: 1.7142857143;
  }
  .p-flow__desc span {
    font-size: 3.077vw;
  }
}

.p-faq {
  background: url(../img/bg_faq.webp) no-repeat center top;
  padding: 106px 0;
}
@media screen and (max-width: 768px) {
  .p-faq {
    padding: 15.385vw 0;
  }
}
.p-faq__contents {
  margin-top: 44px;
}
@media screen and (max-width: 768px) {
  .p-faq__contents {
    margin-top: 10.256vw;
  }
}
.p-faq__list {
  border-top: 1px solid #DBD5C9;
}

.p-clinic {
  padding: 100px 0 90px;
  background: url(../img/bg_clinic.webp) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .p-clinic {
    padding: 16.667vw 0 13.077vw;
  }
}
.p-clinic__contents {
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .p-clinic__contents {
    margin-top: 9.231vw;
  }
}
.p-clinic__left {
  max-width: 50%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-clinic__left {
    max-width: 100%;
  }
}
.p-clinic__right {
  max-width: 43%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-clinic__right {
    max-width: 100%;
    margin-top: 6.154vw;
  }
}
.p-clinic__map {
  height: 224px;
}
.p-clinic__map iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-clinic__map {
    height: 36.154vw;
  }
}
.p-clinic__images {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .p-clinic__images {
    margin-top: 2.821vw;
    gap: 2.564vw;
  }
}
.p-clinic__image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-clinic__image img {
  width: 100%;
  height: 149px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-clinic__image img {
    height: 24.103vw;
  }
}
.p-clinic__name {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4583333333;
}
@media screen and (max-width: 768px) {
  .p-clinic__name {
    font-size: 5.128vw;
  }
}
.p-clinic__info {
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .p-clinic__info {
    margin-top: 4.359vw;
  }
}
.p-clinic__info dl {
  padding: 13px 0;
}
@media screen and (max-width: 768px) {
  .p-clinic__info dl {
    padding: 1.795vw 0;
  }
}
.p-clinic__info dt {
  float: left;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-clinic__info dt {
    font-size: 3.846vw;
  }
}
.p-clinic__info dd {
  margin-left: 104px;
}
@media screen and (max-width: 768px) {
  .p-clinic__info dd {
    font-size: 3.846vw;
  }
}
.p-clinic .c-btn {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-clinic .c-btn {
    margin-top: 3.077vw;
  }
}

.p-tab {
  width: 100%;
}
.p-tab__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.p-tab__item {
  cursor: pointer;
  font-size: 2rem;
  line-height: 1.45;
  font-weight: 600;
  text-align: center;
  padding-bottom: 17px;
  color: #C1C0C0;
  font-family: "Noto Serif JP", serif;
  border-bottom: 1px solid #878685;
}
@media screen and (max-width: 768px) {
  .p-tab__item {
    font-size: 3.077vw;
    padding-bottom: 1.026vw;
    border-bottom: 1px solid #B3B2B2;
  }
}
.p-tab__item.is-active {
  color: #D4A14E;
  border-bottom: 1px solid #D4A14E;
}
.p-tab__panel {
  width: 100%;
  padding: 48px 0;
}
@media screen and (max-width: 768px) {
  .p-tab__panel {
    padding: 4.103vw 0;
  }
}
.p-tab__contents {
  display: none;
}
.p-tab__contents.is-active {
  display: block;
}
.p-tab__box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-tab__box {
    flex-direction: column;
  }
}

.p-footer {
  padding: 16px 0 162px;
  background-color: #000;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-footer {
    padding: 2.5vw 0 36.41vw;
  }
}
.p-footer__copy {
  color: #fff;
  font-size: 16px;
  line-height: 1.125;
  font-family: "Times New Roman", serif;
}
@media screen and (max-width: 768px) {
  .p-footer__copy {
    font-size: 3.59vw;
  }
}
.p-footer__cta {
  width: 100%;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
  position: fixed;
  bottom: 0;
  left: 0;
  opacity: 1;
  pointer-events: none; /* 非表示時のクリックイベントを無効化 */
  text-align: center;
  z-index: 20;
}
.p-footer__cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto; /* 表示時のクリックイベントを有効化 */
}
.p-footer__cta .p-cta {
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .p-footer__cta .p-cta {
    padding: 3.846vw 0 4.872vw;
  }
  .p-footer__cta .p-cta__btn {
    margin-top: 1.538vw;
  }
  .p-footer__cta .p-cta__text {
    font-size: 5.128vw;
  }
  .p-footer__cta .c-btn__link {
    padding: 3.59vw 5.128vw;
    font-size: 5.128vw;
  }
  .p-footer__cta .c-btn__link::after {
    width: 4.615vw;
    height: 4.615vw;
    right: 5.385vw;
  }
}

.u-separate {
  margin: 24px 0;
}/*# sourceMappingURL=style.css.map */