@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

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

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}

/* pcの電話番号発信対応 */

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

/* hover指定できるPCを想定したスタイル */
/* hoverが使えないタッチ端末を想定した装飾 */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 3.75rem;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* fadeUp アニメーション（IntersectionObserver で .is-visible 付与） */
.fadeUp {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}

.fadeUp.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* fadeUp-sp: SPのみ有効なfadeUp（PCでは独自のアニメーションを持つ要素用） */
.fadeUp-sp {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}

.fadeUp-sp.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.l-breadcrumb {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.l-columns {
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
  padding-top: 70px;
  padding-top: 4.375rem;
}

.l-columns__inner.l-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 90px;
  row-gap: 5.625rem;
}

.l-drawer {
  bottom: 0;
  left: 0;
  opacity: 0;
  overflow: auto;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  visibility: hidden;
  z-index: 100;
}

.l-drawer[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}

.l-header {
  position: absolute;
  width: 100%;
  z-index: 1000;
}

.l-header.is-scrolled {
  position: fixed;
  top: 0;
}

.l-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 580px;
  max-width: 36.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  width: 100%;
}

.l-post-list {
  margin-top: 80px;
  margin-top: 5rem;
}

.c-btn02 {
  background: #fff;
  border: 1px solid #C9B386;
  border-radius: 50px;
  display: inline-block;
  min-width: 200px;
  min-width: 12.5rem;
  padding: 12px 30px;
  padding: 0.75rem 1.875rem;
  position: relative;
  text-align: center;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.c-btn02::after {
  -webkit-transform: translate(0, -50%);
  border-bottom: 5px solid transparent;
  border-bottom: 0.3125rem solid transparent;
  border-left: 5px solid #c9b386;
  border-left: 0.3125rem solid #c9b386;
  border-right: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-top: 0.3125rem solid transparent;
  content: "";
  height: 0;
  position: absolute;
  right: 18px;
  right: 1.125rem;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  width: 0;
}

.c-btn02__text {
  color: #C9B386;
  display: block;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 400;
  line-height: 1;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.c-btn02--gold {
  background: #C9B386;
}

.c-btn02--gold .c-btn02__text {
  color: #fff;
}

.c-btn02--gold::after {
  border-left-color: #fff;
}

.c-btn02--sm {
  min-width: 125px;
  min-width: 7.8125rem;
  padding: 6px 28px;
  padding: 0.375rem 1.75rem;
}

.c-btn02--sm .c-btn02__text {
  font-size: max(11px, 10px);
  font-size: max(0.6875rem, 10px);
}

.c-btn02--sm::after {
  border-bottom-width: 3px;
  border-bottom-width: 0.1875rem;
  border-left-width: 3px;
  border-left-width: 0.1875rem;
  border-top-width: 3px;
  border-top-width: 0.1875rem;
  right: 10px;
  right: 0.625rem;
}
.c-no-post {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  text-align: center;
}

.c-section-heading1 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.c-section-heading1[data-english]::before {
  content: attr(data-english);
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
  margin-bottom: 0.125rem;
  text-transform: uppercase;
}

.c-section-heading1::after {
  content: "";
  height: 4px;
  height: 0.25rem;
  margin-top: 6px;
  margin-top: 0.375rem;
  width: 39px;
  width: 2.4375rem;
}

.c-text {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 300;
  line-height: 2;
}

.c-title01 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 76px;
  padding-bottom: 4.75rem;
  position: relative;
  row-gap: 22px;
  row-gap: 1.375rem;
  text-align: center;
}

.c-title01::after {
  -webkit-transform: translate(-50%, 0);
  background: #000000;
  bottom: 0;
  content: "";
  height: 50px;
  height: 3.125rem;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0);
  width: 1px;
}

.c-title01__sub {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1;
}

.c-title01__main {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1;
}

.c-title02 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.5;
}

.c-title03 {
  background: #F4F1EB;
  border-radius: 0.625rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1.4545454545;
  padding: 10px 16px 8px;
  padding: 0.625rem 1rem 0.5rem;
  position: relative;
}

.c-title03--sm {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  line-height: 1.4444444444;
}

.c-title03::before {
  background: #C9B386;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 6px;
  width: 0.375rem;
  z-index: 1;
}

.p-404 {
  margin-top: 110px;
  margin-top: 6.875rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  padding-top: 80px;
  padding-top: 5rem;
  text-align: center;
}

.p-404__number {
  color: #C9B386;
  font-family: "Inter", sans-serif;
  font-size: 120px;
  font-size: 7.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.p-404__title {
  color: #1E1E1E;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-404__text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.8;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-404__btn {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-about {
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

.p-about__nav {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-about__nav-list {
  grid-gap: 0.625rem;
  display: grid;
  gap: 10px;
  gap: 0.625rem;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
}

.p-about__nav-link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #C9B386;
  border: 1px solid #C9B386;
  border-radius: 0.625rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 600;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  padding: 0.625rem;
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.p-about__nav-link:focus-visible {
  background: #fff;
  color: #C9B386;
}

.p-about__section {
  padding-top: 60px;
  padding-top: 3.75rem;
}
.p-about__section--doctor {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  padding-top: 100px;
  padding-top: 6.25rem;
}
.p-about__section--staff {
  padding-top: 100px;
  padding-top: 6.25rem;
}

.p-about__heading {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  border-bottom: 1px solid #C9B386;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 20px;
  gap: 0.5rem 1.25rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.p-about__heading-ja {
  color: #C9B386;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 900;
}

.p-about__heading-en {
  color: #C9B386;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 400;
}

.p-about__message {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-about__message-photo {
  aspect-ratio: 390/452;
  border-radius: 0.625rem;
  overflow: hidden;
}

.p-about__message-photo img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-about__message-body {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-about__message-title {
  color: #C9B386;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
}

.p-about__message-texts {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-about__message-text {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 2;
}
.p-about__message-text + .p-about__message-text {
  margin-top: 1lh;
}

.p-about__message-name {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-about__gallery-wrap {
  background: #F4F1EB;
  border-radius: 0.625rem;
  padding: 25px 20px;
  padding: 1.5625rem 1.25rem;
}

.p-about__heading--gallery {
  border: none;
}

.p-about__gallery {
  grid-gap: 0.625rem;
  display: grid;
  gap: 10px;
  gap: 0.625rem;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-about__gallery-img {
  aspect-ratio: 1/1;
  width: 100%;
}

.p-about__gallery-img img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-about__staff-group {
  margin-top: 60px;
  margin-top: 3.75rem;
}
.p-about__staff-group:first-of-type {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-about__staff-group.p-about__staff-group--therapist {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.p-about__info.p-about__info--therapist {
  margin-top: 34px;
  margin-top: 2.125rem;
}

.p-about__staff-group-title {
  border-bottom: 1px solid #C9B386;
  color: #0055A2;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 900;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  position: relative;
}
.p-about__staff-group-title::after {
  background: #C9B386;
  content: "";
  height: 10px;
  height: 0.625rem;
  left: 0;
  position: absolute;
  top: 100%;
  width: 37%;
}

.p-about__member {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-about__member + .p-about__member {
  margin-top: 80px;
  margin-top: 5rem;
}

.p-about__member--director {
  border-top: 1px solid #C9B386;
  margin-top: 60px;
  margin-top: 3.75rem;
  padding-top: 60px;
  padding-top: 3.75rem;
}

.p-about__photo {
  aspect-ratio: 350/400;
  border-radius: 0.625rem;
  overflow: hidden;
}

.p-about__photo img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-about__info {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-about__role {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}

.p-about__role--message {
  color: #C9B386;
}

.p-about__name {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 3px;
  margin-top: 0.1875rem;
}

.p-about__name--message {
  color: #C9B386;
}

.p-about__credentials {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-about__credential {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
}

.p-about__detail {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-about__detail--director {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-about__detail-heading {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

.p-about__detail-heading.p-about__detail-heading--therapist {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
}

.p-about__detail-list {
  list-style: none;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-about__detail-list.p-about__detail-list--therapist {
  margin-top: 0;
}

.p-about__therapist-detail {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-about__therapist-detail + .p-about__therapist-detail {
  margin-top: 27px;
  margin-top: 1.6875rem;
}

.p-about__bio {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  margin-top: 32px;
  margin-top: 2rem;
}

.p-about__detail-item {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
}

.p-access-content__read {
  margin-top: 9px;
  margin-top: 0.5625rem;
}

.p-access-content__map {
  border-radius: 0.625rem;
  margin-top: 24px;
  margin-top: 1.5rem;
  overflow: hidden;
}

.p-access-content__map iframe {
  aspect-ratio: 1000/400;
  display: block;
  height: auto;
  width: 100%;
}

.p-access-content__img {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-access-content__img img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-access-content__read {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-access-content__stepList {
  grid-row-gap: 1.25rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 10px;
  margin-top: 0.625rem;
  row-gap: 20px;
  row-gap: 1.25rem;
}

.p-access-content__stepText {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 300;
  line-height: 1.95;
}

.p-access-content__gallery {
  grid-gap: 0.625rem;
  display: grid;
  gap: 10px;
  gap: 0.625rem;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-access-content__gallery-img {
  border-radius: 0.375rem;
  overflow: hidden;
}

.p-access-content__gallery-img img {
  -o-object-fit: cover;
  height: auto;
     object-fit: cover;
  width: 100%;
}

#TRAIN .p-access-content__gallery img {
  aspect-ratio: 495/340;
}

.p-access-content__textList {
  grid-row-gap: 0.375rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 10px;
  margin-top: 0.625rem;
  row-gap: 6px;
  row-gap: 0.375rem;
}

.p-access-content__textItem {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 300;
  line-height: 1.95;
  padding-left: 22px;
  padding-left: 1.375rem;
  position: relative;
}

.p-access-content__textItem::before {
  background: #C9B386;
  border-radius: 0.1875rem;
  content: "";
  height: 6px;
  height: 0.375rem;
  left: 8px;
  left: 0.5rem;
  position: absolute;
  top: 10px;
  top: 0.625rem;
  width: 6px;
  width: 0.375rem;
}

.p-access-content__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  padding-left: 22px;
  padding-left: 1.375rem;
  padding-right: 22px;
  padding-right: 1.375rem;
}

.p-access-content__text a {
  color: #3366cc;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.2;
  word-break: break-all;
}

.p-access-content__attention {
  background: #fdfbf7;
  border-radius: 0.5rem;
  margin-top: 24px;
  margin-top: 1.5rem;
  padding: 10px 16px;
  padding: 0.625rem 1rem;
  position: relative;
}

.p-access-content__attention::before {
  background: #D96666;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 4px;
  width: 0.25rem;
}

.p-access-content__attention-title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #993333;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 700;
  gap: 6px;
  gap: 0.375rem;
  line-height: 1;
}

.p-access-content__attention-title span {
  display: inline-block;
  margin-top: 2px;
  margin-top: 0.125rem;
  width: 14px;
  width: 0.875rem;
}

.p-access-content__attention-title span img {
  -o-object-fit: contain;
  aspect-ratio: 14/20;
  height: 100%;
     object-fit: contain;
  width: 100%;
}

.p-access-content__attention-text {
  color: #666666;
  font-size: max(15px, 10px);
  font-size: max(0.9375rem, 10px);
  font-weight: 300;
  line-height: 1.85;
}

.p-access__inner {
  grid-row-gap: 3.125rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
  padding-top: 90px;
  padding-top: 5.625rem;
  row-gap: 50px;
  row-gap: 3.125rem;
}

.p-access__information {
  background: #F4F1EB;
  border-radius: 0.75rem;
  padding: 20px 20px 20px 18px;
  padding: 1.25rem 1.25rem 1.25rem 1.125rem;
  position: relative;
}

.p-access__information::before {
  background: #C9B386;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 6px;
  width: 0.375rem;
}

.p-access__information-title {
  color: #C9B386;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1.2;
}

.p-access__information-list {
  grid-row-gap: 0.625rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 16px;
  margin-top: 1rem;
  row-gap: 10px;
  row-gap: 0.625rem;
}

.p-access__information-item {
  grid-gap: 0 0.625rem;
  display: grid;
  gap: 0 10px;
  gap: 0 0.625rem;
  grid-template-columns: 1fr;
}

.p-access__information-term {
  color: #C9B386;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  line-height: 1.448;
}

.p-access__information-desc {
  color: #1E1E1E;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 300;
  line-height: 1.85;
}

.p-breadcrumb span[property=itemListElement]:nth-child(n+2)::before {
  content: ">";
  display: inline-block;
  height: auto;
  margin-right: 7px;
  margin-right: 0.4375rem;
  width: auto;
}

.p-breadcrumb__wrapper {
  -moz-column-gap: 0.5rem;
  -ms-overflow-style: none;
  color: #000000;
       -webkit-column-gap: 0.5rem;
               column-gap: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.5;
  overflow: auto;
  position: relative;
  scrollbar-width: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.p-breadcrumb__wrapper::-webkit-scrollbar {
  display: none;
}

.p-breadcrumb__wrapper a {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.p-conditioning {
  padding-top: 100px;
  padding-top: 6.25rem;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-not-valid-tip,
.js-custom-error {
  color: #993333;
  display: block;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  margin-top: 4px;
  margin-top: 0.25rem;
}

.wpcf7-response-output {
  border-radius: 0.25rem;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  margin: 16px 0 0;
  margin: 1rem 0 0;
  padding: 8px 12px;
  padding: 0.5rem 0.75rem;
}

.p-contact__inner {
  margin-top: 60px;
  margin-top: 3.75rem;
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
}

.p-contact__lead {
  color: #161616;
}

.p-contact__lead-text {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.p-contact__lead-text:nth-of-type(n + 2) {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-contact__lead-note {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-contact__form-wrap {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-contact-form__item:nth-of-type(n + 2) {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-contact-form__field {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-contact-form__label {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  gap: 8px;
  gap: 0.5rem;
}

.p-contact-form__label-text {
  color: #161616;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
}

.p-contact-form__badge {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #888888;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 400;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  min-height: 19px;
  min-height: 1.1875rem;
  min-width: 34px;
  min-width: 2.125rem;
  padding: 0 3px;
  padding: 0 0.1875rem;
}

.p-contact-form__field input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]),
.p-contact-form__field textarea {
  background-color: #fff;
  border: 1px solid rgba(136, 136, 136, 0.4);
  border-radius: 0.25rem;
  display: block;
  font-size: 16px;
  padding: 10px 16px;
  padding: 0.625rem 1rem;
  width: 100%;
}

.p-contact-form__field input::-moz-placeholder, .p-contact-form__field textarea::-moz-placeholder {
  color: #8f8f8f;
}

.p-contact-form__field input::-webkit-input-placeholder, .p-contact-form__field textarea::-webkit-input-placeholder {
  color: #8f8f8f;
}

.p-contact-form__field input:-ms-input-placeholder, .p-contact-form__field textarea:-ms-input-placeholder {
  color: #8f8f8f;
}

.p-contact-form__field input::-ms-input-placeholder, .p-contact-form__field textarea::-ms-input-placeholder {
  color: #8f8f8f;
}

.p-contact-form__field input::placeholder,
.p-contact-form__field textarea::placeholder {
  color: #8f8f8f;
}

.p-contact-form__field textarea {
  height: 160px;
  height: 10rem;
  resize: vertical;
}

.p-contact-form__policy {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-contact-form__policy-note {
  color: #888888;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  text-align: center;
}

.p-contact-form__policy-title {
  font-size: max(17px, 10px);
  font-size: max(1.0625rem, 10px);
  font-weight: 700;
}

.p-contact-form__policy-text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.8;
}

.p-contact-form__policy-text:nth-of-type(n + 2) {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.p-contact-form__policy-body {
  background-color: #fff;
  border: 1px solid rgba(136, 136, 136, 0.4);
  border-radius: 0.25rem;
  height: 240px;
  height: 15rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  overflow-y: auto;
  padding: 20px;
  padding: 1.25rem;
}

.p-contact-form__policy-subtitle {
  font-size: max(15px, 10px);
  font-size: max(0.9375rem, 10px);
  font-weight: 700;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-contact-form__policy-list {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.p-contact-form__policy-list-item {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.8;
  padding-left: 14px;
  padding-left: 0.875rem;
  position: relative;
}

.p-contact-form__policy-list-item::before {
  content: "・";
  left: 0;
  position: absolute;
  top: 0;
}

.p-contact-form__policy-list-item:nth-child(n+2) {
  margin-top: 4px;
  margin-top: 0.25rem;
}

.p-contact-form__acceptance {
  margin-top: 32px;
  margin-top: 2rem;
  text-align: center;
}

.p-contact-form__acceptance label {
  cursor: pointer;
}

.p-contact-form__acceptance input[type=checkbox] {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.p-contact-form__acceptance input + span {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  gap: 12px;
  gap: 0.75rem;
  line-height: 1.5;
  position: relative;
}

.p-contact-form__acceptance input + span::before {
  aspect-ratio: 1/1;
  background-color: #fff;
  border: 1px solid #888888;
  border-radius: 0.25rem;
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 28px;
  width: 1.75rem;
}

.p-contact-form__acceptance input + span::after {
  border-bottom: 2px solid transparent;
  border-right: 2px solid transparent;
  content: "";
  height: 18px;
  height: 1.125rem;
  left: 9px;
  left: 0.5625rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(calc(-50% - 0.0625rem)) rotate(45deg);
          transform: translateY(calc(-50% - 0.0625rem)) rotate(45deg);
  width: 10px;
  width: 0.625rem;
}

.p-contact-form__acceptance input:checked + span::after {
  border-color: #6D6D6D;
}

.p-contact-form__acceptance input:focus-visible + span::before {
  outline: 2px solid #0055A2;
  outline-offset: 2px;
}

.p-contact-form__send {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-contact-form__send-btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #161616;
  border: 1px solid #161616;
  border-radius: 50vmax;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(15px, 10px);
  font-size: max(0.9375rem, 10px);
  font-weight: 500;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.1em;
  max-width: 280px;
  max-width: 17.5rem;
  min-height: 54px;
  min-height: 3.375rem;
  padding: 0 40px;
  padding: 0 2.5rem;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  width: 100%;
}
.p-contact-form__send-btn:not(:disabled):focus-visible {
  background-color: #fff;
  color: #000000;
}

.p-contact-form__send-btn:disabled {
  background-color: #888888;
  border-color: #888888;
  cursor: not-allowed;
}

.p-contact-thanks__inner {
  margin-top: 60px;
  margin-top: 3.75rem;
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
}

.p-contact-thanks__content {
  padding-bottom: 80px;
  padding-bottom: 5rem;
  padding-top: 20px;
  padding-top: 1.25rem;
}

.p-contact-thanks__title {
  font-size: max(22px, 10px);
  font-size: max(1.375rem, 10px);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.p-contact-thanks__body {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-contact-thanks__text {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0.04em;
  line-height: 1.8;
  text-align: center;
}

.p-contact-thanks__text:nth-of-type(n + 2) {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-contact-thanks__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-content h2,
.p-post-list__text h2 {
  color: #1E1E1E;
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.4333333333;
  position: relative;
}

.p-content > .wp-block-group:nth-child(n+2) h2,
.p-content > h2:nth-child(n+2) {
  border-top: 1px solid #969696;
  margin-top: 60px;
  margin-top: 3.75rem;
  padding-top: 60px;
  padding-top: 3.75rem;
}

.p-content h3,
.p-post-list__text h3 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-content p {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 300;
  line-height: 2;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-content p strong,
.p-post-list__text strong {
  font-weight: 500;
}

.p-content p a {
  text-decoration: underline;
}

.p-content h2 + p {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-content p + p {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-content a {
  -webkit-text-decoration: underline;
  -webkit-text-decoration: underline;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 300;
  line-height: 2;
  text-decoration: underline;
}

.p-single-block {
  margin-bottom: 22px;
  margin-bottom: 1.375rem;
}

.p-content .wp-block-image {
  margin-bottom: 0 !important;
}

.p-content .wp-block-image {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-content .wp-block-image img {
  height: auto !important;
  width: auto !important;
}

.p-content .wp-block-image img {
  -o-object-fit: contain;
     object-fit: contain;
}

.p-content .p-single-block__img--small.wp-block-image {
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.p-content .p-single-block__img--small.wp-block-image img {
  height: auto !important;
}

.p-content .p-single-block__img--small.wp-block-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.p-single-block__images,
.wp-block-gallery {
  margin-bottom: 0 !important;
}

.p-single-block__images,
.wp-block-gallery {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-content .p-custom__gallery1.wp-block-image img {
  height: auto !important;
}

.p-content .p-custom__gallery1.wp-block-image img {
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
}

.p-content .wp-block-gallery {
  gap: 20px !important;
  gap: 1.25rem !important;
}

.p-content .wp-block-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.p-custom__gallery3-wide {
  grid-gap: 1.25rem !important;
  display: grid !important;
  gap: 20px !important;
  gap: 1.25rem !important;
}

.p-custom__gallery3-wide {
  grid-template-columns: repeat(1, 1fr);
}

.wp-block-gallery .wp-block-image {
  width: 100% !important;
}

.p-content .wp-block-gallery.p-custom__gallery2-wide.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img {
  height: auto !important;
}

.p-content .wp-block-gallery.p-custom__gallery2-wide.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img {
  -o-object-fit: cover;
  aspect-ratio: 506/380;
     object-fit: cover;
  width: 100%;
}

.p-content .wp-block-gallery.p-custom__gallery3-wide.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image):nth-child(1) img {
  -o-object-fit: cover;
  aspect-ratio: auto;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-content .wp-block-gallery.p-custom__gallery3-wide.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image):nth-child(n+2) img {
  height: auto !important;
}

.p-content .wp-block-gallery.p-custom__gallery3-wide.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image):nth-child(n+2) img {
  -o-object-fit: cover;
  aspect-ratio: 328/248;
     object-fit: cover;
  width: 100%;
}

.p-content__custom-block:not(:first-child) {
  margin-bottom: 48.8px;
  margin-bottom: 3.05rem;
  margin-bottom: 35px;
  margin-bottom: 2.1875rem;
}

.p-content figure + .p-content__custom-block {
  margin-bottom: 45px;
  margin-bottom: 2.8125rem;
}

.p-content figure:not(:first-child),
.p-content ul:not(:first-child),
.p-content ol:not(:first-child) {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.p-content > .wp-block-group figure:not(:first-child),
.p-content > .wp-block-group ul:not(:first-child),
.p-content > .wp-block-group ol:not(:first-child) {
  margin-bottom: 0;
}

.p-content > ul.wp-block-list,
.p-post-list__text > ul.wp-block-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  list-style: none;
  margin-top: 20px;
  margin-top: 1.25rem;
  padding-left: 0;
}

.p-content ol,
.p-post-list__text ol {
  list-style: decimal;
  padding-left: 0;
}

.p-content > ul.wp-block-list li,
.p-post-list__text > ul.wp-block-list li {
  margin: 0 !important;
}

.p-content > ul.wp-block-list li,
.p-post-list__text > ul.wp-block-list li {
  padding-left: 14px;
  padding-left: 0.875rem;
}

.p-content > ul.wp-block-list li,
.p-content ol li,
.p-post-list__text > ul.wp-block-list li,
.p-post-list__text ol li {
  color: #000000;
  font-size: max(17px, 10px);
  font-size: max(1.0625rem, 10px);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  position: relative;
}

.p-content > ul.wp-block-list li::before,
.p-post-list__text > ul.wp-block-list li::before {
  color: #000000;
  content: "・";
  display: inline-block;
  font-size: max(17px, 10px);
  font-size: max(1.0625rem, 10px);
  font-weight: 300;
  left: 0;
  line-height: 2;
  position: absolute;
  top: 0;
}

.p-single-block__columns {
  grid-gap: 1.25rem !important;
  display: grid !important;
  gap: 20px !important;
  gap: 1.25rem !important;
  margin-bottom: 0 !important;
}

.p-single-block__columns {
  grid-template-columns: repeat(1, 1fr);
}

p + .p-single-block__columns {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-single-block__columns .wp-block-image {
  margin-top: 0 !important;
}

.p-single-block__columns.three-columns > .wp-block-column:nth-child(1) img {
  aspect-ratio: 335/245;
}

.p-single-block__columns.three-columns > .wp-block-column:nth-child(2) img,
.p-single-block__columns.three-columns > .wp-block-column:nth-child(3) img {
  aspect-ratio: 335/245;
}

.p-content .p-custom-recommend__body {
  background-color: #F4F1EB;
  border-radius: 0.625rem;
  margin-top: 34px;
  margin-top: 2.125rem;
  padding: 28px 16px 28px;
  padding: 1.75rem 1rem 1.75rem;
}

.p-content .p-custom-recommend__list {
  list-style: none !important;
  padding-left: 0 !important;
}

.p-content .p-custom-recommend__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 11px;
  gap: 0.6875rem;
}

.p-content .p-custom-recommend__list li {
  margin-bottom: 0 !important;
}

.p-content .p-custom-recommend__list li {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 300;
  line-height: 1.8;
  padding-left: 17px;
  padding-left: 1.0625rem;
  position: relative;
}

.p-content .p-custom-recommend__list li::before {
  background: transparent url(../images/common/icon_check.svg) no-repeat center center/100%;
  content: "";
  height: 30px;
  height: 1.875rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 11px;
  width: 0.6875rem;
}

.p-content .p-custom-bullet-list + h3 {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-content .p-custom-bullet-list {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-content .p-custom-bullet-list__list {
  list-style: none !important;
  padding-left: 6px !important;
  padding-left: 0.375rem !important;
}

.p-content .p-custom-bullet-list__list {
  border-left: 5px solid #C9B386;
  border-left: 0.3125rem solid #C9B386;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-content .p-custom-bullet-list__list li {
  margin-bottom: 0 !important;
}

.p-content .p-custom-bullet-list__list li {
  font-size: max(15px, 10px);
  font-size: max(0.9375rem, 10px);
  font-weight: 300;
  line-height: 1.8;
  padding-left: 14px;
  padding-left: 0.875rem;
  position: relative;
  width: 100%;
}

.p-content .p-custom-bullet-list__list li::before {
  content: "・";
  font-size: max(15px, 10px);
  font-size: max(0.9375rem, 10px);
  font-weight: 300;
  left: 0;
  line-height: 1.8;
  position: absolute;
  top: 0;
}

.p-content .p-custom-faq {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-content .p-custom-faq__list > .wp-block-group__inner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}

.p-content .p-custom-faq__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  gap: 0.875rem;
}

.p-content .p-custom-faq__item > .wp-block-group__inner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 13px;
  gap: 0.8125rem;
}

.p-content .p-custom-faq__question {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F4F1EB;
  color: #1E1E1E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  gap: 10px;
  gap: 0.625rem;
  line-height: 1.7;
  margin: 0;
  min-height: 50px;
  min-height: 3.125rem;
  padding: 12px 16px;
  padding: 0.75rem 1rem;
}

.p-content .p-custom-faq__question::before {
  color: #C9B386;
  content: "Q";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4444444444;
}

.p-content .p-custom-faq__answer {
  color: #000000;
  font-size: max(15px, 10px);
  font-size: max(0.9375rem, 10px);
  font-weight: 300;
  line-height: 2;
  margin: 0;
  padding: 0 16px;
  padding: 0 1rem;
}

.p-content .p-custom-faq__attention {
  margin-top: 38px;
  margin-top: 2.375rem;
}

.p-content .p-custom-faq__attention-text {
  color: #000000;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  line-height: 2;
  margin: 0;
}

.p-content .p-insurance-section .p-custom-faq {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-content .p-insurance-section .p-custom-faq__attention {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-content .p-insurance-card {
  background: #F4F1EB;
  border-radius: 0.625rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 32px 16px 30px;
  padding: 2rem 1rem 1.875rem;
}

.p-content .p-insurance-section + .p-insurance-card,
.p-content .p-insurance-card + .p-insurance-card {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-content .p-insurance-card__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1.4583333333;
  margin-bottom: 0;
  text-align: center;
}

.p-content .p-insurance-card__list {
  list-style: none !important;
  padding-left: 0 !important;
}

.p-content .p-insurance-card__list {
  grid-row-gap: 1rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 20px;
  margin-top: 1.25rem;
  row-gap: 16px;
  row-gap: 1rem;
}

.p-content .p-insurance-card__list li {
  margin-bottom: 0 !important;
}

.p-content .p-insurance-card__list li {
  background: #fff;
  border-radius: 0.625rem;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 300;
  line-height: 1.5;
  padding: 16px 20px;
  padding: 1rem 1.25rem;
}

.p-content .p-insurance-card.p-insurance-card--flow {
  padding: 30px 16px 32px;
  padding: 1.875rem 1rem 2rem;
}

.p-content .p-insurance-card.p-insurance-card--flow .p-insurance-card__title {
  line-height: 1.4583333333;
}

.p-content .p-insurance-card.p-insurance-card--flow .p-insurance-card__items > .wp-block-group__inner-container {
  grid-row-gap: 1.25rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 20px;
  row-gap: 1.25rem;
}

.p-content .p-insurance-card__items {
  grid-row-gap: 1.25rem;
  display: grid;
  margin-top: 24px;
  margin-top: 1.5rem;
  row-gap: 20px;
  row-gap: 1.25rem;
}

.p-content .p-insurance-card__item.p-insurance-card__item--flow {
  background: #fff;
  border-radius: 0.625rem;
  padding: 16px 20px;
  padding: 1rem 1.25rem;
}

.p-content .p-insurance-card__item-title {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  line-height: 2;
}

.p-content .p-insurance-card__item.p-insurance-card__item--flow .p-insurance-card__item-title {
  margin-bottom: 2px;
  margin-bottom: 0.125rem;
}

.p-content .p-insurance-card__item-text {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 300;
  line-height: 2;
  margin-top: 2px;
  margin-top: 0.125rem;
}

.p-content .p-insurance-card__item.p-insurance-card__item--flow .p-insurance-card__item-text {
  margin-bottom: 0;
}

.p-content .p-insurance-section .wp-block-buttons {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-content .p-insurance-card__btn .wp-block-button__link {
  -webkit-text-decoration: none !important;
  -webkit-text-decoration: none !important;
  background-color: #C9B386 !important;
  border: 1px solid #C9B386 !important;
  border-radius: 3.125rem !important;
  color: #fff !important;
  text-decoration: none !important;
}

.p-content .p-insurance-card__btn .wp-block-button__link {
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 400;
  line-height: 1;
  min-width: 200px;
  min-width: 12.5rem;
  padding: 13px 24px 13px 24px;
  padding: 0.8125rem 1.5rem 0.8125rem 1.5rem;
  position: relative;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.p-content .p-insurance-card__btn .wp-block-button__link::after {
  border-bottom: 5px solid transparent;
  border-bottom: 0.3125rem solid transparent;
  border-left: 5px solid #fff;
  border-left: 0.3125rem solid #fff;
  border-right: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-top: 0.3125rem solid transparent;
  content: "";
  height: 0;
  position: absolute;
  right: 18px;
  right: 1.125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  width: 0;
}
.p-content .p-insurance-price {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-content .p-insurance-section + .p-insurance-price {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-content .p-insurance-price__category {
  background: #F4F1EB;
  font-family: "Inter", sans-serif;
  font-size: max(15px, 10px);
  font-size: max(0.9375rem, 10px);
  font-weight: 700;
  margin-bottom: 0;
  padding: 8px 10px;
  padding: 0.5rem 0.625rem;
}

.p-content .wp-block-table.p-insurance-price__table {
  margin-bottom: 0;
  margin-top: 0;
  overflow-x: auto;
}

.p-content .p-insurance-price__table table {
  border: none;
  border-collapse: collapse;
  width: 100%;
}

.p-content .p-insurance-price__table tbody tr:nth-child(odd) {
  background: #FAF7F5;
}

.p-content .p-insurance-price__table th {
  background: #BAB094;
  border: none;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 700;
  padding: 10px 6px;
  padding: 0.625rem 0.375rem;
  text-align: center;
}

.p-content .p-insurance-price__table th:first-child {
  text-align: left;
  width: 40%;
}

.p-content .p-insurance-price__table th:not(:first-child) {
  border-left: 1px solid #DED9CC;
  border-left: 0.0625rem solid #DED9CC;
}

.p-content .p-insurance-price__table td {
  border: 1px solid #DED9CC;
  border: 0.0625rem solid #DED9CC;
  font-family: "Inter", sans-serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  font-weight: 400;
  padding: 10px 6px;
  padding: 0.625rem 0.375rem;
  text-align: center;
}

.p-content .p-insurance-price__table td:first-child {
  text-align: left;
}

.p-content .p-insurance-price__table th:not(:first-child),
.p-content .p-insurance-price__table td:not(:first-child) {
  width: 20%;
}

.p-content .p-insurance-price__attention {
  margin-top: 14px;
  margin-top: 0.875rem;
}

.p-content .p-insurance-price__attention-text {
  color: #808080;
  font-family: "Inter", sans-serif;
  font-size: max(13px, 10px);
  font-size: max(0.8125rem, 10px);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 0;
}

.p-content .p-insurance-price__table.p-insurance-price__table--2col th:first-child {
  width: 65%;
}

.p-content .p-insurance-price__table.p-insurance-price__table--2col th:not(:first-child),
.p-content .p-insurance-price__table.p-insurance-price__table--2col td:not(:first-child) {
  text-align: left;
  width: 35%;
}

.p-content .p-insurance-price.p-insurance-price--simple {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-content .p-insurance-price.p-insurance-price--simple .wp-block-table.p-insurance-price__table {
  background-color: #F4F1EB;
  border-radius: 0.625rem;
  overflow: hidden;
}

.p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__table table {
  background-color: #F4F1EB;
  border-collapse: separate;
  border-spacing: 0;
}

.p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__table tbody tr:nth-child(even) {
  background-color: transparent;
}

.p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__table th {
  background-color: #C9B386;
  border: none;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  line-height: 2;
  min-height: 46px;
  min-height: 2.875rem;
  padding: 8px 14px;
  padding: 0.5rem 0.875rem;
  text-align: left;
  vertical-align: middle;
}

.p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__table th:not(:first-child) {
  border-left: none;
}

.p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__table td {
  background-color: #F4F1EB;
  border: none;
  color: #1E1E1E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 400;
  line-height: 2;
  padding: 10px 10px;
  padding: 0.625rem 0.625rem;
  text-align: left;
  vertical-align: middle;
}

.p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__table td:not(:first-child) {
  font-weight: 700;
}

.p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__table tbody tr:not(:first-child):not(:last-child) {
  position: relative;
}

.p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__table tbody tr:not(:first-child):not(:last-child)::after {
  background-color: #ccc;
  bottom: 0;
  content: "";
  height: 1px;
  height: 0.0625rem;
  left: 10px;
  left: 0.625rem;
  pointer-events: none;
  position: absolute;
  right: 10px;
  right: 0.625rem;
}

.p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__table.p-insurance-price__table--2col th:first-child {
  width: 55.5%;
}

.p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__table.p-insurance-price__table--2col th:not(:first-child),
.p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__table.p-insurance-price__table--2col td:not(:first-child) {
  text-align: left;
  width: 44.5%;
}

.p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__table.p-insurance-price__table--burden tr:after {
  display: none;
}

.p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__table.p-insurance-price__table--burden th {
  background: #F4F1EB;
  color: #1E1E1E;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.4285714286;
  padding: 6px 16px;
  padding: 0.375rem 1rem;
}

.p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__table.p-insurance-price__table--burden th:first-child {
  width: 100%;
}

.p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__table.p-insurance-price__table--burden td {
  background: #F4F1EB;
  color: #1E1E1E;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.4285714286;
  padding: 4px 16px;
  padding: 0.25rem 1rem;
}

.p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__table.p-insurance-price__table--burden th:not(:first-child),
.p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__table.p-insurance-price__table--burden td:not(:first-child) {
  text-align: left;
  width: 50%;
}

.p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__table.p-insurance-price__table--burden tr:last-child td {
  padding: 4px 16px 14px;
  padding: 0.25rem 1rem 0.875rem;
}

.p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__attention {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__attention .p-insurance-price__attention-text {
  font-size: max(15px, 10px);
  font-size: max(0.9375rem, 10px);
  line-height: 1.5;
}

.p-content .p-insurance-price.p-insurance-price--1col {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-content .p-insurance-price.p-insurance-price--1col .wp-block-table.p-insurance-price__table {
  border-radius: 0.5rem;
  overflow: hidden;
}

.p-content .p-insurance-price.p-insurance-price--1col .p-insurance-price__table table {
  background-color: #F9F7F2;
}

.p-content .p-insurance-price.p-insurance-price--1col .p-insurance-price__table tbody tr,
.p-content .p-insurance-price.p-insurance-price--1col .p-insurance-price__table tbody tr:nth-child(odd) {
  background-color: #F9F7F2;
}

.p-content .p-insurance-price.p-insurance-price--1col .p-insurance-price__table th {
  background-color: #F9F7F2;
  border: none;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 400;
  line-height: 1.2142857143;
  padding: 20px 16px 23px;
  padding: 1.25rem 1rem 1.4375rem;
  text-align: left;
  vertical-align: middle;
}

.p-content .p-insurance-price.p-insurance-price--1col .p-insurance-price__table td {
  background-color: #F9F7F2;
  border: none;
  color: #1E1E1E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  line-height: 1.4444444444;
  padding: 17px 16px;
  padding: 1.0625rem 1rem;
  text-align: right;
  vertical-align: middle;
}

.p-content .p-insurance-price.p-insurance-price--1col .p-insurance-price__table th:not(:first-child) {
  border-left: none;
}

.p-content .p-insurance-price.p-insurance-price--1col .p-insurance-price__table.p-insurance-price__table--1col th:first-child {
  width: 55%;
}

.p-content .p-insurance-price.p-insurance-price--1col .p-insurance-price__table.p-insurance-price__table--1col td {
  width: 45%;
}

.p-content .p-custom-white-label + .p-custom-schedule-box {
  margin-top: 6px !important;
  margin-top: 0.375rem !important;
}

.p-content .p-custom-schedule-box + .p-insurance-price,
.p-content .p-insurance-price + .p-insurance-price {
  margin-top: 14px;
  margin-top: 0.875rem;
}

.p-content .p-custom__h2-timeline-list__list,
.p-content .p-custom__h3-timeline-list__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-content .p-custom__h2-timeline-list__list > .wp-block-group__inner-container.is-layout-constrained,
.p-content .p-custom__h3-timeline-list__list > .wp-block-group__inner-container.is-layout-constrained {
  grid-row-gap: 1.25rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 20px;
  row-gap: 1.25rem;
}

.p-content .p-custom__h2-timeline-list__item,
.p-content .p-custom__h3-timeline-list__item {
  border-left: 5px solid #C9B386;
  border-left: 0.3125rem solid #C9B386;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  gap: 0.25rem;
  padding-left: 11px;
  padding-left: 0.6875rem;
}

.p-content .p-custom__h2-timeline-list__item > .wp-block-group__inner-container.is-layout-constrained,
.p-content .p-custom__h3-timeline-list__item > .wp-block-group__inner-container.is-layout-constrained {
  grid-row-gap: 0.3125rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 5px;
  row-gap: 0.3125rem;
}

.p-content .p-custom__h2-timeline-list__label,
.p-content .p-custom__h3-timeline-list__label {
  color: #1E1E1E;
  font-size: max(17px, 10px);
  font-size: max(1.0625rem, 10px);
  font-weight: 700;
  line-height: 2;
  margin: 0;
}

.p-content .p-custom__h2-timeline-list__text,
.p-content .p-custom__h3-timeline-list__text {
  color: #000000;
  font-size: max(15px, 10px);
  font-size: max(0.9375rem, 10px);
  font-weight: 300;
  line-height: 2;
  margin: 0;
}

.p-content .p-custom__h3-timeline-list__title {
  background-color: #f5f2ec;
  border-radius: 0.5rem;
  color: #1E1E1E;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0;
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 10px 16px;
  padding: 0.625rem 1rem;
}

.p-content .p-custom-gold-label {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-content .p-custom-gold-label + .p-custom__h3-text {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-content .p-custom__h3-text--lg h3 {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-content .p-custom__h3-text--lg + .p-custom__h3-text--lg h3 {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-content .p-custom-gold-label__text {
  background-color: #F4F1EB;
  border-radius: 0.625rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #C9B386;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4375;
  margin-bottom: 0;
  min-height: 60px;
  min-height: 3.75rem;
  padding: 17px 20px;
  padding: 1.0625rem 1.25rem;
}

.p-content .p-custom-black-label {
  margin-bottom: 6px !important;
  margin-bottom: 0.375rem !important;
}

.p-content .p-custom-black-label {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-content .p-custom-black-label + .p-custom-black-label {
  margin-top: 6px !important;
  margin-top: 0.375rem !important;
}

.p-content .p-custom-black-label__text {
  background-color: #F4F1EB;
  border-radius: 0.625rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #1E1E1E;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
  min-height: 46px;
  min-height: 2.875rem;
  padding: 13px 16px 10px;
  padding: 0.8125rem 1rem 0.625rem;
}

.p-content .p-custom-black-label__text--sm {
  font-size: max(17px, 10px);
  font-size: max(1.0625rem, 10px);
  font-weight: 400;
  line-height: 1.1875;
  min-height: 60px;
  min-height: 3.75rem;
  padding: 20px 20px;
  padding: 1.25rem 1.25rem;
}

.p-content .p-custom-white-label {
  background-color: #C9B386;
  border-radius: 0.625rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  line-height: 1.4375;
  margin-bottom: 0;
  margin-top: 20px;
  margin-top: 1.25rem;
  min-height: 46px;
  min-height: 2.875rem;
  padding: 11.5px 16px;
  padding: 0.71875rem 1rem;
}

.p-content .p-custom-schedule-box {
  background-color: #F4F1EB;
  border-radius: 0.625rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 14px 20px 17px;
  padding: 0.875rem 1.25rem 1.0625rem;
}

.p-content .p-custom-schedule-box__title {
  color: #C9B386;
  font-size: max(15px, 10px);
  font-size: max(0.9375rem, 10px);
  font-weight: 700;
  line-height: 1.4615384615;
  margin-bottom: 0;
  margin-top: 0;
}

.p-content .p-custom-schedule-box__list {
  list-style: none !important;
  padding-left: 0 !important;
}

.p-content .p-custom-schedule-box__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 9px;
  margin-top: 0.5625rem;
}

.p-content .p-custom-schedule-box__list li {
  margin-bottom: 0 !important;
}

.p-content .p-custom-schedule-box__list li {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  line-height: 1.75;
  padding-left: 12px;
  padding-left: 0.75rem;
  position: relative;
  width: 100%;
}

.p-content .p-custom-schedule-box__list li::before {
  content: "・";
  left: 0;
  line-height: 1.75;
  position: absolute;
  top: 0;
}

.p-content .p-custom-schedule-box__text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 0;
  margin-top: 9px;
  margin-top: 0.5625rem;
}

.p-content .p-custom__h2-card-grid h2 {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.p-content .p-custom__h2-card-grid .p-single-block__text {
  margin-bottom: 0;
  margin-top: 0;
}

.p-content .p-custom__h2-card-grid__cards {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-content .p-custom__h2-card-grid__cards > .wp-block-group__inner-container {
  grid-gap: 1.25rem;
  display: grid;
  gap: 20px;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.p-content .p-custom__h2-card-grid__row {
  min-width: 0;
  width: 100%;
}

.p-content .p-custom__h2-card-grid__row > .wp-block-group__inner-container {
  height: 100%;
}

.p-content .p-custom__h2-card-grid__row + .p-custom__h2-card-grid__row,
.p-content .p-custom__h2-card-grid__row + .p-custom__card-grid-2,
.p-content .p-custom__card-grid-2 + .p-custom__h2-card-grid__row,
.p-content .p-custom__card-grid-2 + .p-custom__card-grid-2 {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-content .wp-block-group__inner-container > .p-custom__h2-card-grid__row + .p-custom__h2-card-grid__row {
  margin-top: 0;
}

.p-content .p-custom__h2-card-grid__row + .p-custom__card-grid-3,
.p-content .p-custom__card-grid-3 + .p-custom__card-grid-3 {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-content .p-custom__h2-card-grid__card {
  background-color: #F4F1EB;
  border-radius: 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  padding: 12px 10px;
  padding: 0.75rem 0.625rem;
}

.p-content .p-custom__h2-card-grid__card > .wp-block-group__inner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  gap: 0.4375rem;
  height: 100%;
}

.p-content .p-custom__h2-card-grid__cards .p-custom__h2-card-grid__row .p-custom__h2-card-grid__card > .wp-block-group__inner-container {
  gap: 7px;
  gap: 0.4375rem;
}

.p-content .p-custom__h2-card-grid__row .p-custom__h2-card-grid__card > .wp-block-group__inner-container {
  gap: 16px;
  gap: 1rem;
}

.p-content .p-custom__h2-card-grid__cards .p-custom__h2-card-grid__row .p-custom__h2-card-grid__label,
.p-content .p-custom__h2-card-grid__label {
  color: #C9B386;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: max(15px, 10px);
  font-size: max(0.9375rem, 10px);
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
}

.p-content .p-custom__h2-card-grid__row .p-custom__h2-card-grid__label {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.4285714286;
}

.p-content .p-custom__h2-card-grid__card--small .p-custom__h2-card-grid__label {
  font-size: max(17px, 10px);
  font-size: max(1.0625rem, 10px);
  line-height: 1.4666666667;
}

.p-content .p-custom__h2-card-grid__cards .p-custom__h2-card-grid__row .p-custom__h2-card-grid__text,
.p-content .p-custom__h2-card-grid__text {
  color: #000000;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  line-height: 1.8;
  margin: 0;
}

.p-content .p-custom__h2-card-grid__row .p-custom__h2-card-grid__text {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 2;
}

.p-content .p-custom__h2-card-grid__card--small .p-custom__h2-card-grid__text {
  font-size: max(15px, 10px);
  font-size: max(0.9375rem, 10px);
  line-height: 2;
}

.p-content .p-custom__h2-card-grid__card--stat {
  border-radius: 0.625rem;
  min-height: 90px;
  min-height: 5.625rem;
  padding: 14px 16px 8px;
  padding: 0.875rem 1rem 0.5rem;
}

.p-content .p-custom__h2-card-grid__card--stat > .wp-block-group__inner-container {
  gap: 0 !important;
}

.p-content .p-custom__h2-card-grid__card--stat .p-custom__h2-card-grid__label {
  font-size: max(15px, 10px);
  font-size: max(0.9375rem, 10px);
  line-height: 1.2307692308;
}

.p-content .p-custom__h2-card-grid__value {
  color: #1E1E1E;
  font-size: max(22px, 10px);
  font-size: max(1.375rem, 10px);
  font-weight: 900;
  line-height: 1.1818181818;
  margin: 0;
}

.p-content .p-custom__h2-card-grid__note {
  color: #888888;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  line-height: 1.1666666667;
  margin: 0;
}

.p-content .p-custom__h2-card-grid__card--stat .p-custom__h2-card-grid__note {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-drawer {
  background-color: rgba(255, 255, 255, 0.9);
}

.p-drawer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
  padding-top: 127px;
  padding-top: 7.9375rem;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

.p-drawer__nav-items {
  list-style: none;
}

.p-drawer__nav-link {
  color: #C9B386;
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 19px 0;
  padding: 1.1875rem 0;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-drawer__logo {
  margin-top: 95px;
  margin-top: 5.9375rem;
  text-align: center;
  width: 160px;
  width: 10rem;
}

.p-drawer__logo-link {
  display: inline-block;
}

.p-drawer__logo-img {
  height: auto;
  width: 100%;
}

.p-footer {
  background: #F4F1EB;
  padding: 50px 20px 20px;
  padding: 3.125rem 1.25rem 1.25rem;
}

.p-footer__logo {
  margin-left: auto;
  margin-right: auto;
  margin-top: 58px;
  margin-top: 3.625rem;
  max-width: 100%;
  width: 268px;
  width: 16.75rem;
}

.p-footer__logo a {
  display: block;
}

.p-footer__logo img {
  -o-object-fit: contain;
  aspect-ratio: 656/266;
  height: 100%;
     object-fit: contain;
  width: 100%;
}

.p-footer__nav {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 20px;
  gap: 0.625rem 1.25rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
}

.p-footer__nav-item a {
  color: #C9B386;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 1.5;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-footer__copyright {
  margin-top: 14px;
  margin-top: 0.875rem;
  text-align: center;
}

.p-footer__copyright small {
  color: #969696;
  font-family: "Inter", sans-serif;
  font-size: max(11px, 10px);
  font-size: max(0.6875rem, 10px);
  font-weight: 400;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-spinner {
  display: none;
}

.p-form__items {
  grid-gap: 0.9375rem;
  display: grid;
  gap: 15px;
  gap: 0.9375rem;
  grid-template-columns: repeat(1, 1fr);
}

.p-form__item {
  grid-gap: 0.1875rem;
  display: grid;
  gap: 3px;
  gap: 0.1875rem;
  grid-template-columns: repeat(1, 1fr);
}
.p-form__item:first-of-type {
  gap: 10px;
  gap: 0.625rem;
  margin-bottom: 34px;
  margin-bottom: 2.125rem;
}

.p-form__dt {
  letter-spacing: 0.1em;
  line-height: 1.5384615385;
}

.p-form__item:first-of-type .p-form__dt {
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.p-form__dd .wpcf7-checkbox,
.p-form__dd .wpcf7-radio {
  grid-gap: 0.4375rem;
  display: grid;
  gap: 7px;
  gap: 0.4375rem;
  grid-template-columns: repeat(1, 1fr);
}

.p-form__dd label {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.06em;
  line-height: 1.4285714286;
}
.p-form__dd input:not([type=radio]):not([type=checkbox]),
.p-form__dd textarea {
  background-color: #fff;
  border: 1px solid;
  border-radius: 0.375rem;
  display: block;
  padding: 5px 10px;
  padding: 0.3125rem 0.625rem;
  width: 100%;
}

.p-form__dd input::-moz-placeholder, .p-form__dd textarea::-moz-placeholder {
  color: #8f8f8f;
}

.p-form__dd input::-webkit-input-placeholder, .p-form__dd textarea::-webkit-input-placeholder {
  color: #8f8f8f;
}

.p-form__dd input:-ms-input-placeholder, .p-form__dd textarea:-ms-input-placeholder {
  color: #8f8f8f;
}

.p-form__dd input::-ms-input-placeholder, .p-form__dd textarea::-ms-input-placeholder {
  color: #8f8f8f;
}

.p-form__dd input::placeholder,
.p-form__dd textarea::placeholder {
  color: #8f8f8f;
}

.p-form__dd input[type=checkbox] + span,
.p-form__dd input[type=radio] + span {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  gap: 0.375rem;
  position: relative;
}

.p-form__dd input[type=radio] + span::before {
  aspect-ratio: 1/1;
  background-color: #fff;
  border: 1px solid #000000;
  border-radius: 50%;
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: auto;
  margin-right: 10px;
  margin-right: 0.625rem;
  width: 20px;
  width: 1.25rem;
}
.p-form__dd input[type=radio]:checked + span::after {
  aspect-ratio: 1/1;
  background-color: #000000;
  border-radius: 50%;
  bottom: 0;
  content: "";
  display: inline-block;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  width: 20px;
  width: 1.25rem;
}

.p-form__dd input[type=checkbox] + span::before {
  aspect-ratio: 1/1;
  border: 1px solid #000000;
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: auto;
  margin-right: 10px;
  margin-right: 0.625rem;
  margin-top: 6px;
  margin-top: 0.375rem;
  width: 12px;
  width: 0.75rem;
}

.p-form__dd input[type=checkbox]:checked + span::after {
  border-bottom: 2px solid #000000;
  border-right: 2px solid #000000;
  content: "";
  display: inline-block;
  height: 12px;
  height: 0.75rem;
  left: 4px;
  left: 0.25rem;
  margin: auto;
  position: absolute;
  top: 2px;
  top: 0.125rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 6px;
  width: 0.375rem;
}

.p-form__dd textarea {
  height: 146px;
  height: 9.125rem;
}

.p-form__acceptance {
  font-style: normal;
  margin-top: 19px;
  margin-top: 1.1875rem;
  text-align: justify;
}

.p-form__acceptance input + span {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.p-form__acceptance input + span::before {
  aspect-ratio: 1/1;
  border: 1px solid #000000;
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: auto;
  margin-right: 10px;
  margin-right: 0.625rem;
  margin-top: 6px;
  margin-top: 0.375rem;
  width: 12px;
  width: 0.75rem;
}

.p-form__acceptance input:checked + span::after {
  border-bottom: 2px solid #000000;
  border-right: 2px solid #000000;
  content: "";
  display: inline-block;
  height: 12px;
  height: 0.75rem;
  left: 4px;
  left: 0.25rem;
  margin: auto;
  position: absolute;
  top: 2px;
  top: 0.125rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 6px;
  width: 0.375rem;
}

.p-form__policy-description {
  margin-top: 28px;
  margin-top: 1.75rem;
}

.p-form__policy-description a {
  -webkit-text-decoration: underline;
  -webkit-text-decoration: underline;
  color: #000000;
  text-decoration: underline;
}

.p-form__send {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 27px;
  gap: 1.6875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 38px auto 0;
  margin: 2.375rem auto 0;
  max-width: 216px;
  max-width: 13.5rem;
  position: relative;
  width: 100%;
}

.p-form__send input {
  background-color: #000000;
  border-radius: 100vh;
  color: #fff;
  display: block;
  letter-spacing: 0.06em;
  min-height: 41px;
  min-height: 2.5625rem;
  padding: 0 35px 0 27px;
  padding: 0 2.1875rem 0 1.6875rem;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  width: 100%;
}

/* hover指定できるPCを想定したスタイル */
/* hoverが使えないタッチ端末を想定した装飾 */
/* hover指定できるPCを想定したスタイル */
/* hoverが使えないタッチ端末を想定した装飾 */
.p-header.is-scrolled {
  background-color: #fff;
  height: 73px;
  height: 4.5625rem;
}

.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  max-width: none;
  max-width: initial;
  padding: 30px 22px 0;
  padding: 1.875rem 1.375rem 0;
}

.is-scrolled .p-header__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 15px;
  padding: 0 0.9375rem;
}

.p-header__logo {
  display: block;
  width: 200px;
  width: 12.5rem;
}

.is-scrolled .p-header__logo {
  width: 181px;
  width: 11.3125rem;
}

.p-header__logo-link {
  display: block;
  position: relative;
}

.p-header__logo-link img {
  -o-object-fit: contain;
  aspect-ratio: 300/84;
  height: auto;
     object-fit: contain;
  width: 100%;
}

.p-header__contact {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  gap: 0.375rem;
  height: calc(4.5625rem + env(safe-area-inset-bottom, 0px));
  left: 0;
  opacity: 0;
  padding: 0 20px env(safe-area-inset-bottom, 0px);
  padding: 0 1.25rem env(safe-area-inset-bottom, 0px);
  pointer-events: none;
  position: fixed;
  right: 0;
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  visibility: hidden;
  z-index: 1001;
}

.is-scrolled .p-header__contact {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.is-drawerActive .p-header__contact {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.p-header__tel {
  display: none;
}

.p-header__tel-label {
  color: #C9B386;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 900;
  line-height: 1.5;
}

.p-header__tel-number {
  color: #C9B386;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 900;
  line-height: 1.5;
}

.p-header__booking {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: 3px solid #333;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  gap: 0.5rem;
  height: 51px;
  height: 3.1875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}
.p-header__booking--tel {
  width: 51px;
  width: 3.1875rem;
}

.p-header__booking--web,
.p-header__booking--line {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-header__booking-text {
  color: #333;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 900;
  line-height: 1.5;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.p-header__booking--tel .p-header__booking-text {
  clip: rect(0, 0, 0, 0);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.p-header__booking::before {
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #333;
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.p-header__booking--tel::before {
  -webkit-mask-image: url(../images/common/icon_tel.svg);
  height: 32px;
  height: 2rem;
  mask-image: url(../images/common/icon_tel.svg);
  width: 32px;
  width: 2rem;
}

.p-header__booking--web::before {
  -webkit-mask-image: url(../images/common/icon_web.svg);
  height: 34px;
  height: 2.125rem;
  mask-image: url(../images/common/icon_web.svg);
  width: 29px;
  width: 1.8125rem;
}

.p-header__booking--line::before {
  -webkit-mask-image: url(../images/common/icon_line.svg);
  height: 31px;
  height: 1.9375rem;
  mask-image: url(../images/common/icon_line.svg);
  width: 32px;
  width: 2rem;
}

.p-header__menu-button {
  background: none;
  border: none;
  cursor: pointer;
  height: 73px;
  height: 4.5625rem;
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  width: 5rem;
  z-index: 1001;
}

.is-scrolled .p-header__menu-button {
  right: 7px;
  right: 0.4375rem;
}

.p-header__menu-icon {
  background-color: #C9B386;
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 44px;
  width: 2.75rem;
}

.p-header__menu-icon::before,
.p-header__menu-icon::after {
  background-color: #C9B386;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
}

.p-header__menu-icon::before {
  -webkit-transform: translateY(-0.875rem);
          transform: translateY(-0.875rem);
}

.p-header__menu-icon::after {
  -webkit-transform: translateY(0.875rem);
          transform: translateY(0.875rem);
}

.is-drawerActive .p-header__logo {
  opacity: 0;
  visibility: hidden;
}

.p-header__menu-button[aria-expanded=true] .p-header__menu-icon {
  background-color: transparent;
}

.p-header__menu-button[aria-expanded=true] .p-header__menu-icon::before {
  -webkit-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
}

.p-header__menu-button[aria-expanded=true] .p-header__menu-icon::after {
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
}

.p-lower-mv {
  margin-top: 110px;
  margin-top: 6.875rem;
}

.p-lower-mv__inner {
  margin-top: 6px;
  margin-top: 0.375rem;
  position: relative;
}

.p-lower-mv__img {
  border-radius: 0.625rem;
  height: 120px;
  height: 7.5rem;
  overflow: hidden;
}

.p-lower-mv__img img {
  -o-object-fit: cover;
  aspect-ratio: 1200/300;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-lower-mv__title {
  bottom: 0;
  left: 26px;
  left: 1.625rem;
  position: absolute;
  right: 26px;
  right: 1.625rem;
  z-index: 1;
}

.p-lower-mv__title-ja {
  color: #fff;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-mv-layer {
  height: 100vh;
  overflow: visible;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}

.p-mv-layer__shape {
  position: absolute;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  will-change: transform;
}

.p-mv-layer__shape--01 {
  -webkit-animation: mv-bg-scale-in 1.4s cubic-bezier(0.33, 0, 0.24, 1) both, mv-bg-float 5s 1.4s cubic-bezier(0.33, 0, 0.67, 1) infinite;
          animation: mv-bg-scale-in 1.4s cubic-bezier(0.33, 0, 0.24, 1) both, mv-bg-float 5s 1.4s cubic-bezier(0.33, 0, 0.67, 1) infinite;
  aspect-ratio: 1101/923;
  right: 0;
  top: 0;
  width: 81.3146233383%;
}

.p-mv-layer__shape--02 {
  -webkit-animation: mv-bg-scale-in 1.4s 0.25s cubic-bezier(0.33, 0, 0.24, 1) both, mv-bg-float-b 6s 1.65s cubic-bezier(0.33, 0, 0.67, 1) infinite;
          animation: mv-bg-scale-in 1.4s 0.25s cubic-bezier(0.33, 0, 0.24, 1) both, mv-bg-float-b 6s 1.65s cubic-bezier(0.33, 0, 0.67, 1) infinite;
  aspect-ratio: 1188/874;
  left: 0;
  top: 48px;
  top: 3rem;
  width: 87.7400295421%;
}

.p-mv-layer__shape-svg {
  display: block;
  height: 100%;
  overflow: visible;
  width: 100%;
}

.p-mv-layer__shape-path {
  fill: #C9B386;
  opacity: 0.07;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.p-mv-layer__shape-path--01 {
  -webkit-animation: mv-path-breathe-01 4s cubic-bezier(0.33, 0, 0.67, 1) infinite;
          animation: mv-path-breathe-01 4s cubic-bezier(0.33, 0, 0.67, 1) infinite;
}

.p-mv-layer__shape-path--02 {
  -webkit-animation: mv-path-breathe-02 5s 0.5s cubic-bezier(0.33, 0, 0.67, 1) infinite;
          animation: mv-path-breathe-02 5s 0.5s cubic-bezier(0.33, 0, 0.67, 1) infinite;
}

.p-mv-layer__photo {
  -webkit-animation: mv-img-enter 1.2s 0.5s cubic-bezier(0.33, 0, 0.67, 1) both;
          animation: mv-img-enter 1.2s 0.5s cubic-bezier(0.33, 0, 0.67, 1) both;
  margin-left: auto;
  margin-right: 22px;
  margin-right: 1.375rem;
  margin-top: 51px;
  margin-top: 3.1875rem;
  width: 100%;
  will-change: transform;
}

.p-mv-layer__photo img {
  -o-object-fit: cover;
  -o-object-position: left top;
  aspect-ratio: 1144/869;
  height: 100%;
     object-fit: cover;
     object-position: left top;
  width: 100%;
}

@-webkit-keyframes mv-bg-scale-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  80% {
    opacity: 1;
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes mv-bg-scale-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  80% {
    opacity: 1;
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes mv-bg-float {
  0%, 100% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    -webkit-transition-timing-function: cubic-bezier(0.33, 0, 0.67, 1);
            transition-timing-function: cubic-bezier(0.33, 0, 0.67, 1);
  }
  50% {
    -webkit-transform: translateY(-22px) scale(1.04);
            transform: translateY(-22px) scale(1.04);
  }
}
@keyframes mv-bg-float {
  0%, 100% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    -webkit-transition-timing-function: cubic-bezier(0.33, 0, 0.67, 1);
            transition-timing-function: cubic-bezier(0.33, 0, 0.67, 1);
  }
  50% {
    -webkit-transform: translateY(-22px) scale(1.04);
            transform: translateY(-22px) scale(1.04);
  }
}
@-webkit-keyframes mv-bg-float-b {
  0%, 100% {
    -webkit-transform: translateY(-8px) scale(1);
            transform: translateY(-8px) scale(1);
    -webkit-transition-timing-function: cubic-bezier(0.33, 0, 0.67, 1);
            transition-timing-function: cubic-bezier(0.33, 0, 0.67, 1);
  }
  50% {
    -webkit-transform: translateY(-26px) scale(1.045);
            transform: translateY(-26px) scale(1.045);
  }
}
@keyframes mv-bg-float-b {
  0%, 100% {
    -webkit-transform: translateY(-8px) scale(1);
            transform: translateY(-8px) scale(1);
    -webkit-transition-timing-function: cubic-bezier(0.33, 0, 0.67, 1);
            transition-timing-function: cubic-bezier(0.33, 0, 0.67, 1);
  }
  50% {
    -webkit-transform: translateY(-26px) scale(1.045);
            transform: translateY(-26px) scale(1.045);
  }
}
@-webkit-keyframes mv-img-enter {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes mv-img-enter {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes mv-path-breathe-01 {
  0%, 100% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
    -webkit-transition-timing-function: cubic-bezier(0.33, 0, 0.67, 1);
            transition-timing-function: cubic-bezier(0.33, 0, 0.67, 1);
  }
  50% {
    -webkit-transform: rotate(1.5deg) scale(1.06);
            transform: rotate(1.5deg) scale(1.06);
  }
}
@keyframes mv-path-breathe-01 {
  0%, 100% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
    -webkit-transition-timing-function: cubic-bezier(0.33, 0, 0.67, 1);
            transition-timing-function: cubic-bezier(0.33, 0, 0.67, 1);
  }
  50% {
    -webkit-transform: rotate(1.5deg) scale(1.06);
            transform: rotate(1.5deg) scale(1.06);
  }
}
@-webkit-keyframes mv-path-breathe-02 {
  0%, 100% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
    -webkit-transition-timing-function: cubic-bezier(0.33, 0, 0.67, 1);
            transition-timing-function: cubic-bezier(0.33, 0, 0.67, 1);
  }
  50% {
    -webkit-transform: rotate(-2deg) scale(1.05);
            transform: rotate(-2deg) scale(1.05);
  }
}
@keyframes mv-path-breathe-02 {
  0%, 100% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
    -webkit-transition-timing-function: cubic-bezier(0.33, 0, 0.67, 1);
            transition-timing-function: cubic-bezier(0.33, 0, 0.67, 1);
  }
  50% {
    -webkit-transform: rotate(-2deg) scale(1.05);
            transform: rotate(-2deg) scale(1.05);
  }
}
.p-mv {
  position: relative;
  z-index: 1;
}

.p-mv__inner {
  padding-top: 330px;
  padding-top: 20.625rem;
  position: relative;
  z-index: 1;
}

.p-mv__title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 13px;
  margin-top: 0.8125rem;
}

.p-mv__text {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.5;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-optout__columns {
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  padding-top: 70px;
  padding-top: 4.375rem;
}

.p-optout__section--divider {
  border-top: 1px solid #969696;
  margin-top: 60px;
  margin-top: 3.75rem;
  padding-top: 60px;
  padding-top: 3.75rem;
}

.p-optout__h2 {
  color: #1E1E1E;
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  font-weight: 900;
  line-height: 1.4333333333;
}

.p-optout__h3 {
  color: #1E1E1E;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  line-height: 2;
}

.p-optout__body {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-optout__text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  line-height: 2;
}

.p-optout__text + .p-optout__text {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-optout__block {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-optout__block--first {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-optout__block--lg-gap {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-optout__accordion-wrap {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-optout__accordion-summary {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #efefef;
  color: #1E1E1E;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 700;
  gap: 16px;
  gap: 1rem;
  line-height: 2;
  list-style: none;
  padding: 10px 40px 10px 16px;
  padding: 0.625rem 2.5rem 0.625rem 1rem;
  position: relative;
}

.p-optout__accordion-summary::-webkit-details-marker {
  display: none;
}

.p-optout__accordion-summary::before,
.p-optout__accordion-summary::after {
  background-color: #1E1E1E;
  content: "";
  height: 2px;
  height: 0.125rem;
  position: absolute;
  right: 16px;
  right: 1rem;
  top: 50%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 14px;
  width: 0.875rem;
}

.p-optout__accordion-summary::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.p-optout__accordion-summary::after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-optout__accordion[open] .p-optout__accordion-summary::before {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}

.p-optout__accordion-body {
  padding: 16px 0 28px;
  padding: 1rem 0 1.75rem;
}

.p-optout__research-intro {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  line-height: 2;
}

.p-optout__research {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-optout__research-title {
  color: #1E1E1E;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 700;
  line-height: 2;
}

.p-optout__research-subtitle {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  line-height: 2;
}

.p-optout__research-list {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-optout__research-term {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  line-height: 2;
  padding-left: 20px;
  padding-left: 1.25rem;
  position: relative;
}

.p-optout__research-term::before {
  color: #000000;
  content: "L";
  left: 2px;
  left: 0.125rem;
  position: absolute;
  top: 0;
}

.p-optout__research-desc {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  line-height: 2;
}

.p-optout__research-note {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  line-height: 2;
}

.p-optout__rights-title {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  line-height: 2;
}

.p-optout__rights-title::before {
  content: "・";
}

.p-optout__rights-text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  line-height: 2;
}

.p-optout__contact {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-optout__contact-title {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  line-height: 2;
}

.p-optout__contact-text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  line-height: 2;
}

.p-pagenavi .nav-links,
.p-pagenavi .wp-pagenavi {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
  gap: 1.0625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-pagenavi .previouspostslink,
.p-pagenavi .nextpostslink {
  display: inline-block;
}
.p-pagenavi .previouspostslink {
  margin-right: 10px;
  margin-right: 0.625rem;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.p-pagenavi .nextpostslink {
  margin-left: 10px;
  margin-left: 0.625rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.p-pavinavi__prev,
.p-pavinavi__next {
  aspect-ratio: 1/1;
  background: no-repeat center/contain;
  display: block;
  height: auto;
  width: 18px;
  width: 1.125rem;
}

.p-pavinavi__prev {
  background-image: url(../images/common/icon-arrow-right-orange2.svg);
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.p-pavinavi__next {
  background-image: url(../images/common/icon-arrow-right-orange2.svg);
}

.p-pavinavi__prev.is-disabled {
  background-image: url(../images/common/icon-arrow-left-beige.svg);
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.p-pavinavi__next.is-disabled {
  background-image: url(../images/common/icon-arrow-left-beige.svg);
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.p-post-list__main {
  padding-bottom: 180px;
  padding-bottom: 11.25rem;
  padding-top: 50px;
  padding-top: 3.125rem;
}

.p-post-list__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.p-post-list__item {
  border-bottom: 1px solid #969696;
}

.p-post-list__link {
  grid-row-gap: 1.5rem;
  color: inherit;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding: 45px 0;
  padding: 2.8125rem 0;
  row-gap: 24px;
  row-gap: 1.5rem;
}

.p-post-list__title {
  color: #1E1E1E;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 900;
  line-height: 1.4615384615;
  min-width: 0;
}

.p-post-list__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 0;
  row-gap: 24px;
  row-gap: 1.5rem;
}

.p-post-list__text {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 300;
  line-height: 2;
  word-break: break-all;
}

.p-post-list__text a {
  text-decoration: underline;
}

.p-post-list__text p + p {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-post-list__text figure,
.p-post-list__text .wp-block-image {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-post-list__text img {
  display: block;
  height: auto;
  width: 100%;
}

.p-post-list__link--no-thumb .p-post-list__thumb {
  display: none;
}

.p-post-list__thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
}

.p-post-list__thumb img {
  -o-object-fit: cover;
  aspect-ratio: 437/236;
  display: block;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-post-list__pagenavi {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-post-list__empty {
  padding: 60px 0;
  padding: 3.75rem 0;
  text-align: center;
}

.p-post-list__empty-message {
  color: #888888;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 500;
  line-height: 1.5;
}

.p-pro-training {
  padding-top: 100px;
  padding-top: 6.25rem;
}

.p-schedule {
  background: #C9B386;
  border-radius: 10px;
  padding: 30px 15px;
  padding: 1.875rem 0.9375rem;
}

.p-schedule__table {
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 0;
  width: 100%;
}

.p-schedule__label,
.p-schedule__day {
  background: #fff;
  border: none;
  color: #C9B386;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 700;
  line-height: 1.5;
  padding: 8px 0;
  padding: 0.5rem 0;
  text-align: center;
  vertical-align: middle;
  width: auto;
}

.p-schedule__label {
  border-radius: 10px 0 0 10px;
  width: 22%;
}

.p-schedule__day:last-child {
  border-radius: 0 10px 10px 0;
}

.p-schedule__time,
.p-schedule__cell {
  border: none;
  border-bottom: 2px solid #fff;
  color: #fff;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 700;
  line-height: 1.5;
  padding: 12px 0;
  padding: 0.75rem 0;
  text-align: center;
  vertical-align: middle;
  width: auto;
}

.p-schedule__time {
  text-align: left;
  width: 22%;
}

.p-schedule__row:first-child .p-schedule__time,
.p-schedule__row:first-child .p-schedule__cell {
  padding-top: 15px;
  padding-top: 0.9375rem;
}

.p-schedule__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 12px;
  margin-top: 0.75rem;
}

.p-schedule__note {
  color: #fff;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 700;
  line-height: 1.5;
}

.p-sidebar__list {
  grid-row-gap: 0.625rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 10px;
  row-gap: 0.625rem;
}

.p-sidebar__item {
  border-bottom: 1px solid #969696;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}

.p-sidebar__link {
  color: #969696;
  display: block;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 900;
  line-height: 1.4375;
}

.p-symptoms-archive__body {
  padding-bottom: 180px;
  padding-bottom: 11.25rem;
  padding-top: 60px;
  padding-top: 3.75rem;
}

.p-symptoms-archive__category {
  grid-gap: 0.625rem;
  display: grid;
  gap: 10px;
  gap: 0.625rem;
  grid-template-columns: repeat(2, 1fr);
}

.p-symptoms-archive__category-link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F4F1EB;
  border-radius: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(15px, 10px);
  font-size: max(0.9375rem, 10px);
  font-weight: 500;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 48px;
  min-height: 3rem;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.p-symptoms-archive__category-link.is-active {
  background-color: #C9B386;
  color: #fff;
}

.p-symptoms-archive__search {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-symptoms-archive__search-label {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
}

.p-symptoms-archive__search-field {
  grid-gap: 0.625rem;
  display: grid;
  gap: 10px;
  gap: 0.625rem;
  grid-template-columns: 1fr auto;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-symptoms-archive__search-input {
  background-color: #fff;
  border: 1px solid #C9B386;
  border-radius: 1.25rem;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  min-height: 50px;
  min-height: 3.125rem;
  padding: 14px 20px;
  padding: 0.875rem 1.25rem;
  width: 100%;
}
.p-symptoms-archive__search-input::-moz-placeholder {
  color: #969696;
}
.p-symptoms-archive__search-input::-webkit-input-placeholder {
  color: #969696;
}
.p-symptoms-archive__search-input:-ms-input-placeholder {
  color: #969696;
}
.p-symptoms-archive__search-input::-ms-input-placeholder {
  color: #969696;
}
.p-symptoms-archive__search-input::placeholder {
  color: #969696;
}

.p-symptoms-archive__search-submit {
  background-color: #C9B386;
  border: 1px solid #C9B386;
  border-radius: 1.25rem;
  color: #fff;
  cursor: pointer;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  letter-spacing: 0.5em;
  min-height: 50px;
  min-height: 3.125rem;
  min-width: 80px;
  min-width: 5rem;
  padding: 12px 20px;
  padding: 0.75rem 1.25rem;
  text-indent: 0.5em;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.p-symptoms-archive__results {
  margin-top: 48px;
  margin-top: 3rem;
}

.p-symptoms-archive__item:nth-child(n+2) {
  margin-top: 28px;
  margin-top: 1.75rem;
}

.p-symptoms-archive__card {
  background-color: #F4F1EB;
  color: inherit;
  display: block;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.p-symptoms-archive__thumb {
  aspect-ratio: 3/2;
  background-color: #969696;
  overflow: hidden;
  width: 100%;
}

.p-symptoms-archive__thumb--no-image {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  align-items: center;
  background-color: #E8E1D3;
  display: grid;
  justify-items: center;
  justify-items: center;
  place-items: center;
}

.p-symptoms-archive__thumb img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.p-symptoms-archive__thumb--no-image img {
  -o-object-fit: contain;
  height: auto;
     object-fit: contain;
  width: 50%;
}

.p-symptoms-archive__card-body {
  margin-top: 16px;
  margin-top: 1rem;
  padding: 0 20px;
  padding: 0 1.25rem;
}

.p-symptoms-archive__card-title {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 900;
}

.p-symptoms-archive__card-text {
  line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.6;
  margin-top: 12px;
  margin-top: 0.75rem;
  overflow: hidden;
}

.p-symptoms-archive__card-cta {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
  margin-top: 1rem;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

.p-symptoms-archive__card-cta.c-btn02--gold .c-btn02__text {
  color: #1E1E1E;
}

.p-symptoms-archive__card-cta.c-btn02--gold::after {
  border-left-color: #1E1E1E;
}
.p-symptoms-archive__empty {
  padding: 60px 0;
  padding: 3.75rem 0;
}

.p-symptoms-single__body {
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
  padding-top: 50px;
  padding-top: 3.125rem;
}

.p-lower-mv--symptoms .p-lower-mv__img {
  position: relative;
}

.p-lower-mv--symptoms .p-lower-mv__img::after {
  background-color: #C9B386;
  border-radius: 0.625rem;
  bottom: 0;
  content: "";
  left: 0;
  mix-blend-mode: color;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.p-content .p-symptoms-section h2.p-symptoms-section__title {
  border-bottom: 1px solid #C9B386;
  border-bottom: 0.0625rem solid #C9B386;
  border-top: none;
  color: #0055A2;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 900;
  margin-top: 0;
  padding-bottom: 14px;
  padding-bottom: 0.875rem;
  padding-top: 0;
  position: relative;
}

.p-content .p-symptoms-section h2.p-symptoms-section__title::after {
  background-color: #C9B386;
  bottom: -3px;
  bottom: -0.1875rem;
  content: "";
  height: 6px;
  height: 0.375rem;
  left: 0;
  position: absolute;
  width: 180px;
  width: 11.25rem;
}

.p-content .p-symptoms-section:nth-child(n+2) {
  margin-top: 54px;
  margin-top: 3.375rem;
}

.p-content p.p-symptoms-section__text {
  color: #000000;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 1.5;
  margin-top: 28px;
  margin-top: 1.75rem;
}

.p-content ul.wp-block-list.p-symptoms-section__tags {
  grid-gap: 0.625rem;
  display: grid;
  gap: 10px;
  gap: 0.625rem;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  margin-top: 32px;
  margin-top: 2rem;
  padding-left: 0;
}

.p-content ul.p-symptoms-section__tags li.p-symptoms-tag {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #dfdfdf;
  border-radius: 0;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  min-height: 50px;
  min-height: 3.125rem;
  padding: 8px 12px;
  padding: 0.5rem 0.75rem;
  text-align: center;
}

.p-content ul.p-symptoms-section__tags li.p-symptoms-tag::before {
  content: none;
}

.p-top-about {
  padding-top: 90px;
  padding-top: 5.625rem;
}

.p-top-about__content {
  background: #F4F1EB;
  margin-top: -25px;
  margin-top: -1.5625rem;
  padding: 40px 0;
  padding: 2.5rem 0;
}

.p-top-about__img {
  aspect-ratio: 355/400;
  border-radius: 10px;
  overflow: hidden;
}

.p-top-about__img img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-top-about__body {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-top-about__read {
  color: #000000;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 1.5;
}

.p-top-about__btn {
  margin-top: 25px;
  margin-top: 1.5625rem;
  text-align: center;
}

.p-top-concept {
  padding-top: 90px;
  padding-top: 5.625rem;
}

.p-top-concept__wrap {
  grid-row-gap: 6rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 27px;
  margin-top: 1.6875rem;
  position: relative;
  row-gap: 96px;
  row-gap: 6rem;
}

.p-top-concept__container {
  position: relative;
}

.p-top-concept__img {
  overflow: hidden;
  width: 94.6666666667%;
}

.p-top-concept__container:nth-child(odd) .p-top-concept__img {
  border-radius: 0 10px 10px 0;
  margin-left: 0;
  margin-right: auto;
}

.p-top-concept__container:nth-child(even) .p-top-concept__img {
  border-radius: 10px 0 0 10px;
  margin-left: auto;
  margin-right: 0;
}

.p-top-concept__img img {
  -o-object-fit: cover;
  aspect-ratio: 355/213;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-top-concept__body {
  background: rgba(239, 239, 239, 0.7);
  margin-top: -20px;
  margin-top: -1.25rem;
  min-height: 215px;
  min-height: 13.4375rem;
  padding: 44px 10px 20px 20px;
  padding: 2.75rem 0.625rem 1.25rem 1.25rem;
  position: relative;
  width: 94.6666666667%;
  z-index: 1;
}

.p-top-concept__container:nth-child(odd) .p-top-concept__body {
  border-radius: 10px 0 0 10px;
  margin-left: auto;
  margin-right: 0;
}

.p-top-concept__container:nth-child(even) .p-top-concept__body {
  border-radius: 0 10px 10px 0;
  margin-left: 0;
  margin-right: auto;
}

.p-top-concept__subtitle {
  color: #0055A2;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-top-concept__list {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-top-concept__item {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.5;
  padding-left: 16px;
  padding-left: 1rem;
  position: relative;
}

.p-top-concept__item--md {
  font-size: 18px;
  font-size: 1.125rem;
  padding-left: 18px;
  padding-left: 1.125rem;
}

.p-top-concept__item::before {
  content: "・";
  display: block;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  left: 0;
  line-height: 1.5;
  position: absolute;
  top: 0;
}

.p-top-concept__item--md::before {
  font-size: 18px;
  font-size: 1.125rem;
}

.p-top-news {
  padding-top: 90px;
  padding-top: 5.625rem;
}

.p-top-news__item {
  border-bottom: 1px solid #C9B386;
}

.p-top-news__link {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
  padding: 12px 0;
  padding: 0.75rem 0;
}

.p-top-news__link:hover {
  opacity: 0.7;
}

.p-top-news__date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 1.8;
}

.p-top-news__title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 1.8;
  overflow: hidden;
}

.p-top-news__more {
  margin-top: 22px;
  margin-top: 1.375rem;
  text-align: right;
}

.p-top-news__more-link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #C9B386;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 15px;
  gap: 0.9375rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.p-top-news__more-link:hover {
  opacity: 0.7;
}

.p-top-news__more-text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 2.8;
}

.p-top-news__more-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 6px;
  height: 0.375rem;
  width: 60px;
  width: 3.75rem;
}

.p-top-overview {
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  padding-top: 90px;
  padding-top: 5.625rem;
}

.p-top-overview__wrap table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-top: 26px;
  margin-top: 1.625rem;
  width: 100%;
}

.p-top-overview__wrap table th,
.p-top-overview__wrap table td {
  border-top: 1px solid;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  padding: 34px 0;
  padding: 2.125rem 0;
  text-align: left;
  vertical-align: text-top;
}

.p-top-overview__wrap table th {
  width: 93px;
  width: 5.8125rem;
}

.p-top-overview__wrap table tr:last-child th,
.p-top-overview__wrap table tr:last-child td {
  border-bottom: 1px solid;
}

.p-top-overview__access-text {
  display: block;
}

.p-top-overview__access-btn {
  display: inline-block;
  line-height: 1;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-top-overview__time {
  display: inline-block;
}

.p-top-overview__tel {
  color: #000000;
}

.p-top-recommend {
  background-color: #fff;
  padding-top: 60px;
  padding-top: 3.75rem;
}

.p-top-recommend__scroll {
  position: relative;
}

.p-top-recommend__list {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  max-width: 75rem;
  position: relative;
}

.p-top-recommend__item {
  display: block;
  padding-top: 0;
}

.p-top-recommend__item + .p-top-recommend__item {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-top-recommend__card {
  background: #fff;
  border: 1px solid #C9B386;
  border-radius: 0.625rem;
  padding: 16px 20px 30px;
  padding: 1rem 1.25rem 1.875rem;
}

.p-top-recommend__head {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.p-top-recommend__label {
  color: #C9B386;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  line-height: 1.5;
}

.p-top-recommend__num {
  color: #C9B386;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  line-height: 1.5;
}

.p-top-recommend__line {
  background: #C9B386;
  height: 1px;
  left: 145px;
  left: 9.0625rem;
  position: absolute;
  right: 30px;
  right: 1.875rem;
}

.p-top-recommend__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-top-recommend__img {
  aspect-ratio: 500/340;
  border-radius: 0.625rem;
  overflow: hidden;
}

.p-top-recommend__img img {
  -o-object-fit: cover;
  aspect-ratio: 500/300;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-top-recommend__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-top-recommend__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-top-recommend__catch {
  color: #C9B386;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 900;
  line-height: 1.5;
}

.p-top-recommend__lead {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 900;
  line-height: 1.5;
  margin-top: 12px;
  margin-top: 0.75rem;
}

.p-top-recommend__text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 1.5;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-top-recommend__btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 24px;
  margin-top: 1.5rem;
  text-align: right;
}

.p-top-recommend__catch,
.p-top-recommend__lead,
.p-top-recommend__text,
.p-top-recommend__btn {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
.p-top-service {
  padding-top: 90px;
  padding-top: 5.625rem;
}

.p-top-service__content {
  background: #F4F1EB;
  margin-top: -25px;
  margin-top: -1.5625rem;
  overflow: hidden;
  padding: 40px 0;
  padding: 2.5rem 0;
}

.p-top-service__img {
  border-radius: 10px 0 0 10px;
  margin-left: auto;
  overflow: hidden;
  width: 94.6666666667%;
}

.p-top-service__img img {
  -o-object-fit: cover;
  aspect-ratio: 355/213;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-top-service__body {
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-top: 1.25rem;
  max-width: 580px;
  max-width: 36.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}

.p-top-service__read {
  color: #000000;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 1.5;
}

.p-top-service__btn {
  margin-top: 25px;
  margin-top: 1.5625rem;
  text-align: center;
}

.p-top-service__btn a:nth-child(n+2) {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-top-symptoms {
  padding-top: 120px;
  padding-top: 7.5rem;
}

.p-top-symptoms__bg {
  background: #C9B386;
  margin-top: -25px;
  margin-top: -1.5625rem;
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
}

.p-top-symptoms__wrap {
  background: #fff;
  padding: 20px 10px;
  padding: 1.25rem 0.625rem;
}

.p-top-symptoms__list {
  grid-gap: 0.75rem;
  display: grid;
  gap: 12px;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}

.p-top-symptoms__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F4F1EB;
  border-radius: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0;
  line-height: 1.5;
  padding: 7px 0;
  padding: 0.4375rem 0;
}

.u-font-blue {
  color: #0055A2;
}

.u-hidden {
  overflow: hidden;
}

.screen-reader-text {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.u-pc {
  display: none;
}

.fz10 {
  font-size: max(10px, 10px);
  font-size: max(0.625rem, 10px);
}

.fz12 {
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
}

.fz14 {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
}

.fz16 {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
}

.fz18 {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
}

.fz20 {
  font-size: max(20px, 10px);
  font-size: max(1.25rem, 10px);
}

.u-text-block {
  display: inline-block;
}

@media (max-width: 375px){
  html {
    font-size: 4.2666666667vw;
  }
}

@media screen and (min-width: 768px){
  html {
    font-size: 1.28vw;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  html {
    scroll-padding-top: 6.25rem;
  }
  .fadeUp-sp {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
  }
  .l-breadcrumb {
    margin-top: 17px;
    margin-top: 1.0625rem;
  }
  .l-columns {
    padding-bottom: 242px;
    padding-bottom: 15.125rem;
    padding-top: 194px;
    padding-top: 12.125rem;
  }
  .l-columns__inner.l-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1190px;
    max-width: 74.375rem;
  }
  .l-columns__aside {
    width: 272px;
    width: 17rem;
  }
  .l-columns__main {
    width: 774px;
    width: 48.375rem;
  }
  .l-inner {
    max-width: 1250px;
    max-width: 78.125rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
    padding-right: 25px;
    padding-right: 1.5625rem;
  }
  .c-btn02__text {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .c-no-post {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .c-section-heading1 {
    font-size: 40px;
    font-size: 2.5rem;
  }
  .c-section-heading1[data-english]::before {
    font-size: 20px;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
    margin-bottom: 0.25rem;
  }
  .c-section-heading1::after {
    height: 7px;
    height: 0.4375rem;
    margin-top: 9px;
    margin-top: 0.5625rem;
    width: 60px;
    width: 3.75rem;
  }
  .c-text {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
  .c-title01 {
    padding-bottom: 76px;
    padding-bottom: 4.75rem;
    row-gap: 22px;
    row-gap: 1.375rem;
  }
  .c-title01__sub {
    font-size: 40px;
    font-size: 2.5rem;
  }
  .c-title01__main {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .c-title02 {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .c-title03 {
    font-size: 22px;
    font-size: 1.375rem;
    padding: 14px 24px 10px;
    padding: 0.875rem 1.5rem 0.625rem;
  }
  .c-title03--sm {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
    padding: 13px 24px 11px;
    padding: 0.8125rem 1.5rem 0.6875rem;
  }
  .p-404 {
    margin-top: 171px;
    margin-top: 10.6875rem;
    padding-bottom: 120px;
    padding-bottom: 7.5rem;
    padding-top: 140px;
    padding-top: 8.75rem;
  }
  .p-404__number {
    font-size: 220px;
    font-size: 13.75rem;
  }
  .p-404__title {
    font-size: 28px;
    font-size: 1.75rem;
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-404__text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-404__btn {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
  .p-about {
    padding-bottom: 290px;
    padding-bottom: 18.125rem;
  }
  .p-about__nav {
    margin-top: 100px;
    margin-top: 6.25rem;
  }
  .p-about__nav-list {
    gap: 20px;
    gap: 1.25rem;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1050px;
    max-width: 65.625rem;
  }
  .p-about__nav-link {
    font-size: 20px;
    font-size: 1.25rem;
    padding: 14px;
    padding: 0.875rem;
  }
  .p-about__section {
    padding-top: 100px;
    padding-top: 6.25rem;
  }
  .p-about__section--doctor {
    padding-bottom: 110px;
    padding-bottom: 6.875rem;
    padding-top: 200px;
    padding-top: 12.5rem;
  }
  .p-about__section--staff {
    padding-top: 200px;
    padding-top: 12.5rem;
  }
  .p-about__section-inner {
    max-width: 1050px;
    max-width: 65.625rem;
  }
  .p-about__heading-ja {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .p-about__heading-en {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-about__message {
    grid-column-gap: 5.3125rem;
    -moz-column-gap: 5.3125rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
         -webkit-column-gap: 5.3125rem;
                 column-gap: 5.3125rem;
    display: grid;
    grid-template-columns: 24.375rem 1fr;
    margin-top: 100px;
    margin-top: 6.25rem;
  }
  .p-about__message-body {
    margin-top: 0;
  }
  .p-about__message-title {
    font-size: 40px;
    font-size: 2.5rem;
  }
  .p-about__message-texts {
    margin-top: 30px;
    margin-top: 1.875rem;
  }
  .p-about__message-text {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-about__message-name {
    margin-top: 18px;
    margin-top: 1.125rem;
  }
  .p-about__gallery-wrap {
    padding: 52px 64px 65px;
    padding: 3.25rem 4rem 4.0625rem;
  }
  .p-about__gallery {
    gap: 22px;
    gap: 1.375rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 25px;
    margin-top: 1.5625rem;
  }
  .p-about__gallery-img {
    border-radius: 0.625rem;
  }
  .p-about__staff-group {
    margin-top: 100px;
    margin-top: 6.25rem;
  }
  .p-about__staff-group:first-of-type {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
  .p-about__staff-group.p-about__staff-group--therapist {
    margin-top: 200px;
    margin-top: 12.5rem;
  }
  .p-about__staff-group.p-about__staff-group--therapist .p-about__staff-group-title {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .p-about__staff-group-title {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-about__member {
    margin-top: 80px;
    margin-top: 5rem;
  }
  .p-about__member + .p-about__member {
    margin-top: 124px;
    margin-top: 7.75rem;
  }
  .p-about__member--director {
    margin-top: 112px;
    margin-top: 7rem;
    padding-top: 92px;
    padding-top: 5.75rem;
  }
  .p-about__member--no-photo:not(.p-about__member--director) {
    border-left: 5px solid #C9B386;
    border-left: 0.3125rem solid #C9B386;
    padding-left: 25px;
    padding-left: 1.5625rem;
  }
  .p-about__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 67px;
    gap: 4.1875rem;
  }
  .p-about__photo {
    -ms-flex-item-align: start;
        align-self: flex-start;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    min-height: 400px;
    min-height: 25rem;
    width: 350px;
    width: 21.875rem;
  }
  .p-about__info {
    margin-top: 0;
  }
  .p-about__header .p-about__info {
    -ms-flex-item-align: end;
        align-self: flex-end;
    padding-left: 30px;
    padding-left: 1.875rem;
    position: relative;
  }
  .p-about__header .p-about__info::before {
    background: #C9B386;
    bottom: 5px;
    bottom: 0.3125rem;
    content: "";
    height: calc(100% - 0.625rem);
    left: 0;
    position: absolute;
    width: 5px;
    width: 0.3125rem;
  }
  .p-about__member--director .p-about__info {
    border-left: 5px solid #C9B386;
    border-left: 0.3125rem solid #C9B386;
    padding-left: 25px;
    padding-left: 1.5625rem;
  }
  .p-about__role {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-about__role--message {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .p-about__name {
    font-size: 30px;
    font-size: 1.875rem;
    margin-top: 0;
  }
  .p-about__name--message {
    font-size: 22px;
    font-size: 1.375rem;
  }
  .p-about__credentials {
    margin-top: 10px;
    margin-top: 0.625rem;
  }
  .p-about__credential {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-about__detail {
    margin-top: 50px;
    margin-top: 3.125rem;
  }
  .p-about__detail--director {
    border-left: 5px solid #C9B386;
    border-left: 0.3125rem solid #C9B386;
    margin-top: 78px;
    margin-top: 4.875rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
  }
  .p-about__detail-heading {
    font-size: 27px;
    font-size: 1.6875rem;
  }
  .p-about__detail-heading.p-about__detail-heading--therapist {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .p-about__detail-list {
    margin-top: 8px;
    margin-top: 0.5rem;
  }
  .p-about__bio {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-about__detail-item {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-access-content__read {
    margin-top: 9px;
    margin-top: 0.5625rem;
  }
  .p-access-content__map {
    margin-top: 36px;
    margin-top: 2.25rem;
  }
  .p-access-content__read {
    margin-top: 20px;
    margin-top: 1.25rem;
  }
  .p-access-content__stepList {
    margin-top: 16px;
    margin-top: 1rem;
    padding-left: 16px;
    padding-left: 1rem;
    padding-right: 16px;
    padding-right: 1rem;
    row-gap: 28px;
    row-gap: 1.75rem;
  }
  .p-access-content__stepText {
    font-size: 17px;
    font-size: 1.0625rem;
  }
  .p-access-content__gallery {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 50px;
    margin-top: 3.125rem;
  }
  #TRAIN .p-access-content__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  #ESCALATOR .p-access-content__gallery,
  #ELEVATOR .p-access-content__gallery,
  #TAXI .p-access-content__gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px 10px;
    gap: 1.25rem 0.625rem;
  }
  #TAXI .p-access-content__gallery {
    margin-top: 14px;
    margin-top: 0.875rem;
  }
  #ESCALATOR .p-access-content__gallery-img:nth-child(1),
  #ESCALATOR .p-access-content__gallery-img:nth-child(2),
  #ESCALATOR .p-access-content__gallery-img:nth-child(3) {
    aspect-ratio: 326/400;
    width: 326px;
    width: 20.375rem;
  }
  #ESCALATOR .p-access-content__gallery-img:nth-child(4),
  #ESCALATOR .p-access-content__gallery-img:nth-child(5) {
    aspect-ratio: 495/400;
    width: 495px;
    width: 30.9375rem;
  }
  #TAXI .p-access-content__gallery-img:nth-child(1),
  #TAXI .p-access-content__gallery-img:nth-child(2),
  #TAXI .p-access-content__gallery-img:nth-child(3) {
    aspect-ratio: 326/230;
    width: 326px;
    width: 20.375rem;
  }
  #TAXI .p-access-content__gallery-img:nth-child(4),
  #TAXI .p-access-content__gallery-img:nth-child(5) {
    aspect-ratio: 495/230;
    width: 495px;
    width: 30.9375rem;
  }
  #ELEVATOR .p-access-content__gallery-img {
    aspect-ratio: 326/400;
    width: 326px;
    width: 20.375rem;
  }
  .p-access-content__textList {
    margin-top: 16px;
    margin-top: 1rem;
  }
  .p-access-content__textItem {
    font-size: max(17px, 10px);
    font-size: max(1.0625rem, 10px);
  }
  .p-access-content__text {
    margin-top: 30px;
    margin-top: 1.875rem;
    padding-left: 22px;
    padding-left: 1.375rem;
    padding-right: 22px;
    padding-right: 1.375rem;
  }
  .p-access-content__attention {
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-access-content__attention-title {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-access-content__attention-title span {
    margin-top: 4px;
    margin-top: 0.25rem;
  }
  .p-access-content__attention-text {
    font-size: max(15px, 10px);
    font-size: max(0.9375rem, 10px);
    margin-top: -3px;
    margin-top: -0.1875rem;
  }
  .p-access__inner {
    max-width: 1050px;
    max-width: 65.625rem;
    padding-bottom: 260px;
    padding-bottom: 16.25rem;
    padding-top: 196px;
    padding-top: 12.25rem;
    row-gap: 70px;
    row-gap: 4.375rem;
  }
  .p-access__information {
    padding: 20px 32px 20px 24px;
    padding: 1.25rem 2rem 1.25rem 1.5rem;
  }
  .p-access__information-title {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-access__information-list {
    margin-top: 10px;
    margin-top: 0.625rem;
    row-gap: 14px;
    row-gap: 0.875rem;
  }
  .p-access__information-item {
    gap: 6px;
    gap: 0.375rem;
    grid-template-columns: 5rem 1fr;
  }
  .p-breadcrumb__inner {
    max-width: 1240px;
    max-width: 77.5rem;
  }
  .p-breadcrumb span[property=itemListElement]:nth-child(n+2)::before {
    margin-right: 13px;
    margin-right: 0.8125rem;
  }
  .p-breadcrumb__wrapper {
    -moz-column-gap: 1rem;
         -webkit-column-gap: 1rem;
            column-gap: 1rem;
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-breadcrumb__wrapper a:hover {
    color: #C9B386;
    opacity: 1;
  }
  .p-conditioning {
    padding-top: 120px;
    padding-top: 7.5rem;
  }
  .p-contact__inner {
    margin-top: 195px;
    margin-top: 12.1875rem;
    max-width: 1010px;
    max-width: 63.125rem;
    padding-bottom: 250px;
    padding-bottom: 15.625rem;
  }
  .p-contact__lead-text {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.4444444444;
  }
  .p-contact__lead-note {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.4444444444;
  }
  .p-contact__form-wrap {
    margin-top: 160px;
    margin-top: 10rem;
  }
  .p-contact-form__item:nth-of-type(n + 2) {
    margin-top: 30px;
    margin-top: 1.875rem;
  }
  .p-contact-form__field {
    margin-top: 10px;
    margin-top: 0.625rem;
  }
  .p-contact-form__label {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
  .p-contact-form__label-text {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
  .p-contact-form__field input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]),
  .p-contact-form__field textarea {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    padding: 13px 20px;
    padding: 0.8125rem 1.25rem;
  }
  .p-contact-form__policy {
    margin-top: 50px;
    margin-top: 3.125rem;
  }
  .p-contact-form__policy-note {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
  .p-contact-form__policy-title {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
  .p-contact-form__policy-text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-contact-form__policy-body {
    padding: 28px;
    padding: 1.75rem;
  }
  .p-contact-form__policy-subtitle {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    margin-top: 20px;
    margin-top: 1.25rem;
  }
  .p-contact-form__policy-list-item {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-contact-form__acceptance {
    margin-top: 50px;
    margin-top: 3.125rem;
  }
  .p-contact-form__acceptance input + span {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
  .p-contact-form__send {
    margin-top: 78px;
    margin-top: 4.875rem;
  }
  .p-contact-form__send-btn {
    font-size: 18px;
    font-size: 1.125rem;
    max-width: 366px;
    max-width: 22.875rem;
    min-height: 80px;
    min-height: 5rem;
  }
  .p-contact-thanks__inner {
    margin-top: 195px;
    margin-top: 12.1875rem;
    max-width: 1010px;
    max-width: 63.125rem;
    padding-bottom: 250px;
    padding-bottom: 15.625rem;
  }
  .p-contact-thanks__content {
    padding-bottom: 120px;
    padding-bottom: 7.5rem;
    padding-top: 40px;
    padding-top: 2.5rem;
  }
  .p-contact-thanks__title {
    font-size: 32px;
    font-size: 2rem;
  }
  .p-contact-thanks__body {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-contact-thanks__text {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.4444444444;
  }
  .p-contact-thanks__btn {
    margin-top: 56px;
    margin-top: 3.5rem;
  }
  .p-content h2,
  .p-post-list__text h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .p-content > .wp-block-group:nth-child(n+2) h2,
  .p-content > h2:nth-child(n+2) {
    margin-top: 100px;
    margin-top: 6.25rem;
    padding-top: 100px;
    padding-top: 6.25rem;
  }
  .p-content h3,
  .p-post-list__text h3 {
    font-size: 20px;
    font-size: 1.25rem;
    margin-bottom: 16px;
    margin-bottom: 1rem;
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-content p {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
    margin-bottom: 22px;
    margin-bottom: 1.375rem;
    margin-top: 28px;
    margin-top: 1.75rem;
  }
  .p-content h2 + p {
    margin-bottom: 10px;
    margin-bottom: 0.625rem;
    margin-top: 28px;
    margin-top: 1.75rem;
  }
  .p-content p + p {
    margin-top: 32px;
    margin-top: 2rem;
  }
  .p-content a {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
  .p-single-block {
    margin-bottom: 22px;
    margin-bottom: 1.375rem;
  }
  .p-content .wp-block-image {
    margin-top: 54px;
    margin-top: 3.375rem;
  }
  .p-content .p-single-block__img--small.wp-block-image {
    width: 45%;
  }
  .p-single-block__images,
  .wp-block-gallery {
    margin-top: 54px;
    margin-top: 3.375rem;
  }
  .p-content .p-custom__gallery1.wp-block-image {
    margin-left: 0;
    margin-right: auto;
  }
  .p-content .p-custom__gallery1.wp-block-image.p-custom__gallery1--max {
    width: 100%;
  }
  .p-custom__gallery2-wide {
    display: grid !important;
  }
  .p-custom__gallery2-wide {
    grid-gap: 1.25rem;
    gap: 20px;
    gap: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .p-custom__gallery3-wide {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-content .wp-block-gallery.p-custom__gallery3-wide.has-nested-images figure.wp-block-image:not(#individual-image):nth-child(1) {
    width: 495px !important;
    width: 30.9375rem !important;
  }
  .p-content .wp-block-gallery.p-custom__gallery3-wide.has-nested-images figure.wp-block-image:not(#individual-image):nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/3;
  }
  .p-content .wp-block-gallery.p-custom__gallery3-wide.has-nested-images figure.wp-block-image:not(#individual-image):nth-child(2) {
    width: 259px !important;
    width: 16.1875rem !important;
  }
  .p-content .wp-block-gallery.p-custom__gallery3-wide.has-nested-images figure.wp-block-image:not(#individual-image):nth-child(2) {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .p-content .wp-block-gallery.p-custom__gallery3-wide.has-nested-images figure.wp-block-image:not(#individual-image):nth-child(3) {
    width: 259px !important;
    width: 16.1875rem !important;
  }
  .p-content .wp-block-gallery.p-custom__gallery3-wide.has-nested-images figure.wp-block-image:not(#individual-image):nth-child(3) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .p-content__custom-block:not(:first-child) {
    margin-bottom: 12px;
    margin-bottom: 0.75rem;
  }
  .p-content figure + .p-content__custom-block {
    margin-bottom: 84px;
    margin-bottom: 5.25rem;
  }
  .p-content > ul.wp-block-list,
  .p-post-list__text > ul.wp-block-list {
    margin-top: 36px;
    margin-top: 2.25rem;
  }
  .p-content > ul.wp-block-list li,
  .p-content ol li,
  .p-post-list__text > ul.wp-block-list li,
  .p-post-list__text ol li {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
    line-height: 2;
  }
  .p-content > ul.wp-block-list li::before,
  .p-post-list__text > ul.wp-block-list li::before {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
  .p-single-block__columns {
    grid-template-columns: repeat(2, 1fr);
  }
  p + .p-single-block__columns {
    margin-top: 50px;
    margin-top: 3.125rem;
  }
  .p-single-block__columns.three-columns > .wp-block-column:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/3;
    width: 495px;
    width: 30.9375rem;
  }
  .p-single-block__columns.three-columns > .wp-block-column:nth-child(2) {
    grid-column: 2/3;
    grid-row: 1/2;
    width: 259px;
    width: 16.1875rem;
  }
  .p-single-block__columns.three-columns > .wp-block-column:nth-child(3) {
    grid-column: 2/3;
    grid-row: 2/3;
    width: 259px;
    width: 16.1875rem;
  }
  .p-single-block__columns.three-columns > .wp-block-column:nth-child(1) img {
    aspect-ratio: 495/400;
  }
  .p-single-block__columns.three-columns > .wp-block-column:nth-child(2) img,
  .p-single-block__columns.three-columns > .wp-block-column:nth-child(3) img {
    aspect-ratio: 259/190;
  }
  .p-custom__gallery2-wide img {
    aspect-ratio: 377/284;
  }
  .p-content .p-custom-recommend__body {
    padding: 28px 34px;
    padding: 1.75rem 2.125rem;
  }
  .p-content .p-custom-recommend__list li {
    font-size: max(17px, 10px);
    font-size: max(1.0625rem, 10px);
  }
  .p-content .p-custom-bullet-list {
    margin-top: 30px;
    margin-top: 1.875rem;
  }
  .p-content .p-custom-bullet-list__list {
    padding-left: 10px !important;
    padding-left: 0.625rem !important;
  }
  .p-content .p-custom-bullet-list__list li {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    line-height: 2;
    padding-left: 18px;
    padding-left: 1.125rem;
  }
  .p-content .p-custom-bullet-list__list li::before {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    line-height: 2;
  }
  .p-content .p-custom-faq__list > .wp-block-group__inner-container {
    gap: 33px;
    gap: 2.0625rem;
  }
  .p-content .p-custom-faq__question {
    font-size: max(17px, 10px);
    font-size: max(1.0625rem, 10px);
    gap: 13px;
    gap: 0.8125rem;
  }
  .p-content .p-custom-faq__question::before {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
  .p-content .p-custom-faq__answer {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-content .p-insurance-section .p-custom-faq__attention {
    margin-top: 32px;
    margin-top: 2rem;
  }
  .p-content .p-insurance-card {
    margin-top: 30px;
    margin-top: 1.875rem;
    padding: 52px 50px 50px;
    padding: 3.25rem 3.125rem 3.125rem;
  }
  .p-content .p-insurance-section + .p-insurance-card,
  .p-content .p-insurance-card + .p-insurance-card {
    margin-top: 50px;
    margin-top: 3.125rem;
  }
  .p-content .p-insurance-card__title {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .p-content .p-insurance-card__list {
    margin-top: 24px;
    margin-top: 1.5rem;
    row-gap: 20px;
    row-gap: 1.25rem;
  }
  .p-content .p-insurance-card__list li {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
    line-height: 2;
    padding: 19px 37px;
    padding: 1.1875rem 2.3125rem;
  }
  .p-content .p-insurance-card.p-insurance-card--flow {
    padding: 50px 50px 52px;
    padding: 3.125rem 3.125rem 3.25rem;
  }
  .p-content .p-insurance-card__items {
    margin-top: 24px;
    margin-top: 1.5rem;
    row-gap: 20px;
    row-gap: 1.25rem;
  }
  .p-content .p-insurance-card__item.p-insurance-card__item--flow {
    padding: 20px 37px;
    padding: 1.25rem 2.3125rem;
  }
  .p-content .p-insurance-section .wp-block-buttons {
    margin-top: 50px;
    margin-top: 3.125rem;
  }
  .p-content .p-insurance-price {
    margin-top: 50px;
    margin-top: 3.125rem;
  }
  .p-content .p-insurance-price__category {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    padding: 8px 17px;
    padding: 0.5rem 1.0625rem;
  }
  .p-content .p-insurance-price__table th {
    font-size: max(15px, 10px);
    font-size: max(0.9375rem, 10px);
    padding: 16px 14px;
    padding: 1rem 0.875rem;
  }
  .p-content .p-insurance-price__table th:first-child {
    width: 50%;
  }
  .p-content .p-insurance-price__table td {
    font-size: max(15px, 10px);
    font-size: max(0.9375rem, 10px);
    padding: 13.75px 12px;
    padding: 0.859375rem 0.75rem;
  }
  .p-content .p-insurance-price__table th:not(:first-child),
  .p-content .p-insurance-price__table td:not(:first-child) {
    width: 16.6666666667%;
  }
  .p-content .p-insurance-price__attention-text {
    font-size: max(13px, 10px);
    font-size: max(0.8125rem, 10px);
  }
  .p-content .p-insurance-price.p-insurance-price--simple {
    margin-top: 30px;
    margin-top: 1.875rem;
  }
  .p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__table th {
    font-size: max(17px, 10px);
    font-size: max(1.0625rem, 10px);
    padding: 8px 40px;
    padding: 0.5rem 2.5rem;
  }
  .p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__table td {
    font-size: max(17px, 10px);
    font-size: max(1.0625rem, 10px);
    padding: 10px 40px;
    padding: 0.625rem 2.5rem;
  }
  .p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__table tbody tr:not(:first-child):not(:last-child)::after {
    left: 20px;
    left: 1.25rem;
    right: 20px;
    right: 1.25rem;
  }
  .p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__table.p-insurance-price__table--2col th:first-child {
    width: 59.5%;
  }
  .p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__table.p-insurance-price__table--2col th:not(:first-child),
  .p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__table.p-insurance-price__table--2col td:not(:first-child) {
    width: 40.5%;
  }
  .p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__table.p-insurance-price__table--burden th {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__table.p-insurance-price__table--burden td {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__table.p-insurance-price__table--burden th:not(:first-child),
  .p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__table.p-insurance-price__table--burden td:not(:first-child) {
    width: 25%;
  }
  .p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__attention {
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-content .p-insurance-price.p-insurance-price--simple .p-insurance-price__attention .p-insurance-price__attention-text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    line-height: 2;
  }
  .p-content .p-insurance-price.p-insurance-price--1col {
    margin-top: 30px;
    margin-top: 1.875rem;
  }
  .p-content .p-custom__h2-timeline-list__list,
  .p-content .p-custom__h3-timeline-list__list {
    gap: 30px;
    gap: 1.875rem;
  }
  .p-content .p-custom__h2-timeline-list__list > .wp-block-group__inner-container.is-layout-constrained,
  .p-content .p-custom__h3-timeline-list__list > .wp-block-group__inner-container.is-layout-constrained {
    row-gap: 28px;
    row-gap: 1.75rem;
  }
  .p-content .p-custom__h2-timeline-list__label,
  .p-content .p-custom__h3-timeline-list__label {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
  .p-content .p-custom__h2-timeline-list__text,
  .p-content .p-custom__h3-timeline-list__text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-content .p-custom__h3-timeline-list__title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 2;
    margin-top: 54px;
    margin-top: 3.375rem;
    padding: 10px 20px;
    padding: 0.625rem 1.25rem;
  }
  .p-content .p-custom-gold-label + .p-custom__h3-text {
    margin-top: 56px;
    margin-top: 3.5rem;
  }
  .p-content .p-custom__h3-text--lg h3 {
    font-size: 24px;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-top: 1.875rem;
  }
  .p-content .p-custom__h3-text--lg + .p-custom__h3-text--lg h3 {
    margin-top: 26px;
    margin-top: 1.625rem;
  }
  .p-content .p-custom-black-label__text {
    font-size: max(17px, 10px);
    font-size: max(1.0625rem, 10px);
  }
  .p-content .p-custom-black-label__text--sm {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
  .p-content .p-custom-white-label {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
    margin-top: 34px;
    margin-top: 2.125rem;
  }
  .p-content .p-custom__h2-card-grid__cards > .wp-block-group__inner-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-content .p-custom__h2-card-grid__cards.p-custom__card-grid-3 > .wp-block-group__inner-container {
    gap: 10px;
    gap: 0.625rem;
    grid-template-columns: repeat(3, 1fr);
  }
  .p-content .p-custom__h2-card-grid__cards.p-custom__card-grid-2 > .wp-block-group__inner-container {
    grid-template-rows: auto auto;
    row-gap: 16px;
    row-gap: 1rem;
  }
  .p-content .p-custom__h2-card-grid__cards.p-custom__card-grid-2 > .wp-block-group__inner-container > .p-custom__h2-card-grid__row {
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
  }
  .p-content .p-custom__h2-card-grid__cards.p-custom__card-grid-2 > .wp-block-group__inner-container > .p-custom__h2-card-grid__row > .wp-block-group__inner-container {
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
    height: auto;
  }
  .p-content .p-custom__h2-card-grid__cards.p-custom__card-grid-2:not(.p-custom__card-grid-2--stat) > .wp-block-group__inner-container > .p-custom__h2-card-grid__row > .wp-block-group__inner-container > .p-custom__h2-card-grid__card {
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
    height: auto;
    min-height: 0;
  }
  .p-content .p-custom__h2-card-grid__cards.p-custom__card-grid-2:not(.p-custom__card-grid-2--stat) > .wp-block-group__inner-container > .p-custom__h2-card-grid__row > .wp-block-group__inner-container > .p-custom__h2-card-grid__card > .wp-block-group__inner-container {
    grid-gap: 0;
    display: grid;
    gap: 0;
    grid-row: span 2;
    grid-template-rows: subgrid;
    height: auto;
  }
  .p-content .p-custom__h2-card-grid__cards.p-custom__card-grid-2 .p-custom__h2-card-grid__row .p-custom__h2-card-grid__label {
    -ms-flex-item-align: start;
        align-self: start;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
  .p-content .p-custom__h2-card-grid__cards.p-custom__card-grid-2 .p-custom__h2-card-grid__row .p-custom__h2-card-grid__text {
    -ms-flex-item-align: start;
        align-self: start;
  }
  .p-content .p-custom__h2-card-grid__card {
    min-height: 100px;
    min-height: 6.25rem;
    padding: 12px 10px 22px;
    padding: 0.75rem 0.625rem 1.375rem;
  }
  .p-content .p-custom__h2-card-grid__card--small {
    margin-top: 28px;
    margin-top: 1.75rem;
    min-height: 70px;
    min-height: 4.375rem;
    padding: 10px 20px 5px;
    padding: 0.625rem 1.25rem 0.3125rem;
  }
  .p-content .p-custom__h2-card-grid__row .p-custom__h2-card-grid__card--small > .wp-block-group__inner-container {
    gap: 7px;
    gap: 0.4375rem;
  }
  .p-content .p-custom__h2-card-grid__cards.p-custom__card-grid-2--stat > .wp-block-group__inner-container {
    gap: 16px;
    gap: 1rem;
  }
  .p-content .p-custom__h2-card-grid__card--stat {
    min-height: 90px;
    min-height: 5.625rem;
    padding: 14px 16px 8px;
    padding: 0.875rem 1rem 0.5rem;
  }
  .p-drawer__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 268px;
    gap: 16.75rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    max-width: 945px;
    max-width: 59.0625rem;
    padding-bottom: 80px;
    padding-bottom: 5rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
    padding-right: 25px;
    padding-right: 1.5625rem;
    padding-top: 42px;
    padding-top: 2.625rem;
    width: auto;
  }
  .p-drawer__nav-items {
    padding-top: 36px;
    padding-top: 2.25rem;
  }
  .p-drawer__nav-link {
    font-size: 22px;
    font-size: 1.375rem;
    padding: 14.5px 0;
    padding: 0.90625rem 0;
  }
  .p-drawer__logo {
    margin-top: 48px;
    margin-top: 3rem;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    text-align: left;
    text-align: initial;
    width: 250px;
    width: 15.625rem;
  }
  .p-footer {
    padding-bottom: 33px;
    padding-bottom: 2.0625rem;
    padding-top: 71px;
    padding-top: 4.4375rem;
  }
  .p-footer__inner {
    max-width: 1050px;
    max-width: 65.625rem;
  }
  .p-footer__logo {
    margin-top: 58px;
    margin-top: 3.625rem;
  }
  .p-footer__nav {
    margin-left: auto;
    margin-right: auto;
    margin-top: 42px;
    margin-top: 2.625rem;
    max-width: 994px;
    max-width: 62.125rem;
  }
  .p-footer__nav-list {
    gap: 12px 30px;
    gap: 0.75rem 1.875rem;
  }
  .p-footer__nav-item a {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-footer__copyright small {
    font-size: max(11px, 10px);
    font-size: max(0.6875rem, 10px);
  }
  .p-form__items {
    gap: 12px;
    gap: 0.75rem;
  }
  .p-form__item:first-of-type {
    gap: 16px;
    gap: 1rem;
    margin-bottom: 27px;
    margin-bottom: 1.6875rem;
  }
  .p-form__dt {
    padding-right: 24px;
    padding-right: 1.5rem;
    padding-top: 8px;
    padding-top: 0.5rem;
  }
  .p-form__dd input:not([type=radio]):not([type=checkbox]),
  .p-form__dd textarea {
    border-radius: 0.75rem;
    padding: 12px 24px;
    padding: 0.75rem 1.5rem;
  }
  .p-form__dd input[type=checkbox] + span,
  .p-form__dd input[type=radio] + span {
    gap: 14px;
    gap: 0.875rem;
  }
  .p-form__dd input[type=checkbox] + span::before {
    margin-top: 3px;
    margin-top: 0.1875rem;
    width: 16px;
    width: 1rem;
  }
  .p-form__dd textarea {
    height: 188px;
    height: 11.75rem;
  }
  .p-form__acceptance {
    margin-top: 26px;
    margin-top: 1.625rem;
  }
  .p-form__acceptance input + span::before {
    margin-top: 7px;
    margin-top: 0.4375rem;
  }
  .p-form__policy-description {
    margin-top: 42px;
    margin-top: 2.625rem;
  }
  .p-form__send {
    margin-top: 56px;
    margin-top: 3.5rem;
    max-width: 332px;
    max-width: 20.75rem;
  }
  .p-form__send input {
    min-height: 63px;
    min-height: 3.9375rem;
    padding: 0 54px 0 42px;
    padding: 0 3.375rem 0 2.625rem;
  }
  .p-header.is-scrolled {
    height: 100px;
    height: 6.25rem;
  }
  .p-header__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1390px;
    max-width: 86.875rem;
    padding: 40px 25px 0;
    padding: 2.5rem 1.5625rem 0;
  }
  .is-scrolled .p-header__inner {
    max-width: none;
    padding: 0 161px 0 50px;
    padding: 0 10.0625rem 0 3.125rem;
  }
  .p-header__logo {
    width: 395px;
    width: 24.6875rem;
  }
  .is-scrolled .p-header__logo {
    width: 251px;
    width: 15.6875rem;
  }
  .p-header__contact {
    background: none;
    gap: 20px;
    gap: 1.25rem;
    height: auto;
    padding: 0;
    position: static;
  }
  .p-header__tel {
    display: block;
  }
  .p-header__tel-number {
    line-height: 1;
  }
  .p-header__booking {
    background-color: #C9B386;
    border: 1px solid #C9B386;
    gap: 12px;
    gap: 0.75rem;
  }
  .p-header__booking--tel {
    display: none;
  }
  .p-header__booking--web,
  .p-header__booking--line {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    padding-right: 12px;
    padding-right: 0.75rem;
    width: 173px;
    width: 10.8125rem;
  }
  .p-header__booking-text {
    color: #fff;
  }
  .p-header__booking::before {
    background-color: #fff;
  }
  .p-header__menu-button {
    height: 100px;
    height: 6.25rem;
    width: 110px;
    width: 6.875rem;
  }
  .is-scrolled .p-header__menu-button {
    height: 73px;
    height: 4.5625rem;
    right: 30px;
    right: 1.875rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 80px;
    width: 5rem;
  }
  .is-scrolled .p-header__menu-icon {
    width: 44px;
    width: 2.75rem;
  }
  .is-scrolled .p-header__menu-icon::before {
    -webkit-transform: translateY(-0.875rem);
            transform: translateY(-0.875rem);
  }
  .is-scrolled .p-header__menu-icon::after {
    -webkit-transform: translateY(0.875rem);
            transform: translateY(0.875rem);
  }
  .p-header__menu-icon {
    width: 60px;
    width: 3.75rem;
  }
  .p-header__menu-icon::before {
    -webkit-transform: translateY(-1.0625rem);
            transform: translateY(-1.0625rem);
  }
  .p-header__menu-icon::after {
    -webkit-transform: translateY(1.0625rem);
            transform: translateY(1.0625rem);
  }
  .p-header__menu-button[aria-expanded=true] .p-header__menu-icon {
    left: 37%;
    width: 50px;
    width: 3.125rem;
  }
  .p-lower-mv {
    margin-top: 171px;
    margin-top: 10.6875rem;
  }
  .p-lower-mv__inner {
    margin-top: 8px;
    margin-top: 0.5rem;
    max-width: 1250px;
    max-width: 78.125rem;
  }
  .p-lower-mv__img {
    height: auto;
  }
  .p-lower-mv__title {
    bottom: -4px;
    bottom: -0.25rem;
    left: 43px;
    left: 2.6875rem;
    right: 43px;
    right: 2.6875rem;
  }
  .p-lower-mv__title-ja {
    font-size: 80px;
    font-size: 5rem;
  }
  .p-mv-layer {
    width: 94.0277777778%;
  }
  .p-mv-layer__shape--01 {
    right: 84px;
    right: 5.25rem;
  }
  .p-mv-layer__shape--02 {
    bottom: 0;
    height: 874px;
    height: 54.625rem;
  }
  .p-mv-layer__photo {
    margin-top: 51px;
    margin-top: 3.1875rem;
    width: 84.4903988183%;
  }
  .p-mv-layer__photo img {
    -o-object-position: left center;
    max-height: none;
       object-position: left center;
  }
  .p-mv {
    margin-left: auto;
    margin-right: auto;
    max-width: 1920px;
    max-width: 120rem;
  }
  .p-mv__inner {
    max-width: 1290px;
    max-width: 80.625rem;
    padding-bottom: max(80px, min(18.8194444444vw, 120px));
    padding-bottom: max(5rem, min(18.8194444444vw, 7.5rem));
    padding-top: 288px;
    padding-top: 18rem;
  }
  .p-mv__title {
    font-size: 70px;
    font-size: 4.375rem;
    line-height: 1.5;
    margin-top: 0;
  }
  .p-mv__text {
    font-size: 30px;
    font-size: 1.875rem;
    margin-top: 29px;
    margin-top: 1.8125rem;
  }
  .p-optout__columns {
    padding-bottom: 204px;
    padding-bottom: 12.75rem;
    padding-top: 194px;
    padding-top: 12.125rem;
  }
  .p-optout__section--divider {
    margin-top: 100px;
    margin-top: 6.25rem;
    padding-top: 100px;
    padding-top: 6.25rem;
  }
  .p-optout__h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .p-optout__h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-optout__body {
    margin-top: 28px;
    margin-top: 1.75rem;
  }
  .p-optout__text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-optout__text + .p-optout__text {
    margin-top: 16px;
    margin-top: 1rem;
  }
  .p-optout__block {
    margin-top: 50px;
    margin-top: 3.125rem;
  }
  .p-optout__block--first {
    margin-top: 30px;
    margin-top: 1.875rem;
  }
  .p-optout__block--lg-gap {
    margin-top: 100px;
    margin-top: 6.25rem;
  }
  .p-optout__accordion-wrap {
    margin-top: 50px;
    margin-top: 3.125rem;
  }
  .p-optout__accordion-summary {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    padding: 6px 44px 6px 20px;
    padding: 0.375rem 2.75rem 0.375rem 1.25rem;
  }
  .p-optout__accordion-summary::before,
  .p-optout__accordion-summary::after {
    right: 20px;
    right: 1.25rem;
  }
  .p-optout__research-intro {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-optout__research-title {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-optout__research-subtitle {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-optout__research-list {
    margin-top: 8px;
    margin-top: 0.5rem;
  }
  .p-optout__research-term {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-optout__research-desc {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-optout__research-note {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-optout__rights-title {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-optout__rights-text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-optout__contact {
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-optout__contact-title {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-optout__contact-text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-pagenavi .nav-links,
  .p-pagenavi .wp-pagenavi {
    gap: 22px;
    gap: 1.375rem;
  }
  .p-pagenavi .previouspostslink {
    margin-right: 12px;
    margin-right: 0.75rem;
  }
  .p-pagenavi .nextpostslink {
    margin-left: 12px;
    margin-left: 0.75rem;
  }
  .p-pavinavi__prev,
  .p-pavinavi__next {
    width: 24px;
    width: 1.5rem;
  }
  .p-post-list__inner {
    max-width: 1050px;
    max-width: 65.625rem;
  }
  .p-post-list__main {
    padding-bottom: 364px;
    padding-bottom: 22.75rem;
    padding-top: 94px;
    padding-top: 5.875rem;
  }
  .p-post-list__link {
    padding: 98px 0 100px;
    padding: 6.125rem 0 6.25rem;
    row-gap: 38px;
    row-gap: 2.375rem;
  }
  .p-post-list__link--no-thumb {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-post-list__title {
    font-size: 26px;
    font-size: 1.625rem;
  }
  .p-post-list__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-post-list__text {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
    width: 490px;
    width: 30.625rem;
  }
  .p-post-list__link--no-thumb .p-post-list__text {
    max-width: 490px;
    max-width: 30.625rem;
  }
  .p-post-list__thumb {
    width: 437px;
    width: 27.3125rem;
  }
  .p-post-list__pagenavi {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
  .p-post-list__empty-message {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-pro-training {
    padding-top: 120px;
    padding-top: 7.5rem;
  }
  .p-schedule {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    max-width: 56.25rem;
    padding: 62px 75px 60px;
    padding: 3.875rem 4.6875rem 3.75rem;
  }
  .p-schedule__table {
    table-layout: fixed;
  }
  .p-schedule__label,
  .p-schedule__day {
    font-size: 20px;
    font-size: 1.25rem;
    padding: 12px 0;
    padding: 0.75rem 0;
  }
  .p-schedule__label {
    padding: 0 25px;
    padding: 0 1.5625rem;
    text-align: left;
    width: 204px;
    width: 12.75rem;
  }
  .p-schedule__day {
    width: 70px;
    width: 4.375rem;
  }
  .p-schedule__day:last-child {
    padding-left: 4px;
    padding-right: 4px;
    text-align: left;
    width: auto;
  }
  .p-schedule__cell:last-child {
    padding-left: 28px;
    padding-left: 1.75rem;
    text-align: left;
  }
  .p-schedule__time,
  .p-schedule__cell {
    border-bottom-width: 3px;
    font-size: 20px;
    font-size: 1.25rem;
    padding: 10px 12px;
    padding: 0.625rem 0.75rem;
    position: static;
  }
  .p-schedule__time {
    padding-right: 0;
    width: 204px;
    width: 12.75rem;
  }
  .p-schedule__row:first-child .p-schedule__time,
  .p-schedule__row:first-child .p-schedule__cell {
    padding: 15px 12px 10px;
    padding: 0.9375rem 0.75rem 0.625rem;
  }
  .p-schedule__row:first-child .p-schedule__cell:last-child {
    padding-left: 28px;
    padding-left: 1.75rem;
  }
  .p-schedule__footer {
    margin-top: 13px;
    margin-top: 0.8125rem;
    padding-left: 13px;
    padding-left: 0.8125rem;
    padding-right: 4px;
    padding-right: 0.25rem;
  }
  .p-schedule__note {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-sidebar {
    left: 0;
    position: sticky;
    top: 140px;
    top: 8.75rem;
  }
  .p-sidebar__list {
    row-gap: 18px;
    row-gap: 1.125rem;
  }
  .p-sidebar__item {
    padding-bottom: 16px;
    padding-bottom: 1rem;
  }
  .p-sidebar__link {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
  .p-sidebar__link.is-active {
    color: #1E1E1E;
  }
  .p-symptoms-archive__body {
    max-width: 1050px;
    max-width: 65.625rem;
    padding-bottom: 357px;
    padding-bottom: 22.3125rem;
    padding-top: 196px;
    padding-top: 12.25rem;
  }
  .p-symptoms-archive__category {
    gap: 20px;
    gap: 1.25rem;
    grid-template-columns: repeat(4, 1fr);
  }
  .p-symptoms-archive__category-link {
    font-size: 20px;
    font-size: 1.25rem;
    min-height: 60px;
    min-height: 3.75rem;
  }
  .p-symptoms-archive__search {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
  .p-symptoms-archive__search-label {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
  .p-symptoms-archive__search-field {
    margin-top: 12px;
    margin-top: 0.75rem;
  }
  .p-symptoms-archive__search-input {
    min-height: 60px;
    min-height: 3.75rem;
    padding: 19px 35px;
    padding: 1.1875rem 2.1875rem;
  }
  .p-symptoms-archive__search-submit {
    font-size: 20px;
    font-size: 1.25rem;
    min-height: 60px;
    min-height: 3.75rem;
    min-width: 118px;
    min-width: 7.375rem;
    padding: 16px 20px;
    padding: 1rem 1.25rem;
  }
  .p-symptoms-archive__results {
    margin-top: 198px;
    margin-top: 12.375rem;
  }
  .p-symptoms-archive__list {
    grid-gap: 2.625rem 3.125rem;
    display: grid;
    gap: 42px 50px;
    gap: 2.625rem 3.125rem;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto 1fr auto;
  }
  .p-symptoms-archive__item:nth-child(n+2) {
    margin-top: 0;
  }
  .p-symptoms-archive__item {
    grid-row-gap: 0;
    display: grid;
    grid-row: span 4;
    grid-template-rows: subgrid;
    row-gap: 0;
  }
  .p-symptoms-archive__card {
    grid-row-gap: 0;
    display: grid;
    grid-row: span 4;
    grid-template-rows: subgrid;
    padding-bottom: 24px;
    padding-bottom: 1.5rem;
    row-gap: 0;
  }
  .p-symptoms-archive__card-body {
    grid-row-gap: 0;
    display: grid;
    grid-row: span 3;
    grid-template-rows: subgrid;
    margin-top: 15px;
    margin-top: 0.9375rem;
    padding: 0 18px;
    padding: 0 1.125rem;
    row-gap: 0;
  }
  .p-symptoms-archive__card-title {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-symptoms-archive__card-text {
    -ms-flex-item-align: start;
        align-self: start;
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
    margin-top: 14px;
    margin-top: 0.875rem;
  }
  .p-symptoms-archive__card-cta {
    margin-top: 25px;
    margin-top: 1.5625rem;
    min-width: 190px;
    min-width: 11.875rem;
  }
  .p-symptoms-single__body {
    max-width: 1050px;
    max-width: 65.625rem;
    padding-bottom: 292px;
    padding-bottom: 18.25rem;
    padding-top: 172px;
    padding-top: 10.75rem;
  }
  .p-symptoms-single__content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
    max-width: 62.5rem;
  }
  .p-content .p-symptoms-section h2.p-symptoms-section__title {
    font-size: 24px;
    font-size: 1.5rem;
    padding-bottom: 15px;
    padding-bottom: 0.9375rem;
    padding-top: 0;
  }
  .p-content .p-symptoms-section h2.p-symptoms-section__title::after {
    bottom: -10px;
    bottom: -0.625rem;
    height: 10px;
    height: 0.625rem;
    width: 370px;
    width: 23.125rem;
  }
  .p-content .p-symptoms-section:nth-child(n+2) {
    margin-top: 90px;
    margin-top: 5.625rem;
  }
  .p-content .p-symptoms-section:nth-child(n+2) h2.p-symptoms-section__title {
    margin-top: 70px;
    margin-top: 4.375rem;
  }
  .p-content p.p-symptoms-section__text {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .p-content ul.wp-block-list.p-symptoms-section__tags {
    gap: 20px;
    gap: 1.25rem;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 48px;
    margin-top: 3rem;
  }
  .p-content ul.p-symptoms-section__tags li.p-symptoms-tag {
    font-size: 20px;
    font-size: 1.25rem;
    min-height: 60px;
    min-height: 3.75rem;
    padding: 12px 16px;
    padding: 0.75rem 1rem;
  }
  .p-top-about {
    padding-top: 210px;
    padding-top: 13.125rem;
  }
  .p-top-about__content {
    padding: 100px 0 107px;
    padding: 6.25rem 0 6.6875rem;
  }
  .p-top-about__wrap {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
    gap: 3.125rem;
    max-width: 1050px;
    max-width: 65.625rem;
  }
  .p-top-about__img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    min-height: 400px;
    min-height: 25rem;
    width: 350px;
    width: 21.875rem;
  }
  .p-top-about__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 0;
  }
  .p-top-about__read {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-top-about__btn {
    margin-top: 82px;
    margin-top: 5.125rem;
    text-align: left;
  }
  .p-top-concept {
    padding-top: 242px;
    padding-top: 15.125rem;
  }
  .p-top-concept__inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 1920px;
    max-width: 120rem;
  }
  .p-top-concept__wrap {
    margin-top: 30px;
    margin-top: 1.875rem;
    row-gap: 75px;
    row-gap: 4.6875rem;
  }
  .p-top-concept__img {
    position: absolute;
    top: 0;
    width: 57.2916666667%;
  }
  .p-top-concept__container:nth-child(odd) .p-top-concept__img {
    left: 0;
  }
  .p-top-concept__container:nth-child(even) .p-top-concept__img {
    right: 0;
  }
  .p-top-concept__img img {
    aspect-ratio: 825/350;
  }
  .p-top-concept__body {
    margin-top: 12vw;
    min-height: 245px;
    min-height: 15.3125rem;
    padding: 42px 43px 40px;
    padding: 2.625rem 2.6875rem 2.5rem;
    width: 544px;
    width: 34rem;
  }
  .p-top-concept__container:nth-child(odd) .p-top-concept__body {
    border-radius: 10px;
    margin-left: 46.875%;
    margin-right: auto;
  }
  .p-top-concept__container:nth-child(even) .p-top-concept__body {
    border-radius: 10px;
    margin-left: auto;
    margin-right: 46.875%;
  }
  .p-top-concept__subtitle {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .p-top-concept__list {
    margin-top: 18px;
    margin-top: 1.125rem;
  }
  .p-top-concept__item {
    font-size: 20px;
    font-size: 1.25rem;
    padding-left: 20px;
    padding-left: 1.25rem;
  }
  .p-top-concept__item--md {
    font-size: 20px;
    font-size: 1.25rem;
    padding-left: 20px;
    padding-left: 1.25rem;
  }
  .p-top-concept__item::before {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-top-concept__item--md::before {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-top-news {
    padding-top: 120px;
    padding-top: 7.5rem;
  }
  .p-top-news__inner {
    max-width: 930px;
    max-width: 58.125rem;
  }
  .p-top-news__link {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 67px;
    gap: 4.1875rem;
    min-height: 76px;
    min-height: 4.75rem;
  }
  .p-top-news__date {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    width: 117px;
    width: 7.3125rem;
  }
  .p-top-news__title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-top-news__more-text {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-top-overview {
    padding-bottom: 99px;
    padding-bottom: 6.1875rem;
    padding-top: 329px;
    padding-top: 20.5625rem;
  }
  .p-top-overview__inner {
    max-width: 1050px;
    max-width: 65.625rem;
  }
  .p-top-overview__wrap table {
    margin-top: 30px;
    margin-top: 1.875rem;
  }
  .p-top-overview__wrap table th,
  .p-top-overview__wrap table td {
    font-size: 20px;
    font-size: 1.25rem;
    padding: 32px 0;
    padding: 2rem 0;
    position: relative;
  }
  .p-top-overview__wrap table th {
    vertical-align: middle;
  }
  .p-top-overview__wrap table th {
    padding-right: 52px;
    padding-right: 3.25rem;
    width: 177px;
    width: 11.0625rem;
  }
  .p-top-overview__access-text {
    padding-right: 200px;
    padding-right: 12.5rem;
  }
  .p-top-overview__access-btn {
    margin-top: 0;
    position: absolute;
    right: 65px;
    right: 4.0625rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .p-top-recommend {
    padding-top: 288px;
    padding-top: 18rem;
  }
  .p-top-recommend__inner {
    max-width: 1250px;
    max-width: 78.125rem;
  }
  .p-top-recommend__scroll {
    height: calc(1vh * 500);
    height: calc(var(--vh, 1vh) * 500);
  }
  .p-top-recommend__content {
    left: 0;
    position: sticky;
    right: 0;
    top: 120px;
    top: 7.5rem;
  }
  .p-top-recommend__item {
    height: calc(1vh * 75);
    height: calc(var(--vh, 1vh) * 75);
    min-height: calc(1vh * 75);
    min-height: calc(var(--vh, 1vh) * 75);
    opacity: 0;
    padding-top: 30px;
    padding-top: 1.875rem;
    -webkit-transition: opacity 0.6s ease, visibility 0s linear 0.6s;
    transition: opacity 0.6s ease, visibility 0s linear 0.6s;
    visibility: hidden;
  }
  .p-top-recommend__item + .p-top-recommend__item {
    left: 0;
    margin-top: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
  .p-top-recommend__card {
    padding: 38px 30px 70px;
    padding: 2.375rem 1.875rem 4.375rem;
  }
  .p-top-recommend__label {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .p-top-recommend__num {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .p-top-recommend__line {
    left: 260px;
    left: 16.25rem;
    right: 70px;
    right: 4.375rem;
  }
  .p-top-recommend__body {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
    gap: 3.125rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 41px;
    margin-top: 2.5625rem;
    max-width: 950px;
    max-width: 59.375rem;
  }
  .p-top-recommend__img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 12px;
    margin-top: 0.75rem;
    width: 500px;
    width: 31.25rem;
  }
  .p-top-recommend__img img {
    aspect-ratio: 500/340;
  }
  .p-top-recommend__detail {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-height: 352px;
    min-height: 22rem;
    width: 400px;
    width: 25rem;
  }
  .p-top-recommend__catch {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .p-top-recommend__lead {
    font-size: 24px;
    font-size: 1.5rem;
    margin-top: 28px;
    margin-top: 1.75rem;
    white-space: nowrap;
  }
  .p-top-recommend__text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-top-recommend__btn {
    margin-top: 48px;
    margin-top: 3rem;
    margin-top: auto;
  }
  .p-top-recommend__catch,
  .p-top-recommend__lead,
  .p-top-recommend__text,
  .p-top-recommend__btn {
    opacity: 0;
    -webkit-transform: translateY(1.875rem);
            transform: translateY(1.875rem);
    -webkit-transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .p-top-recommend__scroll[data-scroll="01"] .p-top-recommend__item.is-item01,
  .p-top-recommend__scroll[data-scroll="02"] .p-top-recommend__item.is-item02,
  .p-top-recommend__scroll[data-scroll="03"] .p-top-recommend__item.is-item03 {
    opacity: 1;
    -webkit-transition: opacity 0.6s ease, visibility 0s linear;
    transition: opacity 0.6s ease, visibility 0s linear;
    visibility: visible;
  }
  .p-top-recommend__scroll[data-scroll="01"] .p-top-recommend__item.is-item01 .p-top-recommend__catch,
  .p-top-recommend__scroll[data-scroll="01"] .p-top-recommend__item.is-item01 .p-top-recommend__lead,
  .p-top-recommend__scroll[data-scroll="01"] .p-top-recommend__item.is-item01 .p-top-recommend__text,
  .p-top-recommend__scroll[data-scroll="01"] .p-top-recommend__item.is-item01 .p-top-recommend__btn,
  .p-top-recommend__scroll[data-scroll="02"] .p-top-recommend__item.is-item02 .p-top-recommend__catch,
  .p-top-recommend__scroll[data-scroll="02"] .p-top-recommend__item.is-item02 .p-top-recommend__lead,
  .p-top-recommend__scroll[data-scroll="02"] .p-top-recommend__item.is-item02 .p-top-recommend__text,
  .p-top-recommend__scroll[data-scroll="02"] .p-top-recommend__item.is-item02 .p-top-recommend__btn,
  .p-top-recommend__scroll[data-scroll="03"] .p-top-recommend__item.is-item03 .p-top-recommend__catch,
  .p-top-recommend__scroll[data-scroll="03"] .p-top-recommend__item.is-item03 .p-top-recommend__lead,
  .p-top-recommend__scroll[data-scroll="03"] .p-top-recommend__item.is-item03 .p-top-recommend__text,
  .p-top-recommend__scroll[data-scroll="03"] .p-top-recommend__item.is-item03 .p-top-recommend__btn {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .p-top-recommend__scroll[data-scroll="01"] .p-top-recommend__item.is-item01 .p-top-recommend__lead,
  .p-top-recommend__scroll[data-scroll="02"] .p-top-recommend__item.is-item02 .p-top-recommend__lead,
  .p-top-recommend__scroll[data-scroll="03"] .p-top-recommend__item.is-item03 .p-top-recommend__lead {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .p-top-recommend__scroll[data-scroll="01"] .p-top-recommend__item.is-item01 .p-top-recommend__text,
  .p-top-recommend__scroll[data-scroll="02"] .p-top-recommend__item.is-item02 .p-top-recommend__text,
  .p-top-recommend__scroll[data-scroll="03"] .p-top-recommend__item.is-item03 .p-top-recommend__text {
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
  .p-top-recommend__scroll[data-scroll="01"] .p-top-recommend__item.is-item01 .p-top-recommend__btn,
  .p-top-recommend__scroll[data-scroll="02"] .p-top-recommend__item.is-item02 .p-top-recommend__btn,
  .p-top-recommend__scroll[data-scroll="03"] .p-top-recommend__item.is-item03 .p-top-recommend__btn {
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
  .p-top-service {
    padding-top: 400px;
    padding-top: 25rem;
  }
  .p-top-service__content {
    padding: 102px 0 105px;
    padding: 6.375rem 0 6.5625rem;
  }
  .p-top-service__wrap {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 55px;
    gap: 3.4375rem;
    padding-left: max(25px, (100% - 1180px) / 2);
    padding-left: max(1.5625rem, (100% - 73.75rem) / 2);
  }
  .p-top-service__img {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: 0;
    min-height: 400px;
    min-height: 25rem;
    position: relative;
    width: auto;
  }
  .p-top-service__img img {
    aspect-ratio: auto;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
  .p-top-service__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 0;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    padding: 0;
    width: 550px;
    width: 34.375rem;
  }
  .p-top-service__read-wrap {
    min-height: 142px;
    min-height: 8.875rem;
  }
  .p-top-service__read {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-top-service__btn {
    margin-top: 35px;
    margin-top: 2.1875rem;
    text-align: right;
  }
  .p-top-service__btn a {
    padding: 12px 30px 12px 20px;
    padding: 0.75rem 1.875rem 0.75rem 1.25rem;
  }
  .p-top-service__btn a:nth-child(n+2) {
    margin-left: 10px;
    margin-left: 0.625rem;
    margin-top: 0;
  }
  .p-top-service__btn .c-btn02__text {
    line-height: 1.5;
  }
  .p-top-symptoms {
    padding-top: 230px;
    padding-top: 14.375rem;
  }
  .p-top-symptoms__inner {
    max-width: 1050px;
    max-width: 65.625rem;
  }
  .p-top-symptoms__bg {
    padding: 50px;
    padding: 3.125rem;
  }
  .p-top-symptoms__wrap {
    padding: 50px;
    padding: 3.125rem;
  }
  .p-top-symptoms__list {
    gap: 16px;
    gap: 1rem;
    grid-template-columns: repeat(4, 1fr);
  }
  .p-top-symptoms__link {
    border-radius: 1.875rem;
    font-size: 20px;
    font-size: 1.25rem;
    padding: 9px 0;
    padding: 0.5625rem 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .p-top-symptoms__link:hover {
    background-color: #C9B386;
    color: #fff;
    opacity: 1;
  }
  .u-pc {
    display: block;
  }
  .u-sp {
    display: none;
  }
}

@media (min-width: 1250px){
  html {
    font-size: 16px;
  }
}

@media (hover: hover){
  a:hover {
    opacity: 0.8;
  }
  .c-btn02:hover {
    background: #C9B386;
    opacity: 1;
  }
  .c-btn02:hover .c-btn02__text {
    color: #fff;
  }
  .c-btn02:hover::after {
    border-left-color: #fff;
  }
  .c-btn02--gold:hover {
    background: #fff;
  }
  .c-btn02--gold:hover .c-btn02__text {
    color: #C9B386;
  }
  .c-btn02--gold:hover::after {
    border-left-color: #C9B386;
  }
  .p-content .p-insurance-card__btn .wp-block-button__link:hover {
    background-color: #fff !important;
    color: #C9B386 !important;
  }
  .p-content .p-insurance-card__btn .wp-block-button__link:hover {
    opacity: 1;
  }
  .p-content .p-insurance-card__btn .wp-block-button__link:hover::after {
    border-left-color: #C9B386;
  }
  .p-drawer__nav-link:hover {
    color: #0055A2;
    opacity: 1;
  }
  .p-footer__nav-item a:hover {
    color: #0055A2;
    opacity: 1;
  }
  .p-header__booking:hover {
    background-color: #fff;
    opacity: 1;
  }
  .p-header__booking:hover .p-header__booking-text {
    color: #C9B386;
  }
  .p-header__booking:hover::before {
    background-color: #C9B386;
  }
  .p-symptoms-archive__category-link:hover {
    background-color: #C9B386;
    color: #fff;
    opacity: 1;
  }
  .p-symptoms-archive__search-submit:hover {
    background-color: #fff;
    color: #C9B386;
  }
  .p-symptoms-archive__card:hover {
    opacity: 1;
  }
  .p-symptoms-archive__card:hover .p-symptoms-archive__thumb img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .p-symptoms-archive__card:hover .p-symptoms-archive__card-cta.c-btn02--gold {
    background: #fff;
  }
  .p-symptoms-archive__card:hover .p-symptoms-archive__card-cta.c-btn02--gold .c-btn02__text {
    color: #C9B386;
  }
  .p-symptoms-archive__card:hover .p-symptoms-archive__card-cta.c-btn02--gold::after {
    border-left-color: #C9B386;
  }
  .p-symptoms-archive__card-cta.c-btn02--gold:hover {
    background: #C9B386;
  }
  .p-symptoms-archive__card-cta.c-btn02--gold:hover .c-btn02__text {
    color: #1E1E1E;
  }
  .p-symptoms-archive__card-cta.c-btn02--gold:hover::after {
    border-left-color: #1E1E1E;
  }
}

@media (hover: none){
  a:active {
    opacity: 0.8;
  }
  .p-form__send input:active {
    opacity: 0.7;
  }
  .p-form__send:active::after {
    -webkit-transform: translateX(0.25rem);
            transform: translateX(0.25rem);
  }
}

@media (any-hover: hover){
  .p-about__nav-link:hover {
    background: #fff;
    color: #C9B386;
  }
  .p-contact-form__send-btn:not(:disabled):hover {
    background-color: #fff;
    color: #000000;
  }
}

@media (max-width: 767px){
  .is-footer-visible .p-header__contact {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
}

@media (prefers-reduced-motion: reduce){
  .p-mv-layer__shape,
  .p-mv-layer__shape-path--01,
  .p-mv-layer__shape-path--02,
  .p-mv-layer__photo {
    -webkit-animation: none;
            animation: none;
  }
  .p-top-recommend__scroll {
    height: auto;
  }
  .p-top-recommend__content {
    position: static;
  }
  .p-top-recommend__item {
    display: block;
    height: auto;
    min-height: auto;
    opacity: 1;
    padding-top: 0;
    position: static;
    visibility: visible;
  }
  .p-top-recommend__item + .p-top-recommend__item {
    margin-top: 40px;
    margin-top: 2.5rem;
    position: static;
  }
  .p-top-recommend__detail {
    min-height: auto;
  }
  .p-top-recommend__catch,
  .p-top-recommend__lead,
  .p-top-recommend__text,
  .p-top-recommend__btn {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
  }
}

@media screen and (min-width: 768px) and (min-width: 1440px){
  .p-top-concept__body {
    width: 37.7777777778%;
  }
}
/*# sourceMappingURL=style.css.map */
