@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho:wght@400;500;600;700&display=swap");
/* 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: #333333;
  background-color: #fff;
  letter-spacing: 0.05em;
}

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;
}

h2, h3, h4 {
  font-family: "Zen Old Mincho", serif;
}

.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;
  }
}

.bg_beige {
  background-color: #FBFAF6;
}

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

.c-section-title {
  text-align: center;
  line-height: 1.3;
}
.c-section-title__ja {
  color: #624524;
  letter-spacing: 0.14em;
  font-size: 5rem;
  font-weight: 400;
}
.c-section-title__ja span {
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  .c-section-title__ja {
    font-size: 9.067vw;
  }
  .c-section-title__ja span {
    font-size: 5.867vw;
  }
}
.c-section-title__sub {
  color: #A59564;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.07em;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .c-section-title__sub {
    font-size: 3.733vw;
  }
}

.c-faq {
  border-radius: 3px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .c-faq {
    border-radius: 0.8vw;
  }
}
.c-faq__head {
  cursor: pointer;
  padding: 24px 24px;
}
@media screen and (max-width: 768px) {
  .c-faq__head {
    padding: 4vw 3.2vw;
  }
}
.c-faq__head .c-faq__question {
  font-size: 2rem;
  font-weight: 500;
  padding-left: 40px;
  padding-right: 39px;
  position: relative;
  line-height: 1.5;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-faq__head .c-faq__question {
    padding-left: 7.467vw;
    padding-right: 6.933vw;
    font-size: 4.267vw;
  }
}
.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: 3px;
  left: 0;
  color: #A59564;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-faq__head .c-faq__question::before {
    font-size: 5.333vw;
    top: 0.267vw;
  }
}
.c-faq__head .c-faq__question::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  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: 3.733vw;
    height: 3.733vw;
    top: 2.667vw;
  }
}
.c-faq__body {
  padding: 0 25px 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
@media screen and (max-width: 768px) {
  .c-faq__body {
    padding: 0 3.2vw 0 3.2vw;
  }
}
.c-faq__body .c-faq__answer {
  padding-left: 40px;
  padding-right: 23px;
  position: relative;
  font-size: 1.6rem;
  text-align: justify;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .c-faq__body .c-faq__answer {
    padding-left: 7.467vw;
    padding-right: 6.933vw;
    font-size: 3.733vw;
    margin-bottom: 4vw;
  }
}
.c-faq__body .c-faq__answer::before {
  content: "A";
  position: absolute;
  top: 2px;
  left: 0;
  line-height: 1;
  color: #DB8484;
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .c-faq__body .c-faq__answer::before {
    font-size: 5.333vw;
  }
}

.p-header {
  background-color: #fff;
  padding: 18px 0;
}
@media screen and (max-width: 768px) {
  .p-header {
    padding: 2.667vw 0 2.4vw;
  }
}
.p-header__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-header__logo {
  max-width: 262px;
}
@media screen and (max-width: 768px) {
  .p-header__logo {
    width: 41.333vw;
  }
}

.p-mv {
  height: 46.528vw;
  background: #e9ded2;
  background: linear-gradient(230deg, rgb(233, 222, 210) 0%, rgb(239, 230, 219) 16%, rgb(248, 244, 239) 39%, rgb(253, 250, 246) 62%, rgb(248, 239, 228) 78%, rgb(247, 238, 229) 100%);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-mv {
    height: 108vw;
    padding-bottom: 37.333vw;
    position: relative;
    background: #F1EBE0;
    background: linear-gradient(230deg, rgb(241, 235, 224) 0%, rgb(251, 248, 243) 35%, rgb(248, 238, 227) 50%, rgb(248, 240, 234) 73%, rgb(242, 230, 219) 100%);
  }
}
.p-mv__contents {
  display: flex;
  justify-content: space-between;
}
.p-mv__left {
  padding-top: 6.806vw;
  margin-left: 15.278vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .p-mv__left {
    padding-top: 6.667vw;
    margin-left: 5.6vw;
    position: static;
  }
}
.p-mv__right {
  width: 46.806vw;
  height: 46.528vw;
  margin-left: -4.403vw;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-mv__right {
    width: 54.4vw;
    height: 70.667vw;
    margin-left: -16.267vw;
    position: static;
  }
}
.p-mv__main {
  width: 41.319vw;
}
@media screen and (max-width: 768px) {
  .p-mv__main {
    width: 56vw;
  }
}
.p-mv__sub {
  width: 40.972vw;
  margin-top: 1.389vw;
}
@media screen and (max-width: 768px) {
  .p-mv__sub {
    width: 48.8vw;
    margin-top: 2.667vw;
  }
}
.p-mv__features {
  width: 32.917vw;
  gap: 0.833vw;
  margin-top: 1.042vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .p-mv__features {
    width: 82.667vw;
    margin-top: 0;
    gap: 1.6vw;
    position: absolute;
    left: 50%;
    bottom: 5.333vw;
    transform: translateX(-50%);
  }
}
.p-mv__balloon {
  position: absolute;
  width: 14.653vw;
  bottom: 3.403vw;
  right: 11.806vw;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-mv__balloon {
    width: 26.667vw;
    height: 26.667vw;
    top: 42.133vw;
    right: 3.733vw;
  }
}

.p-offer {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .p-offer {
    padding: 10.667vw 0;
  }
}
.p-offer__campaign {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .p-offer__campaign {
    max-width: 100%;
    align-items: flex-start;
  }
}
.p-offer__btn {
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-offer__btn {
    margin-top: 6.4vw;
  }
}
.p-offer__link {
  max-width: 600px;
  filter: drop-shadow(0px 2px 5px rgba(160, 160, 160, 0.6));
  transition: transform 0.3s ease;
  animation: pulse 2s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .p-offer__link {
    max-width: 100%;
  }
}
.p-offer__link:hover {
  opacity: 0.8;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.97);
  }
}

.p-campaign {
  width: 100%;
  border-radius: 5px;
  border: 3px solid #A59564;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  .p-campaign {
    border-radius: 0.8vw;
    border: 0.533vw solid #A59564;
  }
}
.p-campaign__head {
  background-color: #A59564;
  color: #fff;
  padding: 16px 20px 15px;
  text-align: center;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-campaign__head {
    padding: 1.867vw 1.667vw 1.6vw;
    font-size: 5.067vw;
    letter-spacing: 0.09em;
  }
  .p-campaign__head span {
    font-size: 3.733vw;
  }
}
.p-campaign__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.p-campaign__text {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 43px 0 44px;
  margin-left: 10px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-campaign__text {
    margin-left: 0;
    padding: 4vw 2.667vw 4.267vw;
  }
}
.p-campaign__term {
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: #fff;
  background-color: #DB8484;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  padding: 30px 10px 39px 11px;
  height: 126px;
}
.p-campaign__term span {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .p-campaign__term {
    font-size: 3.467vw;
    height: 18.667vw;
    padding: 4.533vw 1.6vw 5.867vw;
  }
  .p-campaign__term span {
    font-size: 2.933vw;
  }
}
.p-campaign__plan {
  flex-direction: column;
  align-items: center;
  color: #624524;
  margin-left: 27px;
}
@media screen and (max-width: 768px) {
  .p-campaign__plan {
    margin-left: 3.467vw;
  }
}
.p-campaign__heading {
  font-size: 35px;
  padding-bottom: 8px;
  border-bottom: 1px solid #c4bb9f;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-campaign__heading {
    font-size: 5.6vw;
    padding-bottom: 0.067vw;
  }
}
.p-campaign__price {
  max-width: 349px;
  margin-top: 11px;
}
@media screen and (max-width: 768px) {
  .p-campaign__price {
    max-width: 53.867vw;
    margin-top: 1.6vw;
  }
}
.p-campaign__image {
  max-width: 254px;
  margin-left: 14px;
}
@media screen and (max-width: 850px) {
  .p-campaign__image {
    display: none;
  }
}
.p-campaign__note {
  font-size: 14px;
  color: #624524;
  margin-top: 8px;
  text-align: left;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  .p-campaign__note {
    font-size: 3.2vw;
  }
}

.p-problem {
  padding: 120px 0 160px;
  background: url(../img/bg_problem.webp) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .p-problem {
    padding: 13.333vw 0 16vw;
  }
}
.p-problem__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  font-weight: 400;
  color: #624524;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.07em;
}
.p-problem__ttl .top {
  font-size: 3.6rem;
}
@media screen and (max-width: 768px) {
  .p-problem__ttl .top {
    font-size: 5.867vw;
  }
}
.p-problem__ttl .bottom {
  font-size: 48px;
}
@media screen and (max-width: 768px) {
  .p-problem__ttl .bottom {
    font-size: 5.867vw;
    letter-spacing: 0.06em;
  }
  .p-problem__ttl .bottom .big {
    font-size: 8.267vw;
  }
}
.p-problem__contents {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}
@media screen and (max-width: 1100px) {
  .p-problem__contents {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-problem__contents {
    grid-template-columns: repeat(1, 1fr);
    gap: 5.333vw;
    margin-top: 3.467vw;
  }
}
.p-problem__image img {
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .p-problem__image img {
    border-radius: 0.8vw;
  }
}
.p-problem__item {
  font-size: 20px;
  letter-spacing: 0.07em;
  color: #624524;
  font-family: "Zen Old Mincho", serif;
  margin-left: 25px;
  padding: 7px 20px;
  background-color: #fff;
  position: relative;
  border-radius: 3px;
}
.p-problem__item::before {
  position: absolute;
  content: "";
  left: -25px;
  top: 0;
  width: 25px;
  height: 25px;
  background: url(../img/icon_checkbox.svg) no-repeat center/contain;
}
.p-problem__item span {
  background: linear-gradient(transparent 50%, #ece8dc 50%);
}
@media screen and (max-width: 768px) {
  .p-problem__item {
    font-size: 4vw;
    padding: 1.333vw 4vw;
    margin-left: 5.067vw;
    border-radius: 0.8vw;
  }
  .p-problem__item::before {
    width: 5.067vw;
    height: 5.067vw;
    left: -5.067vw;
  }
}
.p-problem__item:not(:first-child) {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-problem__item:not(:first-child) {
    margin-top: 2.133vw;
  }
}

.p-recommend__lead {
  text-align: center;
  background-color: #A59564;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: 36px;
  line-height: 1.3;
  padding: 37px 10px 36px;
}
@media screen and (max-width: 768px) {
  .p-recommend__lead {
    font-size: 5.867vw;
    padding: 2.933vw 5.333vw 2.667vw;
  }
}
.p-recommend__middle {
  background: #bebdb5;
  background: linear-gradient(230deg, rgb(190, 189, 181) 0%, rgb(190, 189, 181) 100%);
  padding-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .p-recommend__middle {
    padding-bottom: 6.933vw;
  }
}
.p-recommend__image {
  max-width: 622px;
  margin-left: 15.37%;
}
@media screen and (max-width: 768px) {
  .p-recommend__image {
    max-width: 80vw;
    margin-left: 4.8vw;
  }
}
.p-recommend__ttl-wrap {
  background-color: #FBFAF6;
  border: 1px solid #A59564;
  max-width: 930px;
  margin: -117px auto 0;
  padding: 45px 20px 46px;
  position: relative;
  z-index: 2;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .p-recommend__ttl-wrap {
    padding: 6.667vw 2.667vw 6.667vw;
    border-radius: 0.8vw;
    margin-top: -15.2vw;
  }
}
.p-recommend__ttl-wrap::after {
  position: absolute;
  content: "";
  width: 115px;
  height: 51px;
  bottom: -34px;
  left: 50%;
  transform: translate(-50%, 100%);
  background: url(../img/icon_triangle.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-recommend__ttl-wrap::after {
    width: 16.533vw;
    height: 7.2vw;
    bottom: -4vw;
  }
}
.p-recommend__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.4;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.1em;
}
.p-recommend__ttl .top {
  color: #A59564;
  font-family: "Zen Old Mincho", serif;
  font-size: 34px;
}
@media screen and (max-width: 768px) {
  .p-recommend__ttl .top {
    font-size: 5.333vw;
  }
}
.p-recommend__ttl .bottom {
  font-size: 48px;
  color: #624524;
}
.p-recommend__ttl .bottom .small {
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  .p-recommend__ttl .bottom {
    font-size: 6.933vw;
  }
  .p-recommend__ttl .bottom .small {
    font-size: 5.067vw;
  }
}
.p-recommend__ttl .marker {
  background: linear-gradient(transparent 50%, #f2d8d8 50%);
}

.p-feature {
  padding: 150px 0 120px;
}
@media screen and (max-width: 768px) {
  .p-feature {
    padding: 17.867vw 0 16vw;
  }
}
.p-feature__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  font-weight: 400;
}
.p-feature__ttl .top {
  color: #A59564;
  font-family: "Zen Old Mincho", serif;
  font-size: 3.2rem;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 768px) {
  .p-feature__ttl .top {
    font-size: 5.333vw;
  }
}
.p-feature__ttl .bottom {
  font-size: 50px;
  color: #624524;
  letter-spacing: 0.14em;
}
.p-feature__ttl .bottom .small {
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  .p-feature__ttl .bottom {
    font-size: 9.067vw;
    letter-spacing: 0.12em;
  }
  .p-feature__ttl .bottom .small {
    font-size: 5.867vw;
  }
}
.p-feature__contents {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-feature__contents {
    margin-top: 6.667vw;
  }
}
.p-feature__item {
  display: flex;
  justify-content: space-between;
  counter-increment: feature-li;
}
@media screen and (max-width: 768px) {
  .p-feature__item {
    flex-direction: column;
  }
}
.p-feature__item:not(:first-child) {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .p-feature__item:not(:first-child) {
    margin-top: 10.667vw;
  }
}
.p-feature__item:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .p-feature__item:nth-of-type(even) {
    flex-direction: column;
  }
}
.p-feature__item:nth-of-type(even) .p-feature__image {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .p-feature__item:nth-of-type(even) .p-feature__image {
    margin-left: 0;
  }
}
.p-feature__item:nth-of-type(even) .p-feature__text {
  margin-left: 0;
}
.p-feature__image {
  max-width: 500px;
}
.p-feature__image img {
  border-radius: 5px;
}
@media screen and (max-width: 1060px) {
  .p-feature__image {
    max-width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .p-feature__image {
    max-width: 100%;
  }
  .p-feature__image img {
    border-radius: 0.8vw;
  }
}
.p-feature__text {
  max-width: 500px;
  margin-left: 20px;
  position: relative;
}
.p-feature__text::before {
  content: counter(feature-li, decimal-leading-zero);
  position: absolute;
  top: -30px;
  right: 11px;
  font-size: 142px;
  font-family: "Zen Old Mincho", serif;
  line-height: 1;
  color: #f5f3ed;
  font-weight: 500;
  z-index: -1;
}
@media screen and (max-width: 1060px) {
  .p-feature__text {
    max-width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .p-feature__text {
    max-width: 100%;
    margin-left: 0;
    margin-top: 5.333vw;
  }
  .p-feature__text::before {
    font-size: 26.667vw;
    right: 0;
    top: -5.867vw;
  }
}
.p-feature__num {
  font-size: 14px;
  color: #A59564;
  letter-spacing: 0.1em;
  line-height: 1.3;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  .p-feature__num {
    font-size: 2.667vw;
  }
}
.p-feature__heading {
  font-size: 28px;
  font-weight: 500;
  color: #624524;
  letter-spacing: 0.19em;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-feature__heading {
    font-size: 5.067vw;
    letter-spacing: 0.17em;
    margin-top: 2.133vw;
  }
}
.p-feature__desc {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: justify;
}
.p-feature__desc span {
  background: linear-gradient(transparent 50%, #ece8dc 50%);
}
@media screen and (max-width: 768px) {
  .p-feature__desc {
    font-size: 3.733vw;
    margin-top: 3.2vw;
  }
}
.p-feature__note {
  font-size: 13px;
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .p-feature__note {
    font-size: 3.2vw;
    margin-top: 2.667vw;
  }
}

.p-ba {
  padding: 120px 0 120px;
  border-top: 1px solid #A59564;
  border-bottom: 1px solid #A59564;
}
@media screen and (max-width: 768px) {
  .p-ba {
    padding: 13.333vw 0;
  }
}
.p-ba__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  font-weight: 400;
  text-align: center;
}
.p-ba__ttl .bottom {
  font-size: 50px;
  color: #624524;
  letter-spacing: 0.14em;
  position: relative;
}
.p-ba__ttl .bottom::before {
  position: absolute;
  content: "";
  top: -4px;
  left: -40px;
  background: url(../img/kirakira.svg) no-repeat center/contain;
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 768px) {
  .p-ba__ttl .bottom::before {
    width: 6.933vw;
    height: 6.933vw;
    left: -6.933vw;
    top: -2.667vw;
  }
}
.p-ba__ttl .bottom .small {
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  .p-ba__ttl .bottom {
    font-size: 9.067vw;
    letter-spacing: 0.07em;
  }
  .p-ba__ttl .bottom .small {
    font-size: 6.667vw;
  }
}
.p-ba__ttl .dot {
  position: relative;
  display: inline-block;
}
.p-ba__ttl .dot::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 43%;
  transform: translateX(-50%);
  background-color: #624524;
  border-radius: 50%;
  width: 6px;
  height: 6px;
}
@media screen and (max-width: 768px) {
  .p-ba__ttl .dot::before {
    width: 1.067vw;
    height: 1.067vw;
    left: 46%;
    top: -0.8vw;
  }
}
.p-ba__contents {
  max-width: 1050px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .p-ba__contents {
    grid-template-columns: repeat(1, 1fr);
    gap: 8vw;
    margin-top: 8vw;
  }
}

.p-ba-item {
  background-color: #fff;
  border-radius: 5px;
  padding: 30px 30px 46px;
}
@media screen and (max-width: 768px) {
  .p-ba-item {
    border-radius: 1.333vw;
    padding: 4vw 4vw 5.333vw;
  }
}
.p-ba-item__detail {
  margin-top: 0;
}
.p-ba-item__detail dl {
  border-bottom: 1px solid #cecece;
  padding: 10px 0;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-ba-item__detail dl {
    padding: 2.133vw 0;
  }
}
.p-ba-item__detail dt {
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .p-ba-item__detail dt {
    font-size: 3.467vw;
  }
}
.p-ba-item__detail dd {
  font-size: 1.2rem;
  margin-top: 3px;
  text-align: justify;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-ba-item__detail dd {
    font-size: 3.2vw;
  }
}

.p-comparison {
  padding: 120px 0;
  background: url(../img/bg_comparison.webp) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .p-comparison {
    padding: 13.333vw 0;
  }
}
.p-comparison__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  font-weight: 400;
  text-align: center;
}
.p-comparison__ttl .top {
  color: #A59564;
  font-family: "Zen Old Mincho", serif;
  font-size: 3.2rem;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 768px) {
  .p-comparison__ttl .top {
    font-size: 5.333vw;
  }
}
.p-comparison__ttl .bottom {
  font-size: 50px;
  color: #624524;
  letter-spacing: 0.14em;
}
.p-comparison__ttl .bottom .small {
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  .p-comparison__ttl .bottom {
    font-size: 9.067vw;
    letter-spacing: 0.13em;
  }
  .p-comparison__ttl .bottom .small {
    font-size: 5.867vw;
  }
}
.p-comparison__ttl .marker {
  letter-spacing: 0.07em;
  background: linear-gradient(transparent 50%, #f2d8d8 50%);
}
.p-comparison__table {
  margin-top: 78px;
}
@media screen and (max-width: 768px) {
  .p-comparison__table {
    margin-top: 8vw;
  }
}

.p-comparison-table {
  overflow-x: auto;
  width: 100%;
  padding: 47px 0 0;
}
@media screen and (max-width: 1140px) {
  .p-comparison-table {
    padding: 47px 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-comparison-table {
    padding: 9.6vw 0 2.667vw;
  }
}
.p-comparison-table table {
  width: 1100px;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0 auto;
  position: relative;
}
.p-comparison-table table::after {
  position: absolute;
  content: "";
  width: 66px;
  height: 47px;
  top: 0;
  left: 317px;
  background: url(../img/icon_crown.svg) no-repeat center/contain;
  transform: translateY(-100%);
}
@media screen and (max-width: 768px) {
  .p-comparison-table table {
    width: 176vw;
  }
  .p-comparison-table table::after {
    width: 13.6vw;
    height: 9.6vw;
    left: 42.4vw;
  }
}
.p-comparison-table th,
.p-comparison-table td {
  padding: 16px 20px 15px;
  border: 1px solid #C8BEA0;
  background-color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-comparison-table th,
  .p-comparison-table td {
    padding: 2.933vw 4vw;
  }
}
.p-comparison-table th {
  font-weight: 600;
  font-family: "Zen Old Mincho", serif;
  color: #624524;
  line-height: 1.5;
}
.p-comparison-table td {
  text-align: center;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .p-comparison-table td {
    font-size: 3.2vw;
  }
}
.p-comparison-table thead th:nth-child(1) {
  width: 200px;
  border-radius: 3px 0 0 0;
}
@media screen and (max-width: 768px) {
  .p-comparison-table thead th:nth-child(1) {
    width: 24vw;
    border-radius: 0.8vw 0 0 0;
  }
}
.p-comparison-table thead th:nth-child(2) {
  width: 300px;
  background-color: #A59564;
  color: #fff;
  font-size: 28px;
  padding-top: 1px;
  padding-bottom: 20px;
  position: relative;
  border: none;
}
.p-comparison-table thead th:nth-child(2)::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  transform: translateY(-99%);
  width: 100%;
  height: 24px;
  background-color: #A59564;
  border-radius: 10px 10px 0 0;
}
.p-comparison-table thead th:nth-child(2)::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 474px;
  border: 8px solid #A59564;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-comparison-table thead th:nth-child(2) {
    width: 50.667vw;
    font-size: 5.733vw;
    padding-bottom: 0.533vw;
  }
  .p-comparison-table thead th:nth-child(2)::before {
    height: 5.6vw;
    border-radius: 1.6vw 1.6vw 0 0;
  }
  .p-comparison-table thead th:nth-child(2)::after {
    height: 96.8vw;
    border: 1.6vw solid #A59564;
  }
}
.p-comparison-table thead th {
  background-color: #ECE8DC;
  font-size: 20px;
  padding: 22px 20px 21px;
}
@media screen and (max-width: 768px) {
  .p-comparison-table thead th {
    font-size: 4vw;
    padding: 4.533vw 4vw 4.267vw;
  }
}
.p-comparison-table thead th:nth-child(3) {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .p-comparison-table thead th:nth-child(3) {
    width: 50.667vw;
  }
}
.p-comparison-table thead th:nth-child(4) {
  width: 300px;
  border-radius: 0 3px 0 0;
}
@media screen and (max-width: 768px) {
  .p-comparison-table thead th:nth-child(4) {
    width: 50.667vw;
    border-radius: 0 0.8vw 0 0;
  }
}
.p-comparison-table tbody th {
  font-size: 20px;
  background-color: #ECE8DC;
  border-radius: 0 0 0 3px;
}
@media screen and (max-width: 768px) {
  .p-comparison-table tbody th {
    font-size: 4vw;
    border-radius: 0 0 0 0.8vw;
  }
}
.p-comparison-table tbody tr:first-child th {
  border-radius: 0;
}
.p-comparison-table tr:last-child td:last-child {
  border-radius: 0 0 3px 0;
}
@media screen and (max-width: 768px) {
  .p-comparison-table tr:last-child td:last-child {
    border-radius: 0 0 0.8vw 0;
  }
}
.p-comparison-table td p {
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .p-comparison-table td p {
    margin-top: 1.067vw;
  }
}
.p-comparison-table .icon {
  width: 50px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .p-comparison-table .icon {
    width: 10.133vw;
  }
}
.p-comparison-table::-webkit-scrollbar-thumb {
  background-color: #A59564;
}
.p-comparison-table::-webkit-scrollbar {
  width: 100%;
  background-color: #dddddd;
  height: 8px;
}
@media screen and (max-width: 768px) {
  .p-comparison-table::-webkit-scrollbar {
    height: 2.133vw;
  }
}

.firefox .p-price-table {
  scrollbar-color: #A59564 #dddddd;
}

.p-about {
  padding: 120px 0;
  border-top: 1px solid #A59564;
  border-bottom: 1px solid #A59564;
}
@media screen and (max-width: 768px) {
  .p-about {
    padding: 13.333vw 0;
  }
}
.p-about__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  font-weight: 400;
}
.p-about__ttl .bottom {
  font-size: 50px;
  color: #624524;
  letter-spacing: 0.14em;
}
.p-about__ttl .bottom .small {
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  .p-about__ttl .bottom {
    font-size: 9.067vw;
    letter-spacing: 0.13em;
  }
  .p-about__ttl .bottom .small {
    font-size: 5.867vw;
  }
}
.p-about__top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
  margin-top: 60px;
}
@media screen and (max-width: 1100px) {
  .p-about__top {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-about__top {
    grid-template-columns: repeat(1, 1fr);
    gap: 5.333vw;
    margin-top: 8vw;
  }
}
.p-about__top-text {
  line-height: 1.8;
  letter-spacing: 0.1em;
}
.p-about__top-text p:not(:first-child) {
  margin-top: 29px;
}
.p-about__top-text .strong {
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-about__top-text {
    font-size: 4vw;
  }
  .p-about__top-text p:not(:first-child) {
    margin-top: 3.733vw;
  }
}
.p-about__middle {
  text-align: center;
  padding: 45px 20px;
  position: relative;
  margin-top: 124px;
}
@media screen and (max-width: 768px) {
  .p-about__middle {
    margin-top: 13.333vw;
    padding: 8.267vw 4vw 7.733vw;
  }
}
.p-about__middle::after {
  background: url(../img/bg_problem.webp) no-repeat center/cover;
  clip-path: polygon(0% 0%, 100% 0%, 100% 87%, 54% 87%, 50% 100%, 46% 87%, 0 87%);
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 26px);
}
@media screen and (max-width: 768px) {
  .p-about__middle::after {
    clip-path: polygon(0% 0%, 100% 0%, 100% 86%, 58% 86%, 50% 100%, 42% 86%, 0 85%);
  }
}
.p-about__middle-lead {
  position: relative;
  z-index: 3;
  width: 125px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .p-about__middle-lead {
    width: 26.667vw;
  }
}
.p-about__middle-message {
  font-size: 28px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #624524;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .p-about__middle-message {
    font-size: 5.067vw;
  }
}
.p-about__bottom {
  padding-top: 56px;
  position: relative;
}
.p-about__bottom::after {
  position: absolute;
  content: "";
  width: 115px;
  height: 51px;
  bottom: -46px;
  left: 50%;
  transform: translate(-50%, 100%);
  background: url(../img/icon_triangle.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-about__bottom {
    padding-top: 9.867vw;
  }
  .p-about__bottom::after {
    width: 16.533vw;
    height: 7.2vw;
    bottom: -4vw;
  }
}
.p-about__bottom-lead {
  font-size: 32px;
  text-align: center;
  color: #624524;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.07em;
}
.p-about__bottom-lead span {
  font-size: 52px;
  padding: 11px 45px 10px;
  letter-spacing: 0.1em;
  line-height: 1.1;
  background: url(../img/bg_aquicell.webp) no-repeat center/contain;
  margin-top: 5px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .p-about__bottom-lead {
    font-size: 6.933vw;
  }
  .p-about__bottom-lead span {
    font-size: 9.867vw;
    padding: 2.133vw 8vw 1.867vw;
    margin-top: 2.133vw;
  }
}
.p-about__bottom-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
  background-color: #fff;
  padding: 70px 40px 40px;
  margin-top: -39px;
  border-radius: 5px;
}
@media screen and (max-width: 1100px) {
  .p-about__bottom-box {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-about__bottom-box {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.2vw;
    padding: 12.267vw 4vw 6.667vw;
    margin-top: -7.467vw;
  }
}
.p-about__bottom-text {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
.p-about__bottom-text p:not(:first-child) {
  margin-top: 18px;
}
.p-about__bottom-text .strong {
  font-weight: 600;
}
.p-about__bottom-text .marker {
  background: linear-gradient(transparent 50%, #f2d8d8 50%);
}
@media screen and (max-width: 768px) {
  .p-about__bottom-text {
    font-size: 4vw;
  }
  .p-about__bottom-text p:not(:first-child) {
    margin-top: 4vw;
  }
}
.p-about__ba {
  max-width: 1050px;
  margin: 137px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .p-about__ba {
    grid-template-columns: repeat(1, 1fr);
    gap: 8vw;
    margin-top: 17.6vw;
  }
}

.p-price {
  padding: 100px 0 120px;
}
@media screen and (max-width: 768px) {
  .p-price {
    padding: 16vw 0 13.333vw;
  }
}
.p-price__contents {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-price__contents {
    margin-top: 9.067vw;
  }
}
.p-price__message {
  text-align: center;
  letter-spacing: 0.1em;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .p-price__message {
    font-size: 3.467vw;
    margin-top: 6.4vw;
  }
}
.p-price__note {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 10px;
  color: #5C5C5C;
}
@media screen and (max-width: 768px) {
  .p-price__note {
    font-size: 2.933vw;
    margin-top: 1.333vw;
  }
}
.p-price__example {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-price__example {
    margin-top: 9.6vw;
    text-align: left;
  }
}

.p-price-table {
  overflow-x: auto;
  width: 100%;
  padding: 24px 0 0;
}
@media screen and (max-width: 1140px) {
  .p-price-table {
    padding: 24px 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-price-table {
    padding: 4vw 0 2.667vw;
  }
}
.p-price-table table {
  width: 1100px;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-price-table table {
    width: 150.4vw;
  }
}
.p-price-table th,
.p-price-table td {
  padding: 16px 20px;
  border: 1px solid #C8BEA0;
  background-color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-price-table th,
  .p-price-table td {
    padding: 3.2vw 2.667vw;
  }
}
.p-price-table th {
  font-weight: 600;
  font-family: "Zen Old Mincho", serif;
  color: #624524;
  line-height: 1.5;
}
.p-price-table td {
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-price-table td {
    font-size: 3.2vw;
  }
}
.p-price-table thead th:nth-child(1) {
  width: 268px;
  border-radius: 3px 0 0 0;
}
@media screen and (max-width: 768px) {
  .p-price-table thead th:nth-child(1) {
    width: 34.667vw;
    border-radius: 0.8vw 0 0 0;
  }
}
.p-price-table thead th:nth-child(2) {
  width: 192px;
}
@media screen and (max-width: 768px) {
  .p-price-table thead th:nth-child(2) {
    width: 17.067vw;
    line-height: 1.2;
  }
}
.p-price-table thead th {
  background-color: #ECE8DC;
  font-size: 22px;
  padding: 16px 20px;
}
@media screen and (max-width: 768px) {
  .p-price-table thead th {
    font-size: 3.733vw;
    padding: 2.133vw 2.667vw;
  }
}
.p-price-table thead th:nth-child(3) {
  width: 320px;
  background-color: #A59564;
  color: #fff;
  font-size: 28px;
  padding-top: 1px;
  padding-bottom: 20px;
  position: relative;
  border: none;
}
.p-price-table thead th:nth-child(3) span {
  font-size: 15px;
  font-weight: 400;
}
.p-price-table thead th:nth-child(3)::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  transform: translateY(-99%);
  width: 100%;
  height: 24px;
  background-color: #A59564;
  border-radius: 10px 10px 0 0;
}
.p-price-table thead th:nth-child(3)::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 538px;
  border: 8px solid #A59564;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-price-table thead th:nth-child(3) {
    width: 53.333vw;
    font-size: 5.333vw;
    padding-bottom: 0.533vw;
  }
  .p-price-table thead th:nth-child(3) span {
    font-size: 2.933vw;
  }
  .p-price-table thead th:nth-child(3)::before {
    height: 4vw;
    border-radius: 1.6vw 1.6vw 0 0;
  }
  .p-price-table thead th:nth-child(3)::after {
    height: 98.933vw;
    border: 1.6vw solid #A59564;
  }
}
.p-price-table thead th:nth-child(4) {
  border-radius: 0 3px 0 0;
}
@media screen and (max-width: 768px) {
  .p-price-table thead th:nth-child(4) {
    border-radius: 0 0.8vw 0 0;
  }
}
.p-price-table tbody th {
  font-size: 20px;
  background-color: #ECE8DC;
}
@media screen and (max-width: 768px) {
  .p-price-table tbody th {
    font-size: 3.733vw;
  }
}
.p-price-table tbody th {
  border-radius: 0 0 0 3px;
}
@media screen and (max-width: 768px) {
  .p-price-table tbody th {
    border-radius: 0 0 0 0.8vw;
  }
}
.p-price-table tbody tr:first-child th {
  border-radius: 0;
}
.p-price-table tr:nth-of-type(odd) td {
  background-color: #FFFDF6;
}
.p-price-table td.strong {
  color: #8C742D;
  padding: 27px 20px 33px;
  font-weight: 600;
}
.p-price-table td.strong p:nth-child(1) {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .p-price-table td.strong {
    padding: 4.533vw 2.667vw;
  }
  .p-price-table td.strong p:nth-child(1) {
    font-size: 4.133vw;
  }
}
.p-price-table td:nth-of-type(1) {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .p-price-table td:nth-of-type(1) {
    font-size: 3.467vw;
    line-height: 1.2;
  }
}
.p-price-table td:last-child p:nth-child(1) {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .p-price-table td:last-child p:nth-child(1) {
    font-size: 4.133vw;
  }
}
.p-price-table tr:last-child td:last-child {
  border-radius: 0 0 3px 0;
}
@media screen and (max-width: 768px) {
  .p-price-table tr:last-child td:last-child {
    border-radius: 0 0 0.8vw 0;
  }
}
.p-price-table .text-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  letter-spacing: 0.05em;
}
.p-price-table::-webkit-scrollbar-thumb {
  background-color: #A59564;
}
.p-price-table::-webkit-scrollbar {
  width: 100%;
  background-color: #dddddd;
  height: 8px;
}
@media screen and (max-width: 768px) {
  .p-price-table::-webkit-scrollbar {
    height: 2.133vw;
  }
}

.firefox .p-price-table {
  scrollbar-color: #A59564 #dddddd;
}

.p-example {
  border-radius: 5px;
  border: 3px solid #A59564;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  .p-example {
    border-radius: 3px;
    border: 0.533vw solid #A59564;
  }
}
.p-example__head {
  background-color: #A59564;
  color: #fff;
  padding: 22px 20px 21px;
  text-align: center;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-example__head {
    padding: 3.2vw 3.8vw 2.933vw;
    font-size: 4vw;
    line-height: 1.35;
    letter-spacing: 0.05em;
  }
}
.p-example__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  color: #624524;
}
@media screen and (max-width: 768px) {
  .p-example__body {
    padding: 4vw 5.333vw;
  }
}
.p-example__heading {
  font-size: 30px;
  padding-bottom: 8px;
  border-bottom: 1px solid #C4BB9F;
  line-height: 1.2;
}
.p-example__heading span {
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .p-example__heading {
    font-size: 5.6vw;
    padding-bottom: 1.067vw;
    letter-spacing: 0.1em;
  }
  .p-example__heading span {
    font-size: 5.6vw;
  }
}
.p-example__price {
  max-width: 342px;
}
@media screen and (max-width: 768px) {
  .p-example__price {
    max-width: 53.867vw;
    margin-top: -1.333vw;
  }
}
.p-example__note {
  font-size: 15px;
  color: #624524;
  display: inline-block;
  margin: 12px auto 0;
  text-align: left;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  .p-example__note {
    font-size: 3.2vw;
    margin-top: 1.067vw;
  }
}

.p-reason__head {
  background-color: #A59564;
  padding: 44px 20px;
  position: relative;
}
.p-reason__head::after {
  position: absolute;
  content: "";
  bottom: 1px;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 90px solid transparent;
  border-left: 90px solid transparent;
  border-top: 45px solid #A59564;
  border-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-reason__head {
    padding: 7.733vw 3.333vw;
  }
  .p-reason__head::after {
    border-right: 9.333vw solid transparent;
    border-left: 9.333vw solid transparent;
    border-top: 6.667vw solid #A59564;
  }
}
.p-reason__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  font-weight: 400;
  text-align: center;
}
.p-reason__ttl .top {
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: 3.2rem;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 768px) {
  .p-reason__ttl .top {
    font-size: 6.933vw;
    line-height: 1.4;
  }
}
.p-reason__ttl .bottom {
  font-size: 50px;
  color: #624524;
  letter-spacing: 0.14em;
}
.p-reason__ttl .bottom .small {
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  .p-reason__ttl .bottom {
    font-size: 10.667vw;
    letter-spacing: 0.12em;
    line-height: 1.2;
  }
  .p-reason__ttl .bottom .small {
    font-size: 7.733vw;
  }
}
.p-reason__body {
  padding: 145px 0 120px;
  background: url(../img/bg_reason.webp) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .p-reason__body {
    padding: 21.333vw 0 13.333vw;
  }
}
.p-reason__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 105px 100px;
}
@media screen and (max-width: 1140px) {
  .p-reason__list {
    gap: 100px 40px;
  }
}
@media screen and (max-width: 768px) {
  .p-reason__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 13.333vw;
  }
}
.p-reason__item {
  background-color: #fff;
  border-radius: 5px;
  padding: 60px 30px 40px;
  position: relative;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-reason__item {
    padding: 10.4vw 5.333vw 8vw;
  }
}
.p-reason__num {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background-color: #A59564;
  font-family: "Zen Old Mincho", serif;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  padding: 20px 19px;
  border-radius: 50%;
}
.p-reason__num span {
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  .p-reason__num {
    padding: 10.4vw 5.333vw 8vw;
    font-size: 2.667vw;
    padding: 3.467vw 2.667vw;
  }
  .p-reason__num span {
    font-size: 6.4vw;
  }
}
.p-reason__heading {
  font-size: 28px;
  color: #624524;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-reason__heading {
    font-size: 6.4vw;
  }
}
.p-reason__image {
  margin-top: 10px;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .p-reason__image {
    margin-top: 1.333vw;
  }
}
.p-reason__desc {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
}
.p-reason__desc span {
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .p-reason__desc {
    margin-top: 2.4vw;
    font-size: 3.733vw;
    line-height: 1.6;
  }
  .p-reason__desc span {
    font-size: 3.2vw;
    margin-top: 2.667vw;
    display: block;
  }
}

.p-doctor {
  padding: 100px 0 120px;
  background: #fff;
  background: linear-gradient(180deg, rgb(255, 255, 255), rgb(251, 250, 246));
  overflow: hidden;
  border-top: 1px solid #A59564;
  border-bottom: 1px solid #A59564;
}
@media screen and (max-width: 768px) {
  .p-doctor {
    padding: 13.333vw 0;
  }
}
.p-doctor__contents {
  margin-top: 62px;
}
@media screen and (max-width: 768px) {
  .p-doctor__contents {
    margin-top: 8vw;
  }
}
.p-doctor__top {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.p-doctor__top::before {
  position: absolute;
  content: "Yuki Tsuruta";
  font-size: 120px;
  color: #f4f1ea;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  line-height: 1;
  z-index: 1;
  bottom: 0;
  left: -140px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-doctor__top {
    flex-direction: column;
    align-items: center;
  }
  .p-doctor__top::before {
    font-size: 21.333vw;
    left: -5.333vw;
    top: 75.2vw;
    bottom: auto;
  }
}
.p-doctor__image {
  max-width: 392px;
  position: relative;
  z-index: 3;
  margin-top: 6px;
}
@media screen and (max-width: 768px) {
  .p-doctor__image {
    max-width: 69.333vw;
    margin-top: 0;
  }
}
.p-doctor__text {
  max-width: 600px;
  margin-left: 20px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .p-doctor__text {
    margin-left: 0;
    margin-top: 10.667vw;
    max-width: 100%;
  }
}
.p-doctor__lead {
  font-size: 22px;
  letter-spacing: 0.07em;
  color: #DB8484;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  .p-doctor__lead {
    font-size: 4.8vw;
  }
}
.p-doctor__position {
  font-family: "Zen Old Mincho", serif;
  color: #624524;
  font-size: 18px;
  margin-top: 30px;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 768px) {
  .p-doctor__position {
    font-size: 3.733vw;
    margin-top: 5.867vw;
  }
}
.p-doctor__name {
  font-size: 28px;
  letter-spacing: 0.2em;
  font-family: "Zen Old Mincho", serif;
  color: #624524;
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .p-doctor__name {
    font-size: 6.933vw;
    margin-top: 1.333vw;
  }
}
.p-doctor__message {
  margin-top: 24px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: justify;
}
.p-doctor__message p:not(:first-child) {
  margin-top: 29px;
}
@media screen and (max-width: 768px) {
  .p-doctor__message {
    margin-top: 4.267vw;
    font-size: 3.733vw;
  }
  .p-doctor__message p:not(:first-child) {
    margin-top: 3.733vw;
  }
}
.p-doctor__bottom {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .p-doctor__bottom {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 10.667vw;
    gap: 6.133vw;
  }
}
.p-doctor__heading {
  font-weight: 600;
  font-family: "Zen Old Mincho", serif;
  padding-bottom: 4px;
  border-bottom: 1px solid #cecece;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .p-doctor__heading {
    font-size: 4vw;
    padding-bottom: 0.533vw;
    margin-bottom: 1.067vw;
  }
}

.p-list {
  font-size: 15px;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .p-list {
    font-size: 3.733vw;
  }
}
.p-list__item {
  padding-left: 19px;
  position: relative;
}
.p-list__item::before {
  position: absolute;
  content: "";
  top: 10px;
  left: 4px;
  width: 9px;
  height: 9px;
  background: url(../img/icon_list.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-list__item {
    padding-left: 5.067vw;
  }
  .p-list__item::before {
    width: 1.867vw;
    height: 1.867vw;
    top: 2.667vw;
    left: 1.067vw;
  }
}

.p-flow {
  padding: 120px 0 140px;
}
@media screen and (max-width: 768px) {
  .p-flow {
    padding: 13.333vw 0;
  }
}
.p-flow__contents {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-flow__contents {
    margin-top: 8vw;
  }
}
.p-flow__item {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.p-flow__item::before {
  position: absolute;
  content: "";
  width: 1px;
  height: calc(100% + 70px);
  background-color: #dbd5c1;
  top: 0;
  left: 30px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-flow__item::before {
    height: calc(100% + 10.667vw);
    left: 6.667vw;
  }
}
.p-flow__item:not(:first-child) {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .p-flow__item:not(:first-child) {
    margin-top: 10.667vw;
  }
}
.p-flow__item:last-child::before {
  content: none;
}
.p-flow__num {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  background-color: #A59564;
  font-family: "Zen Old Mincho", serif;
  color: #fff;
  display: inline-block;
  border-radius: 50%;
  height: 60px;
  padding: 10px 13px 9px;
}
.p-flow__num span {
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  .p-flow__num {
    font-size: 3.2vw;
    padding: 2.133vw 2.667vw 1.867vw;
    height: 13.333vw;
  }
  .p-flow__num span {
    font-size: 5.867vw;
  }
}
.p-flow__box {
  display: flex;
  margin-left: 80px;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-flow__box {
    flex-direction: column;
    margin-left: 5.333vw;
  }
}
.p-flow__text {
  max-width: 600px;
  width: 100%;
  letter-spacing: 0.1em;
}
.p-flow__image {
  width: 300px;
  margin-left: 60px;
}
.p-flow__image img {
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .p-flow__image {
    margin-left: 0;
    margin-top: 4.267vw;
    width: 100%;
  }
  .p-flow__image img {
    border-radius: 0.8vw;
  }
}
.p-flow__heading {
  font-size: 28px;
  color: #624524;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-flow__heading {
    font-size: 5.867vw;
    line-height: 1.4;
  }
}
.p-flow__desc {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .p-flow__desc {
    font-size: 3.733vw;
    margin-top: 2.667vw;
  }
}

.p-faq {
  padding: 100px 0 120px;
  border-top: 1px solid #A59564;
  border-bottom: 1px solid #A59564;
}
@media screen and (max-width: 768px) {
  .p-faq {
    padding: 13.333vw 0;
  }
}
.p-faq__contents {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-faq__contents {
    margin-top: 8vw;
  }
}
.p-faq .c-faq:not(:first-child) {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-faq .c-faq:not(:first-child) {
    margin-top: 2.667vw;
  }
}

.p-access {
  padding: 100px 0 60px;
}
@media screen and (max-width: 768px) {
  .p-access {
    padding: 13.333vw 0 8vw;
  }
}
.p-access__contents {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7.27%;
}
@media screen and (max-width: 1100px) {
  .p-access__contents {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-access__contents {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    margin-top: 8vw;
  }
}
.p-access__image img {
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .p-access__image img {
    border-radius: 0.8vw;
  }
}
.p-access__info dl {
  border-bottom: 0.7px solid #DBD5C1;
  padding: 20px 16px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-access__info dl {
    padding: 4.1vw 0;
  }
}
.p-access__info dt {
  font-size: 17px;
  font-weight: 500;
  float: left;
}
@media screen and (max-width: 768px) {
  .p-access__info dt {
    font-size: 4vw;
  }
}
.p-access__info dd {
  margin-left: 96px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .p-access__info dd {
    margin-left: 22.133vw;
    font-size: 4vw;
  }
}

.p-map {
  padding-top: 18.7%;
  height: 0;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-map {
    padding-top: 56%;
  }
}
.p-map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.p-footer {
  background: #A59564;
  color: #fff;
  text-align: center;
  padding: 15px 0 14px;
  font-size: 14px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .p-footer {
    padding: 3.467vw 0;
    font-size: 3.2vw;
    margin-bottom: 19.2vw;
  }
}

.p-footer-cta {
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  opacity: 0;
  transform: translateY(150%);
  transition: opacity 0.5s ease, transform 0.5s ease;
  position: fixed;
  bottom: 0;
  left: 0;
  opacity: 1;
  pointer-events: none; /* 非表示時のクリックイベントを無効化 */
  z-index: 20;
  padding: 15px 15px;
}
@media screen and (max-width: 768px) {
  .p-footer-cta {
    padding: 1.6vw 0 1.6vw;
    background: rgba(255, 255, 255, 0.6);
  }
}
.p-footer-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto; /* 表示時のクリックイベントを有効化 */
}
.p-footer-cta__link {
  max-width: 415px;
  display: block;
  margin: 0 auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0px 2px 5px rgba(160, 160, 160, 0.6));
}
@media screen and (max-width: 768px) {
  .p-footer-cta__link {
    max-width: 73.733vw;
    filter: drop-shadow(0px 1px 3px rgba(160, 160, 160, 0.6));
  }
}
.p-footer-cta__link:hover {
  opacity: 0.8;
}

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