@charset "UTF-8";
/* =========================================
   Base Settings
========================================= */
/* =========================================
   Unit Utility
========================================= */
/* =========================================
   Typography Mixins
========================================= */
/* =========================================
   Clamp Font Size
========================================= */
/* =========================================
   Media Query Mixins
========================================= */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-size: 100%;
  font-weight: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%; /* iphoneで文字サイズが変わる対策 */
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

input,
textarea {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: left;
}

a:focus {
  outline: none;
}

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

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px; /*¥*/ /*/
height: auto;
overflow: hidden;
/**/
}

.both {
  clear: both;
}

.inline_block {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

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

a:hover {
  opacity: 0.8;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

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

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/* -----------------------
  iOSでのデフォルトスタイルをリセット
----------------------- */
input[type=submit],
input[type=button] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

input,
button,
textarea,
select,
.entry input[type=tel],
input[type=email],
.entry input[type=text] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  font-family: inherit;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* ここからWordpress用初期設定 */
/* 本文中の画像 */
article .wp-block-image {
  margin: 3rem 0;
}
article .wp-block-image img {
  border: none;
  max-width: 100%;
  height: auto;
}
article .wp-block-image .aligncenter {
  display: block;
  margin: 0 auto;
  text-align: center;
}
article .wp-block-image .alignright {
  float: none;
  text-align: right;
  margin: 0;
  width: 100%;
}
article .wp-block-image .alignleft {
  float: none;
  text-align: left;
  margin: 0;
  width: 100%;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  margin: 0;
  color: #666;
  font-size: 1.4rem;
  text-align: center;
}

html {
  scroll-padding-top: 4.1666666667vw;
  overflow-x: hidden;
  font-size: 0.5208333333vw;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  color: #5a2e19;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.075em;
  font-feature-settings: "palt";
  font-family: "Zen Maru Gothic", sans-serif;
}
body.is-fixed {
  overflow: hidden;
}

.l-wrapper {
  width: 136.6rem;
  padding-inline: 2rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-wrapper {
    width: 100%;
    padding-inline: 6%;
  }
}

.l-header {
  width: 100%;
  background-color: #fff;
}
.l-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 2rem 1rem 2rem 2rem;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 1rem;
    justify-content: center;
  }
}
.l-header__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.2rem;
}
@media screen and (max-width: 767px) {
  .l-header__right {
    display: none;
  }
}
.l-header__sub {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.c-logo {
  flex-shrink: 0;
}
.c-logo__link {
  display: block;
}
.c-logo__img {
  width: 30.3rem;
  height: 10.5rem;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .c-logo__img {
    width: 18rem;
    height: auto;
  }
}

.c-header-sns {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
}
.c-header-sns__link {
  display: block;
  transition: opacity 0.3s;
}
.c-header-sns__link:hover {
  opacity: 0.7;
}
.c-header-sns__link--instagram img {
  width: 3rem;
  height: 3rem;
}
.c-header-sns__link--facebook img {
  width: 2.8rem;
  height: 2.8rem;
}
.c-header-sns__link--line img {
  width: 3.2rem;
  height: 3rem;
}

.c-header-contact {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #5a2e19;
  text-decoration: none;
  font-size: 2rem;
  transition: opacity 0.3s;
}
.c-header-contact img {
  width: 2.8rem;
  height: 2.1rem;
  object-fit: contain;
}
.c-header-contact:hover {
  opacity: 0.7;
}

.c-header-tel {
  flex-shrink: 0;
  display: block;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .c-header-tel {
    display: none;
  }
  .c-header-tel:hover {
    opacity: 0.8s;
  }
}
.c-header-tel img {
  width: 39.4rem;
  height: 10.5rem;
  object-fit: contain;
}

.c-nav__list {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  list-style: none;
}
.c-nav__link {
  font-size: 1.8rem;
  color: #5a2e19;
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}
.c-nav__link:hover {
  color: #99a766;
}

.p-access-section {
  position: relative;
  background-color: #54693a;
  background-image: repeating-linear-gradient(90deg, #65784e 0, #65784e 2.5rem, transparent 2.5rem, transparent 5.5rem);
  border-radius: 4rem 4rem 0 0;
  padding-block: 5rem 2.5rem;
  margin-top: 19.5rem;
}
@media screen and (max-width: 767px) {
  .p-access-section {
    margin-top: 9rem;
  }
}
.p-access-section__head {
  text-align: center;
}
.p-access-section__inner {
  display: flex;
  gap: 5rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-access-section__inner {
    flex-direction: column;
    gap: 3rem;
  }
}
.p-access-section__info {
  flex: 1;
  width: calc(100% - 86.7rem - 5rem);
}
@media screen and (max-width: 767px) {
  .p-access-section__info {
    width: 100%;
  }
}
.p-access-section .c-heading {
  margin-top: -8rem;
}
.p-access-section .c-heading__subtitle, .p-access-section .c-heading__title, .p-access-section .c-heading__catch {
  color: #fff;
}
.p-access-section__logo img {
  width: 40.8rem;
  height: 14.1rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-access-section__logo img {
    width: 80%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-inline: auto;
  }
}
.p-access-section__tel {
  margin-top: 3rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-access-section__tel {
    align-items: center;
  }
}
.p-access-section__tel img {
  width: 3.9rem;
  height: 6.1rem;
}
@media screen and (max-width: 767px) {
  .p-access-section__tel img {
    width: 3rem;
    height: auto;
  }
}
.p-access-section__tel-contents {
  display: flex;
  flex-direction: column;
  font-size: 1.7rem;
  color: #fff;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-access-section__tel-contents {
    font-size: 1.6rem;
  }
}
.p-access-section__tel-number {
  display: block;
  font-size: 3.8rem;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  margin-top: 1.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-access-section__tel-number {
    font-size: 3.2rem;
  }
  .p-access-section__tel-number:hover {
    color: #c2caa3;
  }
}
.p-access-section__tel-hours {
  text-align: center;
  font-size: 1.7rem;
  color: #fff;
  margin-top: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-access-section__tel-hours {
    font-size: 1.4rem;
  }
}
.p-access-section__tel-hours span {
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-access-section__tel-hours span {
    font-size: 1.8rem;
  }
}
.p-access-section__tel-note {
  width: fit-content;
  margin-inline: auto;
  text-align: left;
  font-size: 1.4rem;
  color: #fff;
  margin-top: 1.5rem;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-access-section__tel-note {
    font-size: 1.2rem;
  }
}
.p-access-section__address {
  margin-top: 3.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-access-section__address {
    margin-top: 2.5rem;
  }
}
.p-access-section__address-label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #54693a;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0.8rem 2rem;
  border-radius: 5rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-access-section__address-label {
    font-size: 1.4rem;
  }
}
.p-access-section__address-text {
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-access-section__address-text {
    font-size: 1.4rem;
  }
}
.p-access-section__map {
  flex-shrink: 0;
  width: 86.7rem;
}
@media screen and (max-width: 767px) {
  .p-access-section__map {
    width: 100%;
  }
}
.p-access-section__map iframe {
  width: 100%;
  height: 41.5rem;
  border-radius: 5rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-access-section__map iframe {
    border-radius: 3rem;
    height: 25rem;
  }
}

.p-footer__copyright {
  color: #fff;
  margin-top: 7.5rem;
  text-align: center;
  font-family: "Comfortaa", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    margin-top: 5rem;
    font-size: 1.2rem;
  }
}

.p-pagehead {
  padding-block: 8rem 10rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-pagehead {
    padding-block: 4rem 5rem;
  }
}
.p-pagehead__inner {
  max-width: 136.6rem;
  margin: 0 auto;
  padding-inline: 6%;
}
@media screen and (min-width: 1367px) {
  .p-pagehead__inner {
    padding-inline: 2rem;
  }
}
.p-pagehead__en-title {
  font-size: 11rem;
  font-weight: 400;
  color: #99a766;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-pagehead__en-title {
    line-height: 1.2;
    font-size: 5.2rem;
  }
}
.p-pagehead__title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-pagehead__title {
    font-size: 1.4rem;
  }
}

.p-404__textarea {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.p-404__text {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-404__text {
    font-size: 1.4rem;
  }
}
.p-404__text__btn {
  margin-top: 4rem;
}

.c-hamburger {
  position: fixed;
  top: 2.5rem;
  right: 2rem;
  width: 4rem;
  height: 1rem;
  z-index: 15000;
  background: none;
  border: none;
}
.c-hamburger.is-open {
  right: 2rem;
}

.c-hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #5a2e19;
  transition: 0.3s;
}

.c-hamburger span:nth-child(1) {
  top: -0.4rem;
}

.c-hamburger span:nth-child(2) {
  top: 1.4rem;
}

.c-hamburger.is-open span:nth-child(1) {
  transform: translateY(0.8rem) rotate(45deg);
}

.c-hamburger.is-open span:nth-child(2) {
  transform: translateY(-1rem) rotate(-45deg);
}

.c-hamburger.is-open span:nth-child(3) {
  display: none;
}

/* ドロワーメニュー */
.sp-nav {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: 0.4s;
  z-index: 10000;
  padding: 2rem 6%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.sp-nav .c-logo__link {
  text-align: center;
}
.sp-nav__list {
  margin-top: 4rem;
  position: relative;
  z-index: 10;
  width: 80%;
  margin-inline: auto;
}
.sp-nav__list a {
  font-size: 1.8rem;
  padding-block: 1rem;
  display: block;
}
.sp-nav__sns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.sp-nav__sns a {
  text-align: center;
}
.sp-nav__sns img {
  width: 70%;
  height: auto;
}
.sp-nav__tel {
  margin-top: 2rem;
}

.sp-nav.is-active {
  transform: translateX(-100%);
}

.c-card {
  display: flex;
  flex-direction: column;
}
.c-card__img {
  margin-block: 1rem 2rem;
}
@media screen and (max-width: 767px) {
  .c-card__img {
    margin-block: 1rem;
  }
}
.c-card__img img {
  width: 100%;
  height: auto;
  border-radius: 3rem;
}
@media screen and (max-width: 767px) {
  .c-card__img img {
    border-radius: 2rem;
  }
}
.c-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.c-card__icon {
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-card__icon-01 {
  width: 6.3rem;
  height: 7.2rem;
}
@media screen and (max-width: 767px) {
  .c-card__icon-01 {
    width: 5rem;
    height: auto;
  }
}
.c-card__icon-02 {
  width: 7rem;
  height: 6rem;
}
@media screen and (max-width: 767px) {
  .c-card__icon-02 {
    width: 4.5rem;
    height: auto;
  }
}
.c-card__icon-03 {
  width: 7.2rem;
  height: 5rem;
}
@media screen and (max-width: 767px) {
  .c-card__icon-03 {
    width: 6rem;
    height: auto;
  }
}
.c-card__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #99a766;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-card__title {
    font-size: 2rem;
  }
}
.c-card__text {
  margin-top: 2rem;
  flex: 1;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-card__text {
    margin-top: 1rem;
    font-size: 1.4rem;
  }
}

.c-grid {
  display: grid;
  gap: 5rem;
  margin-top: 4.5rem;
}
.c-grid[data-col="2"] {
  grid-template-columns: repeat(2, 1fr);
  gap: 10rem 5.5rem;
}
@media screen and (max-width: 767px) {
  .c-grid[data-col="2"] {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem 2.5rem;
  }
}
.c-grid[data-col="3"] {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .c-grid[data-col="3"] {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-grid--ratio-1-2 {
  grid-template-columns: 1fr 2fr;
}
@media screen and (max-width: 767px) {
  .c-grid {
    grid-template-columns: 1fr;
  }
}

.c-flex {
  display: flex;
}

.c-flex-c {
  display: flex;
  justify-content: center;
}

.c-flex-e {
  display: flex;
  justify-content: flex-end;
}

.c-flex-rev-c {
  flex-direction: column-reverse;
}

.c-flex-rev-r {
  flex-direction: row-reverse;
}

.c-heading {
  margin-bottom: 5.5rem;
}
@media screen and (max-width: 767px) {
  .c-heading {
    margin-bottom: 3.5rem;
  }
}
.c-heading__icon {
  width: 5.7rem;
  height: 6.8rem;
  margin-inline: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-heading__icon {
    width: 4rem;
    height: auto;
  }
}
.c-heading__subtitle {
  text-align: center;
  font-family: "Comfortaa", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0;
  color: #99a766;
  margin-top: 2rem;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .c-heading__subtitle {
    margin-top: 1rem;
  }
}
.c-heading__title {
  text-align: center;
  margin-top: 1rem;
  font-size: 2.6rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-heading__title {
    font-size: 2rem;
  }
}
.c-heading__catch {
  color: #99a766;
  font-weight: 700;
  font-size: 4rem;
  text-align: center;
  margin-top: 1rem;
  line-height: 1.61;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-heading__catch {
    margin-top: 0.5rem;
    font-size: 3rem;
    line-height: 1.3;
  }
}

.c-btn {
  text-align: center;
  width: fit-content;
  margin: 4.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .c-btn {
    margin: 2rem auto 0;
    width: 100%;
  }
}
.c-btn__link {
  font-size: 1.8rem;
  padding: 2rem 6.5rem;
  background: #5a2e19;
  color: #fff;
  border-radius: 5rem;
  transition: opacity 0.3s;
  cursor: pointer;
  display: block;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-btn__link {
    width: 100%;
    font-size: 1.6rem;
    padding: 1.5rem 2rem;
    border-radius: 3rem;
  }
}
.c-btn:hover {
  opacity: 0.8;
}

.c-form__item {
  max-width: 74rem;
  margin: 5rem auto 0;
}
@media screen and (max-width: 767px) {
  .c-form__item {
    margin: 2.5rem auto 0;
  }
}
.c-form__label {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: solid 1px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-form__label {
    font-size: 1.4rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
}
.c-form .c-tag--required {
  background: #cc3333;
  color: #fff;
  font-size: 1.4rem;
  padding: 0.1rem 0.5rem 0.2rem;
  margin-left: 1rem;
  vertical-align: middle;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .c-form .c-tag--required {
    font-size: 1.1rem;
  }
}
.c-form__input, .c-form__textarea {
  width: 100%;
  font-size: 1.6rem;
  padding: 1rem 1.5rem;
  background: #fff;
  height: 6rem;
  line-height: 6rem;
  border: solid 1px #ac968c;
}
@media screen and (max-width: 767px) {
  .c-form__input, .c-form__textarea {
    height: 5rem;
    line-height: 5rem;
  }
}
.c-form__textarea {
  height: 23rem;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .c-form__textarea {
    height: 20rem;
  }
}
.c-form__flex {
  display: flex;
  gap: 4.5rem;
}
@media screen and (max-width: 767px) {
  .c-form__flex {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.c-form__unit {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.c-form__unit span {
  font-size: 1.6rem;
  width: 2em;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-form__unit span {
    font-size: 1.2rem;
  }
}
.c-form__radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 1rem 0;
}
@media screen and (max-width: 767px) {
  .c-form__radio-group {
    flex-direction: column;
    gap: 1rem;
  }
}
.c-form__radio {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-form__radio {
    font-size: 1.4rem;
  }
}
.c-form__radio input[type=radio] {
  -webkit-appearance: none;
  appearance: none;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid #5a2e19;
  border-radius: 50%;
  margin-right: 0.8rem;
  position: relative;
  background: #fff;
  padding: 0;
  cursor: pointer;
}
.c-form__radio input[type=radio]:checked::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background: #5a2e19;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-form__consent {
  text-align: center;
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .c-form__consent {
    margin-top: 1rem;
  }
}
.c-form__consent label {
  font-size: 1.8rem;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-form__consent label {
    font-size: 1.4rem;
  }
}
.c-form__consent label input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid #5a2e19;
  margin-right: 1rem;
  background: #fff;
  position: relative;
  padding: 0;
  cursor: pointer;
}
.c-form__consent label input[type=checkbox]:checked::after {
  content: "✔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-form__consent label input[type=checkbox]:checked::after {
    font-size: 1.8rem;
  }
}
.c-form__consent label span a {
  text-decoration: underline;
}
.c-form__submit {
  text-align: center;
  width: fit-content;
  margin: 4.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .c-form__submit {
    margin: 2rem auto 0;
    width: 100%;
  }
}
.c-form button {
  font-size: 1.8rem;
  padding: 2rem 6.5rem;
  background: #5a2e19;
  color: #fff;
  border-radius: 5rem;
  cursor: pointer;
  transition: opacity 0.3s;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-form button {
    width: 100%;
    font-size: 1.6rem;
    padding: 1.5rem 2rem;
    border-radius: 3rem;
  }
}
.c-form:hover {
  opacity: 0.8;
}

.p-hero {
  position: relative;
}
.p-hero__bg-wrapper img {
  width: 192rem;
  height: 72.3rem;
  display: block;
  margin-inline: auto;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-hero__bg-wrapper img {
    object-position: 82% -6rem;
    height: 65rem;
  }
}
.p-hero__content {
  position: absolute;
  bottom: -1rem;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-hero__content {
    bottom: -22rem;
    left: 0;
  }
}
.p-hero__title {
  font-weight: 700;
  font-size: 6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.p-hero__title span {
  line-height: 1;
}
.p-hero__title .line {
  background: rgba(255, 255, 255, 0.8);
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
}
.p-hero__title .large {
  font-size: 7.2rem;
}
.p-hero__title .large2 {
  font-size: 7.6rem;
}
@media screen and (max-width: 767px) {
  .p-hero__title {
    font-size: 3rem;
    padding-inline: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .p-hero__title .large {
    font-size: 4rem;
  }
  .p-hero__title .large2 {
    font-size: 4.4rem;
  }
}
.p-hero__subtitle {
  color: #99a766;
  font-weight: 700;
  font-size: 3rem;
  margin-block: 0.5rem 1.5rem;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 767px) {
  .p-hero__subtitle {
    font-size: 2.4rem;
    line-height: 1.3;
    margin-top: 19rem;
    padding-inline: 2rem;
  }
}
.p-hero__text {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-hero__text {
    font-size: 1.6rem;
    line-height: 1.5;
    padding-inline: 2rem;
  }
}
.p-hero__list {
  display: flex;
  gap: 1rem;
  padding-left: 2rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-hero__list {
    padding-left: 0;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-inline: 2rem;
  }
}
.p-hero__list-img01 {
  max-width: 5.5rem;
  height: 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-hero__list-img01 {
    height: 3rem;
  }
}
.p-hero__list-img02 {
  max-width: 3.7rem;
  height: 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-hero__list-img02 {
    height: 3rem;
  }
}
.p-hero__list-img03 {
  max-width: 3.5rem;
  height: 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-hero__list-img03 {
    height: 3rem;
  }
}
.p-hero__list li {
  border-radius: 50%;
  max-width: 19.8rem;
  height: 19.8rem;
  aspect-ratio: 1/1;
  border: solid 1px #c2caa3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 2rem;
  font-size: 1.6rem;
  background: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
  line-height: 1.6125;
}
@media screen and (max-width: 767px) {
  .p-hero__list li {
    font-size: 1.2rem;
    flex: 1;
    padding-top: 1rem;
    line-height: 1.4;
    height: auto;
  }
}
.p-hero__list li img {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-hero__list li img {
    margin-bottom: 0.3rem;
  }
}
.p-hero__list li .u-fn-en {
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1.7838095238;
}
@media screen and (max-width: 767px) {
  .p-hero__list li .u-fn-en {
    font-size: 1.2rem;
  }
}
.p-hero__list li .u-fn-en.time {
  font-size: 2.4rem;
  line-height: 1.2083333333;
}
@media screen and (max-width: 767px) {
  .p-hero__list li .u-fn-en.time {
    font-size: 1.6rem;
  }
}
.p-hero__list li .large {
  font-size: 2.2rem;
  line-height: 1.3181818182;
}
@media screen and (max-width: 767px) {
  .p-hero__list li .large {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-section {
    padding: 0 6%;
    margin-top: 24rem;
  }
}
.p-top-section__inner {
  padding-top: 14rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top-section__inner {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-top: 0;
  }
}
.p-top-section__content {
  flex: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-section__content {
    margin-top: -3rem;
  }
}
.p-top-section__img-left {
  width: 47.2rem;
  height: 49.2rem;
}
.p-top-section__img-right {
  width: 57.3rem;
  height: 66.4rem;
}
.p-top-section__img-left, .p-top-section__img-right {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-top-section__img-left, .p-top-section__img-right {
    width: 65%;
    height: auto;
  }
}
.p-top-section__img-left img, .p-top-section__img-right img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.p-top-section__pretitle {
  font-family: "Comfortaa", sans-serif;
  color: #99a766;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-top-section__pretitle {
    font-size: 1.2rem;
  }
}
.p-top-section__title {
  font-size: 2.6rem;
  font-weight: 500;
  margin-top: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top-section__title {
    font-size: 2rem;
    margin-top: 1rem;
  }
}
.p-top-section__message {
  font-size: 4.8rem;
  font-weight: 700;
  margin-top: 4rem;
  color: #5a2e19;
  letter-spacing: 0.05em;
  line-height: 1.625;
}
@media screen and (max-width: 767px) {
  .p-top-section__message {
    font-size: 2.8rem;
    line-height: 1.3;
  }
}
.p-top-section__message span.small {
  font-size: 3.2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-top-section__message span.small {
    font-size: 2rem;
  }
}
.p-top-section__text {
  margin-top: 5rem;
  line-height: 2;
  color: #5a2e19;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-top-section__text {
    font-size: 1.6rem;
    margin-top: 2rem;
    text-align: left;
  }
}
.p-top-section__doctor {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-top-section__doctor {
    margin-top: 3rem;
  }
}
.p-top-section__doctor-role {
  font-size: 2.2rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top-section__doctor-role {
    font-size: 1.8rem;
  }
}
.p-top-section__doctor-name {
  font-size: 3.2rem;
  font-weight: 500;
  color: #99a766;
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top-section__doctor-name {
    font-size: 2.8rem;
    margin-top: 0;
  }
}
.p-top-section__doctor-name span {
  font-family: "Comfortaa", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-left: 1rem;
  color: #5a2e19;
}
@media screen and (max-width: 767px) {
  .p-top-section__doctor-name span {
    font-size: 1.4rem;
  }
}

.p-top-section__recommend {
  padding-top: 5.5rem;
  max-width: 100rem;
  margin: 11rem auto 17rem;
  border-top: 0.1rem solid #ac968c;
  display: flex;
  gap: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-section__recommend {
    padding-top: 0;
    margin: 5rem auto 8rem;
    gap: 4rem;
    flex-direction: column;
    border: none;
  }
}
.p-top-section__recommend .p-top-section__recommend-title {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top-section__recommend .p-top-section__recommend-title {
    font-size: 3.4rem;
    line-height: 1.3;
    text-align: center;
  }
}
.p-top-section__recommend .p-top-section__recommend-title .small {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-section__recommend .p-top-section__recommend-title .small {
    font-size: 2rem;
  }
}
.p-top-section__recommend .p-top-section__recommend-title .u-color-main {
  font-weight: 700;
}
.p-top-section__recommend .p-top-section__pretitle {
  margin-top: 1.5rem;
  font-weight: 400;
  font-size: 2rem;
  font-family: "Comfortaa", sans-serif;
  color: #ac968c;
  letter-spacing: 0.1em;
  line-height: 1.339;
}
@media screen and (max-width: 767px) {
  .p-top-section__recommend .p-top-section__pretitle {
    font-size: 1.4rem;
    text-align: center;
  }
}

.p-recommend-list {
  display: inline-flex;
  flex-direction: column;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-recommend-list {
    gap: 1rem;
  }
}
.p-recommend-list__item {
  position: relative;
  padding-left: 4rem;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-recommend-list__item {
    font-size: 1.56rem;
    padding-left: 3.5rem;
  }
}
.p-recommend-list__item span {
  font-weight: 700;
  color: #99a766;
}
.p-recommend-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3.2rem;
  height: 3.1rem;
  background: url("../img/icon-check.svg") no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-recommend-list__item::before {
    width: 2.6rem;
  }
}

.p-value-section {
  position: relative;
  z-index: 1;
}
.p-value-section::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #fcf9f4;
  border-radius: 8rem;
  height: 86.86rem;
  width: 100%;
  z-index: -1;
  top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-value-section::before {
    border-radius: 4rem;
    top: 2rem;
    height: calc(100% - 8rem);
  }
}
.p-value-section__bottom-img {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-value-section__bottom-img {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 5rem;
  }
}
.p-value-section__bottom-img img {
  width: 132.6rem;
  height: 36.3rem;
  border-radius: 5rem;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-value-section__bottom-img img {
    width: 100%;
    height: 14rem;
    border-radius: 2rem;
  }
}

.p-treatment-section {
  padding-block: 11rem 15rem;
}
@media screen and (max-width: 767px) {
  .p-treatment-section {
    padding-block: 8rem 10rem;
  }
}

.p-treatment-block {
  display: flex;
  align-items: flex-end;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .p-treatment-block {
    gap: 3rem;
    flex-direction: column;
  }
}
.p-treatment-block--cs60 {
  flex-direction: row-reverse;
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-treatment-block--cs60 {
    flex-direction: column;
    margin-top: 6rem;
  }
}
.p-treatment-block--cs60 .p-treatment-block__img img {
  width: 63.5rem;
  height: 36.27rem;
}
@media screen and (max-width: 767px) {
  .p-treatment-block--cs60 .p-treatment-block__img img {
    width: 100%;
    height: auto;
  }
}
.p-treatment-block__img {
  flex-shrink: 0;
}
.p-treatment-block__img img {
  width: 63.5rem;
  height: 66.5rem;
  border-radius: 5rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-treatment-block__img img {
    width: 100%;
    height: auto;
    border-radius: 3rem;
  }
}
.p-treatment-block__content {
  flex: 1;
}
.p-treatment-block__heading {
  font-size: 4.8rem;
  font-weight: 700;
  color: #99a766;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  letter-spacing: 0.05em;
  line-height: 1.5658333333;
}
@media screen and (max-width: 767px) {
  .p-treatment-block__heading {
    gap: 1rem;
    font-size: 2.6rem;
  }
}
.p-treatment-block__heading .small {
  color: #5a2e19;
  font-size: 75%;
}
.p-treatment-block__heading-en {
  display: block;
  font-size: 2.2rem;
  font-weight: 400;
  color: #ac968c;
  font-family: "Comfortaa", sans-serif;
  margin-top: 1rem;
  line-height: 1.75;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-treatment-block__heading-en {
    font-size: 1.4rem;
  }
}
.p-treatment-block__text-area {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-treatment-block__text-area {
    margin-top: 2rem;
  }
}
.p-treatment-block__text-area p {
  font-size: 1.7rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: #5a2e19;
}
@media screen and (max-width: 767px) {
  .p-treatment-block__text-area p {
    font-size: 1.4rem;
  }
}
.p-treatment-block__text-area p + p {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-treatment-block__text-area p + p {
    margin-top: 2rem;
  }
}

.p-treatment-flow {
  margin-top: 11rem;
  background: #fcf9f4;
  border-radius: 5rem;
  padding: 6rem 15rem 6.5rem;
  border: solid 1px #5a2e19;
}
@media screen and (max-width: 767px) {
  .p-treatment-flow {
    margin-top: 8rem;
    padding: 2rem;
    border-radius: 3rem;
  }
}
.p-treatment-flow__title {
  font-size: 3.4rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  border-bottom: dotted 0.6rem #99a766;
  padding-bottom: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-treatment-flow__title {
    text-align: center;
    font-size: 2.4rem;
    padding-bottom: 0.5rem;
    margin-bottom: 4.5rem;
    border-bottom: dotted 0.5rem #99a766;
  }
}
.p-treatment-flow__list {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: flex-start;
  counter-reset: flow-counter;
}
@media screen and (max-width: 767px) {
  .p-treatment-flow__list {
    flex-direction: column;
    gap: 6rem;
    align-items: center;
  }
}
.p-treatment-flow__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
}
.p-treatment-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 9rem;
  transform: translateX(50%);
  width: 1.4rem;
  height: 2.8rem;
  background: url(../img/arrow.svg) no-repeat center center/cover;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-treatment-flow__item:not(:last-child)::after {
    right: inherit;
    top: inherit;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    bottom: -4rem;
  }
}
.p-treatment-flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background: #99a766;
  border-radius: 50%;
  width: 6.9rem;
  height: 6.9rem;
  padding-top: 0.5rem;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .p-treatment-flow__step {
    width: 6rem;
    height: 6rem;
  }
}
.p-treatment-flow__step-label {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-treatment-flow__step-label {
    font-size: 1.2rem;
  }
}
.p-treatment-flow__step-num {
  font-size: 3.2rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-treatment-flow__step-num {
    font-size: 2.4rem;
  }
}
.p-treatment-flow__img {
  width: 21.9rem;
  height: 21.9rem;
  border-radius: 50%;
  overflow: hidden;
}
.p-treatment-flow__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-treatment-flow__name {
  margin-block: 1.5rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: #54693a;
  flex-grow: 1;
  min-height: 2.5em;
  display: flex;
  align-items: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-treatment-flow__name {
    margin-block: 1rem 1.5rem;
    font-size: 2rem;
    min-height: auto;
  }
}
.p-treatment-flow__desc {
  margin-top: auto;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.p-treatment-visit {
  display: flex;
  align-items: flex-start;
  gap: 6rem;
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .p-treatment-visit {
    margin-top: 6rem;
    flex-direction: column;
  }
}
.p-treatment-visit__content {
  flex: 1;
}
.p-treatment-visit__heading {
  font-size: 4.8rem;
  font-weight: 700;
  color: #99a766;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  letter-spacing: 0.05em;
  line-height: 1.5658333333;
}
@media screen and (max-width: 767px) {
  .p-treatment-visit__heading {
    font-size: 3rem;
    gap: 1.5rem;
  }
}
.p-treatment-visit__heading-en {
  display: block;
  font-size: 2.2rem;
  font-weight: 400;
  color: #ac968c;
  font-family: "Comfortaa", sans-serif;
  margin-top: 1rem;
  line-height: 1.75;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-treatment-visit__heading-en {
    font-size: 1.6rem;
  }
}
.p-treatment-visit__text {
  margin-top: 2.5rem;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #5a2e19;
}
@media screen and (max-width: 767px) {
  .p-treatment-visit__text {
    font-size: 1.4rem;
    margin-top: 1.5rem;
  }
}
.p-treatment-visit__badge {
  display: inline-block;
  margin-top: 2rem;
  background: #5a2e19;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0.5rem 3rem;
  border-radius: 5rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-treatment-visit__badge {
    font-size: 1.4rem;
    padding: 0.3rem 2.5rem;
  }
}
.p-treatment-visit__img {
  flex-shrink: 0;
}
.p-treatment-visit__img img {
  width: 63.5rem;
  height: 36.3rem;
  border-radius: 5rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-treatment-visit__img img {
    width: 100%;
    height: auto;
    border-radius: 3rem;
  }
}

.p-price-section {
  position: relative;
  z-index: 1;
}
.p-price-section::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #fcf9f4;
  border-radius: 8rem;
  height: calc(100% + 9rem);
  width: 100%;
  z-index: -1;
  top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-price-section::before {
    border-radius: 4rem;
    height: calc(100% + 4rem);
  }
}
.p-price-section__note {
  text-align: center;
  font-size: 2rem;
  margin-top: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-price-section__note {
    font-size: 1.6rem;
  }
}

.p-price-table {
  display: flex;
  gap: 3rem;
  margin-top: 6rem;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-price-table {
    flex-direction: column;
  }
}
.p-price-table__item {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-price-table__item {
    flex-direction: column;
  }
}
.p-price-table__img {
  flex-shrink: 0;
  width: 30.9rem;
}
@media screen and (max-width: 767px) {
  .p-price-table__img {
    width: 80%;
    margin-inline: auto;
  }
}
.p-price-table__img img {
  width: 100%;
  height: auto;
  border-radius: 4rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-price-table__img img {
    border-radius: 3rem;
  }
}
.p-price-table__content {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-price-table__content {
    margin-inline: auto;
  }
}
.p-price-table__name {
  font-size: 3.5rem;
  font-weight: 500;
  color: #99a766;
  border-bottom: 0.4rem dotted #c2caa3;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.5714285714;
}
@media screen and (max-width: 767px) {
  .p-price-table__name {
    font-size: 2.6rem;
    text-align: center;
  }
}
.p-price-table__name .small {
  font-size: 75%;
  color: #5a2e19;
}
.p-price-table__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-price-table__list {
    gap: 1rem;
  }
}
.p-price-table__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .p-price-table__row {
    font-size: 1.8rem;
    gap: 1.5rem;
  }
}
.p-price-table__row dt,
.p-price-table__row dd {
  flex-shrink: 0;
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .p-price-table__row dt,
  .p-price-table__row dd {
    font-size: 2rem;
  }
}
.p-price-table__row dt {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
.p-price-table__row dd {
  font-weight: 400;
  color: #99a766;
  font-family: "Comfortaa", sans-serif;
  font-size: 150%;
  text-align: right;
  line-height: 1;
  letter-spacing: 0em;
}
.p-price-table__row dd span {
  font-size: 2rem;
  font-weight: 500;
  color: #5a2e19;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-price-table__row dd span {
    font-size: 1.4rem;
  }
}
.p-price-table__row dd span.mark {
  font-size: 2.6rem;
  font-weight: 400;
  color: #99a766;
}
@media screen and (max-width: 767px) {
  .p-price-table__row dd span.mark {
    font-size: 2.2rem;
  }
}

.p-price-couple {
  margin-top: 9.5rem;
  border-radius: 5rem;
  padding: 6rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-price-couple {
    border-radius: 3rem;
    padding: 3rem 2rem;
    margin-top: 8.5rem;
  }
}
.p-price-couple__heading {
  font-size: 3.8rem;
  font-weight: 700;
  color: #5a2e19;
  text-align: center;
  margin-top: -13rem;
  display: flex;
  justify-content: center;
  align-items: baseline;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-price-couple__heading {
    font-size: 2.2rem;
    margin-top: -8rem;
    line-height: 1.3;
  }
}
@media screen and (max-width: 767px) {
  .p-price-couple__heading span {
    flex-shrink: 0;
  }
}
.p-price-couple__heading .large {
  font-size: 175%;
  color: #99a766;
}
.p-price-couple__heading .heart {
  color: #99a766;
}
.p-price-couple__heading img {
  vertical-align: middle;
  width: 8.9rem;
  height: 5.5rem;
  margin-inline: 2rem;
  position: relative;
  top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-price-couple__heading img {
    width: 6rem;
    height: auto;
    margin-inline: 1rem;
    top: 2.5rem;
  }
}
.p-price-couple__heading img.icon-r {
  margin-left: -1rem;
}
@media screen and (max-width: 767px) {
  .p-price-couple__heading img.icon-r {
    margin-left: 0.5rem;
  }
}
.p-price-couple__lead {
  font-size: 2.6rem;
  color: #5a2e19;
  font-weight: 700;
  text-align: center;
  margin-block: -1rem 3rem;
  letter-spacing: 0.05em;
  line-height: 1.3846153846;
}
@media screen and (max-width: 767px) {
  .p-price-couple__lead {
    font-size: 1.8rem;
    margin-block: 2rem 1rem;
    font-size: 1.8rem;
  }
}
.p-price-couple__lead .u-color-main {
  font-size: 175%;
  color: #99a766;
}
.p-price-couple__item {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 500;
  margin-top: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-price-couple__item {
    font-size: 1.8rem;
    margin-top: 2.5rem;
  }
}
.p-price-couple__item span.bold {
  font-weight: 700;
}
.p-price-couple__item span.small {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-price-couple__item span.small {
    font-size: 1.4rem;
  }
}
.p-price-couple__item span.large {
  font-size: 3.2rem;
  line-height: 1.7409375;
}
@media screen and (max-width: 767px) {
  .p-price-couple__item span.large {
    font-size: 2.2rem;
  }
}
.p-price-couple__price {
  font-size: 2.6rem;
  font-weight: 400;
  color: #99a766;
  margin-left: 1rem;
  line-height: 1;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-price-couple__price {
    font-size: 2rem;
    display: inline-block;
  }
}
.p-price-couple__price span {
  font-size: 175%;
}

.p-price-payment {
  margin-top: 8rem;
  max-width: 100rem;
  margin-inline: auto;
}
.p-price-payment__title {
  font-size: 3.4rem;
  font-weight: 700;
  border-bottom: 0.6rem dotted #c2caa3;
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-price-payment__title {
    text-align: center;
    font-size: 2.4rem;
    padding-bottom: 0.5rem;
    margin-bottom: 4.5rem;
    border-bottom: dotted 0.5rem #c2caa3;
  }
}
.p-price-payment__list {
  display: flex;
  gap: 6rem;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-price-payment__list {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
}
.p-price-payment__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-price-payment__item {
    width: 100%;
  }
}
.p-price-payment__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background: #54693a;
  border-radius: 50%;
  width: 6.9rem;
  height: 6.9rem;
  padding-top: 0.5rem;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .p-price-payment__step {
    width: 6rem;
    height: 6rem;
  }
}
.p-price-payment__step-label {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-price-payment__step-label {
    font-size: 1.2rem;
  }
}
.p-price-payment__step-num {
  font-size: 3.2rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-price-payment__step-num {
    font-size: 2.4rem;
  }
}
.p-price-payment__img img {
  width: 21.9rem;
  height: 21.9rem;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.p-price-payment__img-v02 {
  height: 21.9rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-price-payment__img-v02 {
    height: 12rem;
  }
}
.p-price-payment__img-v02 img {
  width: 51.4rem;
  height: 12.3rem;
  object-fit: cover;
  display: block;
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  .p-price-payment__img-v02 img {
    width: 1000%;
    height: 7rem;
    margin-left: 1rem;
    margin-top: 5rem;
  }
}
.p-price-payment__name {
  margin-top: 1.5rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: #54693a;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-price-payment__name {
    margin-top: 1rem;
    font-size: 2.2rem;
  }
}

.p-voice-section {
  margin-top: 18rem;
  padding-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-voice-section {
    margin-top: 8rem;
  }
}

.p-voice-card {
  display: flex;
  flex-direction: column;
}
.p-voice-card__img img {
  width: 100%;
  height: 36.3rem;
  object-fit: cover;
  display: block;
  border-radius: 5rem;
}
@media screen and (max-width: 767px) {
  .p-voice-card__img img {
    height: 20rem;
    border-radius: 3rem;
  }
}
.p-voice-card__body {
  padding-top: 3.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-voice-card__body {
    padding: 2.5rem 0;
  }
}
.p-voice-card__title {
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;
  color: #54693a;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-voice-card__title {
    font-size: 2rem;
    text-align: left;
  }
}
.p-voice-card__meta {
  display: flex;
  gap: 3.5rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-voice-card__meta {
    gap: 2rem;
    margin-top: 2.5rem;
  }
}
.p-voice-card__meta li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-voice-card__meta li {
    gap: 1rem;
    font-size: 1.4rem;
  }
}
.p-voice-card__meta-label {
  background: #e0e5d1;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-voice-card__meta-label {
    font-size: 1.4rem;
    padding: 0.5rem 2rem;
  }
}
.p-voice-card__meta-value {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-voice-card__meta-value {
    font-size: 1.4rem;
  }
}
.p-voice-card__tags {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-voice-card__tags {
    gap: 1rem;
    margin-top: 2rem;
  }
}
.p-voice-card__tag {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-voice-card__tag {
    gap: 1rem;
    font-size: 1.4rem;
  }
}
.p-voice-card__tag-label {
  background: #cdc0ba;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-voice-card__tag-label {
    font-size: 1.4rem;
    padding: 0.5rem 2rem;
  }
}
.p-voice-card__tag-value {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-voice-card__tag-value {
    font-size: 1.4rem;
    line-height: 1.2;
  }
}
.p-voice-card__text {
  margin-top: 3rem;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-voice-card__text {
    margin-top: 2rem;
    font-size: 1.4rem;
  }
}

.p-doctor-img-full {
  margin-top: 13.5rem;
}
@media screen and (max-width: 767px) {
  .p-doctor-img-full {
    margin-top: 5rem;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-doctor-img-full img {
  width: 182rem;
  height: 49.8rem;
  object-fit: cover;
  display: block;
  border-radius: 7rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-doctor-img-full img {
    width: 100%;
    height: 14rem;
    border-radius: 2rem;
  }
}

.p-doctor-section {
  padding-block: 11.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-doctor-section {
    padding-block: 8rem 0;
  }
}
.p-doctor-section__inner {
  display: flex;
  gap: 5rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-doctor-section__inner {
    flex-direction: column;
    gap: 3rem;
  }
}
.p-doctor-section__img-area {
  flex-shrink: 0;
  max-width: 40.8rem;
}
@media screen and (max-width: 767px) {
  .p-doctor-section__img-area {
    width: 90%;
    margin-inline: auto;
  }
}
.p-doctor-section__img img {
  width: 40.8rem;
  height: 40.8rem;
  border-radius: 4rem;
  display: block;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-doctor-section__img img {
    width: 100%;
    height: auto;
    border-radius: 2rem;
  }
}
.p-doctor-section__certificates {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.p-doctor-section__certificates img {
  width: 19.7rem;
  height: auto;
  border-radius: 3rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-doctor-section__certificates img {
    width: calc((100% - 1rem) / 2);
    border-radius: 2rem;
  }
}
.p-doctor-section__content {
  flex: 1;
}
.p-doctor-section__clinic {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-doctor-section__clinic {
    font-size: 1.8rem;
  }
}
.p-doctor-section__name {
  font-size: 4.6rem;
  font-weight: 700;
  color: #99a766;
  margin-top: 0.5rem;
  letter-spacing: 0.2em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-doctor-section__name {
    font-size: 3rem;
    margin-top: 0;
  }
}
.p-doctor-section__name span {
  font-family: "Comfortaa", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  margin-left: 1rem;
  vertical-align: middle;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-doctor-section__name span {
    font-size: 1.4rem;
    margin-left: 0;
  }
}
.p-doctor-section__history {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-doctor-section__history {
    gap: 2rem;
  }
}
.p-doctor-section__history-item {
  display: flex;
  gap: 2rem;
  align-items: baseline;
}
@media screen and (max-width: 767px) {
  .p-doctor-section__history-item {
    gap: 0;
    flex-direction: column;
  }
}
.p-doctor-section__history-item dt,
.p-doctor-section__history-item dd {
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-doctor-section__history-item dt,
  .p-doctor-section__history-item dd {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.p-doctor-section__history-item dt {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1.6rem;
  position: relative;
  width: 14%;
}
@media screen and (max-width: 767px) {
  .p-doctor-section__history-item dt {
    width: 100%;
    font-size: 1.4rem;
  }
}
.p-doctor-section__history-item dt::before {
  content: "●";
  color: #ac968c;
  margin-right: 0.2em;
}
.p-doctor-section__profile-box {
  margin-top: 3.5rem;
}
.p-doctor-section__profile-label {
  display: inline-block;
  background: #5a2e19;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  padding: 1rem 2rem;
  border-radius: 5rem;
  line-height: 1;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-doctor-section__profile-label {
    padding: 1rem 2.5rem;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
}
.p-doctor-section__profile-text {
  font-size: 1.7rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-doctor-section__profile-text {
    font-size: 1.4rem;
  }
}
.p-doctor-section__profile-text + .p-doctor-section__profile-text {
  margin-top: 1.5rem;
}

.p-contact__inner {
  max-width: 100rem;
  padding-inline: 6%;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1367px) {
  .p-contact__inner {
    padding-inline: 2rem;
  }
}
.p-contact {
  /* タイトル周り */
}
.p-contact__title {
  font-size: 3.6rem;
  border-bottom: 1px solid #5a2e19;
  padding-bottom: 1rem;
  margin-bottom: 5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact__title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
}
.p-contact {
  /* 電話エリア */
}
.p-contact__tel-content {
  text-align: center;
}
.p-contact__tel-number {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-contact__tel-number {
    font-size: 3rem;
  }
}
.p-contact__tel-name {
  font-size: 3rem;
  line-height: 1;
  margin-block: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact__tel-name {
    font-size: 1.7rem;
    margin-block: 2rem;
  }
}
.p-contact__tel-time {
  font-size: 2rem;
  margin-block: 2rem 16rem;
}
@media screen and (max-width: 767px) {
  .p-contact__tel-time {
    line-height: 1.4285714286;
    font-size: 1.4rem;
    margin-block: 1rem 7rem;
  }
}
.p-contact__thanks-btn {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-contact__thanks-btn {
    margin-top: 4rem;
    width: 100%;
  }
}
.p-contact__thanks-btn .c-btn__link {
  letter-spacing: 0.05em;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-contact__thanks-btn .c-btn__link {
    width: 100%;
    font-size: 1.6rem;
  }
}

.p-privacy {
  position: relative;
  z-index: 10;
}
.p-privacy__inner {
  max-width: 102.4rem;
  margin-inline: auto;
  padding-inline: 2rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__inner {
    padding-inline: 6%;
  }
}
.p-privacy__lead {
  font-size: 1.6rem;
  margin-bottom: 8rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-privacy__lead {
    font-size: 1.2rem;
    margin-bottom: 4rem;
  }
}
.p-privacy__block {
  margin-bottom: 4.8rem;
}
.p-privacy__title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .p-privacy__title {
    font-size: 1.8rem;
  }
}
.p-privacy__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 0.6rem;
  height: 1.2em;
  background: #5a2e19;
}
.p-privacy p {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-privacy p {
    font-size: 1.4rem;
  }
}
.p-privacy__list {
  margin-top: 1.2rem;
  padding-left: 1.4rem;
}
.p-privacy__list li {
  line-height: 1.9;
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
  list-style: disc;
}
@media screen and (max-width: 767px) {
  .p-privacy__list li {
    font-size: 1.4rem;
  }
}
.p-privacy__contact {
  margin-top: 1.2rem;
  line-height: 1.9;
}
.p-privacy__date {
  margin-top: 4rem;
  font-size: 1.4rem;
  color: #ac968c;
}
@media screen and (max-width: 767px) {
  .p-privacy__date {
    font-size: 1.2rem;
  }
}

.u-color-main {
  color: #99a766;
}

.u-color-main30 {
  color: #e0e5d1;
}

.u-color-sub {
  color: #54693a;
}

.u-color-base {
  color: #5a2e19;
}

.u-color-base50 {
  color: #ac968c;
}

.u-color-base30 {
  color: #cdc0ba;
}

.u-color-white {
  color: #fff;
}

.u-color-bg {
  color: #fcf9f4;
}

.u-m-a {
  margin: 0 auto;
}

.u-text-l {
  text-align: left;
}

.u-text-c {
  text-align: center;
}

.u-text-r {
  text-align: right;
}

.u-text-j {
  text-align: justify;
}

.u-fn-ja {
  font-family: "Zen Maru Gothic", sans-serif;
}

.u-fn-en {
  font-family: "Comfortaa", sans-serif;
}
/*# sourceMappingURL=style.css.map */
