@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が使えないタッチ端末を想定した装飾 */
:focus-visible {
  outline: 2px solid #d6a86e;
  outline-offset: 2px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 3.5rem;
}

body {
  background: #FBFBFB;
  color: #3d3836;
  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;
}

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

.l-columns {
  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: 42px;
  row-gap: 2.625rem;
}

.l-columns__btn {
  padding-top: 76px;
  padding-top: 4.75rem;
  text-align: center;
}

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

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

.l-footer {
  margin-top: 64px;
  margin-top: 4rem;
}

.l-header {
  bottom: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 101;
}

.l-header.is-fixed {
  -webkit-animation: headerSlideDown 0.3s ease-out;
          animation: headerSlideDown 0.3s ease-out;
  background-color: #fff;
  position: fixed;
}

.l-header.is-sticky {
  position: fixed;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.l-header.is-bg {
  background-color: #fff;
}

@-webkit-keyframes headerSlideDown {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes headerSlideDown {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.l-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 572px;
  max-width: 35.75rem;
  padding-left: 16px;
  padding-left: 1rem;
  padding-right: 16px;
  padding-right: 1rem;
  width: 100%;
}

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

.l-sub-page {
  background: #FBFBFB;
}

.c-btn01 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  background-image: none;
  border: 0.5px solid #d6a86e;
  border-radius: 0.75rem;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 24px;
  height: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px 9px;
  padding: 0.3125rem 0.5625rem;
  -webkit-transition: background-color 0.3s ease, background-image 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, background-image 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  width: 40px;
  width: 2.5rem;
}

.c-btn01:focus-visible {
  outline: 2px solid #d6a86e;
  outline: 0.125rem solid #d6a86e;
  outline-offset: 2px;
  outline-offset: 0.125rem;
}

.c-btn01__icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #d6a86e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 7px;
  height: 0.4375rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 13px;
  width: 0.8125rem;
}

.c-btn01__icon svg {
  color: #d6a86e;
  display: block;
  height: auto;
  -webkit-transition: color 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: color 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  width: 100%;
}

.c-btn02 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  border-radius: 0.875rem;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 29px;
  gap: 1.8125rem;
  height: 28px;
  height: 1.75rem;
  max-width: 100%;
  overflow: hidden;
  padding-right: 18px;
  padding-right: 1.125rem;
  position: relative;
  -webkit-transition: color 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: color 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: 1;
}

.c-btn02::after {
  background-image: linear-gradient(99deg, #bf8150 0%, #f3c27e 28%, #c59454 100%);
  border-radius: inherit;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: transform 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: transform 0.2s cubic-bezier(0.45, 0, 0.55, 1), -webkit-transform 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.c-btn02:focus-visible {
  outline: 2px solid #d6a86e;
  outline: 0.125rem solid #d6a86e;
  outline-offset: 2px;
  outline-offset: 0.125rem;
}

.c-btn02__icon svg rect {
  -webkit-transition: stroke 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: stroke 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}

.c-btn02__icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #d6a86e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 28px;
  height: 1.75rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 48px;
  width: 3rem;
  z-index: 1;
}

.c-btn02__icon svg {
  color: #d6a86e;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 28px;
  height: 1.75rem;
  -webkit-transition: color 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: color 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  width: 48px;
  width: 3rem;
}

.c-btn02__text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-family: "Noto Serif JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.08em;
  line-height: 2.1;
  margin-left: auto;
  position: relative;
  text-align: right;
  z-index: 1;
}

.c-btn03 {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  color: #3d3836;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 26px 32px 27px;
  padding: 1.625rem 2rem 1.6875rem;
  text-decoration: none;
  -webkit-transition: opacity 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: opacity 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  width: 100%;
}

.c-btn03:focus-visible {
  outline: 2px solid #d6a86e;
  outline: 0.125rem solid #d6a86e;
  outline-offset: 2px;
  outline-offset: 0.125rem;
}

.c-btn03__text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-family: "Noto Serif JP", serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2.2;
  min-width: 0;
}

.c-coming-text {
  -webkit-background-clip: text;
  background: linear-gradient(97deg, #bf8950 0%, #deac6f 23%, #ffcc91 35%, #d9ae69 49%, #f2c082 77%, #c59254 100%);
  background-clip: text;
  color: transparent;
  font-family: "Nanum Myeongjo", serif;
  font-size: 42px;
  font-size: 2.625rem;
  line-height: 1.2;
  text-align: center;
}

.c-faq {
  width: 100%;
}

.c-faq--top {
  background-color: #fff;
  border-radius: 0.3125rem;
  padding: 22px 16px;
  padding: 1.375rem 1rem;
}

.c-faq__list {
  list-style: none;
}

.c-faq__item--top {
  border-bottom: 0.5px solid #dededb;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
}

.c-faq__item--top:nth-child(n+2) {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.c-faq__item--top:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.c-faq__item--page {
  border-bottom: 0.5px solid #dededb;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
}

.c-faq__details {
  width: 100%;
}

.c-faq__summary {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}
.c-faq__summary::-webkit-details-marker {
  display: none;
}

.c-faq__summary--top {
  gap: 16px;
  gap: 1rem;
  padding: 0 16px;
  padding: 0 1rem;
}

.c-faq__summary--page {
  gap: 16px;
  gap: 1rem;
  padding: 15px 16px 0;
  padding: 0.9375rem 1rem 0;
}
.c-faq__summary--page:focus-visible .c-faq__question {
  color: #d6a86e;
}

.c-faq__badge {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 32px;
  height: 2rem;
  width: 32px;
  width: 2rem;
}

.c-faq__badge img {
  display: block;
  height: 100%;
  width: 100%;
}

.c-faq__question {
  color: #3d3836;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2;
  min-width: 0;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.c-faq__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 20px;
  height: 1.25rem;
  position: relative;
  width: 20px;
  width: 1.25rem;
}
.c-faq__icon::before, .c-faq__icon::after {
  background-color: #3d3836;
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -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: 20px;
  width: 1.25rem;
}
.c-faq__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.c-faq__details[open] .c-faq__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(0);
          transform: translate(-50%, -50%) rotate(0);
}

.c-faq__body--top {
  padding: 5px 16px 0;
  padding: 0.3125rem 1rem 0;
}

.c-faq__body--page {
  padding: 5px 16px 0;
  padding: 0.3125rem 1rem 0;
}

.c-faq__answer {
  color: #3d3836;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2;
}

.c-menu-button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: linear-gradient(92deg, #BF8150 0.01%, #F3C27E 27.94%, #C59454 100.17%);
  border-radius: 50vmax;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  height: 2.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 61px;
  width: 3.8125rem;
}

.c-menu-button span {
  background-color: #fff;
  display: block;
  height: 1px;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 21px;
  width: 1.3125rem;
}

.c-menu-button span::before,
.c-menu-button span::after {
  background-color: #fff;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
}

.c-menu-button span::before {
  -webkit-transform: translateY(-0.4375rem);
          transform: translateY(-0.4375rem);
}

.c-menu-button span::after {
  -webkit-transform: translateY(0.4375rem);
          transform: translateY(0.4375rem);
}

.c-menu-button[aria-expanded=true] span {
  background-color: transparent;
}

.c-menu-button[aria-expanded=true] span::before {
  -webkit-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
}

.c-menu-button[aria-expanded=true] span::after {
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
}

.c-no-post {
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
}

.c-page-title {
  -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: 24px;
  padding-bottom: 1.5rem;
  padding-top: 78px;
  padding-top: 4.875rem;
  text-align: center;
}

.c-page-title--legal,
.c-page-title--privacy {
  padding-bottom: 22px;
  padding-bottom: 1.375rem;
  padding-top: 52px;
  padding-top: 3.25rem;
}

.c-page-title__en {
  -webkit-background-clip: text;
  background: linear-gradient(92deg, #bf8950 0%, #deac6f 23%, #ffcc91 35%, #d9ae69 49%, #f2c082 77%, #c59254 100%);
  background-clip: text;
  color: transparent;
  font-family: "Nanum Myeongjo", serif;
  font-size: 42px;
  font-size: 2.625rem;
  line-height: 1;
  text-align: center;
  width: 100%;
}

.c-page-title__ja {
  -webkit-background-clip: text;
  background: linear-gradient(92deg, #bf8950 0%, #deac6f 23%, #ffcc91 35%, #d9ae69 49%, #f2c082 77%, #c59254 100%);
  background-clip: text;
  color: transparent;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
  width: 100%;
}

.c-page-title--legal .c-page-title__ja,
.c-page-title--privacy .c-page-title__ja {
  font-size: 34px;
  font-size: 2.125rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.c-section-title {
  -webkit-background-clip: text;
  background: linear-gradient(92deg, #BF8950 0.01%, #DEAC6F 22.64%, #FFCC91 34.68%, #D9AE69 49.13%, #F2C082 77.06%, #C59254 100.17%);
  background-clip: text;
  color: transparent;
  font-family: "Nanum Myeongjo", serif;
  font-size: 42px;
  font-size: 2.625rem;
  font-weight: 400;
  line-height: 1.2;
}

.c-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-style: normal;
  letter-spacing: 0.03em;
  line-height: 1.5;
  text-align: justify;
}

.p-404__bg {
  padding-bottom: 105px;
  padding-bottom: 6.5625rem;
}

.p-404__head {
  padding-top: 120px;
  padding-top: 7.5rem;
  text-align: center;
}

.p-404__num {
  aspect-ratio: 362/167;
  margin: 0 auto;
  width: 204px;
  width: 12.75rem;
}

.p-404__en {
  -webkit-background-clip: text;
  background: linear-gradient(114.92deg, #bf8950 0%, #deac6f 22.642%, #ffcc91 34.681%, #d9ae69 49.127%, #f2c082 77.058%, #c59254 100.17%);
  background-clip: text;
  color: transparent;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-404__text {
  color: #3d3836;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2;
  margin-top: 50px;
  margin-top: 3.125rem;
  text-align: center;
}

.p-404__btn {
  margin-top: 70px;
  margin-top: 4.375rem;
  text-align: center;
}

.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: #d6a86e;
       -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: 300;
  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-case-card {
  height: 100%;
}

.p-case-card__link {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background-color: #fff;
  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;
  height: 100%;
  padding: 24px;
  padding: 1.5rem;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  width: 100%;
}

.p-case-card__link:hover {
  -webkit-box-shadow: 0 0 0.9375rem rgba(161, 161, 161, 0.1);
          box-shadow: 0 0 0.9375rem rgba(161, 161, 161, 0.1);
  opacity: 1;
}

.p-case-card__row {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  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-case-card__head {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
  margin-right: auto;
  width: 79.1366906475%;
}

.p-case-card__media {
  overflow: hidden;
}

.p-case-card__img {
  -o-object-fit: cover;
  aspect-ratio: 147/183;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-case-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
  width: 100%;
}

.p-case-card__title {
  font-family: "Noto Serif JP", serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.p-case-card__tags {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  gap: 0.5rem;
  list-style: none;
}

.p-case-card__tags-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-case-card__tag {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #dededb;
  border-radius: 0.625rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 300;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.04em;
  line-height: 1.5;
  min-height: 18px;
  min-height: 1.125rem;
  padding: 0 12px;
  padding: 0 0.75rem;
}

.p-case-card__meta {
  grid-gap: 0.375rem;
  display: grid;
  gap: 6px;
  gap: 0.375rem;
  margin-top: 11px;
  margin-top: 0.6875rem;
}

.p-case-card__meta-row {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 11px;
  gap: 0.6875rem;
}

.p-case-card__term {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.6;
  width: 50px;
  width: 3.125rem;
}

.p-case-card__desc {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.8;
  min-width: 0;
  overflow: hidden;
}

.p-case-card__meta--details .p-case-card__desc {
  -webkit-line-clamp: 3;
}

.p-case-card__meta--risk .p-case-card__desc {
  -webkit-line-clamp: 3;
}

.p-case-card__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-case__inner {
  padding-bottom: 110px;
  padding-bottom: 6.875rem;
  padding-top: 46px;
  padding-top: 2.875rem;
}

.p-case__main {
  margin-top: 4px;
  margin-top: 0.25rem;
  padding-left: 16px;
  padding-left: 1rem;
  padding-right: 16px;
  padding-right: 1rem;
  width: 100%;
}

.p-case__list {
  grid-gap: 1.5rem;
  display: grid;
  gap: 24px;
  gap: 1.5rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  list-style: none;
}

.p-case__empty {
  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: 50px;
  padding-bottom: 3.125rem;
  padding-top: 50px;
  padding-top: 3.125rem;
  width: 100%;
}

.p-case__pagenavi {
  margin-top: 36px;
  margin-top: 2.25rem;
}

.p-clinic-access {
  padding-bottom: 110px;
  padding-bottom: 6.875rem;
  padding-top: 66px;
  padding-top: 4.125rem;
}

.p-clinic-access__heading {
  -webkit-background-clip: text;
  background: linear-gradient(92deg, #bf8950 0%, #deac6f 23%, #ffcc91 35%, #d9ae69 49%, #f2c082 77%, #c59254 100%);
  background-clip: text;
  color: transparent;
  font-family: "Nanum Myeongjo", serif;
  font-size: 42px;
  font-size: 2.625rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

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

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

.p-clinic-access__label {
  color: #3d3836;
  font-family: "Noto Serif JP", serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2.2;
}

.p-clinic-access__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2;
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.p-clinic-access__list-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #3d3836;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  gap: 8px;
  gap: 0.5rem;
  letter-spacing: 0.04em;
  line-height: 2;
}
.p-clinic-access__list-item::before {
  background: #d6a86e;
  border-radius: 50%;
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 10px;
  height: 0.625rem;
  width: 10px;
  width: 0.625rem;
}

.p-clinic-access__paragraph {
  word-break: break-all;
}

.p-clinic-access__map {
  aspect-ratio: 319/400;
  margin-left: 20px;
  margin-left: 1.25rem;
  margin-right: 20px;
  margin-right: 1.25rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
.p-clinic-access__map iframe {
  -o-object-fit: cover;
  border: 0;
  display: block;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-clinic-doctor {
  background: url("../images/clinic/doctor_bg_sp.jpg") center/cover no-repeat;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  padding-top: 80px;
  padding-top: 5rem;
}

.p-clinic-doctor__image {
  aspect-ratio: 653/796;
  margin-left: 16px;
  margin-left: 1rem;
  margin-right: 16px;
  margin-right: 1rem;
}
.p-clinic-doctor__image img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-clinic-doctor__content {
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.p-clinic-doctor__position {
  color: #d6a86e;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.p-clinic-doctor__name {
  -moz-column-gap: 1.875rem;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
       -webkit-column-gap: 1.875rem;
               column-gap: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-clinic-doctor__name-ja {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 300;
  letter-spacing: 0.13em;
  line-height: 1.9;
}

.p-clinic-doctor__name-en {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.p-clinic-doctor__sns {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
  margin-top: 12px;
  margin-top: 0.75rem;
}

.p-clinic-doctor__sns-item a {
  display: block;
  height: 28px;
  height: 1.75rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: 28px;
  width: 1.75rem;
}
.p-clinic-doctor__sns-item a:hover {
  opacity: 0.7;
}

.p-clinic-doctor__sns-item img {
  -o-object-fit: contain;
  border-radius: 50%;
  height: 100%;
     object-fit: contain;
  width: 100%;
}

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

.p-clinic-doctor__career-block:nth-child(n+2) {
  margin-top: 22px;
  margin-top: 1.375rem;
}

.p-clinic-doctor__career-label {
  color: #d6a86e;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.p-clinic-doctor__career-text {
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-top: 14px;
  margin-top: 0.875rem;
}

.p-clinic-doctor__message {
  margin-top: 36px;
  margin-top: 2.25rem;
}

.p-clinic-doctor__message-title {
  -webkit-background-clip: text;
  background: linear-gradient(92deg, #bf8950 0%, #deac6f 23%, #ffcc91 35%, #d9ae69 49%, #f2c082 77%, #c59254 100%);
  background-clip: text;
  color: transparent;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.p-clinic-doctor__message-text {
  color: #3d3836;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-clinic-message {
  padding-bottom: 80px;
  padding-bottom: 5rem;
  padding-top: 60px;
  padding-top: 3.75rem;
}

.p-clinic-message__body {
  color: #3d3836;
}

.p-clinic-message__title {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 300;
  letter-spacing: 0.13em;
  line-height: 1.9;
}

.p-clinic-message__text {
  font-family: "Noto Serif JP", serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2.2;
  margin-top: 44px;
  margin-top: 2.75rem;
}

.p-clinic-message__paragraph:nth-child(n+2) {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-clinic-message__images {
  margin-left: 13px;
  margin-left: 0.8125rem;
  margin-right: 13px;
  margin-right: 0.8125rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-clinic-message__image {
  aspect-ratio: 332/299;
}
.p-clinic-message__image img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

/* （the_content()で出力したものへのスタイル） */
.p-custom__h2-text {
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}

.p-content h2 {
  color: #d6a86e;
  font-family: "Noto Serif JP", serif;
  font-size: max(20px, 10px);
  font-size: max(1.25rem, 10px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-top: 80px;
  margin-top: 5rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  position: relative;
}

.p-content h2::before {
  background: #d6a86e;
  content: "";
  display: inline-block;
  height: 1px;
  left: 0;
  position: absolute;
  top: 14px;
  top: 0.875rem;
  width: 12px;
  width: 0.75rem;
}

.p-custom__h2-text h2 {
  margin-bottom: 0;
}

.p-content h3 {
  font-family: "Noto Serif JP", serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2.2;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  padding-left: 15px;
  padding-left: 0.9375rem;
  position: relative;
}

.p-content h3::before {
  aspect-ratio: 1/1;
  background: #d6a86e;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: auto;
  left: 0;
  position: absolute;
  top: 14px;
  top: 0.875rem;
  width: 7px;
  width: 0.4375rem;
}

.p-content > .p-custom__h3-text-img h3 {
  margin-bottom: 0;
}

.p-content p {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.p-content p 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 h3 + p {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

.p-content a {
  -webkit-text-decoration: underline;
  -webkit-text-decoration: underline;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.04em;
  line-height: 2.2;
  text-decoration: underline;
}

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

.p-content .p-custom__gallery1.wp-block-image {
  margin-left: auto;
  margin-right: auto;
  width: 45%;
}

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

.p-content .p-custom__gallery1.wp-block-image img {
  -o-object-fit: cover;
  aspect-ratio: 624/468;
     object-fit: cover;
  width: 100%;
}

.p-content .wp-block-gallery {
  gap: 24px !important;
  gap: 1.5rem !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 {
  display: grid !important;
}

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

.p-custom__gallery3-tall {
  display: grid !important;
}

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

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

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

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

.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-tall.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img {
  height: auto !important;
}

.p-content .wp-block-gallery.p-custom__gallery3-tall.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img {
  -o-object-fit: cover;
  aspect-ratio: 300/400;
     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) 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) 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 {
  list-style: disc;
  padding-left: 24px;
  padding-left: 1.5rem;
}

.p-content ol {
  list-style: decimal;
  padding-left: 24px;
  padding-left: 1.5rem;
}

.p-content ul li,
.p-content ol li {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

.p-custom__h2-text-rightimg {
  margin-bottom: 72px !important;
  margin-bottom: 4.5rem !important;
}

.p-custom__h2-text-rightimg {
  margin-top: 72px;
  margin-top: 4.5rem;
}

.p-content .p-custom__h2-text-rightimg > .wp-block-group__inner-container {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  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__h2-text-rightimg__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: 0;
  max-width: none;
  width: 100%;
}

.p-content .p-custom__h2-text-rightimg__content > .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__h2-text-rightimg__content h2 {
  margin-bottom: 0;
  margin-top: 0;
}

.p-content .p-custom__h2-text-rightimg__content h2 + p {
  margin-bottom: 0;
  margin-top: 0;
}

.p-content .p-custom__h2-text-rightimg > .wp-block-group__inner-container > .wp-block-image {
  width: 92.1787709497% !important;
}

.p-content .p-custom__h2-text-rightimg > .wp-block-group__inner-container > .wp-block-image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-left: auto;
  margin-right: auto;
  max-width: none;
}

.p-content .p-custom__h2-text-rightimg .wp-block-image img {
  -o-object-fit: cover;
  aspect-ratio: 330/248;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-custom__h2-leftimg-text {
  margin-bottom: 72px !important;
  margin-bottom: 4.5rem !important;
}

.p-custom__h2-leftimg-text {
  margin-top: 72px;
  margin-top: 4.5rem;
}

.p-content .p-custom__h2-leftimg-text > .wp-block-group__inner-container {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 24px;
  gap: 1.5rem;
}

.p-content .p-custom__h2-leftimg-text__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: 0;
  max-width: none;
  width: 100%;
}

.p-content .p-custom__h2-leftimg-text__content > .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__h2-leftimg-text__content h2 {
  margin-bottom: 0;
  margin-top: 0;
}

.p-content .p-custom__h2-leftimg-text__content h2 + p {
  margin-bottom: 0;
  margin-top: 0;
}

.p-content .p-custom__h2-leftimg-text > .wp-block-group__inner-container > .wp-block-image {
  width: 92.1787709497% !important;
}

.p-content .p-custom__h2-leftimg-text > .wp-block-group__inner-container > .wp-block-image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-left: auto;
  margin-right: auto;
  max-width: none;
}

.p-content .p-custom__h2-leftimg-text .wp-block-image img {
  -o-object-fit: cover;
  aspect-ratio: 330/248;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-single-block__columns {
  margin-bottom: 0 !important;
}

.p-single-block__columns.three-columns {
  grid-gap: 1.5rem !important;
  display: grid !important;
  gap: 24px !important;
  gap: 1.5rem !important;
}

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

.p-single-block__columns.four-columns {
  grid-gap: 1.5rem !important;
  display: grid !important;
  gap: 24px !important;
  gap: 1.5rem !important;
}

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

/************************** 
laurea-clinic用追加スタイル
***************************/
.p-single-table {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-single-table table {
  table-layout: auto !important;
}

.p-single-table table {
  border: none;
}

.p-single-table th {
  background: #dededb;
  border: none;
  border-bottom: 0.5px solid #fff;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.8;
  padding: 17px 16px 18px;
  padding: 1.0625rem 1rem 1.125rem;
  text-align: left;
  vertical-align: middle;
  width: 120px;
  width: 7.5rem;
}

.p-single-table td {
  background: #fff;
  border: none;
  border-bottom: 0.5px solid #dededb;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1.8;
  padding: 17px 16px 18px;
  padding: 1.0625rem 1rem 1.125rem;
  width: calc(100% - 7.5rem);
}

.p-single-table tr:last-child th,
.p-single-table tr:last-child td {
  border-bottom: none;
}

.p-content h2.p-menu-block__title {
  color: #3d3836;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 300;
  letter-spacing: 0.13em;
  line-height: 1.9;
  margin-top: 64px;
  margin-top: 4rem;
  padding-left: 0;
}

.p-content .p-menu-table-block h2.p-menu-block__title {
  margin-top: 56px;
  margin-top: 3.5rem;
}

.p-content h2.p-menu-block__title::before {
  display: none;
}

.p-content .p-menu-h2-text-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: 48px;
  gap: 3rem;
}

.p-content .p-menu-detail-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: 32px;
  gap: 2rem;
  margin-top: 22px;
  margin-top: 1.375rem;
  width: 100%;
}

.p-content .p-menu-detail-list__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: 24px;
  gap: 1.5rem;
}

.p-content .p-menu-detail-list__item:nth-child(n+2) {
  margin-top: 14px;
  margin-top: 0.875rem;
}

.p-content p.p-menu-detail-list__label {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Noto Serif JP", serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  gap: 8px;
  gap: 0.5rem;
  letter-spacing: 0.04em;
  line-height: 2.2;
  margin-bottom: 2px;
  margin-bottom: 0.125rem;
}

.p-content p.p-menu-detail-list__label::before {
  background-color: #d6a86e;
  border-radius: 50%;
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 7px;
  height: 0.4375rem;
  width: 7px;
  width: 0.4375rem;
}

.p-content p.p-menu-detail-list__text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2;
  margin-bottom: 0;
}

.p-content .p-menu-table-block .p-single-table {
  margin-top: 34px;
  margin-top: 2.125rem;
}

.p-single-table-3col {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-single-table-3col table {
  table-layout: auto !important;
}

.p-single-table-3col table {
  border: none;
}

.p-single-table-3col th {
  background: #dededb;
  border: none;
  border-bottom: 0.5px solid #fff;
  color: #3d3836;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.8;
  padding: 17px 16px 18px;
  padding: 1.0625rem 1rem 1.125rem;
  text-align: left;
  vertical-align: middle;
  width: 100px;
  width: 6.25rem;
}

.p-single-table-3col tr th + th {
  border-left: 0.6px solid #fff;
  width: 129px;
  width: 8.0625rem;
}

.p-single-table-3col td {
  background: #fff;
  border: none;
  border-bottom: 0.6px solid #dededb;
  color: #3d3836;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.8;
  padding: 17px 16px 18px;
  padding: 1.0625rem 1rem 1.125rem;
  vertical-align: top;
  width: 129px;
  width: 8.0625rem;
}

.p-single-table-3col td + td {
  border-left: 0.6px solid #dededb;
}

.p-single-table-3col tr:last-child th,
.p-single-table-3col tr:last-child td {
  border-bottom: none;
}

.p-content .p-menu-table-3col-block h2.p-menu-block__title {
  margin-top: 56px;
  margin-top: 3.5rem;
}

.p-content .p-menu-table-3col-block .p-single-table-3col {
  margin-top: 34px;
  margin-top: 2.125rem;
}

.p-single-table-2col {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-single-table-2col table {
  table-layout: auto !important;
}

.p-single-table-2col table {
  border: none;
}

.p-single-table-2col th {
  background: #dededb;
  border: none;
  border-bottom: 0.5px solid #fff;
  color: #3d3836;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.8;
  padding: 17px 16px 18px;
  padding: 1.0625rem 1rem 1.125rem;
  text-align: left;
  vertical-align: middle;
  width: 100px;
  width: 6.25rem;
}

.p-single-table-2col tr th + th {
  border-left: 0.6px solid #fff;
  width: auto;
}

.p-single-table-2col td {
  background: #fff;
  border: none;
  border-bottom: 0.6px solid #dededb;
  color: #3d3836;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.8;
  padding: 17px 16px 18px;
  padding: 1.0625rem 1rem 1.125rem;
  vertical-align: top;
}

.p-single-table-2col td + td {
  border-left: 0.6px solid #dededb;
}

.p-single-table-2col tr:last-child th,
.p-single-table-2col tr:last-child td {
  border-bottom: none;
}

.p-content .p-menu-table-2col-block h2.p-menu-block__title {
  margin-top: 56px;
  margin-top: 3.5rem;
}

.p-content .p-menu-table-2col-block .p-single-table-2col {
  margin-top: 34px;
  margin-top: 2.125rem;
}

.p-content .p-menu-table-2col-block .p-single-table-2col + p {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-menu-recommend {
  background: transparent url(../images/menu/bg-recomend_sp.png) no-repeat center center/cover;
  background: transparent url(../images/menu/bg-recomend_sp.webp) no-repeat center center/cover;
  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;
  margin-top: 24px;
  margin-top: 1.5rem;
  padding: 28px 16px 30px;
  padding: 1.75rem 1rem 1.875rem;
}

.p-menu-recommend--02 {
  background: transparent url(../images/menu/bg-recomend02_sp.png) no-repeat center center/cover;
  background: transparent url(../images/menu/bg-recomend02_sp.webp) no-repeat center center/cover;
}

.p-menu-discription + .p-menu-recommend--02 {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-content p.p-menu-recommend__title {
  color: #d6a86e;
  font-family: "Noto Serif JP", serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2.2;
  margin-bottom: 6px;
  margin-bottom: 0.375rem;
}

.p-content .p-menu-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;
  list-style: none;
  padding-left: 0;
}

.p-content .p-menu-recommend--02 .p-menu-recommend__list {
  gap: 9px;
  gap: 0.5625rem;
}

.p-content .p-menu-recommend__list li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  gap: 16px;
  gap: 1rem;
  letter-spacing: 0.04em;
  line-height: 2;
  margin-bottom: 0;
  padding-left: 31px;
  padding-left: 1.9375rem;
  position: relative;
}

.p-content .p-menu-recommend--02 .p-menu-recommend__list li {
  padding-left: 28px;
  padding-left: 1.75rem;
}

.p-content .p-menu-recommend__list li::before {
  background: transparent url(../images/common/icon_check.svg) no-repeat center center/cover;
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 15px;
  height: 0.9375rem;
  left: 0;
  position: absolute;
  top: 8px;
  top: 0.5rem;
  width: 15px;
  width: 0.9375rem;
}

.p-content .p-menu-recommend--02 .p-menu-recommend__list li::before {
  background-color: #d6a86e;
  background-image: none;
  border-radius: 50%;
  height: 12px;
  height: 0.75rem;
  top: 10px;
  top: 0.625rem;
  width: 12px;
  width: 0.75rem;
}

.p-content .p-menu-faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  gap: 3rem;
}

.p-content .p-menu-faq__list {
  background-color: #fff;
  border-radius: 0.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  margin-top: 36px;
  margin-top: 2.25rem;
  padding: 32px 16px 24px;
  padding: 2rem 1rem 1.5rem;
}

.p-content .p-menu-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: 24px;
  gap: 1.5rem;
  padding: 0 16px;
  padding: 0 1rem;
}

.p-content .p-menu-faq__item + .p-menu-faq__item {
  border-top: 0.5px solid #dededb;
  margin-top: 14px;
  margin-top: 0.875rem;
  padding-top: 25px;
  padding-top: 1.5625rem;
}

.p-content .p-menu-faq__qrow {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  gap: 1.25rem;
}

.p-content .p-menu-faq__qrow > .wp-block-group__inner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
}

.p-content p.p-menu-faq__badge {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: linear-gradient(135deg, #bf8150 0%, #f3c27e 28%, #c59454 100%);
  border-radius: 1rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Nanum Myeongjo", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  height: 32px;
  height: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.8;
  margin-bottom: 0;
  text-align: center;
  width: 32px;
  width: 2rem;
}

.p-content p.p-menu-faq__question {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2;
  margin-bottom: 0;
  min-width: 0;
}

.p-content p.p-menu-faq__answer {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2;
  margin-bottom: 0;
  margin-top: 14px;
  margin-top: 0.875rem;
}

.p-content .p-menu-exam__list {
  margin-bottom: 80px;
  margin-bottom: 5rem;
  margin-top: 0;
  padding: 84px 16px 0;
  padding: 5.25rem 1rem 0;
}

.p-content .p-menu-exam__list > .wp-block-group__inner-container {
  grid-gap: 1.5rem;
  display: grid;
  gap: 24px;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.p-content .p-menu-exam__card {
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 16px 31px;
  padding: 2.5rem 1rem 1.9375rem;
  width: 100%;
}

.p-content .p-menu-exam__card:has(> figure.wp-block-image.p-menu-exam__icon) {
  -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;
  gap: 44px;
  gap: 2.75rem;
}

.p-content .p-menu-exam__card > .wp-block-group__inner-container {
  -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;
  gap: 38px;
  gap: 2.375rem;
  width: 100%;
}

.p-content .p-menu-exam__card figure.wp-block-image.p-menu-exam__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 0;
  max-width: 100%;
  width: 148px;
  width: 9.25rem;
}

.p-content .p-menu-exam__card figure.wp-block-image.p-menu-exam__icon img {
  -o-object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: block;
  height: auto;
  max-width: 100%;
     object-fit: cover;
  width: 148px;
  width: 9.25rem;
}

.p-content .p-menu-exam__body {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
}

.p-content .p-menu-exam__body:not(:has(> .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: 32px;
  gap: 2rem;
}

.p-content .p-menu-exam__body > .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: 16px;
  gap: 1rem;
  width: 100%;
}

.p-content p.p-menu-exam__title {
  color: #3d3836;
  font-family: "Noto Serif JP", serif;
  font-size: max(20px, 10px);
  font-size: max(1.25rem, 10px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-bottom: 0;
}

.p-content p.p-menu-exam__text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2;
  margin-bottom: 0;
}

.p-content .p-menu-ff {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
  gap: 4rem;
  margin-top: 80px;
  margin-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  padding-top: 64px;
  padding-top: 4rem;
  position: relative;
}

.p-content .p-menu-ff::after {
  background: transparent url(../images/menu/bg-nutrition_sp.png) no-repeat center top/cover;
  background: transparent url(../images/menu/bg-nutrition_sp.webp) no-repeat center top/cover;
  content: "";
  height: 100%;
  left: 0;
  margin: 0 calc(50% - 50vw);
  position: absolute;
  top: 0;
  width: 100vw;
}

.p-content .p-menu-ff .wp-block-group__inner-container {
  position: relative;
  z-index: 1;
}

.p-content .p-menu-feature {
  padding-bottom: 70px;
  padding-bottom: 4.375rem;
}

.p-content .p-menu-feature h2.p-menu-block__title {
  margin-top: 0;
}

.p-content .p-menu-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  gap: 2rem;
  width: 100%;
}

.p-content .p-menu-feature__list {
  margin-top: 32px;
  margin-top: 2rem;
  padding-left: 14px;
  padding-left: 0.875rem;
  padding-right: 14px;
  padding-right: 0.875rem;
}

.p-content .p-menu-feature__list:has(> .p-menu-feature__item) {
  grid-gap: 2rem;
  display: grid;
  gap: 32px;
  gap: 2rem;
  grid-template-columns: 1fr;
  width: 100%;
}

.p-content .p-menu-feature__list > .wp-block-group__inner-container {
  grid-gap: 1.5rem;
  display: grid;
  gap: 24px;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  width: 100%;
}

.p-content .p-menu-feature__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: 16px;
  gap: 1rem;
  min-width: 0;
  width: 100%;
}

.p-content .p-menu-feature__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;
  width: 100%;
}

.p-content .p-menu-feature .p-custom__gallery1.wp-block-image {
  width: 100%;
}

.p-content .p-menu-feature .p-custom__gallery1.wp-block-image img {
  aspect-ratio: 330/279;
}

.p-content p.p-menu-feature__name {
  color: #3d3836;
  font-family: "Noto Serif JP", serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2.2;
  margin-bottom: 0;
  margin-top: 23px;
  margin-top: 1.4375rem;
}

.p-content p.p-menu-feature__desc {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2;
  margin-bottom: 0;
  margin-top: 3px;
  margin-top: 0.1875rem;
}

.p-content .p-menu-flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  gap: 2rem;
  padding-top: 72px;
  padding-top: 4.5rem;
  position: relative;
  width: 100%;
}

.p-content .p-menu-flow::after {
  background: transparent url(../images/menu/bg-nutrition-flow_sp.png) no-repeat center top/cover;
  background: transparent url(../images/menu/bg-nutrition-flow_sp.webp) no-repeat center top/cover;
  content: "";
  height: 100%;
  left: 0;
  margin: 0 calc(50% - 50vw);
  position: absolute;
  top: 0;
  width: 100vw;
}

.p-content .p-menu-flow h2.p-menu-block__title {
  font-size: 28px;
  font-size: 1.75rem;
  margin-top: 0;
  text-align: center;
}

.p-content .p-menu-flow__list {
  counter-reset: menu-flow;
  margin-top: 32px;
  margin-top: 2rem;
  width: 100%;
}

.p-content .p-menu-flow__list:has(> .p-menu-flow__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: 24px;
  gap: 1.5rem;
  width: 100%;
}

.p-content .p-menu-flow__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: 16px;
  gap: 1rem;
  width: 100%;
}

.p-content .p-menu-flow__item {
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(10%, rgba(255, 255, 255, 0)), color-stop(10%, #fff), to(#fff));
  background: linear-gradient(to Right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 10%, #fff 10%, #fff 100%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  counter-increment: menu-flow;
  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-left: auto;
  margin-right: auto;
  max-width: 824px;
  max-width: 51.5rem;
  min-height: 0;
  min-width: 0;
  padding: 34px 16px 32px 100px;
  padding: 2.125rem 1rem 2rem 6.25rem;
  position: relative;
  width: 100%;
}

.p-content .p-menu-flow__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: 7px;
  gap: 0.4375rem;
  min-width: 0;
  width: 100%;
}

.p-content .p-menu-flow__item::before {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(32%, #d6a86e), to(rgba(214, 168, 110, 0.3)));
  background: linear-gradient(180deg, #d6a86e 32%, rgba(214, 168, 110, 0.3) 100%);
  border-top-left-radius: 36px;
  border-top-left-radius: 2.25rem;
  border-top-right-radius: 36px;
  border-top-right-radius: 2.25rem;
  bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  content: counter(menu-flow, decimal-leading-zero);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 300;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  letter-spacing: 0.06em;
  line-height: 1.9;
  padding-top: 20px;
  padding-top: 1.25rem;
  position: absolute;
  text-transform: uppercase;
  top: 0;
  width: 72px;
  width: 4.5rem;
  z-index: 0;
}

.p-content p.p-menu-flow__name,
.p-content p.p-menu-flow__text {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.p-content p.p-menu-flow__name {
  color: #d6a86e;
  font-family: "Noto Serif JP", serif;
  font-size: max(20px, 10px);
  font-size: max(1.25rem, 10px);
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.p-content p.p-menu-flow__text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2;
  text-align: left;
}

.p-cta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url("../images/common/cta_bg_sp.jpg");
  background-position: center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 33px;
  gap: 2.0625rem;
  padding: 55px 34px 64px;
  padding: 3.4375rem 2.125rem 4rem;
  position: relative;
}

.p-cta__heading {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  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;
}

.p-cta__heading-ja {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: center;
}

.p-cta__heading-en {
  font-family: "Nanum Myeongjo", serif;
  font-size: 45px;
  font-size: 2.8125rem;
  font-weight: 400;
  line-height: 1.2;
}

.p-cta__buttons {
  -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;
  gap: 16px;
  gap: 1rem;
}

.p-cta__button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 50vmax;
  color: #d6a86e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  gap: 16px;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.08em;
  min-height: 72px;
  min-height: 4.5rem;
  opacity: 1;
  padding: 10px 16px;
  padding: 0.625rem 1rem;
  -webkit-transition: color 0.3s, opacity 0.3s;
  transition: color 0.3s, opacity 0.3s;
  width: 290px;
  width: 18.125rem;
}
.p-cta__button::before {
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  background-color: #d6a86e;
  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-cta__button:focus-visible {
  color: #3d3836;
  opacity: 1;
}
.p-cta__button:focus-visible::before {
  background-color: #3d3836;
}

.p-cta__button.p-cta__button--tel {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.p-cta__button.p-cta__button--tel {
  pointer-events: auto;
}
.p-cta__button.p-cta__button--tel::before {
  display: none;
}

.p-cta__button-main {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
}
.p-cta__button-main::before {
  -webkit-mask-image: url("../images/common/icon_tel.svg");
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  background-color: #d6a86e;
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 20px;
  height: 1.25rem;
          mask-image: url("../images/common/icon_tel.svg");
          mask-position: center;
          mask-repeat: no-repeat;
          mask-size: contain;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  width: 20px;
  width: 1.25rem;
}
.p-cta__button:hover .p-cta__button-main::before {
  background-color: #3d3836;
}
.p-cta__button:focus-visible .p-cta__button-main::before {
  background-color: #3d3836;
}

.p-cta__button-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.p-cta__button.p-cta__button--web::before {
  -webkit-mask-image: url("../images/common/icon_calendar.svg");
  height: 23px;
  height: 1.4375rem;
          mask-image: url("../images/common/icon_calendar.svg");
  width: 23px;
  width: 1.4375rem;
}

.p-cta__button.p-cta__button--line::before {
  -webkit-mask-image: none;
  background-color: transparent;
  background-image: url("../images/common/icon_line_sm.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 23px;
  height: 1.4375rem;
          mask-image: none;
  -webkit-transition: background-image 0.3s;
  transition: background-image 0.3s;
  width: 24px;
  width: 1.5rem;
}

.p-cta__button.p-cta__button--line:hover::before {
  background-color: transparent;
  background-image: url("../images/common/icon_line_black.svg");
}

.p-cta__button.p-cta__button--line:focus-visible::before {
  background-color: transparent;
  background-image: url("../images/common/icon_line_black.svg");
}

.p-drawer {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  padding-top: 60px;
  padding-top: 3.75rem;
}

.p-drawer__inner {
  -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;
  gap: 40px;
  gap: 2.5rem;
  margin: auto;
}

.p-drawer__list {
  width: 100%;
}

.p-drawer__item a {
  color: #3d3836;
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2.1;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  padding-top: 12px;
  padding-top: 0.75rem;
  text-align: center;
}

.p-drawer__cta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
}

.p-drawer__reserve {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fbfbfb;
  border: 0.5px solid transparent;
  border-radius: 50vmax;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Noto Serif JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 400;
  gap: 8px;
  gap: 0.5rem;
  height: 48px;
  height: 3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.08em;
  line-height: 2.1;
  position: relative;
  -webkit-transition: border-color 0.3s, color 0.3s;
  transition: border-color 0.3s, color 0.3s;
  white-space: nowrap;
  width: 200px;
  width: 12.5rem;
  z-index: 1;
}
.p-drawer__reserve::before {
  background: linear-gradient(92deg, #BF8150 0.01%, #F3C27E 27.94%, #C59454 100.17%);
  border-radius: inherit;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: -1;
}
.p-drawer__reserve::after {
  -webkit-mask-image: url("../images/common/icon_calendar.svg");
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  background-color: #fff;
  content: "";
  height: 16px;
  height: 1rem;
          mask-image: url("../images/common/icon_calendar.svg");
          mask-position: center;
          mask-repeat: no-repeat;
          mask-size: contain;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 16px;
  width: 1rem;
}

.p-drawer__line {
  background-image: url("../images/common/icon_line.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  display: block;
  height: 48px;
  height: 3rem;
  width: 48px;
  width: 3rem;
}

.p-explanation {
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.8;
  position: relative;
  word-break: break-all;
  z-index: 1;
}

.p-explanation p strong {
  font-weight: 500;
}

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

.p-faq__inner {
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  padding-top: 50px;
  padding-top: 3.125rem;
}

.p-faq-main {
  width: 100%;
}

.p-faq__block:nth-child(n+2) {
  padding-top: 72px;
  padding-top: 4.5rem;
}

.p-faq__heading {
  border-bottom: 0.5px solid #d6a86e;
  color: #d6a86e;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  padding-left: 16px;
  padding-left: 1rem;
}

.p-filter {
  display: grid;
  width: 100%;
}

.p-filter__title {
  color: #d6a86e;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}

.p-filter__rule {
  border: none;
  border-top: 0.5px solid #d6a86e;
  margin: 0;
  width: 100%;
}

.p-filter__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  gap: 1rem;
  list-style: none;
  margin-top: 22px;
  margin-top: 1.375rem;
}

.p-filter__item {
  max-width: 100%;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

.p-filter__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #dededb;
  border-radius: 6.25rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 6px 16px;
  padding: 0.375rem 1rem;
  text-align: center;
}

.p-filter__link.is-active {
  background-color: #d6a86e;
}

.p-fixed {
  position: relative;
}

.p-fixed.p-fixed--sticky {
  bottom: 0;
  left: 0;
  margin-top: 0;
  position: fixed;
  right: 0;
  z-index: 90;
}

.p-fixed__top {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 1/1;
  background: #fff;
  border: none;
  border-radius: 50%;
  bottom: calc(100% + 1rem);
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  position: absolute;
  right: 16px;
  right: 1rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: 48px;
  width: 3rem;
}
.p-fixed__top:focus-visible {
  outline: 2px solid #d6a86e;
  outline: 0.125rem solid #d6a86e;
  outline-offset: 2px;
  outline-offset: 0.125rem;
}

.p-fixed__top-icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 19/23;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 19px;
  width: 1.1875rem;
}

.p-fixed__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-fixed__button {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: linear-gradient(92deg, #BF8150 0.01%, #F3C27E 27.94%, #C59454 100.17%);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  font-family: "Noto Serif JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  gap: 10px;
  gap: 0.625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.04em;
  line-height: 2.2;
  min-height: 56px;
  min-height: 3.5rem;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-fixed__button:focus-visible {
  outline: 2px solid #d6a86e;
  outline: 0.125rem solid #d6a86e;
  outline-offset: -2px;
  outline-offset: -0.125rem;
}

.p-fixed__button + .p-fixed__button {
  border-left: 0.5px solid rgba(255, 255, 255, 0.5);
}

.p-fixed__button-icon {
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-fixed__button--web .p-fixed__button-icon {
  -webkit-mask-image: url("../images/common/icon_calendar.svg");
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  aspect-ratio: 1/1;
  background-color: #fff;
  mask-image: url("../images/common/icon_calendar.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  width: 16px;
  width: 1rem;
}

.p-fixed__button--line .p-fixed__button-icon {
  aspect-ratio: 17/16;
  background-image: url("../images/common/icon_line_white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 17px;
  width: 1.0625rem;
}

.p-footer {
  background-image: url("../images/common/section_bg01.jpg");
  background-position: center;
  background-size: cover;
}

.p-footer__box {
  margin-top: -92px;
  margin-top: -5.75rem;
}

.p-footer__info {
  -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;
  gap: 64px;
  gap: 4rem;
  margin-top: 65px;
  margin-top: 4.0625rem;
}

.p-footer__logo {
  aspect-ratio: 213/125;
  width: 213px;
  width: 13.3125rem;
}

.p-footer__logo img {
  -o-object-fit: contain;
  height: 100%;
     object-fit: contain;
}

.p-footer__detail {
  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;
  width: 100%;
}

.p-footer__table {
  width: 100%;
}

.p-footer__row {
  border-top: 0.5px solid #dededb;
  color: #3d3836;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  gap: 8px;
  gap: 0.5rem;
  letter-spacing: 0.04em;
  padding: 10px 8px;
  padding: 0.625rem 0.5rem;
}

.p-footer__row:last-child {
  border-bottom: 0.5px solid #dededb;
}

.p-footer__label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 400;
  line-height: 1.8;
  min-width: 42px;
  width: 56px;
  width: 3.5rem;
}

.p-footer__data {
  font-weight: 300;
  line-height: 1.8;
}
.p-footer__data a {
  -webkit-transition: color 0.3s, opacity 0.3s;
  transition: color 0.3s, opacity 0.3s;
}
.p-footer__data a:focus-visible {
  color: #d6a86e;
  opacity: 1;
}

.p-footer__map {
  aspect-ratio: 358/212;
  background-color: #dededb;
  width: 100%;
}
.p-footer__map iframe {
  -o-object-fit: cover;
  display: block;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-footer__menu {
  grid-gap: 0.75rem 1.5rem;
  background-color: #fff;
  display: grid;
  gap: 12px 24px;
  gap: 0.75rem 1.5rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 48px;
  margin-top: 3rem;
  padding: 36px 16px 40px;
  padding: 2.25rem 1rem 2.5rem;
}

.p-footer__menu-title {
  border-bottom: 0.5px solid #3d3836;
  color: #3d3836;
  font-family: "Noto Serif JP", serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2.2;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
}

.p-footer__menu-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: 10px;
  margin-top: 0.625rem;
}

.p-footer__menu-item a {
  -webkit-text-decoration: underline;
  -webkit-text-decoration: underline;
  color: #3d3836;
  display: block;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.8;
  padding: 6px 0;
  padding: 0.375rem 0;
  text-decoration: underline;
  -webkit-transition: color 0.3s, opacity 0.3s;
  transition: color 0.3s, opacity 0.3s;
}
.p-footer__menu-item a:focus-visible {
  color: #d6a86e;
  opacity: 1;
}

.p-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 45px;
  gap: 2.8125rem;
  margin: 22px 15px 0 0;
  margin: 1.375rem 0.9375rem 0 0;
}

.p-footer__nav-list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-footer__nav-item::after {
  color: #3d3836;
  content: "/";
  font-family: "Nanum Myeongjo", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.p-footer__nav-item:last-child::after {
  content: none;
}

.p-footer__nav-item a {
  color: #3d3836;
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.2;
  padding: 0 12px 0 16px;
  padding: 0 0.75rem 0 1rem;
  -webkit-transition: color 0.3s, opacity 0.3s;
  transition: color 0.3s, opacity 0.3s;
  white-space: nowrap;
}
.p-footer__nav-item a:focus-visible {
  color: #d6a86e;
  opacity: 1;
}

.p-footer__sub {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  gap: 0.75rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-footer__links {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-footer__link {
  -moz-column-gap: 0.625rem;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  color: #3d3836;
       -webkit-column-gap: 0.625rem;
               column-gap: 0.625rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  letter-spacing: 0.04em;
  line-height: 1.6;
  padding: 6px 0;
  padding: 0.375rem 0;
  -webkit-transition: color 0.3s, opacity 0.3s;
  transition: color 0.3s, opacity 0.3s;
}
.p-footer__link::after {
  -webkit-mask-image: url("../images/common/icon_link.svg");
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  aspect-ratio: 1/1;
  background-color: #3d3836;
  content: "";
          mask-image: url("../images/common/icon_link.svg");
          mask-position: center;
          mask-repeat: no-repeat;
          mask-size: contain;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  width: 9px;
  width: 0.5625rem;
}
.p-footer__link:focus-visible {
  color: #d6a86e;
  opacity: 1;
}
.p-footer__link:focus-visible::after {
  background-color: #d6a86e;
}

.p-footer__sns {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
}

.p-footer__sns a {
  display: block;
  height: 28px;
  height: 1.75rem;
  width: 28px;
  width: 1.75rem;
}

.p-footer__sns img {
  -o-object-fit: contain;
  border-radius: 50%;
  height: 100%;
     object-fit: contain;
  width: 100%;
}

.p-footer__copyright {
  margin-top: 22px;
  margin-top: 1.375rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  text-align: center;
}

.p-footer__copyright small {
  color: #3d3836;
  font-family: "Nanum Myeongjo", serif;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.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: 14px;
  font-size: 0.875rem;
  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 #3d3836;
  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: #3d3836;
  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 #3d3836;
  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 #3d3836;
  border-right: 2px solid #3d3836;
  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 #3d3836;
  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 #3d3836;
  border-right: 2px solid #3d3836;
  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: #3d3836;
  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: #3d3836;
  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__inner {
  -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;
  padding: 8px 8px 8px 16px;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
}

.p-header__logo {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-header__logo a {
  aspect-ratio: 267/35;
  display: block;
  width: 229px;
  width: 14.3125rem;
}

.p-header__logo img {
  -o-object-fit: contain;
  height: 100%;
     object-fit: contain;
}

.p-header__pc-nav {
  display: none;
}

.p-header__pc-nav-list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-header__pc-nav-item a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #3d3836;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Noto Serif JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2.1;
  padding: 5px 15px;
  padding: 0.3125rem 0.9375rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  white-space: nowrap;
}

.p-header__cta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
}

.p-header__reserve {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  gap: 0.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 160px;
  width: 10rem;
}
.p-header__reserve {
  background-color: #fbfbfb;
  border: 0.5px solid transparent;
  border-radius: 50vmax;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2.1;
  padding: 5px 0;
  padding: 0.3125rem 0;
  -webkit-transition: border-color 0.3s, color 0.3s;
  transition: border-color 0.3s, color 0.3s;
  white-space: nowrap;
  z-index: 1;
}
.p-header__reserve::before {
  background: linear-gradient(92deg, #BF8150 0.01%, #F3C27E 27.94%, #C59454 100.17%);
  border-radius: inherit;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: -1;
}
.p-header__reserve::after {
  -webkit-mask-image: url("../images/common/icon_calendar.svg");
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  background-color: #fff;
  content: "";
  height: 16px;
  height: 1rem;
          mask-image: url("../images/common/icon_calendar.svg");
          mask-position: center;
          mask-repeat: no-repeat;
          mask-size: contain;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  width: 16px;
  width: 1rem;
}

.p-header__line {
  background-image: url("../images/common/icon_line.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  display: block;
  height: 40px;
  height: 2.5rem;
  width: 40px;
  width: 2.5rem;
}
.p-header__reserve:focus-visible {
  border-color: #3d3836;
  color: #3d3836;
  opacity: 1;
}
.p-header__reserve:focus-visible::before {
  opacity: 0;
}
.p-header__reserve:focus-visible::after {
  background-color: #3d3836;
}

.p-legal__inner {
  padding-bottom: 173px;
  padding-bottom: 10.8125rem;
  padding-top: 50px;
  padding-top: 3.125rem;
}

.p-legal__table {
  border-bottom: 0.5px solid #dededb;
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

.p-legal__term,
.p-legal__desc {
  color: #3d3836;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.8;
  padding: 18px 16px;
  padding: 1.125rem 1rem;
  text-align: left;
  vertical-align: top;
}

.p-legal__term {
  background-color: #dededb;
  border-bottom: 0.5px solid #fff;
  border-top: 0.5px solid #fff;
  width: 120px;
  width: 7.5rem;
}

.p-legal__desc {
  background-color: #fff;
  border-bottom: 0.5px solid #dededb;
  border-top: 0.5px solid #dededb;
  vertical-align: middle;
  word-break: break-word;
}

.p-legal__term span,
.p-legal__desc span {
  display: inline-block;
}

.p-legal__term--first,
.p-legal__desc--first {
  border-top: 0;
}

.p-legal__term--last,
.p-legal__desc--last {
  border-bottom: 0;
}

.p-lower-mv {
  background: transparent url(../images/common/main_bg_sp.png) no-repeat center top/100%;
  background: transparent url(../images/common/main_bg_sp.webp) no-repeat center top/100%;
  padding-top: 64px;
  padding-top: 4rem;
}

.p-lower-mv__bg {
  background: transparent url(../images/common/sub-mv_bg_sp.png) no-repeat center top/100%;
  background: transparent url(../images/common/sub-mv_bg_sp.webp) no-repeat center top/100%;
}

.p-menu__inner {
  padding-bottom: 148px;
  padding-bottom: 9.25rem;
  padding-top: 50px;
  padding-top: 3.125rem;
}

.p-menu__empty {
  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: 50px;
  padding-bottom: 3.125rem;
  padding-top: 50px;
  padding-top: 3.125rem;
  width: 100%;
}

.p-menu__empty-message.c-coming-text {
  text-align: center;
}

.p-menu__wrapper {
  background-color: #fff;
  padding: 56px 16px;
  padding: 3.5rem 1rem;
}

.p-menu__sections {
  grid-gap: 4.75rem;
  display: grid;
  gap: 76px;
  gap: 4.75rem;
}

.p-menu__section {
  grid-gap: 2rem;
  display: grid;
  gap: 32px;
  gap: 2rem;
}

.p-menu__section-head-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  width: 100%;
}

.p-menu__section-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 48px;
  height: 3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  width: 3rem;
}

.p-menu__section-icon img {
  -o-object-fit: contain;
  height: auto;
  max-height: 100%;
     object-fit: contain;
  width: 100%;
}

.p-menu__section-titles {
  display: grid;
  text-align: left;
  width: 110px;
  width: 6.875rem;
}

.p-menu__section-title {
  -webkit-background-clip: text;
  background: linear-gradient(92deg, #bf8950 0%, #deac6f 23%, #ffcc91 35%, #d9ae69 49%, #f2c082 77%, #c59254 100%);
  background-clip: text;
  color: transparent;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.p-menu__section-en {
  -webkit-background-clip: text;
  background: linear-gradient(92deg, #bf8950 0%, #deac6f 23%, #ffcc91 35%, #d9ae69 49%, #f2c082 77%, #c59254 100%);
  background-clip: text;
  color: transparent;
  font-family: "Noto Serif JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: capitalize;
}

.p-menu__section-body {
  border-top: 0.5px solid #dededb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  gap: 2.5rem;
  padding: 12px 16px 0;
  padding: 0.75rem 1rem 0;
}

.p-menu__section-rule {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background-color: #dededb;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 0.5px;
}

.p-menu__section-cols {
  grid-gap: 1.375rem;
  display: grid;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 22px;
  gap: 1.375rem;
  min-width: 0;
}

.p-menu__group {
  grid-gap: 0.3125rem;
  display: grid;
  gap: 5px;
  gap: 0.3125rem;
}

.p-menu__group-label {
  color: #d6a86e;
  font-family: "Noto Serif JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2.1;
}

.p-menu__group-list {
  grid-gap: 0.875rem 1.5rem;
  display: grid;
  gap: 14px 24px;
  gap: 0.875rem 1.5rem;
  grid-template-columns: repeat(1, 1fr);
  list-style: none;
}

.p-menu__group-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.p-menu__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 0.5px solid #dededb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 7px;
  padding-bottom: 0.4375rem;
  position: relative;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  width: 100%;
}

.p-menu__link:hover {
  border-bottom: 0.5px solid transparent;
  opacity: 1;
}

.p-menu__link::after {
  background-color: #d6a86e;
  bottom: 0;
  content: "";
  display: block;
  height: 0.5px;
  left: 0;
  margin: auto;
  position: absolute;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  width: 100%;
}

.p-menu__link:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}

.p-menu__link-text {
  color: #3d3836;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2;
  text-align: left;
}

.p-menu__link-icon {
  background: url("../images/common/arrow-right_bk.svg") no-repeat center/contain;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 7px;
  height: 0.4375rem;
  width: 13px;
  width: 0.8125rem;
}

.p-menu__link:hover .p-menu__link-icon,
.p-menu__link:focus-visible .p-menu__link-icon {
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  -webkit-mask-image: url(../images/common/arrow-right_bk.svg);
  background: #d6a86e;
          mask-image: url(../images/common/arrow-right_bk.svg);
          mask-position: center center;
          mask-repeat: no-repeat;
          mask-size: 100%;
}

.p-menu__group--stack .p-menu__group-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.p-menu__group--stack .p-menu__group-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 100%;
}

.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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 6px;
  gap: 0.625rem 0.375rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-pagenavi .page-numbers {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #3d3836;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "Noto Serif JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  height: 32px;
  height: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  min-width: 32px;
  min-width: 2rem;
  padding: 0 12px;
  padding: 0 0.75rem;
}

.p-pagenavi .page-numbers.current {
  background-color: #3d3836;
  color: #fff;
}

.p-pagenavi .wp-pagenavi span.current {
  font-weight: 400;
}

.p-pagenavi .nav-links::before,
.p-pagenavi .wp-pagenavi::before {
  content: "";
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  height: 0;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.p-pagenavi .page-numbers.prev,
.p-pagenavi .page-numbers.next {
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  gap: 14px;
  gap: 0.875rem;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.p-pagenavi .page-numbers.prev::before {
  content: "<";
  font-size: 16px;
  font-size: 1rem;
}

.p-pagenavi .page-numbers.next::after {
  content: ">";
  font-size: 16px;
  font-size: 1rem;
}

.p-pagenavi .page-numbers.dots {
  border: none;
  min-width: auto;
  padding: 0;
}

.p-pagenavi .first,
.p-pagenavi .last,
.p-pagenavi .current,
.p-pagenavi .extend,
.p-pagenavi .page {
  -webkit-background-clip: text;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 1/1;
  background: linear-gradient(99deg, #bf8150 0%, #f3c27e 28%, #c59454 100%);
  background-clip: text;
  border: none;
  border-radius: 50%;
  color: transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "Noto Serif JP", serif;
  font-size: max(20px, 10px);
  font-size: max(1.25rem, 10px);
  font-weight: 400;
  height: 32px;
  height: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.08em;
  line-height: 1;
  margin: 0;
  min-width: 32px;
  min-width: 2rem;
  padding: 0 0 2px 2px;
  padding: 0 0 0.125rem 0.125rem;
}

.p-pagenavi .current {
  background: linear-gradient(99deg, #bf8150 0%, #f3c27e 28%, #c59454 100%);
  color: #fff;
}

.p-pagenavi .extend {
  border: none;
  min-width: auto;
  padding: 0;
}

.p-pagenavi .previouspostslink,
.p-pagenavi .nextpostslink {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #3d3836;
  border-radius: 0.75rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  height: 24px;
  height: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  min-width: 40px;
  min-width: 2.5rem;
  padding: 0 12px;
  padding: 0 0.75rem;
  position: relative;
}

.p-pagenavi .page-numbers:not(.current):not(.dots):hover {
  background-color: #3d3836;
  color: #fff;
}

.p-pagenavi .previouspostslink {
  margin-right: 8px;
  margin-right: 0.5rem;
}

.p-pagenavi .nextpostslink {
  margin-left: 8px;
  margin-left: 0.5rem;
}

.p-pagenavi .previouspostslink img,
.p-pagenavi .nextpostslink img {
  aspect-ratio: 13/7;
  height: 7px;
  height: 0.4375rem;
  width: 13px;
  width: 0.8125rem;
}

.p-pagenavi .previouspostslink:hover,
.p-pagenavi .nextpostslink:hover {
  background: linear-gradient(99deg, #bf8150 0%, #f3c27e 28%, #c59454 100%);
  border: none;
  opacity: 1;
}

.p-pagenavi .previouspostslink:hover img,
.p-pagenavi .nextpostslink:hover img {
  opacity: 0;
}

.p-pagenavi .previouspostslink:hover::after,
.p-pagenavi .nextpostslink:hover::after {
  -webkit-transform: translate(-50%, -50%);
  aspect-ratio: 13/7;
  background: transparent url(../images/common/arrow-right_wht.png) no-repeat center center/100%;
  content: "";
  height: 7px;
  height: 0.4375rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 13px;
  width: 0.8125rem;
}

.p-pagenavi .previouspostslink:hover::after {
  background: transparent url(../images/common/arrow-left_wht.png) no-repeat center center/100%;
}

.p-post-list__inner {
  padding-bottom: 76px;
  padding-bottom: 4.75rem;
  padding-top: 46px;
  padding-top: 2.875rem;
}

.p-post-list__main {
  margin-top: 6px;
  margin-top: 0.375rem;
  width: 100%;
}

.p-post-list__items {
  border-top: 0.5px solid #dededb;
}

.p-post-list__item {
  border-bottom: 0.5px solid #dededb;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  padding-top: 34px;
  padding-top: 2.125rem;
}

.p-post-list__link {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 16px;
  padding-left: 1rem;
  padding-right: 16px;
  padding-right: 1rem;
  position: relative;
  text-decoration: none;
}

.p-post-list__link:hover {
  opacity: 1;
}

.p-post-list__meta {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  gap: 1.5rem;
}

.p-post-list__date {
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1;
}

.p-post-list__cateList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  gap: 0.5rem;
  list-style: none;
}

.p-post-list__cateItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-post-list__cateText {
  background: #dededb;
  border-radius: 0.75rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 300;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.04em;
  line-height: 1;
  min-height: 18px;
  min-height: 1.125rem;
  padding: 3px 12px;
  padding: 0.1875rem 0.75rem;
}

.p-post-list__body {
  grid-gap: 0.5rem;
  display: grid;
  gap: 8px;
  gap: 0.5rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-post-list__title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  font-family: "Noto Serif JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2.1;
  overflow: hidden;
}

.p-post-list__text {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  display: -webkit-box;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.8;
  overflow: hidden;
}

.p-post-list__arrow {
  margin-top: 28px;
  margin-top: 1.75rem;
}

.p-post-list__pagenavi {
  margin-top: 38px;
  margin-top: 2.375rem;
}

.p-post-list__empty {
  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: 50px;
  padding-bottom: 3.125rem;
  padding-top: 50px;
  padding-top: 3.125rem;
  width: 100%;
}

.p-price__inner {
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  padding-top: 50px;
  padding-top: 3.125rem;
}

.p-price-main {
  grid-gap: 4rem;
  display: grid;
  gap: 64px;
  gap: 4rem;
  width: 100%;
}

.p-price__heading {
  border-bottom: 0.5px solid #d6a86e;
  color: #d6a86e;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
  padding-bottom: 25px;
  padding-bottom: 1.5625rem;
  padding-left: 16px;
  padding-left: 1rem;
}

.p-price__body {
  grid-gap: 0.875rem;
  display: grid;
  gap: 14px;
  gap: 0.875rem;
}

.p-price__list {
  color: #333;
  width: 100%;
}

.p-price__item {
  grid-row-gap: 0.0625rem;
  border-bottom: 0.5px solid #dededb;
  display: grid;
  padding: 18px 16px;
  padding: 1.125rem 1rem;
  row-gap: 1px;
  row-gap: 0.0625rem;
}

.p-price__item-head {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-price__item-name {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.5;
  min-width: 0;
  text-align: left;
}

.p-price__item-value {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: right;
  white-space: nowrap;
}

.p-price__item-note {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2;
  text-align: left;
  width: 100%;
}

.p-price__attention {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2;
  padding-left: 16px;
  padding-left: 1rem;
  padding-right: 16px;
  padding-right: 1rem;
  text-align: right;
}

.p-privacy__inner {
  padding-bottom: 173px;
  padding-bottom: 10.8125rem;
  padding-top: 40px;
  padding-top: 2.5rem;
}

.p-privacy__lead {
  color: #3d3836;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2;
}

.p-privacy__list {
  counter-reset: privacy;
  list-style: none;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-privacy__item {
  margin-top: 40px;
  margin-top: 2.5rem;
}
.p-privacy__item:first-child {
  margin-top: 0;
}

.p-privacy__heading {
  color: #d6a86e;
  counter-increment: privacy;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
.p-privacy__heading::before {
  content: counter(privacy) ".";
}

.p-privacy__text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2;
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-privacy__sub-heading {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2;
}

.p-privacy__sub-item {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2;
}
.p-privacy__sub-item::before {
  content: "・";
}

.p-privacy__link-item {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2;
}

.p-privacy__address {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-privacy__link-item a {
  -webkit-text-decoration: underline;
  -webkit-text-decoration: underline;
  color: #3d3836;
  text-decoration: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-privacy__link-item a:focus-visible {
  color: #d6a86e;
  opacity: 1;
}

.p-privacy__end {
  color: #3d3836;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2;
  margin-top: 40px;
  margin-top: 2.5rem;
}

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

.p-sidebar__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0.5px solid #d6a86e;
  border-radius: 3.125rem;
  color: #d6a86e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Noto Serif JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 400;
  gap: 8px;
  gap: 0.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  letter-spacing: 0.08em;
  line-height: 1.5;
  padding: 9.5px 24px;
  padding: 0.59375rem 1.5rem;
}

.p-sidebar__link--faq {
  gap: 2px;
  gap: 0.125rem;
  line-height: 1.3;
  padding: 11px 24px;
  padding: 0.6875rem 1.5rem;
}

.p-sidebar__text span {
  display: inline-block;
}

.p-sidebar__icon {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 8px;
  height: 0.5rem;
  width: 12px;
  width: 0.75rem;
}

.p-sidebar__link.is-active .p-sidebar__icon {
  -webkit-mask-image: url("../images/common/arrow-bottom_gold.svg");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  background-color: #fff;
  mask-image: url("../images/common/arrow-bottom_gold.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.p-sidebar__icon img {
  -o-object-fit: contain;
  aspect-ratio: 11/7;
  height: 100%;
     object-fit: contain;
  width: 100%;
}

.p-sidebar__link.is-active .p-sidebar__icon img {
  display: none;
}

.p-single-case {
  background: #FBFBFB;
  overflow-x: clip;
}

.p-single-case__inner {
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}

.p-single-case__head {
  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;
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-single-case__meta {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  gap: 1.5rem;
}

.p-single-case__cateList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  gap: 0.5rem;
  list-style: none;
}

.p-single-case__cateItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-single-case__cateText {
  background: #dededb;
  border-radius: 0.625rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 300;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.04em;
  line-height: 1;
  min-height: 18px;
  min-height: 1.125rem;
  padding: 3px 12px;
  padding: 0.1875rem 0.75rem;
}

.p-single-case__date {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-top: 2px;
  margin-top: 0.125rem;
}

.p-single-case__title {
  font-family: "Noto Serif JP", serif;
  font-size: max(26px, 10px);
  font-size: max(1.625rem, 10px);
  font-weight: 300;
  letter-spacing: 0.13em;
  line-height: 1.9;
}

.p-single-case__content {
  margin-top: 34px;
  margin-top: 2.125rem;
  padding-bottom: 54px;
  padding-bottom: 3.375rem;
}

.p-single-case__middle {
  padding-top: 72px;
  padding-top: 4.5rem;
  position: relative;
}

.p-single-case__middle::after {
  background: transparent url(../images/case/bg-img_sp.png) no-repeat center top/cover;
  background: transparent url(../images/case/bg-img_sp.webp) no-repeat center top/cover;
  content: "";
  height: 100%;
  left: 0;
  margin: 0 calc(50% - 50vw);
  position: absolute;
  top: 0;
  width: 100vw;
}

.p-single-case__others {
  position: relative;
  z-index: 1;
}

.p-single-case__others-title {
  color: #d6a86e;
  font-family: "Noto Serif JP", serif;
  font-size: max(26px, 10px);
  font-size: max(1.625rem, 10px);
  font-weight: 300;
  letter-spacing: 0.13em;
  line-height: 1.9;
  text-align: center;
}

.p-single-case__others-list {
  grid-gap: 1.5rem;
  display: grid;
  gap: 24px;
  gap: 1.5rem;
  grid-template-columns: repeat(1, 1fr);
  list-style: none;
  margin-top: 26px;
  margin-top: 1.625rem;
}

.p-single-case__others-item {
  width: 100%;
}

.p-single-case__btn {
  padding-bottom: 80px;
  padding-bottom: 5rem;
  padding-top: 80px;
  padding-top: 5rem;
  text-align: center;
}

.p-single-case__bottom {
  padding-bottom: 92px;
  padding-bottom: 5.75rem;
  padding-top: 68px;
  padding-top: 4.25rem;
  position: relative;
}

.p-single-case__bottom::after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(251, 251, 251, 0.6)), to(#FBFBFB));
  background: linear-gradient(180deg, rgba(251, 251, 251, 0.6) 0%, #FBFBFB 100%);
  content: "";
  height: 100%;
  left: 0;
  margin: 0 calc(50% - 50vw);
  position: absolute;
  top: 0;
  width: 100vw;
}

.p-single-menu {
  background: #FBFBFB;
  overflow-x: clip;
}

.p-single-menu .c-page-title__ja {
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.p-single-menu__inner {
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}

.p-single-menu__content {
  margin-top: 10px;
  margin-top: 0.625rem;
  padding-bottom: 54px;
  padding-bottom: 3.375rem;
}

.p-single-menu__middle {
  padding-bottom: 74px;
  padding-bottom: 4.625rem;
  padding-top: 26px;
  padding-top: 1.625rem;
  position: relative;
}

.p-single-menu__btn {
  text-align: center;
}

.p-single-menu__bottom {
  padding-bottom: 92px;
  padding-bottom: 5.75rem;
  padding-top: 72px;
  padding-top: 4.5rem;
  position: relative;
}

.p-single-menu__bottom::after {
  background: transparent url(../images/menu/bg-explanation_sp.png) no-repeat center center/cover;
  background: transparent url(../images/menu/bg-explanation_sp.webp) no-repeat center center/cover;
  content: "";
  height: 100%;
  left: 0;
  margin: 0 calc(50% - 50vw);
  position: absolute;
  top: 0;
  width: 100vw;
  z-index: 0;
}

.p-single {
  background: #FBFBFB;
  overflow-x: clip;
}

.p-single__inner {
  padding-bottom: 102px;
  padding-bottom: 6.375rem;
}

.p-single__head {
  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;
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-single__meta {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  gap: 1rem;
}

.p-single__cateList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  gap: 1rem;
  list-style: none;
}

.p-single__cateItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-single__cateText {
  background: #dededb;
  border-radius: 0.625rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 300;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.04em;
  line-height: 1;
  min-height: 18px;
  min-height: 1.125rem;
  padding: 3px 12px;
  padding: 0.1875rem 0.75rem;
}

.p-single__date {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-top: 2px;
  margin-top: 0.125rem;
}

.p-single__title {
  font-family: "Noto Serif JP", serif;
  font-size: max(26px, 10px);
  font-size: max(1.625rem, 10px);
  font-weight: 300;
  letter-spacing: 0.13em;
  line-height: 1.9;
}

.p-single__content {
  margin-top: 26px;
  margin-top: 1.625rem;
}

.p-single__bottom {
  padding-top: 46px;
  padding-top: 2.875rem;
}

.p-single__btn {
  text-align: center;
}

.p-top-about {
  overflow: hidden;
  padding-bottom: 150px;
  padding-bottom: 9.375rem;
  padding-top: 64px;
  padding-top: 4rem;
  position: relative;
  z-index: 1;
}

.p-top-about__img {
  margin-top: 80px;
  margin-top: 5rem;
}
.p-top-about__img img {
  -o-object-fit: cover;
  aspect-ratio: 506/562;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-top-about__title {
  -webkit-background-clip: text;
  background: linear-gradient(92deg, #BF8950 0.01%, #DEAC6F 22.64%, #FFCC91 34.68%, #D9AE69 49.13%, #F2C082 77.06%, #C59254 100.17%);
  background-clip: text;
  color: transparent;
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 300;
  letter-spacing: 0.13em;
  line-height: 1.9;
}

.p-top-about__texts {
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.p-top-about__text {
  font-family: "Noto Serif JP", serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 2.2;
}

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

.p-top-about__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  margin-top: 36px;
  margin-top: 2.25rem;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

.p-top-about__marquee {
  bottom: -20px;
  bottom: -1.25rem;
  left: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.p-top-about__marquee-track {
  -webkit-animation: marquee 40s linear infinite;
          animation: marquee 40s linear infinite;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Nanum Myeongjo", serif;
  font-size: 96px;
  font-size: 6rem;
  line-height: 1;
  white-space: nowrap;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
}
.p-top-about__marquee-track span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 40px;
  padding-right: 2.5rem;
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-25%);
            transform: translateX(-25%);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-25%);
            transform: translateX(-25%);
  }
}
.p-top-card {
  height: 100%;
  width: 100%;
}

.p-top-card__link {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  background-color: #fff;
  color: #3d3836;
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
  padding: 24px;
  padding: 1.5rem;
  text-decoration: none;
  width: 100%;
}
.p-top-card__link:focus-visible {
  outline: 2px solid #d6a86e;
  outline: 0.125rem solid #d6a86e;
  outline-offset: 2px;
  outline-offset: 0.125rem;
}

.p-top-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  gap: 0.75rem;
  width: 100%;
}

.p-top-card__date {
  color: #3d3836;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.p-top-card__cates {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  gap: 0.5rem;
}

.p-top-card__cate {
  background-color: #dededb;
  border-radius: 0.75rem;
  color: #3d3836;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.5;
  padding: 0 12px;
  padding: 0 0.75rem;
}

.p-top-card__body {
  margin-top: 6px;
  margin-top: 0.375rem;
  width: 100%;
}

.p-top-card__title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #3d3836;
  display: -webkit-box;
  font-family: "Noto Serif JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2.1;
  overflow: hidden;
}

.p-top-card__text {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  border-top: 0.5px solid #dededb;
  color: #3d3836;
  display: -webkit-box;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-top: 10px;
  margin-top: 0.625rem;
  overflow: hidden;
  padding-top: 12px;
  padding-top: 0.75rem;
}

.p-top-card__arrow {
  margin-top: 16px;
  margin-top: 1rem;
  text-align: center;
}

.p-top-case {
  padding-bottom: 74px;
  padding-bottom: 4.625rem;
  padding-top: 80px;
  padding-top: 5rem;
}

.p-top-case__title {
  text-align: center;
}

.p-top-case__list {
  margin-left: auto;
  margin-right: auto;
  margin-top: 45px;
  margin-top: 2.8125rem;
  padding-left: 16px;
  padding-left: 1rem;
  padding-right: 16px;
  padding-right: 1rem;
  width: 100%;
}

.p-top-case__item {
  width: 100%;
}

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

.p-top-case__card {
  width: 100%;
}

.p-top-case__empty.c-coming-text {
  margin-top: 45px;
  margin-top: 2.8125rem;
  text-align: center;
}

.p-top-case__btn {
  margin-top: 56px;
  margin-top: 3.5rem;
  text-align: center;
}

.p-top-faq {
  padding-bottom: 56px;
  padding-bottom: 3.5rem;
}

.p-top-faq__inner {
  border-top: 0.5px solid #dededb;
  padding-top: 74px;
  padding-top: 4.625rem;
}

.p-top-faq--first .p-top-faq__inner {
  border-top: none;
}

.p-top-faq__list {
  margin-left: auto;
  margin-right: auto;
  margin-top: 44px;
  margin-top: 2.75rem;
}

.p-top-faq__btn {
  margin-top: 56px;
  margin-top: 3.5rem;
  text-align: center;
}

.p-top-faq__title {
  text-align: center;
}

.p-top-features {
  background: #fff;
  padding: 48px 0 64px;
  padding: 3rem 0 4rem;
}

.p-top-features__title {
  -webkit-background-clip: text;
  background: linear-gradient(92deg, #BF8950 0.01%, #DEAC6F 22.64%, #FFCC91 34.68%, #D9AE69 49.13%, #F2C082 77.06%, #C59254 100.17%);
  background-clip: text;
  color: transparent;
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 300;
  letter-spacing: 0.13em;
  line-height: 1.9;
}

.p-top-features__text {
  color: #3d3836;
  font-family: "Noto Serif JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2.1;
  margin-top: 22px;
  margin-top: 1.375rem;
}
.p-top-features__text span {
  display: inline-block;
}

.p-top-features__img {
  aspect-ratio: 754/756;
  margin-top: 37px;
  margin-top: 2.3125rem;
  width: 100%;
}
.p-top-features__img img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-top-menu {
  padding: 72px 0 80px;
  padding: 4.5rem 0 5rem;
}

.p-top-menu__head {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-top-menu__list {
  border-top: 0.5px solid #3d3836;
  list-style: none;
  margin-top: 36px;
  margin-top: 2.25rem;
}

.p-top-menu__empty.c-coming-text {
  margin-top: 36px;
  margin-top: 2.25rem;
}

.p-top-menu__note {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  margin-top: 16px;
  margin-top: 1rem;
  text-align: right;
}

.p-top-menu__item {
  border-bottom: 0.5px solid #3d3836;
}

.p-top-menu__link {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #3d3836;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
  isolation: isolate;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 26px 24px;
  padding: 1.625rem 1.5rem;
  position: relative;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-top-menu__link::before {
  background-image: linear-gradient(104.944deg, rgb(191, 137, 80) 0%, rgb(222, 172, 111) 22.642%, rgb(255, 204, 145) 34.681%, rgb(217, 174, 105) 49.127%, rgb(242, 192, 130) 77.058%, rgb(197, 146, 84) 100%);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: -1;
}
.p-top-menu__link::after {
  -webkit-mask-image: url("../images/common/arrow-menu_bk.svg");
  -webkit-mask-position: center;
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  background-color: #3d3836;
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 12px;
  height: 0.75rem;
  mask-image: url("../images/common/arrow-menu_bk.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  -webkit-transition: width 0.3s, background-color 0.3s;
  transition: width 0.3s, background-color 0.3s;
  width: 24px;
  width: 1.5rem;
}
.p-top-menu__link:focus-visible {
  color: #fff;
  opacity: 1;
  outline: 2px solid #d6a86e;
  outline: 0.125rem solid #d6a86e;
  outline-offset: 2px;
  outline-offset: 0.125rem;
}
.p-top-menu__link:focus-visible::before {
  opacity: 1;
}
.p-top-menu__link:focus-visible::after {
  -webkit-mask-image: url("../images/common/arrow-menu_wht.svg");
  background-color: #fff;
  mask-image: url("../images/common/arrow-menu_wht.svg");
  width: 34px;
  width: 2.125rem;
}

.p-top-menu__link-text {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.p-top-menu__img {
  aspect-ratio: 530/662;
  margin-top: 45px;
  margin-top: 2.8125rem;
  width: 100%;
}
.p-top-menu__img img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-top-mv {
  background: url(../images/common/main_bg_sp.png) no-repeat center top/100%;
  background: url(../images/common/main_bg_sp.webp) no-repeat center top/100%;
  padding-top: 26.9230769231vw;
  position: relative;
}
.p-top-mv::after {
  aspect-ratio: 390/467;
  background: url(../images/top/mv_img_sp.png) no-repeat center/cover;
  content: "";
  display: block;
  margin-top: -126px;
  margin-top: -7.875rem;
  width: 100%;
}

.p-top-mv__logo {
  aspect-ratio: 336/59;
  padding-left: 27px;
  padding-left: 1.6875rem;
  padding-right: 27px;
  padding-right: 1.6875rem;
  position: relative;
  z-index: 1;
}
.p-top-mv__logo img {
  -o-object-fit: contain;
  height: 100%;
     object-fit: contain;
  width: 100%;
}

.p-top-mv__title {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  line-height: 1.8;
  margin-top: 22px;
  margin-top: 1.375rem;
  padding-left: 27px;
  padding-left: 1.6875rem;
  padding-right: 27px;
  padding-right: 1.6875rem;
  position: relative;
  text-align: center;
  z-index: 1;
}

.p-top-news {
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  padding-top: 80px;
  padding-top: 5rem;
}

.p-top-news__head {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-top-news__body {
  margin-top: 36px;
  margin-top: 2.25rem;
  padding-left: 35px;
  padding-left: 2.1875rem;
  padding-right: 35px;
  padding-right: 2.1875rem;
}

.p-top-news__group--closed {
  border-top: 0.5px solid #dededb;
  margin-top: 48px;
  margin-top: 3rem;
  padding-top: 35px;
  padding-top: 2.1875rem;
}

.p-top-news__group-title {
  -webkit-background-clip: text;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: linear-gradient(92deg, #bf8950 0%, #deac6f 23%, #ffcc91 35%, #d9ae69 49%, #f2c082 77%, #c59254 100%);
  background-clip: text;
  color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 300;
  gap: 16px;
  gap: 1rem;
  letter-spacing: 0.13em;
  line-height: 1.9;
  text-transform: uppercase;
}

.p-top-news__group--closed .p-top-news__group-title::before {
  background: url("../images/common/icon_calendar_linear.svg") no-repeat center/contain;
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 23px;
  height: 1.4375rem;
  width: 23px;
  width: 1.4375rem;
}

.p-top-news__list {
  margin-top: 10px;
  margin-top: 0.625rem;
}

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

.p-top-news__empty {
  text-align: center;
}

.p-top__bg1 {
  background: url(../images/top/group_bg1_sp.png) no-repeat center top/cover, #f8f8f8;
  background: url(../images/top/group_bg1_sp.webp) no-repeat center top/cover, #f8f8f8;
  padding-bottom: 22.5641025641vw;
}

.p-top__bg2 {
  background: url(../images/top/group_bg2_sp.png) no-repeat center top/cover;
  background: url(../images/top/group_bg2_sp.webp) no-repeat center top/cover;
  margin-top: -22.5641025641vw;
}

.p-top .c-btn02__icon {
  border: 1px solid currentColor;
  border-radius: 50vmax;
  -webkit-transition: border-color 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: border-color 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}

.js-fade-in {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px); /* デフォルトは下 → 上 */
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}

.js-fade-in.is-visible {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* 上から */
.js-fade-in--up {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

/* 右から */
.js-fade-in--right {
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

/* 左から */
.js-fade-in--left {
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

.u-hidden {
  overflow: hidden;
}

.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: 390px){
  html {
    font-size: 4.1025641026vw;
  }
}

@media screen and (min-width: 768px){
  html {
    font-size: 1.2326656394vw;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  html {
    scroll-padding-top: 4.6875rem;
  }
  .l-breadcrumb {
    margin-top: 10px;
    margin-top: 0.625rem;
  }
  .l-columns {
    -moz-column-gap: 0.875rem;
         -webkit-column-gap: 0.875rem;
            column-gap: 0.875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 0;
  }
  .l-columns__aside {
    width: 280px;
    width: 17.5rem;
  }
  .l-columns__main {
    width: 954px;
    width: 59.625rem;
  }
  .l-columns__btn {
    padding-top: 110px;
    padding-top: 6.875rem;
  }
  .l-drawer {
    display: none;
  }
  .l-footer {
    margin-top: 90px;
    margin-top: 5.625rem;
  }
  .l-inner {
    max-width: 1298px;
    max-width: 81.125rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
    padding-right: 25px;
    padding-right: 1.5625rem;
  }
  a.c-btn01:hover,
  a.c-btn01:active {
    opacity: 1;
  }
  a.c-btn01:hover,
  a.c-btn01:active,
  a:hover .c-btn01 {
    background-color: transparent;
    background-image: linear-gradient(121deg, #bf8150 0%, #f3c27e 28%, #c59454 100%);
    border-color: transparent;
    color: #fff;
  }
  a:hover .c-btn01__icon svg,
  .c-btn01:hover .c-btn01__icon svg,
  .c-btn01:active .c-btn01__icon svg {
    color: #fff;
  }
  a.c-btn02:hover,
  a.c-btn02:active {
    opacity: 1;
  }
  .c-btn02:hover,
  .c-btn02:active {
    color: #fff;
  }
  .c-btn02:hover::after,
  .c-btn02:active::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .c-btn02:hover .c-btn02__icon svg rect,
  .c-btn02:active .c-btn02__icon svg rect {
    stroke: transparent;
  }
  .c-btn02:hover .c-btn02__icon svg,
  .c-btn02:active .c-btn02__icon svg {
    color: #fff;
  }
  .c-btn03 {
    padding: 25px 34px 28px 32px;
    padding: 1.5625rem 2.125rem 1.75rem 2rem;
  }
  a.c-btn03:hover {
    opacity: 0.85;
  }
  .c-coming-text {
    font-size: 72px;
    font-size: 4.5rem;
    text-align: left;
  }
  .c-faq--top {
    padding: 32px 48px;
    padding: 2rem 3rem;
  }
  .c-faq__item--top {
    padding-bottom: 26px;
    padding-bottom: 1.625rem;
  }
  .c-faq__item--top:nth-child(n+2) {
    margin-top: 22px;
    margin-top: 1.375rem;
  }
  .c-faq__item--page {
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
  }
  .c-faq__summary--top {
    gap: 20px;
    gap: 1.25rem;
    padding: 0 24px;
    padding: 0 1.5rem;
  }
  .c-faq__summary--page {
    gap: 20px;
    gap: 1.25rem;
    padding: 24px 32px 0;
    padding: 1.5rem 2rem 0;
  }
  .c-faq__body--top {
    padding: 14px 24px 0;
    padding: 0.875rem 1.5rem 0;
  }
  .c-faq__body--page {
    padding: 12px 32px 0;
    padding: 0.75rem 2rem 0;
  }
  .c-no-post {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .c-page-title {
    gap: 10px;
    gap: 0.625rem;
    min-height: 308px;
    min-height: 19.25rem;
    padding-bottom: 66px;
    padding-bottom: 4.125rem;
    padding-top: 124px;
    padding-top: 7.75rem;
  }
  .c-page-title--legal,
  .c-page-title--privacy {
    padding-bottom: 66px;
    padding-bottom: 4.125rem;
    padding-top: 124px;
    padding-top: 7.75rem;
  }
  .c-page-title__en {
    font-size: 72px;
    font-size: 4.5rem;
  }
  .c-page-title--legal .c-page-title__ja,
  .c-page-title--privacy .c-page-title__ja {
    font-size: 45px;
    font-size: 2.8125rem;
  }
  .c-section-title {
    font-size: 72px;
    font-size: 4.5rem;
  }
  .c-text {
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: 0.03em;
    line-height: 1.875;
  }
  .p-404__bg {
    padding-bottom: 145px;
    padding-bottom: 9.0625rem;
  }
  .p-404__head {
    padding-top: 200px;
    padding-top: 12.5rem;
  }
  .p-404__num {
    width: 362px;
    width: 22.625rem;
  }
  .p-404__en {
    font-size: 26px;
    font-size: 1.625rem;
    font-weight: 300;
    letter-spacing: 0.13em;
    line-height: 1.9;
    margin-top: 22px;
    margin-top: 1.375rem;
  }
  .p-404__text {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-404__btn {
    margin-top: 112px;
    margin-top: 7rem;
  }
  .p-breadcrumb__wrapper {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-case-card__link {
    padding: 24px 24px 57px;
    padding: 1.5rem 1.5rem 3.5625rem;
  }
  .p-case-card__row {
    -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: 16px;
    gap: 1rem;
  }
  .p-case-card__head {
    margin-left: 0;
    margin-right: 0;
    margin-top: 34px;
    margin-top: 2.125rem;
    width: 147px;
    width: 9.1875rem;
  }
  .p-case-card__meta {
    gap: 6px;
    gap: 0.375rem;
    margin-top: 10px;
    margin-top: 0.625rem;
  }
  .p-case-card__term {
    margin-top: 1px;
    margin-top: 0.0625rem;
  }
  .p-case-card__meta--details .p-case-card__desc {
    -webkit-line-clamp: 2;
  }
  .p-case-card__meta--risk .p-case-card__desc {
    -webkit-line-clamp: 3;
  }
  .p-case-card__arrow {
    bottom: 24px;
    bottom: 1.5rem;
    margin-top: 8px;
    margin-top: 0.5rem;
    position: absolute;
    right: 24px;
    right: 1.5rem;
  }
  .p-case__inner {
    padding-bottom: 150px;
    padding-bottom: 9.375rem;
    padding-top: 60px;
    padding-top: 3.75rem;
  }
  .p-case__main {
    margin-top: 6px;
    margin-top: 0.375rem;
    padding-left: 0;
    padding-right: 0;
  }
  .p-case__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .p-case__empty {
    padding-bottom: 154px;
    padding-bottom: 9.625rem;
    padding-top: 154px;
    padding-top: 9.625rem;
  }
  .p-case__empty-message {
    padding-left: 116px;
    padding-left: 7.25rem;
    padding-right: 116px;
    padding-right: 7.25rem;
  }
  .p-case__pagenavi {
    margin-top: 48px;
    margin-top: 3rem;
  }
  .p-clinic-access {
    padding-bottom: 138px;
    padding-bottom: 8.625rem;
    padding-top: 110px;
    padding-top: 6.875rem;
  }
  .p-clinic-access__inner {
    max-width: 875px;
    max-width: 54.6875rem;
  }
  .p-clinic-access__heading {
    font-size: 72px;
    font-size: 4.5rem;
  }
  .p-clinic-access__content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    gap: 2.5rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 20px;
    margin-top: 1.25rem;
  }
  .p-clinic-access__list {
    margin-top: 4px;
    margin-top: 0.25rem;
  }
  .p-clinic-access__map {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 15px;
    margin-top: 0.9375rem;
    width: 319px;
    width: 19.9375rem;
  }
  .p-clinic-doctor {
    background-image: url("../images/clinic/doctor_bg.jpg");
    padding-bottom: 110px;
    padding-bottom: 6.875rem;
    padding-top: 120px;
    padding-top: 7.5rem;
  }
  .p-clinic-doctor__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    gap: 2.5rem;
    max-width: 1086px;
    max-width: 67.875rem;
  }
  .p-clinic-doctor__image {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-left: 0;
    margin-right: 0;
    width: 333px;
    width: 20.8125rem;
  }
  .p-clinic-doctor__content {
    margin-top: -8px;
    margin-top: -0.5rem;
    width: 662px;
    width: 41.375rem;
  }
  .p-clinic-doctor__head {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 70px;
    gap: 4.375rem;
  }
  .p-clinic-doctor__sns {
    margin-top: 0;
    padding-bottom: 12px;
    padding-bottom: 0.75rem;
  }
  .p-clinic-doctor__career {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 38px;
    gap: 2.375rem;
    margin-top: 20px;
    margin-top: 1.25rem;
  }
  .p-clinic-doctor__career-block:nth-child(n+2) {
    margin-top: 0;
  }
  .p-clinic-doctor__message {
    margin-top: 70px;
    margin-top: 4.375rem;
  }
  .p-clinic-message {
    padding-bottom: 110px;
    padding-bottom: 6.875rem;
    padding-top: 65px;
    padding-top: 4.0625rem;
  }
  .p-clinic-message__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 85px;
    gap: 5.3125rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1086px;
    max-width: 67.875rem;
  }
  .p-clinic-message__text {
    margin-top: 45px;
    margin-top: 2.8125rem;
  }
  .p-clinic-message__images {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 16px;
    margin-top: 1rem;
    width: 332px;
    width: 20.75rem;
  }
  .p-custom__h2-text {
    margin-bottom: 12px;
    margin-bottom: 0.75rem;
  }
  .p-content h2 {
    margin-top: 82px;
    margin-top: 5.125rem;
  }
  .p-content h3 {
    margin-top: 10px;
    margin-top: 0.625rem;
  }
  .p-content p {
    margin-bottom: 22px;
    margin-bottom: 1.375rem;
  }
  .p-content h2 + p {
    margin-bottom: 10px;
    margin-bottom: 0.625rem;
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-single-block {
    margin-bottom: 22px;
    margin-bottom: 1.375rem;
  }
  .p-custom__gallery2-wide {
    display: grid !important;
  }
  .p-custom__gallery2-wide {
    grid-template-columns: repeat(2, 31.625rem);
  }
  .p-custom__gallery3-wide {
    grid-template-columns: repeat(3, 20.625rem);
  }
  .p-custom__gallery2-tall {
    display: grid !important;
    max-width: 724px !important;
    max-width: 45.25rem !important;
  }
  .p-custom__gallery2-tall {
    grid-template-columns: repeat(2, 21.875rem);
    margin-left: auto;
    margin-right: auto;
  }
  .p-custom__gallery3-tall {
    grid-template-columns: repeat(3, 20.625rem);
  }
  .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 .p-custom__h2-text-rightimg > .wp-block-group__inner-container {
    -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: 32px;
    gap: 2rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-content .p-custom__h2-text-rightimg__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 65.0579150579%;
            flex: 0 0 65.0579150579%;
    max-width: 674px;
    max-width: 42.125rem;
  }
  .p-content .p-custom__h2-text-rightimg > .wp-block-group__inner-container > .wp-block-image {
    width: 100% !important;
  }
  .p-content .p-custom__h2-text-rightimg > .wp-block-group__inner-container > .wp-block-image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 31.8532818533%;
            flex: 0 0 31.8532818533%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 6px;
    margin-top: 0.375rem;
    max-width: 330px;
    max-width: 20.625rem;
  }
  .p-content .p-custom__h2-leftimg-text > .wp-block-group__inner-container {
    -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: 32px;
    gap: 2rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-content .p-custom__h2-leftimg-text__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 65.0579150579%;
            flex: 0 0 65.0579150579%;
    max-width: 674px;
    max-width: 42.125rem;
  }
  .p-content .p-custom__h2-leftimg-text > .wp-block-group__inner-container > .wp-block-image {
    width: 100% !important;
  }
  .p-content .p-custom__h2-leftimg-text > .wp-block-group__inner-container > .wp-block-image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 31.8532818533%;
            flex: 0 0 31.8532818533%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 6px;
    margin-top: 0.375rem;
    max-width: 330px;
    max-width: 20.625rem;
  }
  .p-single-block__columns.two-columns {
    display: grid !important;
  }
  .p-single-block__columns.two-columns {
    grid-template-columns: repeat(2, 31.625rem);
  }
  .p-single-block__columns.three-columns {
    grid-template-columns: repeat(3, 20.625rem);
  }
  .p-single-block__columns.four-columns {
    grid-template-columns: repeat(2, 31.625rem);
  }
  .p-single-table {
    margin-top: 22px;
    margin-top: 1.375rem;
  }
  .p-single-table th {
    padding: 18px 32px 17px;
    padding: 1.125rem 2rem 1.0625rem;
    width: 230px;
    width: 14.375rem;
  }
  .p-single-table td {
    padding: 18px 32px 17px;
    padding: 1.125rem 2rem 1.0625rem;
    width: calc(100% - 14.375rem);
  }
  .p-content h2.p-menu-block__title {
    margin-top: 70px;
    margin-top: 4.375rem;
  }
  .p-content .p-menu-table-block h2.p-menu-block__title {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
  .p-content .p-menu-detail-list {
    margin-top: 21px;
    margin-top: 1.3125rem;
  }
  .p-content .p-menu-detail-list__item:nth-child(n+2) {
    margin-top: 14px;
    margin-top: 0.875rem;
  }
  .p-content .p-menu-table-block .p-single-table {
    margin-top: 34px;
    margin-top: 2.125rem;
  }
  .p-single-table-3col {
    margin-top: 22px;
    margin-top: 1.375rem;
  }
  .p-single-table-3col th {
    padding: 17.5px 22px 17.5px;
    padding: 1.09375rem 1.375rem 1.09375rem;
    width: 230px;
    width: 14.375rem;
  }
  .p-single-table-3col tr th + th {
    width: 403px;
    width: 25.1875rem;
  }
  .p-single-table-3col td {
    padding: 17px 24px 17px;
    padding: 1.0625rem 1.5rem 1.0625rem;
    width: 403px;
    width: 25.1875rem;
  }
  .p-content .p-menu-table-3col-block h2.p-menu-block__title {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
  .p-content .p-menu-table-3col-block .p-single-table-3col {
    margin-top: 34px;
    margin-top: 2.125rem;
  }
  .p-single-table-2col {
    margin-top: 22px;
    margin-top: 1.375rem;
  }
  .p-single-table-2col th {
    padding: 17.5px 22px 17.5px;
    padding: 1.09375rem 1.375rem 1.09375rem;
    width: 230px;
    width: 14.375rem;
  }
  .p-single-table-2col td {
    padding: 17px 24px 17px;
    padding: 1.0625rem 1.5rem 1.0625rem;
    width: calc(100% - 14.375rem);
  }
  .p-content .p-menu-table-2col-block h2.p-menu-block__title {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
  .p-content .p-menu-table-2col-block .p-single-table-2col {
    margin-top: 34px;
    margin-top: 2.125rem;
  }
  .p-content .p-menu-table-2col-block .p-single-table-2col + p {
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-menu-recommend {
    background: transparent url(../images/menu/bg-recomend.png) no-repeat center center/cover;
    background: transparent url(../images/menu/bg-recomend.webp) no-repeat center center/cover;
    margin-top: 24px;
    margin-top: 1.5rem;
    padding: 28px 41px 39px;
    padding: 1.75rem 2.5625rem 2.4375rem;
  }
  .p-menu-recommend--02 {
    background: transparent url(../images/menu/bg-recomend02.png) no-repeat center center/cover;
    background: transparent url(../images/menu/bg-recomend02.webp) no-repeat center center/cover;
  }
  .p-menu-discription + .p-menu-recommend--02 {
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-content p.p-menu-recommend__title {
    margin-bottom: 10px;
    margin-bottom: 0.625rem;
  }
  .p-content .p-menu-recommend__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 6px 48px;
    gap: 0.375rem 3rem;
  }
  .p-content .p-menu-recommend--02 .p-menu-recommend__list {
    gap: 6px 48px;
    gap: 0.375rem 3rem;
  }
  .p-content .p-menu-recommend__list li {
    line-height: 1.5;
  }
  .p-content .p-menu-recommend__list li::before {
    top: 4px;
    top: 0.25rem;
  }
  .p-content .p-menu-recommend--02 .p-menu-recommend__list li::before {
    top: 6px;
    top: 0.375rem;
  }
  .p-content .p-menu-faq__list {
    margin-top: 34px;
    margin-top: 2.125rem;
    padding: 32px 48px 36px;
    padding: 2rem 3rem 2.25rem;
  }
  .p-content .p-menu-faq__item {
    padding: 0 24px;
    padding: 0 1.5rem;
  }
  .p-content .p-menu-faq__item + .p-menu-faq__item {
    margin-top: 24px;
    margin-top: 1.5rem;
    padding-top: 25px;
    padding-top: 1.5625rem;
  }
  .p-content .p-menu-exam__list {
    margin-bottom: 114px;
    margin-bottom: 7.125rem;
    padding: 130px 0 0;
    padding: 8.125rem 0 0;
  }
  .p-content .p-menu-exam__list > .wp-block-group__inner-container {
    grid-template-columns: repeat(2, 31.625rem);
  }
  .p-content .p-menu-exam__card {
    padding: 34px 33px 31px 34px;
    padding: 2.125rem 2.0625rem 1.9375rem 2.125rem;
  }
  .p-content .p-menu-exam__card:has(> figure.wp-block-image.p-menu-exam__icon) {
    -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;
  }
  .p-content .p-menu-exam__card > .wp-block-group__inner-container {
    -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: 44px;
    gap: 2.75rem;
  }
  .p-content .p-menu-exam__card figure.wp-block-image.p-menu-exam__icon img {
    height: 148px;
    height: 9.25rem;
    width: 148px;
    width: 9.25rem;
  }
  .p-content .p-menu-exam__body {
    max-width: 247px;
    max-width: 15.4375rem;
  }
  .p-content .p-menu-ff {
    gap: 100px;
    gap: 6.25rem;
    margin-top: 114px;
    margin-top: 7.125rem;
    padding-bottom: 120px;
    padding-bottom: 7.5rem;
    padding-top: 110px;
    padding-top: 6.875rem;
  }
  .p-content .p-menu-ff::after {
    background: transparent url(../images/menu/bg-nutrition.png) no-repeat center top/cover;
    background: transparent url(../images/menu/bg-nutrition.webp) no-repeat center top/cover;
  }
  .p-content .p-menu-feature {
    padding-bottom: 106px;
    padding-bottom: 6.625rem;
  }
  .p-content .p-menu-feature {
    gap: 40px;
    gap: 2.5rem;
  }
  .p-content .p-menu-feature__list {
    margin-top: 34px;
    margin-top: 2.125rem;
    padding-left: 0;
    padding-right: 0;
  }
  .p-content .p-menu-feature__list:has(> .p-menu-feature__item) {
    gap: 24px;
    gap: 1.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .p-content .p-menu-feature__list > .wp-block-group__inner-container {
    gap: 24px;
    gap: 1.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .p-content .p-menu-feature__item {
    gap: 20px;
    gap: 1.25rem;
  }
  .p-content p.p-menu-feature__name {
    line-height: 1.4;
    margin-top: 28px;
    margin-top: 1.75rem;
  }
  .p-content p.p-menu-feature__desc {
    margin-top: 9px;
    margin-top: 0.5625rem;
  }
  .p-content .p-menu-flow {
    gap: 40px;
    gap: 2.5rem;
    padding-top: 108px;
    padding-top: 6.75rem;
  }
  .p-content .p-menu-flow::after {
    background: transparent url(../images/menu/bg-nutrition-flow.png) no-repeat center top/cover;
    background: transparent url(../images/menu/bg-nutrition-flow.webp) no-repeat center top/cover;
  }
  .p-content .p-menu-flow h2.p-menu-block__title {
    margin-top: 0;
  }
  .p-content .p-menu-flow__list {
    margin-top: 36px;
    margin-top: 2.25rem;
  }
  .p-content .p-menu-flow__item {
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(5%, rgba(255, 255, 255, 0)), color-stop(5%, #fff), to(#fff));
    background: linear-gradient(to Right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 5%, #fff 5%, #fff 100%);
    gap: 24px;
    gap: 1.5rem;
    min-height: 157px;
    min-height: 9.8125rem;
    padding: 30px 24px 34px 128px;
    padding: 1.875rem 1.5rem 2.125rem 8rem;
  }
  .p-content .p-menu-flow__item > .wp-block-group__inner-container {
    gap: 8px;
    gap: 0.5rem;
  }
  .p-content .p-menu-flow__item::before {
    border-top-left-radius: 36px;
    border-top-left-radius: 2.25rem;
    border-top-right-radius: 36px;
    border-top-right-radius: 2.25rem;
    font-size: 26px;
    font-size: 1.625rem;
    top: -2px;
    top: -0.125rem;
  }
  .p-content p.p-menu-flow__name {
    line-height: 1.4;
  }
  .p-cta {
    background-image: url("../images/common/cta_bg.jpg");
    gap: 56px;
    gap: 3.5rem;
  }
  .p-cta__heading {
    gap: 0;
  }
  .p-cta__heading-ja {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-cta__heading-en {
    font-size: 72px;
    font-size: 4.5rem;
  }
  .p-cta__buttons {
    -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: 930px;
    max-width: 58.125rem;
    width: 100%;
  }
  .p-cta__button.p-cta__button--tel {
    gap: 0;
  }
  .p-faq__inner {
    padding-bottom: 140px;
    padding-bottom: 8.75rem;
    padding-top: 68px;
    padding-top: 4.25rem;
  }
  .p-faq__block:nth-child(n+2) {
    padding-top: 80px;
    padding-top: 5rem;
  }
  .p-faq__heading {
    padding-left: 32px;
    padding-left: 2rem;
  }
  .p-filter {
    max-width: 187px;
    max-width: 11.6875rem;
    position: sticky;
    top: 140px;
    top: 8.75rem;
  }
  .p-filter__title {
    padding-bottom: 18px;
    padding-bottom: 1.125rem;
  }
  .p-filter__list {
    grid-gap: 1rem;
    display: grid;
    gap: 16px;
    gap: 1rem;
    margin-top: 22px;
    margin-top: 1.375rem;
  }
  .p-fixed {
    display: none;
  }
  .p-footer__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 34px;
    gap: 2.125rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: -85px;
    margin-top: -5.3125rem;
    width: 83.0128205128%;
  }
  .p-footer__info {
    -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;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 90px;
    margin-top: 5.625rem;
  }
  .p-footer__detail {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
    gap: 1.5rem;
    width: 824px;
    width: 51.5rem;
  }
  .p-footer__table {
    width: 400px;
    width: 25rem;
  }
  .p-footer__row {
    gap: 24px;
    gap: 1.5rem;
    padding: 10px 16px;
    padding: 0.625rem 1rem;
  }
  .p-footer__map {
    aspect-ratio: 400/237;
    width: 400px;
    width: 25rem;
  }
  .p-footer__menu {
    gap: 48px;
    gap: 3rem;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 72px;
    margin-top: 4.5rem;
    padding: 36px 48px;
    padding: 2.25rem 3rem;
  }
  .p-footer__menu-title {
    padding-bottom: 3px;
    padding-bottom: 0.1875rem;
  }
  .p-footer__menu-list {
    margin-top: 10px;
    margin-top: 0.625rem;
  }
  .p-footer__bottom {
    -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;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 22px 0 0;
    margin: 1.375rem 0 0;
  }
  .p-footer__nav-list {
    gap: 24px;
    gap: 1.5rem;
  }
  .p-footer__nav-item a {
    line-height: 2.1;
    padding: 0 20px 0 0;
    padding: 0 1.25rem 0 0;
  }
  .p-footer__sub {
    gap: 12px;
    gap: 0.75rem;
  }
  .p-footer__copyright {
    margin-top: 22px;
    margin-top: 1.375rem;
    padding-bottom: 18px;
    padding-bottom: 1.125rem;
  }
  .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__inner {
    padding: 17px 32px;
    padding: 1.0625rem 2rem;
  }
  .p-header__logo a {
    width: 267px;
    width: 16.6875rem;
  }
  .p-header__pc-nav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    gap: 1.875rem;
    margin-left: auto;
  }
  .p-header__pc-nav-item:last-child a {
    padding-right: 0;
  }
  .p-header__reserve {
    gap: 16px;
    gap: 1rem;
  }
  .p-header__menu {
    display: none;
  }
  .p-legal__inner {
    max-width: 1086px;
    max-width: 67.875rem;
    padding-bottom: 240px;
    padding-bottom: 15rem;
    padding-top: 75px;
    padding-top: 4.6875rem;
  }
  .p-legal__table {
    border-bottom: 0;
  }
  .p-legal__term,
  .p-legal__desc {
    padding: 17px 32px;
    padding: 1.0625rem 2rem;
  }
  .p-legal__term {
    width: 230px;
    width: 14.375rem;
  }
  .p-lower-mv {
    background: transparent url(../images/common/main_bg.png) no-repeat center top/100%;
    background: transparent url(../images/common/main_bg.webp) no-repeat center top/100%;
    padding-top: 115px;
    padding-top: 7.1875rem;
  }
  .p-lower-mv__bg {
    background: transparent url(../images/common/sub-mv_bg.png) no-repeat center top/100%;
    background: transparent url(../images/common/sub-mv_bg.webp) no-repeat center top/100%;
  }
  .p-menu__inner {
    max-width: 1134px;
    max-width: 70.875rem;
    padding-bottom: 154px;
    padding-bottom: 9.625rem;
    padding-top: 74px;
    padding-top: 4.625rem;
  }
  .p-menu__empty {
    padding-bottom: 154px;
    padding-bottom: 9.625rem;
    padding-top: 154px;
    padding-top: 9.625rem;
  }
  .p-menu__wrapper {
    padding: 40px 48px 40px 40px;
    padding: 2.5rem 3rem 2.5rem 2.5rem;
  }
  .p-menu__sections {
    gap: 32px;
    gap: 2rem;
  }
  .p-menu__section {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 21px;
    gap: 1.3125rem;
    grid-template-columns: 12.5rem minmax(0, 1fr);
  }
  .p-menu__section-meta {
    padding-top: 12px;
    padding-top: 0.75rem;
  }
  .p-menu__section-head-inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    gap: 1.25rem;
  }
  .p-menu__section-titles {
    gap: 1px;
    gap: 0.0625rem;
  }
  .p-menu__section-body {
    border-top: none;
    padding: 0;
  }
  .p-menu__section-cols {
    gap: 22px;
    gap: 1.375rem;
    padding-bottom: 24px;
    padding-bottom: 1.5rem;
    padding-top: 14px;
    padding-top: 0.875rem;
  }
  .p-menu__group {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 6px;
    gap: 0.375rem;
    grid-template-columns: 7.875rem minmax(0, 1fr);
  }
  .p-menu__group-list {
    gap: 14px 24px;
    gap: 0.875rem 1.5rem;
    grid-template-columns: repeat(3, 1fr);
  }
  .p-menu__group-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 185px;
            flex: 0 0 185px;
    -ms-flex: 0 0 11.5625rem;
        flex: 0 0 11.5625rem;
    max-width: 185px;
    max-width: 11.5625rem;
  }
  .p-menu__link {
    gap: 0;
    padding-bottom: 7px;
    padding-bottom: 0.4375rem;
  }
  .p-pagenavi .nav-links,
  .p-pagenavi .wp-pagenavi {
    gap: 12px 8px;
    gap: 0.75rem 0.5rem;
  }
  .p-pagenavi .nav-links::before,
  .p-pagenavi .wp-pagenavi::before {
    display: none;
  }
  .p-pagenavi .page-numbers.prev,
  .p-pagenavi .page-numbers.next {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .p-pagenavi .previouspostslink,
  .p-pagenavi .nextpostslink {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .p-pagenavi .previouspostslink {
    margin-right: 6px;
    margin-right: 0.375rem;
  }
  .p-pagenavi .nextpostslink {
    margin-left: 6px;
    margin-left: 0.375rem;
  }
  .p-post-list__inner {
    padding-bottom: 150px;
    padding-bottom: 9.375rem;
    padding-top: 68px;
    padding-top: 4.25rem;
  }
  .p-post-list__main {
    margin-top: 6px;
    margin-top: 0.375rem;
  }
  .p-post-list__item {
    padding-bottom: 26px;
    padding-bottom: 1.625rem;
    padding-top: 22px;
    padding-top: 1.375rem;
  }
  .p-post-list__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    gap: 1.25rem;
    padding-left: 32px;
    padding-left: 2rem;
    padding-right: 32px;
    padding-right: 2rem;
  }
  .p-post-list__meta {
    gap: 24px;
    gap: 1.5rem;
    margin-top: 10px;
    margin-top: 0.625rem;
    width: 200px;
    width: 12.5rem;
  }
  .p-post-list__date {
    margin-top: 3px;
    margin-top: 0.1875rem;
  }
  .p-post-list__cateText {
    padding: 2px 12px 4px;
    padding: 0.125rem 0.75rem 0.25rem;
  }
  .p-post-list__body {
    margin-top: 0;
    width: 582px;
    width: 36.375rem;
  }
  .p-post-list__title {
    -webkit-line-clamp: 1;
  }
  .p-post-list__text {
    -webkit-line-clamp: 3;
  }
  .p-post-list__arrow {
    -webkit-transform: translate(0, -50%);
    margin-top: 0;
    position: absolute;
    right: 32px;
    right: 2rem;
    top: 52%;
    transform: translate(0, -50%);
  }
  .p-post-list__pagenavi {
    margin-top: 47px;
    margin-top: 2.9375rem;
  }
  .p-post-list__empty {
    padding-bottom: 154px;
    padding-bottom: 9.625rem;
    padding-top: 154px;
    padding-top: 9.625rem;
  }
  .p-post-list__empty-message {
    padding-left: 116px;
    padding-left: 7.25rem;
    padding-right: 116px;
    padding-right: 7.25rem;
  }
  .p-price__inner {
    padding-bottom: 140px;
    padding-bottom: 8.75rem;
    padding-top: 68px;
    padding-top: 4.25rem;
  }
  .p-price-main {
    gap: 64px;
    gap: 4rem;
  }
  .p-price__heading {
    padding-bottom: 25px;
    padding-bottom: 1.5625rem;
    padding-left: 32px;
    padding-left: 2rem;
  }
  .p-price__item {
    padding: 18px 32px;
    padding: 1.125rem 2rem;
    row-gap: 2px;
    row-gap: 0.125rem;
  }
  .p-price__item-note {
    text-align: right;
  }
  .p-price__attention {
    padding-left: 32px;
    padding-left: 2rem;
    padding-right: 32px;
    padding-right: 2rem;
  }
  .p-privacy__inner {
    max-width: 1086px;
    max-width: 67.875rem;
    padding-bottom: 240px;
    padding-bottom: 15rem;
    padding-top: 72px;
    padding-top: 4.5rem;
  }
  .p-privacy__list {
    margin-top: 42px;
    margin-top: 2.625rem;
  }
  .p-privacy__heading {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-privacy__address {
    margin-top: 30px;
    margin-top: 1.875rem;
  }
  .p-privacy__end {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-sidebar {
    left: 0;
    position: sticky;
    top: 140px;
    top: 8.75rem;
  }
  .p-sidebar--price {
    margin-top: 6px;
    margin-top: 0.375rem;
    width: 188px;
    width: 11.75rem;
  }
  .p-sidebar--faq {
    margin-top: 6px;
    margin-top: 0.375rem;
    min-width: 120px;
    width: 171px;
    width: 10.6875rem;
  }
  .p-sidebar__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-sidebar__link.is-active {
    background: linear-gradient(99deg, #bf8150 0%, #f3c27e 28%, #c59454 100%);
    color: #fff;
  }
  .p-single-case__inner {
    max-width: 1086px;
    max-width: 67.875rem;
    padding-bottom: 0;
  }
  .p-single-case__head {
    gap: 6px;
    gap: 0.375rem;
    margin-top: 76px;
    margin-top: 4.75rem;
  }
  .p-single-case__meta {
    gap: 16px;
    gap: 1rem;
  }
  .p-single-case__cateList {
    gap: 16px;
    gap: 1rem;
  }
  .p-single-case__title {
    font-size: max(26px, 10px);
    font-size: max(1.625rem, 10px);
  }
  .p-single-case__content {
    margin-top: 34px;
    margin-top: 2.125rem;
    padding-bottom: 98px;
    padding-bottom: 6.125rem;
  }
  .p-single-case__middle {
    padding-top: 102px;
    padding-top: 6.375rem;
  }
  .p-single-case__middle::after {
    background: transparent url(../images/case/bg-img.png) no-repeat center top/cover;
    background: transparent url(../images/case/bg-img.webp) no-repeat center top/cover;
  }
  .p-single-case__others-list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 28px;
    margin-top: 1.75rem;
  }
  .p-single-case__btn {
    padding-bottom: 118px;
    padding-bottom: 7.375rem;
    padding-top: 118px;
    padding-top: 7.375rem;
  }
  .p-single-case__bottom {
    padding-bottom: 144px;
    padding-bottom: 9rem;
    padding-top: 86px;
    padding-top: 5.375rem;
  }
  .p-single-menu .c-page-title__ja {
    font-size: 45px;
    font-size: 2.8125rem;
  }
  .p-single-menu__inner {
    max-width: 1086px;
    max-width: 67.875rem;
    padding-bottom: 0;
  }
  .p-single-menu__content {
    margin-top: 10px;
    margin-top: 0.625rem;
    padding-bottom: 98px;
    padding-bottom: 6.125rem;
  }
  .p-single-menu__middle {
    padding-bottom: 114px;
    padding-bottom: 7.125rem;
    padding-top: 30px;
    padding-top: 1.875rem;
  }
  .p-single-menu__bottom {
    padding-bottom: 144px;
    padding-bottom: 9rem;
    padding-top: 90px;
    padding-top: 5.625rem;
  }
  .p-single-menu__bottom::after {
    background: transparent url(../images/menu/bg-explanation.png) no-repeat center center/cover;
    background: transparent url(../images/menu/bg-explanation.webp) no-repeat center center/cover;
  }
  .p-single__inner {
    max-width: 1086px;
    max-width: 67.875rem;
    padding-bottom: 144px;
    padding-bottom: 9rem;
  }
  .p-single__head {
    gap: 6px;
    gap: 0.375rem;
    margin-top: 76px;
    margin-top: 4.75rem;
  }
  .p-single__meta {
    gap: 16px;
    gap: 1rem;
  }
  .p-single__cateList {
    gap: 16px;
    gap: 1rem;
  }
  .p-single__date {
    margin-top: 2px;
    margin-top: 0.125rem;
  }
  .p-single__title {
    font-size: max(26px, 10px);
    font-size: max(1.625rem, 10px);
  }
  .p-single__content {
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-single__bottom {
    padding-top: 108px;
    padding-top: 6.75rem;
  }
  .p-top-about {
    padding-bottom: 210px;
    padding-bottom: 13.125rem;
    padding-top: 120px;
    padding-top: 7.5rem;
  }
  .p-top-about__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 120px;
    gap: 7.5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 1190px;
    max-width: 74.375rem;
  }
  .p-top-about__img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 0;
  }
  .p-top-about__img img {
    width: 506px;
    width: 31.625rem;
  }
  .p-top-about__btn {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
  .p-top-card__title {
    height: 2lh;
  }
  .p-top-case {
    padding-bottom: 92px;
    padding-bottom: 5.75rem;
    padding-top: 115px;
    padding-top: 7.1875rem;
  }
  .p-top-case__list {
    margin-top: 32px;
    margin-top: 2rem;
    max-width: 1036px;
    max-width: 64.75rem;
    padding-left: 0;
    padding-right: 0;
  }
  .p-top-case__card-link {
    padding: 24px 32px;
    padding: 1.5rem 2rem;
  }
  .p-top-case__card-row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px;
    gap: 2.5rem;
  }
  .p-top-case__card-head {
    margin-top: 0;
    width: 153px;
    width: 9.5625rem;
  }
  .p-top-case__card-img {
    aspect-ratio: 153/191;
  }
  .p-top-case__card-meta {
    gap: 4px 32px;
    gap: 0.25rem 2rem;
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
    margin-top: 1.25rem;
  }
  .p-top-case__empty.c-coming-text {
    margin-top: 32px;
    margin-top: 2rem;
  }
  .p-top-case__arrow {
    right: 32px;
    right: 2rem;
  }
  .p-top-faq {
    padding-bottom: 96px;
    padding-bottom: 6rem;
  }
  .p-top-faq__inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 1036px;
    max-width: 64.75rem;
    padding-top: 82px;
    padding-top: 5.125rem;
  }
  .p-top-faq__list {
    margin-top: 36px;
    margin-top: 2.25rem;
    max-width: 1036px;
    max-width: 64.75rem;
  }
  .p-top-features {
    padding-bottom: 88px;
    padding-bottom: 5.5rem;
    padding-top: 50px;
    padding-top: 3.125rem;
  }
  .p-top-features__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 874px;
    max-width: 54.625rem;
  }
  .p-top-features__body {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    max-width: 361px;
    max-width: 22.5625rem;
  }
  .p-top-features__text {
    margin-top: 65px;
    margin-top: 4.0625rem;
  }
  .p-top-features__img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 20px;
    margin-top: 1.25rem;
    width: 377px;
    width: 23.5625rem;
  }
  .p-top-menu {
    padding: 110px 0 120px;
    padding: 6.875rem 0 7.5rem;
  }
  .p-top-menu__inner {
    -ms-flex-line-pack: start;
        align-content: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 96px;
    gap: 6rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 1248px;
    max-width: 78rem;
  }
  .p-top-menu__body {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-top: 8px;
    padding-top: 0.5rem;
    width: 622px;
    width: 38.875rem;
  }
  .p-top-menu__list {
    margin-top: 140px;
    margin-top: 8.75rem;
  }
  .p-top-menu__empty.c-coming-text {
    margin-top: 140px;
    margin-top: 8.75rem;
  }
  .p-top-menu__link {
    padding-bottom: 25px;
    padding-bottom: 1.5625rem;
    padding-top: 25px;
    padding-top: 1.5625rem;
  }
  .p-top-menu__img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 0;
    width: 530px;
    width: 33.125rem;
  }
  .p-top-mv {
    background: url(../images/common/main_bg.png) no-repeat center top/100%;
    background: url(../images/common/main_bg.webp) no-repeat center top/100%;
    padding-top: 8.8888888889vw;
  }
  .p-top-mv::after {
    aspect-ratio: 1440/690;
    background-image: url(../images/top/mv_img.png);
    margin-top: -150px;
    margin-top: -9.375rem;
  }
  .p-top-mv__logo {
    aspect-ratio: 956/161;
    margin-left: auto;
    margin-right: auto;
    max-width: 956px;
    max-width: 59.75rem;
    padding-left: 0;
    padding-right: 0;
  }
  .p-top-mv__title {
    font-size: 26px;
    font-size: 1.625rem;
    line-height: normal;
    line-height: initial;
    margin-left: auto;
    margin-right: auto;
    margin-top: 45px;
    margin-top: 2.8125rem;
    max-width: 956px;
    max-width: 59.75rem;
    padding-left: 0;
    padding-right: 0;
  }
  .p-top-news {
    padding-bottom: 150px;
    padding-bottom: 9.375rem;
    padding-top: 80px;
    padding-top: 5rem;
  }
  .p-top-news__btn {
    margin-bottom: 10px;
    margin-bottom: 0.625rem;
  }
  .p-top-news__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    gap: 1.5rem;
    margin-top: 22px;
    margin-top: 1.375rem;
    padding-left: 0;
    padding-right: 0;
  }
  .p-top-news__group {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 912px;
    width: 57rem;
  }
  .p-top-news__group--closed {
    border-top: none;
    margin-top: 0;
    padding-left: 0;
    padding-top: 0;
    width: 312px;
    width: 19.5rem;
  }
  .p-top-news__group--closed .p-top-news__group-title {
    padding-left: 24px;
    padding-left: 1.5rem;
  }
  .p-top-news__group--closed .p-top-news__list {
    border-left: 0.5px solid #3d3836;
    padding-left: 24px;
    padding-left: 1.5rem;
  }
  .p-top-news__group:not(.p-top-news__group--closed) .p-top-news__list {
    grid-gap: 1.5rem;
    display: grid;
    gap: 24px;
    gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
  }
  .p-top-news__group:not(.p-top-news__group--closed) .p-top-news__item + .p-top-news__item {
    margin-top: 0;
  }
  .p-top__bg1 {
    background: url(../images/top/group_bg1.png) no-repeat center top/cover, #f8f8f8;
    background: url(../images/top/group_bg1.webp) no-repeat center top/cover, #f8f8f8;
  }
  .p-top__bg2 {
    background: url(../images/top/group_bg2.png) no-repeat center top/cover;
    background: url(../images/top/group_bg2.webp) no-repeat center top/cover;
  }
  .p-top .c-btn02:hover .c-btn02__icon,
  .p-top .c-btn02:active .c-btn02__icon {
    border-color: transparent;
  }
  .u-pc {
    display: block;
  }
  .u-sp {
    display: none;
  }
}

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

@media (hover: hover){
  a:hover {
    opacity: 0.6;
  }
}

@media (hover: none){
  a:active {
    opacity: 0.6;
  }
  .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){
  .c-faq__summary--page:hover .c-faq__question {
    color: #d6a86e;
  }
  .p-cta__button:hover {
    color: #3d3836;
    opacity: 1;
  }
  .p-cta__button:hover::before {
    background-color: #3d3836;
  }
  .p-fixed__top:hover {
    opacity: 0.8;
  }
  .p-fixed__button:hover {
    opacity: 0.8;
  }
  .p-footer__data a:hover {
    color: #d6a86e;
    opacity: 1;
  }
  .p-footer__menu-item a:hover {
    color: #d6a86e;
    opacity: 1;
  }
  .p-footer__nav-item a:hover {
    color: #d6a86e;
    opacity: 1;
  }
  .p-footer__link:hover {
    color: #d6a86e;
    opacity: 1;
  }
  .p-footer__link:hover::after {
    background-color: #d6a86e;
  }
  .p-header__reserve:hover {
    border-color: #3d3836;
    color: #3d3836;
    opacity: 1;
  }
  .p-header__reserve:hover::before {
    opacity: 0;
  }
  .p-header__reserve:hover::after {
    background-color: #3d3836;
  }
  .p-header__pc-nav-item a:hover {
    color: #d6a86e;
    opacity: 1;
  }
  .p-privacy__link-item a:hover {
    color: #d6a86e;
    opacity: 1;
  }
  .p-top-card__link:hover {
    opacity: 1;
  }
  .p-top-menu__link:hover {
    color: #fff;
    opacity: 1;
  }
  .p-top-menu__link:hover::before {
    opacity: 1;
  }
  .p-top-menu__link:hover::after {
    -webkit-mask-image: url("../images/common/arrow-menu_wht.svg");
    background-color: #fff;
    mask-image: url("../images/common/arrow-menu_wht.svg");
    width: 34px;
    width: 2.125rem;
  }
}
/*# sourceMappingURL=style.css.map */
