@charset "UTF-8";
*,
*::before,
*::after {
  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]) {
  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;
}
@media (max-width: 1298px) {
  html {
    font-size: 1.2326656394vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 4.1025641026vw;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: initial;
  }
}

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

/* hover指定できるPCを想定したスタイル */
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
/* hoverが使えないタッチ端末を想定した装飾 */
@media (hover: none) {
  a:active {
    opacity: 0.7;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  background: linear-gradient(180deg, #fbf8f4 90.39%, #f1e8dd 100%);
  color: #424242;
  display: flex;
  flex-direction: column;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

main {
  flex: 1;
}

summary {
  display: block;
}

summary::-webkit-details-marker {
  display: none;
}

/* アコーディオンメニュー開閉時のフォーカスアウトラインを削除 */
summary:focus,
summary:focus-visible {
  outline: none;
}

.p-accordion__menu:focus,
.p-accordion__menu:focus-visible {
  outline: none;
}

.l-about-main {
  overflow: hidden;
}

.l-bg-white {
  background-color: #fff;
  padding-bottom: 129px;
  padding-bottom: 8.0625rem;
  padding-top: 120px;
  padding-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .l-bg-white {
    border-radius: 264.5px;
    background: var(--background-50, #FEFDFB);
    padding-bottom: 90px;
    padding-bottom: 9rem;
    padding-top: 71px;
    padding-top: 4.4375rem;
  }
}

.l-breadcrumb {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .l-breadcrumb {
    margin-top: 58px;
    margin-top: 3.625rem;
  }
}

.l-drawer {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-drawer {
    bottom: 0;
    display: block;
    left: 0;
    overflow: auto;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: all 0.3s ease-out;
    z-index: 100;
  }
}

.l-drawer[aria-hidden=false] {
  display: block;
  transform: translateX(0);
}

.l-header {
  bottom: auto;
  height: 80px;
  height: 5rem;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 56px;
    height: 3.5rem;
  }
}

.l-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1036px;
  max-width: 64.75rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 572px;
    max-width: 35.75rem;
    padding-left: 16px;
    padding-left: 1rem;
    padding-right: 16px;
    padding-right: 1rem;
  }
}

.l-lower {
  padding-top: 80px;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .l-lower {
    padding-top: 56px;
    padding-top: 3.5rem;
  }
}

.c-arrow {
  -webkit-mask-image: url(../images/common/icon-arrow-top.svg);
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  display: block;
          mask-image: url(../images/common/icon-arrow-top.svg);
          mask-position: center;
          mask-repeat: no-repeat;
          mask-size: cover;
  transition: transform 0.3s ease-in-out;
}

/* パンくずリスト */
.c-breadcrumb {
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  padding-top: 10px;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    padding-bottom: 8px;
    padding-bottom: 0.5rem;
    padding-top: 8px;
    padding-top: 0.5rem;
  }
}

.c-breadcrumb__inner.l-inner {
  max-width: 1430px;
  max-width: 89.375rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__inner.l-inner {
    padding-left: 16px;
    padding-left: 1rem;
    padding-right: 16px;
    padding-right: 1rem;
  }
}

.c-breadcrumb__nav {
  -ms-overflow-style: none;
  overflow: auto;
  scrollbar-width: none;
}

.c-breadcrumb__nav::-webkit-scrollbar {
  display: none;
}

.c-breadcrumb__nav ol {
  display: flex;
}

.c-breadcrumb__nav li {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 16px;
  gap: 1rem;
}

.c-breadcrumb__nav li + li {
  margin-left: 16px;
  margin-left: 1rem;
}

.c-breadcrumb__nav li:not(:last-child)::after {
  color: #8D7C66;
  content: "/";
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
}

.c-breadcrumb__nav a {
  color: #b4b4b4;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.c-breadcrumb__nav li:last-child > a,
.c-breadcrumb__nav li:last-child > span {
  color: #8D7C66;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  letter-spacing: 0.04em;
  line-height: 1.8;
  pointer-events: none;
}

@media (any-hover: hover) {
  .c-breadcrumb__nav li:last-child > a:hover {
    opacity: 1;
  }
}
.c-button1 {
  align-items: center;
  background-color: #AFA394;
  border-radius: 100vmax;
  color: #fff;
  display: inline-flex;
  font-family: "Noto Serif JP", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 500;
  justify-content: center;
  letter-spacing: 0.04em;
  line-height: 1;
  min-height: 96px;
  min-height: 6rem;
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
  text-align: center;
  transition: background-color 0.3s ease-out;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-button1 {
    min-height: 72px;
    min-height: 4.5rem;
    padding: 20px 16px;
    padding: 1.25rem 1rem;
  }
}

.c-button1--sm {
  background-color: #8D7C66;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0;
  min-height: 48px;
  min-height: 3rem;
  padding: 11.7px 16px;
  padding: 0.73125rem 1rem;
}

.c-button1 span {
  display: inline-block;
}

.c-button1--web span {
  background: url(../images/common/icon-calendar.svg) no-repeat center center/contain;
  height: 23px;
  height: 1.4375rem;
  margin-right: 16px;
  margin-right: 1rem;
  width: 27px;
  width: 1.6875rem;
}

.c-button1--sm.c-button1--web span {
  margin-right: 12px;
  margin-right: 0.75rem;
}

.c-button1--phone span {
  background: url(../images/common/icon-phone.svg) no-repeat center center/contain;
  height: 20px;
  height: 1.25rem;
  margin-right: 16px;
  margin-right: 1rem;
  width: 20px;
  width: 1.25rem;
}

.c-button1--line span {
  background-image: url(../images/common/icon-line.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 20px;
  height: 1.25rem;
  margin-right: 16px;
  margin-right: 1rem;
  width: 21px;
  width: 1.3125rem;
}

@media (any-hover: hover) {
  .c-button1:hover {
    background-color: #8D7C66;
    opacity: 1;
  }
  .c-button1--sm:hover {
    background-color: #4B3C28;
  }
}
.c-fixed-button {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-fixed-button {
    bottom: 0;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 100;
  }
}

body.is-drawerActive .c-fixed-button {
  display: none;
}

@media screen and (max-width: 767px) {
  .c-fixed-button__link {
    align-items: center;
    background-color: #8D7C66;
    box-shadow: 0.25rem 0.25rem 0.375rem rgba(0, 0, 0, 0.1);
    color: #fff;
    display: flex;
    font-family: "Noto Serif JP", serif;
    font-size: max(20px, 10px);
    font-size: max(1.25rem, 10px);
    font-weight: 400;
    justify-content: center;
    line-height: 1;
    padding: 16.5px 20px;
    padding: 1.03125rem 1.25rem;
    text-align: center;
    text-transform: uppercase;
    transition: color 0.3s ease-out, background-color 0.3s ease-out;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .c-fixed-button__icon {
    background: url(../images/common/icon-calendar.svg) no-repeat center center/contain;
    display: inline-block;
    height: 23px;
    height: 1.4375rem;
    margin-right: 16px;
    margin-right: 1rem;
    transition: background-image 0.3s ease-out;
    width: 27px;
    width: 1.6875rem;
  }
}

@media (any-hover: hover) {
  .c-fixed-button__link:hover {
    background-color: #fff;
    color: #424242;
    opacity: 1;
  }
  .c-fixed-button__link:hover .c-fixed-button__icon {
    background: url(../images/common/icon-calendar-reverse.svg) no-repeat center center/contain;
  }
}
.c-link {
  -moz-column-gap: 0.9375rem;
  align-items: center;
       column-gap: 0.9375rem;
  display: inline-flex;
  font-family: "Bellefair", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  position: relative;
  text-transform: uppercase;
}

.c-link::after {
  -webkit-mask-image: url(../images/common/icon-arrow.svg);
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  background-color: #424242;
  content: "";
  display: block;
  height: 6px;
  height: 0.375rem;
          mask-image: url(../images/common/icon-arrow.svg);
          mask-position: center;
          mask-repeat: no-repeat;
          mask-size: cover;
  width: 16px;
  width: 1rem;
}

.c-link1 {
  -moz-column-gap: 1rem;
  align-items: center;
       column-gap: 1rem;
  display: inline-flex;
  font-family: "Bellefair", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  letter-spacing: 0.04em;
  line-height: 1.146;
  padding: 12px 24px;
  padding: 0.75rem 1.5rem;
  text-transform: uppercase;
}

.c-link1--reverse {
  flex-direction: row-reverse;
}

.c-link1__text {
  font-family: "Bellefair", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.c-link1__icon {
  background: currentColor;
  color: #424242;
  display: inline-block;
  height: 1px;
  height: 0.0625rem;
  line-height: 1;
  position: relative;
  transition: width 0.3s ease;
  vertical-align: middle;
  width: 16px;
  width: 1rem;
}

.c-link1__icon::before {
  border: 1px solid currentColor;
  border: 0.0625rem solid currentColor;
  border-bottom: 0;
  border-left: 0;
  box-sizing: border-box;
  content: "";
  height: 6px;
  height: 0.375rem;
  position: absolute;
  right: -0.05em;
  top: 48%;
  transform: rotate(45deg);
  transform-origin: top right;
  width: 6px;
  width: 0.375rem;
}
@media screen and (max-width: 767px) {
  .c-link1__icon::before {
    top: 10%;
  }
}

.c-link1--reverse .c-link1__icon::before {
  left: 0.3em;
  right: auto;
  top: 0;
  transform: rotate(-135deg);
  transform-origin: left;
}

@media (any-hover: hover) {
  .c-link1:hover {
    opacity: 1;
  }
  .c-link1:hover .c-link1__icon {
    width: 26px;
    width: 1.625rem;
  }
}
.c-menu-button {
  aspect-ratio: 1/1;
  height: auto;
  padding: 0;
  position: relative;
  width: 32px;
  width: 2rem;
}

.c-menu-button::before {
  background-color: #424242;
  content: "";
  height: 1px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  width: 20px;
  width: 1.25rem;
}

.c-menu-button span {
  background-color: transparent;
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
  width: 32px;
  width: 2rem;
}

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

.c-menu-button span::before {
  right: 0;
  transform: translateY(-0.625rem);
  width: 32px;
  width: 2rem;
}

.c-menu-button span::after {
  right: 0;
  transform: translateY(0.625rem);
  width: 26px;
  width: 1.625rem;
}

/* ドロワーメニュー展開時 */
.c-menu-button[aria-expanded=true]:before {
  background-color: transparent;
}

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

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

.c-page-top {
  bottom: 40px;
  bottom: 2.5rem;
  cursor: pointer;
  display: inline-block;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 43px;
  right: 2.6875rem;
  transition: opacity 0.3s ease-out, pointer-events 0.3s ease-out, transform 0.3s ease-out;
  z-index: 900;
}
@media screen and (max-width: 767px) {
  .c-page-top {
    bottom: 76px;
    bottom: 4.75rem;
    right: 8px;
    right: 0.5rem;
  }
}

.c-page-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.c-page-top.js-pageTop.is-visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

body.is-drawerActive .c-page-top.js-pageTop.is-visible {
  opacity: 0;
  pointer-events: none;
}

.c-page-top__btn {
  -webkit-mask-image: url("../images/common/page-top.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #424242;
  height: 132px;
  height: 8.25rem;
  mask-image: url("../images/common/page-top.png");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  transition: background-color 0.3s ease-out;
  width: 12px;
  width: 0.75rem;
}
@media screen and (max-width: 767px) {
  .c-page-top__btn {
    -webkit-mask-image: none;
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    height: 48px;
    height: 3rem;
    justify-content: center;
    mask-image: none;
    width: 48px;
    width: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .c-page-top__btn::before {
    -webkit-mask-image: url("../images/common/page-top_sp.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    background-color: #424242;
    content: "";
    display: inline-block;
    height: 16px;
    height: 1rem;
    mask-image: url("../images/common/page-top_sp.svg");
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    transition: background-color 0.3s ease-out;
    width: 3px;
    width: 0.1875rem;
  }
}

@media (any-hover: hover) {
  .c-page-top:hover {
    transform: scale(1.05);
  }
  .c-page-top:hover .c-page-top__btn {
    background-color: #8D7C66;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .c-page-top:hover .c-page-top__btn::before {
    background-color: #fff;
  }
}
.c-section-group {
  align-items: center;
  display: inline-flex;
  flex-direction: column-reverse;
  margin-top: 150px;
}

.c-title-ja1 {
  font-family: "Noto Serif JP", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  letter-spacing: 0.04em;
}

.c-title1 {
  font-family: "Bellefair", serif;
  font-size: max(56px, 10px);
  font-size: max(3.5rem, 10px);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-title1 {
    font-size: max(42px, 10px);
    font-size: max(2.625rem, 10px);
  }
}

.c-title1--left {
  text-align: left;
}

.c-title2 {
  align-items: center;
  display: flex;
  font-family: "Noto Serif JP", serif;
  font-size: max(22px, 10px);
  font-size: max(1.375rem, 10px);
  font-weight: 500;
  gap: 16px;
  gap: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.6em;
}

.c-title2::before {
  background-color: #d1cbc2;
  border-radius: 50%;
  content: "";
  display: inline-block;
  flex-shrink: 0;
  height: 12px;
  height: 0.75rem;
  width: 12px;
  width: 0.75rem;
}
@media screen and (max-width: 767px) {
  .c-title2::before {
    margin-top: 3px;
    margin-top: 0.1875rem;
  }
}

.c-title3 {
  font-family: "Noto Serif JP", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.p-404 {
  padding-bottom: 185px;
  padding-bottom: 11.5625rem;
  padding-top: 240px;
  padding-top: 15rem;
}
@media screen and (max-width: 767px) {
  .p-404 {
    padding-bottom: 83px;
    padding-bottom: 5.1875rem;
    padding-top: 130px;
    padding-top: 8.125rem;
  }
}

.p-404__wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 29px;
  gap: 1.8125rem;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-404__wrapper {
    gap: 30px;
    gap: 1.875rem;
  }
}

.p-404__header {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.p-404__title {
  font-family: "Bellefair", serif;
  font-size: max(200px, 10px);
  font-size: max(12.5rem, 10px);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-404__title {
    font-size: max(120px, 10px);
    font-size: max(7.5rem, 10px);
  }
}

.p-404__subtitle {
  font-family: "Bellefair", serif;
  font-size: max(28px, 10px);
  font-size: max(1.75rem, 10px);
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin: 0;
  margin-top: -28px;
  margin-top: -1.75rem;
}
@media screen and (max-width: 767px) {
  .p-404__subtitle {
    font-size: max(20px, 10px);
    font-size: max(1.25rem, 10px);
    margin-top: -15px;
    margin-top: -0.9375rem;
  }
}

.p-404__content {
  max-width: 650px;
  max-width: 40.625rem;
  width: 100%;
}

.p-404__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.2;
  margin: 0;
}

.p-404__nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 75px;
  top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .p-404__nav {
    align-items: flex-start;
    position: static;
  }
}

.p-404__nav-left,
.p-404__nav-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .p-404__nav-left,
  .p-404__nav-right {
    gap: 0;
  }
}

.p-404__nav-link {
  font-family: "Bellefair", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  line-height: 1.146;
  padding: 16px;
  padding: 1rem;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-404__nav-link {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    padding: 13px 25px;
    padding: 0.8125rem 1.5625rem;
  }
}

.p-404__nav-left .p-404__nav-link {
  padding: 16px 16px 16px 35px;
  padding: 1rem 1rem 1rem 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-404__nav-left .p-404__nav-link {
    padding: 13px 25px;
    padding: 0.8125rem 1.5625rem;
  }
}

.p-404__link-wrap {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-404__link-wrap {
    margin-top: -10px;
    margin-top: -0.625rem;
  }
}

.p-about-access {
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
  padding-top: 90px;
  padding-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-about-access {
    padding-bottom: 63px;
    padding-bottom: 3.9375rem;
    padding-top: 35px;
    padding-top: 2.1875rem;
  }
}

.p-about-access__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1298px;
  max-width: 81.125rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-about-access__inner {
    max-width: 572px;
    max-width: 35.75rem;
    padding-left: 16px;
    padding-left: 1rem;
    padding-right: 16px;
    padding-right: 1rem;
  }
}

.p-about-access__wrapper {
  display: flex;
  gap: 59px;
  gap: 3.6875rem;
}
@media screen and (max-width: 767px) {
  .p-about-access__wrapper {
    flex-direction: column;
    gap: 40px;
    gap: 2.5rem;
  }
}

.p-about-access__text-block {
  width: 585px;
  width: 36.5625rem;
}
@media screen and (max-width: 767px) {
  .p-about-access__text-block {
    width: 100%;
  }
}

.p-about-access__title {
  text-align: left;
}

.p-about-access__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  gap: 1.5625rem;
  margin-top: 47px;
  margin-top: 2.9375rem;
}
@media screen and (max-width: 767px) {
  .p-about-access__list {
    gap: 7px;
    gap: 0.4375rem;
    margin-top: 26px;
    margin-top: 1.625rem;
  }
}

.p-about-access__item {
  align-items: flex-start;
  display: flex;
  gap: 24px;
  gap: 1.5rem;
}
.p-about-access__sub-title {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.04em;
  line-height: 1.8;
  max-width: 80px;
  max-width: 5rem;
  width: 100%;
}

.p-about-access__detail {
  flex: 1;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.p-about-access__map {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-about-access__map {
    margin-top: 0;
  }
}

.p-about-access__map iframe {
  -o-object-fit: cover;
  aspect-ratio: 604/296;
  height: auto;
     object-fit: cover;
  width: 604px;
  width: 37.75rem;
}
@media screen and (max-width: 767px) {
  .p-about-access__map iframe {
    aspect-ratio: 358/240;
    width: 100%;
  }
}

.p-about-concept {
  position: relative;
}

.p-about-concept::before {
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
  content: "";
  height: auto;
  left: -180px;
  left: -11.25rem;
  position: absolute;
  top: 0;
  width: 76.3888888889vw;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-about-concept::before {
    left: 50%;
    transform: translateX(-50%);
    width: 166.6666666667vw;
  }
}

.p-about-concept__wrapper {
  align-items: center;
  display: flex;
  gap: 7.6121794872%;
  padding-bottom: 125px;
  padding-bottom: 7.8125rem;
  padding-top: 125px;
  padding-top: 7.8125rem;
}
@media screen and (max-width: 767px) {
  .p-about-concept__wrapper {
    flex-direction: column;
    gap: 33px;
    gap: 2.0625rem;
    padding-bottom: 71px;
    padding-bottom: 4.4375rem;
    padding-top: 62px;
    padding-top: 3.875rem;
  }
}

.p-about-concept__text-block {
  flex-shrink: 0;
  width: 565px;
  width: 35.3125rem;
}
@media screen and (max-width: 767px) {
  .p-about-concept__text-block {
    width: 100%;
  }
}

.p-about-concept__title {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-about-concept__title {
    text-align: center;
  }
}

.p-about-concept__text {
  font-feature-settings: "palt";
  font-family: "Noto Serif JP", serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2.8;
  margin-top: 63px;
  margin-top: 3.9375rem;
}
@media screen and (max-width: 767px) {
  .p-about-concept__text {
    margin-top: 18px;
    margin-top: 1.125rem;
    text-align: center;
  }
}

.p-about-concept__image {
  flex: 1;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .p-about-concept__image {
    margin-right: 0;
  }
}

.p-about-concept__image img {
  -o-object-fit: cover;
  aspect-ratio: 680/560;
  border-bottom-left-radius: 5px;
  border-bottom-left-radius: 0.3125rem;
  border-top-left-radius: 5px;
  border-top-left-radius: 0.3125rem;
  height: auto;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-about-concept__image img {
    aspect-ratio: 358/280;
  }
}

.p-about-interior {
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  padding-top: 120px;
  padding-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-about-interior {
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
    padding-top: 65px;
    padding-top: 4.0625rem;
  }
}

.p-about-interior__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1378px;
  max-width: 86.125rem;
  padding-left: 65px;
  padding-left: 4.0625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-about-interior__inner {
    max-width: 572px;
    max-width: 35.75rem;
    padding-left: 16px;
    padding-left: 1rem;
    padding-right: 16px;
    padding-right: 1rem;
  }
}

.p-about-interior__wrapper {
  display: flex;
  flex-direction: row;
  gap: 125px;
  gap: 7.8125rem;
}
@media screen and (max-width: 767px) {
  .p-about-interior__wrapper {
    flex-direction: column;
    gap: 28px;
    gap: 1.75rem;
  }
}

.p-about-interior__text-block {
  width: 411px;
  width: 25.6875rem;
}
@media screen and (max-width: 767px) {
  .p-about-interior__text-block {
    width: 100%;
  }
}

.p-about-interior__title {
  text-align: left;
}

.p-about-interior__catch {
  font-family: "Noto Serif JP", serif;
  font-size: max(22px, 10px);
  font-size: max(1.375rem, 10px);
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-top: 77px;
  margin-top: 4.8125rem;
}
@media screen and (max-width: 767px) {
  .p-about-interior__catch {
    margin-top: 21px;
    margin-top: 1.3125rem;
  }
}

.p-about-interior__text {
  font-family: "Noto Serif JP", serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2;
  margin-top: 28px;
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-about-interior__text {
    margin-top: 12px;
    margin-top: 0.75rem;
  }
}

.p-about-interior__swiper {
  margin-top: 10px;
  margin-top: 0.625rem;
  overflow: hidden;
  position: relative;
  width: 752px;
  width: 47rem;
}
@media screen and (max-width: 767px) {
  .p-about-interior__swiper {
    width: 100%;
  }
}

.p-about-interior__slider {
  position: relative;
}

.p-about-interior__button-prev,
.p-about-interior__button-next {
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  height: 48px;
  height: 3rem;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  width: 3rem;
}
@media screen and (max-width: 767px) {
  .p-about-interior__button-prev,
  .p-about-interior__button-next {
    top: 55%;
  }
}

.p-about-interior__button-prev {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-about-interior__button-prev {
    display: flex;
    left: -15px;
    left: -0.9375rem;
  }
}

.p-about-interior__button-next {
  right: 53px;
  right: 3.3125rem;
}
@media screen and (max-width: 767px) {
  .p-about-interior__button-next {
    right: -15px;
    right: -0.9375rem;
  }
}

.swiper-button-prev::after,
.swiper-button-next::after {
  -webkit-mask-image: url(../images/common/icon-arrow-top.svg);
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  background-color: #424242;
  content: "";
  height: 8px;
  height: 0.5rem;
  margin: auto;
          mask-image: url(../images/common/icon-arrow-top.svg);
          mask-position: center;
          mask-repeat: no-repeat;
          mask-size: contain;
  width: 16px;
  width: 1rem;
}

.swiper-button-prev::after {
  transform: rotate(-90deg);
}

.swiper-button-next::after {
  transform: rotate(90deg);
}

.p-about-interior__image img {
  -o-object-fit: cover;
  aspect-ratio: 360/288;
  height: auto;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-about-interior__image img {
    aspect-ratio: 358/280;
  }
}

.p-about-interior__meta {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-about-interior__number {
  font-family: "Bellefair", serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0;
}

.p-about-interior__place {
  font-family: "Noto Serif JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0;
}

.p-about-mv {
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
  padding-top: 85px;
  padding-top: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .p-about-mv {
    padding-bottom: 66px;
    padding-bottom: 4.125rem;
    padding-top: 66px;
    padding-top: 4.125rem;
  }
}

.p-about-mv__title-group {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
  gap: 0.3125rem;
  justify-content: center;
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-about-mv__title-group {
    gap: 1px;
    gap: 0.0625rem;
    padding-left: 16px;
    padding-left: 1rem;
    padding-right: 16px;
    padding-right: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .p-about-promises__inner {
    padding-left: 16px;
    padding-left: 1rem;
    padding-right: 16px;
    padding-right: 1rem;
  }
}

.p-about-promises__wrapper {
  background-color: #F8F3EE;
  border-radius: 0.3125rem;
  padding: 62px 124px 70px;
  padding: 3.875rem 7.75rem 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-about-promises__wrapper {
    padding: 62px 0 70px;
    padding: 3.875rem 0 4.375rem;
  }
}

.p-about-promises__list {
  grid-gap: 50px;
  display: grid;
  gap: 50px;
  gap: 3.125rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 37px;
  margin-top: 2.3125rem;
}
@media screen and (max-width: 767px) {
  .p-about-promises__list {
    gap: 25px;
    gap: 1.5625rem;
    grid-template-columns: 1fr;
    margin-top: 36px;
    margin-top: 2.25rem;
  }
}

.p-about-promises__item {
  background-color: #fff;
  border-radius: 50%/35%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  gap: 0.9375rem;
  min-height: 400px;
  min-height: 25rem;
  padding: 110px 20px 50px;
  padding: 6.875rem 1.25rem 3.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about-promises__item {
    justify-content: center;
    min-height: 0;
    min-height: initial;
    padding: 25px;
    padding: 1.5625rem;
  }
}

@media screen and (max-width: 767px) {
  .p-about-promises__item:nth-child(odd) {
    aspect-ratio: 358/240;
    background-color: #fff;
    border-radius: 0 1000px 1000px 0/0 1000px 1000px 0;
    overflow: hidden;
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .p-about-promises__item:nth-child(even) {
    aspect-ratio: 358/240;
    background-color: #fff;
    border-radius: 1000px 0 0 1000px/1000px 0 0 1000px;
    overflow: hidden;
    text-align: right;
  }
}

.p-about-promises__sub-title {
  font-family: "Noto Serif JP", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-about-promises__sub-title {
    font-weight: 600;
    line-height: 1.6;
  }
}

.p-about-promises__text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 2;
}

.p-access {
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
  padding-top: 123px;
  padding-top: 7.6875rem;
}
@media screen and (max-width: 767px) {
  .p-access {
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
    padding-top: 65px;
    padding-top: 4.0625rem;
  }
}

.p-access__wrapper {
  display: flex;
  gap: 59px;
  gap: 3.6875rem;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-access__wrapper {
    flex-direction: column;
    gap: 45px;
    gap: 2.8125rem;
  }
}

.p-access__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 47px;
  gap: 2.9375rem;
}
@media screen and (max-width: 767px) {
  .p-access__content {
    gap: 24px;
    gap: 1.5rem;
  }
}

.p-access__info {
  width: 585px;
  width: 36.5625rem;
}
@media screen and (max-width: 767px) {
  .p-access__info {
    width: 100%;
  }
}

.p-access__list {
  display: flex;
  flex-direction: column;
  gap: 26.3px;
  gap: 1.64375rem;
}
@media screen and (max-width: 767px) {
  .p-access__list {
    gap: 10px;
    gap: 0.625rem;
  }
}

.p-access__item {
  align-items: flex-start;
  display: flex;
}
.p-access__title {
  color: #424242;
  flex-shrink: 0;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.04em;
  line-height: 1.8;
  width: 18.11%;
}
@media screen and (max-width: 767px) {
  .p-access__title {
    width: 29%;
  }
}

.p-access__detail {
  flex: 1;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.p-access__detail address {
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .p-access__detail address {
    line-height: 1.8;
  }
}

.p-access__detail .u-pc-only {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-access__detail .u-pc-only {
    display: none;
  }
}

.p-access__detail .u-sp-space {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-access__detail .u-sp-space {
    display: inline-block;
  }
}

.p-access__map {
  flex-shrink: 0;
  margin-top: 10px;
  margin-top: 0.625rem;
  width: 48.38%;
}
@media screen and (max-width: 767px) {
  .p-access__map {
    margin-top: 0;
    width: 100%;
  }
}

.p-access__map iframe {
  -o-object-fit: cover;
  aspect-ratio: 603.84/296;
  height: auto;
     object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-access__map iframe {
    aspect-ratio: 358/240;
  }
}

.p-accordion:not(:first-child) {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-accordion:not(:first-child) {
    margin-top: 16px;
    margin-top: 1rem;
  }
}

.p-accordion__details {
  border-radius: 0.625rem;
}

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

.p-accordion__menu {
  align-items: center;
  background-color: #BBB0A3;
  border-radius: 0.3125rem;
  color: #fff;
  cursor: pointer;
  display: flex;
  gap: 30px;
  gap: 1.875rem;
  padding: 24px 56px;
  padding: 1.5rem 3.5rem;
  transition: ease-in-out 0.3s;
}

.p-accordion__menu:focus,
.p-accordion__menu:focus-visible,
.p-accordion__menu:active {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

@media screen and (max-width: 767px) {
  .p-accordion__menu {
    padding: 13px 16px;
    padding: 0.8125rem 1rem;
  }
}

.p-accordion__menu-title {
  -moz-column-gap: 0.9375rem;
  align-items: flex-end;
  column-gap: 0.9375rem;
  display: flex;
  flex: 1;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .p-accordion__menu-title {
    display: block;
  }
}

.p-accordion__menu-title-en {
  font-family: "Bellefair", serif;
  font-size: max(40px, 10px);
  font-size: max(2.5rem, 10px);
  letter-spacing: 0.04em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-accordion__menu-title-en {
    display: block;
    font-size: max(30px, 10px);
    font-size: max(1.875rem, 10px);
    line-height: 1.2;
  }
}

@media screen and (max-width: 767px) {
  .p-accordion__menu-title-en--inline {
    display: inline;
  }
}

.p-accordion__menu-title-slash {
  font-family: "Noto Serif JP", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  letter-spacing: 0.04em;
}

.p-accordion__menu-title-ja {
  font-family: "Noto Serif JP", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-accordion__menu-title-ja {
    display: inline-block;
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    margin-left: 10px;
    margin-left: 0.625rem;
  }
}

.p-accordion__toggle-arrow {
  background-color: #fff;
  height: 16px;
  height: 1rem;
  width: 32px;
  width: 2rem;
}
@media screen and (max-width: 767px) {
  .p-accordion__toggle-arrow {
    height: 12px;
    height: 0.75rem;
    width: 24px;
    width: 1.5rem;
  }
}

/* is-openedクラスが付与されたときのスタイル */
details.is-opened .p-accordion__toggle-arrow {
  transform: rotate(180deg);
}

.p-accordion__detail {
  background-color: #fff;
  border-bottom-left-radius: 5px;
  border-bottom-left-radius: 0.3125rem;
  border-bottom-right-radius: 5px;
  border-bottom-right-radius: 0.3125rem;
  overflow: hidden;
}

.p-accordion__detail-list {
  padding-left: 50px;
  padding-left: 3.125rem;
  padding-right: 50px;
  padding-right: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-accordion__detail-list {
    padding-left: 16px;
    padding-left: 1rem;
    padding-right: 16px;
    padding-right: 1rem;
  }
}

.p-accordion__detail-item:not(:last-child) {
  border-bottom: 0.5px solid #424242;
}

.p-accordion__detail-link {
  align-items: center;
  cursor: pointer;
  display: grid;
  grid-template-columns: 18.75rem 30.625rem 1.5rem;
  justify-content: space-between;
  padding: 29px 20px;
  padding: 1.8125rem 1.25rem;
  transition: ease-in-out 0.3s;
}
@media screen and (max-width: 767px) {
  .p-accordion__detail-link {
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    display: flex;
    padding: 18px 0;
    padding: 1.125rem 0;
  }
}

.p-accordion__detail-text-block {
  display: contents;
}
@media screen and (max-width: 767px) {
  .p-accordion__detail-text-block {
    display: block;
  }
}

.p-accordion__detail-title {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: normal;
  letter-spacing: 0.04em;
  line-height: 1.8;
  width: 300px;
  width: 18.75rem;
}
@media screen and (max-width: 767px) {
  .p-accordion__detail-title {
    width: 100%;
  }
}

.p-accordion__detail-text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .p-accordion__detail-text {
    font-size: max(12px, 10px);
    font-size: max(0.75rem, 10px);
    line-height: 1.8;
    margin-top: 8px;
    margin-top: 0.5rem;
  }
}

.p-accordion__detail-arrow {
  background-color: #424242;
  height: 12px;
  height: 0.75rem;
  transform: rotate(90deg);
  width: 24px;
  width: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-accordion__detail-arrow {
    flex-shrink: 0;
    height: 6px;
    height: 0.375rem;
    width: 12px;
    width: 0.75rem;
  }
}

@media (hover: hover) {
  .p-accordion__menu:hover {
    background-color: #8D7C66;
  }
}
.p-accordion2__details {
  padding-bottom: 34px;
  padding-bottom: 2.125rem;
  padding-top: 30px;
  padding-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-accordion2__details {
    padding-bottom: 24px;
    padding-bottom: 1.5rem;
    padding-top: 24px;
    padding-top: 1.5rem;
  }
}

.p-accordion2--lower .p-accordion2__details {
  padding: 40px 48px 40px;
  padding: 2.5rem 3rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-accordion2--lower .p-accordion2__details {
    padding: 30px 16px 33px;
    padding: 1.875rem 1rem 2.0625rem;
  }
}

details.is-opened.p-accordion2__details {
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  details.is-opened.p-accordion2__details {
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
  }
}

.p-accordion2--lower details.is-opened.p-accordion2__details {
  background-color: #fff;
  padding-bottom: 33px;
  padding-bottom: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .p-accordion2--lower details.is-opened.p-accordion2__details {
    padding-bottom: 30px;
    padding-bottom: 1.875rem;
  }
}

.p-accordion2__details + .p-accordion2__details {
  border-top: 0.5px solid #424242;
  border-top: 0.03125rem solid #424242;
}

.p-accordion2__question {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-accordion2__question {
    gap: 22px;
    gap: 1.375rem;
  }
}

.p-accordion2--lower .p-accordion2__question {
  gap: 32px;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-accordion2--lower .p-accordion2__question {
    gap: 14px;
    gap: 0.875rem;
  }
}

.p-accordion2__question-icon,
.p-accordion2__answer-icon {
  align-items: center;
  border-radius: 50%;
  display: flex;
  font-family: "Bellefair", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  height: 32px;
  height: 2rem;
  justify-content: center;
  line-height: 1;
  transition: transform 0.3s ease-in-out;
  width: 32px;
  width: 2rem;
}
@media screen and (max-width: 767px) {
  .p-accordion2__question-icon,
  .p-accordion2__answer-icon {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
}

.p-accordion2__question-icon {
  background-color: #AFA394;
  color: #fff;
}

.p-accordion2__answer-icon {
  background-color: #fff;
  border: 1px solid #AFA394;
  border: 0.0625rem solid #AFA394;
  color: #AFA394;
}
@media screen and (max-width: 767px) {
  .p-accordion2__answer-icon {
    margin-top: 10px;
    margin-top: 0.625rem;
  }
}

.p-accordion2--lower .p-accordion2__question-icon,
.p-accordion2--lower .p-accordion2__answer-icon {
  height: 48px;
  height: 3rem;
  width: 48px;
  width: 3rem;
}

.p-accordion2__question-text {
  flex: 1;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-accordion2__question-text {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
    padding-left: 2px;
    padding-left: 0.125rem;
    text-align: justify;
  }
}

@media screen and (max-width: 767px) {
  .p-accordion2--lower .p-accordion2__question-text {
    text-align: left;
  }
}

.p-accordion2__toggle-icon {
  display: block;
  height: 20px;
  height: 1.25rem;
  margin-left: auto;
  position: relative;
  width: 20px;
  width: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-accordion2__toggle-icon {
    height: 24px;
    height: 1.5rem;
    width: 24px;
    width: 1.5rem;
  }
}

.p-accordion2--lower .p-accordion2__toggle-icon {
  height: 24px;
  height: 1.5rem;
  width: 24px;
  width: 1.5rem;
}

.p-accordion2__toggle-icon span {
  background: #424242;
  content: "";
  display: block;
  height: 1px;
  height: 0.0625rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transition: transform 0.3s ease-in-out;
  width: 100%;
}

.p-accordion2__toggle-icon span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(90deg);
}

.p-accordion2__toggle-icon span:nth-child(2) {
  transform: translate(-50%, -50%);
}

/* is-openedクラスが付与されたときのスタイル */
details.is-opened .p-accordion2__toggle-icon span:nth-child(1) {
  transform: translateX(-50%) rotate(180deg);
}

details.is-opened .p-accordion2__toggle-icon span:nth-child(2) {
  opacity: 0;
}

.p-accordion2__answer-block {
  overflow: hidden;
}

.p-accordion2__answer {
  padding-top: 15px;
  padding-top: 0.9375rem;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-accordion2__answer {
    padding-top: 15px;
    padding-top: 0.9375rem;
  }
}

.p-accordion2--lower .p-accordion2__answer {
  align-items: center;
  display: flex;
  gap: 32px;
  gap: 2rem;
  padding-top: 24px;
  padding-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-accordion2--lower .p-accordion2__answer {
    align-items: flex-start;
    gap: 16px;
    gap: 1rem;
    padding-top: 23px;
    padding-top: 1.4375rem;
  }
}

.p-accordion2__answer-text {
  flex: 1;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .p-accordion2__answer-text {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
}

@media (any-hover: hover) {
  .p-accordion2__question:hover {
    opacity: 0.7;
  }
}
.p-case-detail__content {
  padding-bottom: 112px;
  padding-bottom: 7rem;
  padding-top: 115px;
  padding-top: 7.1875rem;
}
@media screen and (max-width: 767px) {
  .p-case-detail__content {
    padding-bottom: 65px;
    padding-bottom: 4.0625rem;
    padding-top: 60px;
    padding-top: 3.75rem;
  }
}

.p-case-detail__inner.l-inner {
  max-width: 1086px;
  max-width: 67.875rem;
}

.p-case-detail__table {
  border-collapse: collapse;
  margin-top: 72px;
  margin-top: 4.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-case-detail__table {
    margin-top: 55px;
    margin-top: 3.4375rem;
  }
}

.p-case-detail__table tr + tr {
  border-top: 0.5px solid #ccc;
}

.p-case-detail__table th,
.p-case-detail__table td {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.04em;
  line-height: 1.8;
  min-height: 58px;
  min-height: 3.625rem;
  text-align: left;
}

.p-case-detail__table th {
  background-color: #E8E5E0;
  font-weight: 400;
  padding: 16px 32px;
  padding: 1rem 2rem;
  width: 20.46%;
}
@media screen and (max-width: 767px) {
  .p-case-detail__table th {
    padding: 16px 16px;
    padding: 1rem 1rem;
    width: 39.1%;
  }
}

.p-case-detail__table td {
  background-color: #fff;
  padding: 16px 48px;
  padding: 1rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-case-detail__table td {
    padding: 16px 16px;
    padding: 1rem 1rem;
  }
}

.p-case-detail__notice {
  margin-top: 72px;
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-case-detail__notice {
    margin-top: 55px;
    margin-top: 3.4375rem;
  }
}

.p-case-detail__link-wrap {
  margin-top: 115px;
  margin-top: 7.1875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-case-detail__link-wrap {
    margin-top: 57px;
    margin-top: 3.5625rem;
  }
}

.p-case-soon {
  padding-bottom: 112px;
  padding-bottom: 7rem;
  padding-top: 70px;
  padding-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-case-soon {
    padding-bottom: 58px;
    padding-bottom: 3.625rem;
    padding-top: 65px;
    padding-top: 4.0625rem;
  }
}

.p-case-soon__title {
  font-family: "Bellefair", serif;
  font-size: max(72px, 10px);
  font-size: max(4.5rem, 10px);
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-case-soon__title {
    font-size: max(56px, 10px);
    font-size: max(3.5rem, 10px);
    line-height: 1.2;
  }
}

.p-case-soon__text {
  font-family: "Noto Serif JP", serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 2.2;
  margin-top: 21px;
  margin-top: 1.3125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-case-soon__text {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
    margin-top: 28px;
    margin-top: 1.75rem;
  }
}

.p-case-soon__link-wrap {
  margin-top: 70px;
  margin-top: 4.375rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-case-soon__link-wrap {
    margin-top: 65px;
    margin-top: 4.0625rem;
  }
}

.p-case__content {
  padding-bottom: 150px;
  padding-bottom: 9.375rem;
  padding-top: 28px;
  padding-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-case__content {
    padding-bottom: 58px;
    padding-bottom: 3.625rem;
    padding-top: 10px;
    padding-top: 0.625rem;
  }
}

.p-case__inner.l-inner {
  max-width: 1086px;
  max-width: 67.875rem;
}

.p-case__filter {
  align-items: center;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-case__filter {
    align-items: flex-start;
    flex-direction: column;
  }
}

.p-case__filter-title {
  flex-shrink: 0;
  font-family: "Noto Serif JP", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.8;
  padding-right: 56px;
  padding-right: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-case__filter-title {
    -moz-column-gap: 3.125rem;
    align-items: center;
         column-gap: 3.125rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    padding-bottom: 0.9375rem;
    padding-right: 0;
    transition: opacity 0.3s ease;
    width: 100%;
  }
  .p-case__filter-title:hover {
    opacity: 0.7;
  }
  .p-case__filter-title.is-open .p-case__filter-arrow {
    transform: rotate(180deg);
  }
}

@media screen and (max-width: 767px) {
  .p-case__filter-arrow {
    -webkit-mask-image: url("../images/common/icon-arrow-down.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    background-color: #424242;
    display: inline-block;
    flex-shrink: 0;
    height: 10px;
    height: 0.625rem;
            mask-image: url("../images/common/icon-arrow-down.svg");
            mask-position: center;
            mask-repeat: no-repeat;
            mask-size: contain;
    transition: transform 0.3s ease;
    width: 20px;
    width: 1.25rem;
  }
}

.p-case__tags {
  align-items: center;
  border-left: 0.5px solid #424242;
  border-left: 0.03125rem solid #424242;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  gap: 1rem;
  padding-left: 56px;
  padding-left: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-case__tags {
    border-left: none;
    border-top: 0.5px solid #424242;
    border-top: 0.03125rem solid #424242;
    gap: 8px 16px;
    gap: 0.5rem 1rem;
    overflow: hidden;
    padding-left: 0;
    padding-top: 24px;
    padding-top: 1.5rem;
    transition: all 0.3s ease;
  }
  .p-case__tags.is-hidden {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
  }
}

.p-case__tag-btn {
  color: #424242 !important;
}

.p-case__tag-btn {
  border: 0.5px solid #8D7C66;
  border: 0.03125rem solid #8D7C66;
  border-radius: 100vmax;
  cursor: pointer;
  flex-shrink: 0;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 12.2px 24px;
  padding: 0.7625rem 1.5rem;
  text-align: center;
  text-transform: uppercase;
  transition: color 0.3s ease, background-color 0.3s ease, border 0.3s ease;
}

.p-case__tag-btn:not(:first-child)::before {
  content: "#";
}

.p-case__tag-btn--active {
  color: #FEFDFB !important;
}

.p-case__tag-btn--active {
  background-color: #8D7C66;
  border: 0.5px solid #8D7C66;
  border: 0.03125rem solid #8D7C66;
}

@media (any-hover: hover) {
  .p-case__tag-btn:hover {
    color: #FEFDFB !important;
  }
  .p-case__tag-btn:hover {
    background-color: #8D7C66;
    border: 0.5px solid #8D7C66;
    border: 0.03125rem solid #8D7C66;
  }
}
.p-case__list {
  grid-gap: 38px;
  display: grid;
  gap: 38px;
  gap: 2.375rem;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  margin-top: 72px;
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-case__list {
    gap: 24px;
    gap: 1.5rem;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 48px;
    margin-top: 3rem;
  }
}

.p-case-card {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
}

.p-case-card__img {
  -o-object-fit: cover;
  aspect-ratio: 320/200;
  border-radius: 0.3125rem 0.3125rem 0 0;
  height: auto;
     object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-case-card__img {
    aspect-ratio: 358/224;
  }
}

.p-case-card__body {
  background-color: #fff;
  border-radius: 0 0 0.3125rem 0.3125rem;
  padding: 15px 16px 18px;
  padding: 0.9375rem 1rem 1.125rem;
}

.p-case-card__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.p-case-card__tags {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  gap: 0.5rem 0.625rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-case-card__tags li {
  background-color: #E8E5E0;
  border-radius: 100vmax;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 8px 12px;
  padding: 0.5rem 0.75rem;
}

.p-case-card__tags li::before {
  content: "#";
  margin-right: 2px;
  margin-right: 0.125rem;
}

.p-case-card__info {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-case-card__info dd + dt {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.p-case-card__info dd {
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2142857143;
  margin-top: 3px;
  margin-top: 0.1875rem;
}

.p-case__pagination {
  margin-top: 84px;
  margin-top: 5.25rem;
}
@media screen and (max-width: 767px) {
  .p-case__pagination {
    margin-top: 48px;
    margin-top: 3rem;
  }
}

.p-case__notice {
  margin-top: 117px;
  margin-top: 7.3125rem;
}
@media screen and (max-width: 767px) {
  .p-case__notice {
    margin-top: 72px;
    margin-top: 4.5rem;
  }
}

.p-case__link-wrap {
  margin-top: 113px;
  margin-top: 7.0625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-case__link-wrap {
    margin-top: 57px;
    margin-top: 3.5625rem;
  }
}

.p-category__list {
  align-items: stretch;
  background-color: #E8E5E0;
  border-radius: 62.4375rem;
  display: flex;
  flex-wrap: wrap;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-category__list {
    margin-left: auto;
    margin-right: auto;
  }
}

.p-category__item {
  text-align: center;
  width: 259px;
  width: 16.1875rem;
}
@media screen and (max-width: 767px) {
  .p-category__item {
    width: 89px;
    width: 5.5625rem;
  }
}

.p-category__link.is-current {
  background-color: #8D7C66;
  border: 1px solid #8D7C66;
  color: #fff;
}
.p-category__link {
  align-items: center;
  border-radius: 62.4375rem;
  color: #8D7C66;
  display: flex;
  font-family: "Noto Serif JP", serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  height: 100%;
  justify-content: center;
  letter-spacing: 0.04em;
  line-height: 1.8;
  padding: 9px 20px;
  padding: 0.5625rem 1.25rem;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, opacity 0.3s ease-in-out;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-category__link {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
    line-height: 1.2;
    padding: 8px 0;
    padding: 0.5rem 0;
  }
}

@media screen and (max-width: 767px) {
  .p-category__item:first-child .p-category__link {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
}

/* フォーカスされている要素を明確に示 */
.p-category__link:focus-visible {
  background-color: #fff;
  color: #8D7C66;
  opacity: 1;
}

/* 入力デバイスのいずれかにhoverに対応している入力デバイスが含まれる場合に適用 */
@media (any-hover: hover) {
  .p-category__link:hover {
    background-color: #fff;
    color: #8D7C66;
    opacity: 1;
  }
}
.p-detail__title-h1 {
  border-bottom: 0.5px solid #424242;
  font-family: "Noto Serif JP", serif;
  font-size: max(28px, 10px);
  font-size: max(1.75rem, 10px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-detail__title-h1 {
    font-size: max(24px, 10px);
    font-size: max(1.5rem, 10px);
    padding-bottom: 12px;
    padding-bottom: 0.75rem;
  }
}

.p-detail__title-h2 {
  font-family: "Noto Serif JP", serif;
  font-size: max(22px, 10px);
  font-size: max(1.375rem, 10px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-top: 60px;
  margin-top: 3.75rem;
  padding-left: 28px;
  padding-left: 1.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-detail__title-h2 {
    margin-top: 45px;
    margin-top: 2.8125rem;
  }
}

.p-detail__title-h2::before {
  background-color: #d1cbc2;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 12px;
  height: 0.75rem;
  left: 0;
  position: absolute;
  top: 13px;
  top: 0.8125rem;
  width: 12px;
  width: 0.75rem;
}

.p-detail__title-h3 {
  font-family: "Noto Serif JP", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-top: 38px;
  margin-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-detail__title-h3 {
    margin-top: 36px;
    margin-top: 2.25rem;
  }
}

.p-detail__meta {
  align-items: center;
  display: flex;
  gap: 24px;
  gap: 1.5rem;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-detail__meta {
    margin-top: 25px;
    margin-top: 1.5625rem;
  }
}

.p-detail__date {
  font-family: "Nunito Sans", sans-serif;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 300;
  line-height: 1.8;
}

.p-detail__tags {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  gap: 0.625rem;
}

.p-detail__tag {
  background-color: #E8E5E0;
  border-radius: 100vmax;
  display: inline-block;
  flex-shrink: 0;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 300;
  line-height: 1;
  padding: 6px 12px 7px;
  padding: 0.375rem 0.75rem 0.4375rem;
}

.p-detail__tag::before {
  content: "#";
  margin-right: 2px;
  margin-right: 0.125rem;
}

.p-detail__thumb {
  height: auto;
  margin-top: 72px;
  margin-top: 4.5rem;
  width: 100%;
}

.p-detail__gallery {
  margin-left: auto;
  margin-right: auto;
  margin-top: 72px;
  margin-top: 4.5rem;
  max-width: 824px;
  max-width: 51.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-detail__gallery {
    margin-top: 55px;
    margin-top: 3.4375rem;
  }
}

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

.p-detail__gallery--gallery1 {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .p-detail__gallery--gallery1 {
    width: 100%;
  }
}

.p-detail__gallery--gallery2-wide,
.p-detail__gallery--gallery2-tall {
  grid-gap: 24px;
  display: grid;
  gap: 24px;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .p-detail__gallery--gallery2-wide,
  .p-detail__gallery--gallery2-tall {
    gap: 16px;
    gap: 1rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-detail__gallery--gallery2-wide .p-detail__gallery-image {
  aspect-ratio: 466/295;
}
@media screen and (max-width: 767px) {
  .p-detail__gallery--gallery2-wide .p-detail__gallery-image {
    aspect-ratio: 358/240;
  }
}

.p-detail__gallery--gallery2-tall .p-detail__gallery-image {
  aspect-ratio: 300/400;
}

.p-detail__gallery--gallery2-small {
  grid-gap: 24px;
  display: grid;
  gap: 24px;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 25px;
  margin-top: 1.5625rem;
  max-width: 660px;
  max-width: 41.25rem;
}
@media screen and (max-width: 767px) {
  .p-detail__gallery--gallery2-small {
    gap: 32px;
    gap: 2rem;
    grid-template-columns: repeat(1, 1fr);
    max-width: 100%;
  }
}

.p-detail__gallery--gallery2-small .p-detail__gallery-image {
  aspect-ratio: 318/240;
}
@media screen and (max-width: 767px) {
  .p-detail__gallery--gallery2-small .p-detail__gallery-image {
    aspect-ratio: 358/270;
  }
}

.p-detail__gallery--gallery3 {
  grid-gap: 16px;
  display: grid;
  gap: 16px;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .p-detail__gallery--gallery3 {
    gap: 12px;
    gap: 0.75rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-detail__gallery--gallery3 .p-detail__gallery-image {
  aspect-ratio: 300/400;
}

.p-detail__gallery--gallery4 {
  grid-gap: 24px;
  display: grid;
  gap: 24px;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .p-detail__gallery--gallery4 {
    gap: 16px;
    gap: 1rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-detail__gallery--gallery4 .p-detail__gallery-image {
  aspect-ratio: 400/280;
}
@media screen and (max-width: 767px) {
  .p-detail__gallery--gallery4 .p-detail__gallery-image {
    aspect-ratio: 358/240;
  }
}

.p-detail__gallery-image {
  -o-object-fit: cover;
  height: auto;
     object-fit: cover;
  width: 100%;
}

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

.p-detail__text strong {
  font-weight: 400;
}

.p-detail__title-h2 + .p-detail__text {
  margin-top: 22px;
  margin-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-detail__title-h2 + .p-detail__text {
    margin-top: 15px;
    margin-top: 0.9375rem;
  }
}

.p-detail__title-h3 + .p-detail__text {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-detail__title-h3 + .p-detail__text {
    margin-top: 14px;
    margin-top: 0.875rem;
  }
}

.p-detail__media,
.p-detail__media-title {
  align-items: center;
  display: flex;
  gap: 82px;
  gap: 5.125rem;
  justify-content: space-between;
  margin-top: 34px;
  margin-top: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-detail__media,
  .p-detail__media-title {
    flex-direction: column;
    gap: 25px;
    gap: 1.5625rem;
    margin-top: 26px;
    margin-top: 1.625rem;
  }
}

.p-detail__media .p-detail__text,
.p-detail__media-title-wrap .p-detail__title-h2,
.p-detail__media-title-wrap .p-detail__title-h3,
.p-detail__media-title-wrap .p-detail__text {
  flex: 1;
  margin: 0;
}

.p-media__visual {
  flex-shrink: 0;
  width: 30.694980695%;
}
@media screen and (max-width: 767px) {
  .p-media__visual {
    width: 100%;
  }
}

.p-media__visual img {
  -o-object-fit: cover;
  aspect-ratio: 318/240;
  height: auto;
     object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-media__visual img {
    aspect-ratio: 358/270;
  }
}

.p-detail__media-title .p-detail__title-h2 + .p-detail__text,
.p-detail__media-title .p-detail__title-h3 + .p-detail__text {
  margin-top: 21px;
  margin-top: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .p-detail__media-title .p-detail__title-h2 + .p-detail__text,
  .p-detail__media-title .p-detail__title-h3 + .p-detail__text {
    margin-top: 14px;
    margin-top: 0.875rem;
  }
}

.p-doctor__content {
  padding-top: 30px;
  padding-top: 1.875rem;
}

.p-doctor__message {
  align-items: center;
  display: flex;
  gap: 82px;
  gap: 5.125rem;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-doctor__message {
    flex-direction: column-reverse;
    gap: 42px;
    gap: 2.625rem;
  }
}

.p-doctor__text-block {
  flex: 1;
  margin-top: -5px;
  margin-top: -0.3125rem;
}

.p-doctor__name {
  font-family: "Noto Serif JP", serif;
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  font-weight: 300;
  line-height: 1.6;
}

.p-doctor__name-small {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 300;
  line-height: 1.8;
}

.p-doctor__name-en {
  font-family: "Nunito Sans", sans-serif;
}

.p-doctor__text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2.2;
  margin-top: 24px;
  margin-top: 1.5rem;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-doctor__text {
    margin-top: 26px;
    margin-top: 1.625rem;
  }
}

.p-doctor__image {
  flex-shrink: 0;
  width: 33.9743589744%;
}
@media screen and (max-width: 767px) {
  .p-doctor__image {
    width: 100%;
  }
}

.p-doctor__image img {
  -o-object-fit: cover;
  aspect-ratio: 424/480;
  height: auto;
     object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-doctor__image img {
    aspect-ratio: 358/400;
  }
}

.p-doctor__detail {
  background-color: #F8F3EE;
  border-radius: 0.3125rem;
  margin-top: 128px;
  margin-top: 8rem;
  padding: 60px 124px 72px;
  padding: 3.75rem 7.75rem 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-doctor__detail {
    margin-top: 65px;
    margin-top: 4.0625rem;
    padding: 37px 16px 48px;
    padding: 2.3125rem 1rem 3rem;
  }
}

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

.p-doctor__detail-list {
  grid-gap: 24px 50px;
  display: grid;
  gap: 24px 50px;
  gap: 1.5rem 3.125rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-doctor__detail-list {
    gap: 24px;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    margin-top: 40px;
    margin-top: 2.5rem;
  }
}

.p-doctor__detail-item {
  background-color: #fff;
  border-radius: 0.3125rem;
  padding: 32px 24px;
  padding: 2rem 1.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-doctor__detail-item {
    padding: 22px 16px;
    padding: 1.375rem 1rem;
  }
}

.p-doctor__detail-title {
  font-family: "Noto Serif JP", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-doctor__detail-title {
    font-weight: 600;
    line-height: 1.6;
  }
}

.p-doctor__detail-text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2.2;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-doctor__detail-text {
    margin-top: 15px;
    margin-top: 0.9375rem;
  }
}

.p-drawer {
  background: linear-gradient(180.34deg, #FCFAF8 39.34%, #F1E8DD 99.71%);
  padding-bottom: 80px;
  padding-bottom: 5rem;
  padding-top: 96px;
  padding-top: 6rem;
}

.p-drawer__inner {
  padding-left: 48px;
  padding-left: 3rem;
  padding-right: 48px;
  padding-right: 3rem;
}

.p-drawer__nav-items {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  row-gap: 11px;
  row-gap: 0.6875rem;
  text-align: right;
}

.p-drawer__nav-item {
  width: 100%;
}

.p-drawer__nav-item-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  padding-top: 5px;
  padding-top: 0.3125rem;
  width: 100%;
}

.p-drawer__nav-item-en {
  font-family: "Bellefair", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.p-drawer__nav-item-ja {
  font-size: max(13px, 10px);
  font-size: max(0.8125rem, 10px);
  font-weight: 300;
  letter-spacing: 0.06em;
}

.p-drawer__button-list {
  display: flex;
  flex-direction: column;
  margin-top: 38px;
  margin-top: 2.375rem;
  row-gap: 20px;
  row-gap: 1.25rem;
}

.p-drawer__button-item .c-button1 {
  min-height: 0;
  min-height: initial;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  padding-top: 16px;
  padding-top: 1rem;
}

.p-faq__content {
  padding-bottom: 115px;
  padding-bottom: 7.1875rem;
  padding-top: 16px;
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-faq__content {
    padding-bottom: 55px;
    padding-bottom: 3.4375rem;
    padding-top: 10px;
    padding-top: 0.625rem;
  }
}

.p-faq__inner.l-inner {
  max-width: 1086px;
  max-width: 67.875rem;
}

.p-faq__block + .p-faq__block {
  margin-top: 82px;
  margin-top: 5.125rem;
}
@media screen and (max-width: 767px) {
  .p-faq__block + .p-faq__block {
    margin-top: 45px;
    margin-top: 2.8125rem;
  }
}

.p-faq__title {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  display: flex;
  font-family: "Noto Serif JP", serif;
  font-size: max(22px, 10px);
  font-size: max(1.375rem, 10px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.p-faq__title::before {
  background-color: #D1CBC2;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 12px;
  height: 0.75rem;
  margin-top: 13px;
  margin-top: 0.8125rem;
  width: 12px;
  width: 0.75rem;
}

.p-faq__accordion {
  border-bottom: 0.5px solid #424242;
  border-bottom: 0.03125rem solid #424242;
  border-top: 0.5px solid #424242;
  border-top: 0.03125rem solid #424242;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-faq__link-wrap {
  margin-top: 110px;
  margin-top: 6.875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-faq__link-wrap {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
}

.p-footer {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-bottom: 50px;
    padding-bottom: 3.125rem;
  }
}

.p-footer::before {
  background-color: #424242;
  content: "";
  height: 0.5px;
  height: 0.03125rem;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 86.66%;
}
@media screen and (max-width: 767px) {
  .p-footer::before {
    width: 91.79%;
  }
}

.p-footer__content {
  margin-top: 96px;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-footer__content {
    display: flex;
    flex-direction: column;
    margin-top: 54px;
    margin-top: 3.375rem;
  }
}

.p-footer__button-list {
  grid-gap: 24px;
  display: grid;
  gap: 24px;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 294px);
  margin-left: auto;
  margin-right: auto;
  max-width: 930px;
  max-width: 58.125rem;
  width: 100%;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-footer__button-list {
    grid-template-columns: 1fr;
    margin-top: 56px;
    margin-top: 3.5rem;
    max-width: 294px;
    max-width: 18.375rem;
  }
}

.p-footer__main {
  grid-gap: 120px;
  align-items: start;
  display: grid;
  gap: 120px;
  gap: 7.5rem;
  grid-template-columns: 8.75rem auto;
  margin-top: 96px;
  margin-top: 6rem;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .p-footer__main {
    gap: 80px;
    gap: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__main {
    display: contents;
    margin-top: 0;
  }
}

.p-footer__logo {
  max-width: 100%;
  width: 140px;
  width: 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    margin-left: auto;
    margin-right: auto;
    order: -1;
    width: 120px;
    width: 7.5rem;
  }
}

.p-footer__logo img {
  -o-object-fit: contain;
  aspect-ratio: 140/144.61;
  height: auto;
     object-fit: contain;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-footer__logo img {
    aspect-ratio: 120/123.95;
  }
}

.p-footer__content-wrap {
  grid-gap: 40px;
  display: grid;
  gap: 40px;
  gap: 2.5rem;
  grid-template-columns: 22.1875rem 22.5rem auto;
}
@media screen and (max-width: 767px) {
  .p-footer__content-wrap {
    gap: 39px;
    gap: 2.4375rem;
    grid-template-columns: 1fr;
    margin-top: 58px;
    margin-top: 3.625rem;
  }
}

.p-footer__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  gap: 0.75rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-footer__info {
    gap: 30px;
    gap: 1.875rem;
  }
}

.p-footer__info-logo {
  max-width: 100%;
  width: 293px;
  width: 18.3125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__info-logo {
    max-width: 358px;
    max-width: 22.375rem;
    width: 100%;
  }
}

.p-footer__info-logo img {
  -o-object-fit: contain;
  aspect-ratio: 293/20.18;
  height: auto;
     object-fit: contain;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-footer__info-logo img {
    aspect-ratio: 358/24.57;
  }
}

.p-footer__info-list {
  display: flex;
  flex-direction: column;
  row-gap: 3.5px;
  row-gap: 0.21875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__info-list {
    row-gap: 4px;
    row-gap: 0.25rem;
  }
}

.p-footer__info-item {
  align-items: flex-start;
  display: flex;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__info-item {
    gap: 12px;
    gap: 0.75rem;
  }
}

.p-footer__info-label {
  flex-shrink: 0;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2.2;
  min-width: 74px;
  min-width: 4.625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__info-label {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
}

.p-footer__info-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .p-footer__info-text {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
}

.p-footer__info-text address {
  font-style: normal;
  line-height: 2.1;
}
@media screen and (max-width: 767px) {
  .p-footer__info-text address {
    line-height: 1.8;
  }
}

.p-footer__map {
  padding-left: 8px;
  padding-left: 0.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-footer__map {
    padding-left: 0;
  }
}

.p-footer__map-wrap {
  height: 100%;
  width: 100%;
}

.p-footer__map iframe {
  -o-object-fit: cover;
  aspect-ratio: 360/282;
  height: auto;
     object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-footer__map iframe {
    aspect-ratio: 358/240;
  }
}

.p-footer__sitemap {
  margin-top: -12px;
  margin-top: -0.75rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-footer__sitemap {
    display: flex;
    justify-content: center;
    margin-top: 0;
  }
}

.p-footer__sitemap-list {
  display: flex;
  flex-direction: column;
  margin-left: 8px;
  margin-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__sitemap-list {
    margin-left: 0;
    margin-top: -12px;
    margin-top: -0.75rem;
  }
}

.p-footer__sitemap-link {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 2.43;
}
@media screen and (max-width: 767px) {
  .p-footer__sitemap-link {
    line-height: 2.4;
    padding-left: 16px;
    padding-left: 1rem;
    padding-right: 16px;
    padding-right: 1rem;
  }
}

.p-footer__copyright {
  margin-top: 50px;
  margin-top: 3.125rem;
  padding: 10px;
  padding: 0.625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    margin-top: 36px;
    margin-top: 2.25rem;
  }
}

.p-footer__copyright small {
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  line-height: 1.16;
}

.p-header {
  background-color: #FCFAF8;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-header {
    background-color: transparent;
    display: block;
    transform: translateY(0);
  }
}

.p-header--sub {
  transform: translateY(0);
}

.p-header__inner {
  align-items: center;
  display: flex;
  height: 100%;
  max-width: none;
  max-width: initial;
  padding: 0 16px;
  padding: 0 1rem;
}

.p-header__logo {
  align-items: center;
  display: flex;
  height: 100%;
  width: 40px;
  width: 2.5rem;
}

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

.p-header__logo-link img {
  -o-object-fit: contain;
  aspect-ratio: 116/120;
  height: auto;
     object-fit: contain;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-header__logo-link img {
    aspect-ratio: 39/40;
  }
}

.p-header__menu-button {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__menu-button {
    display: block;
    margin-left: auto;
    z-index: 101;
  }
}

.p-header__pc-nav {
  height: 100%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-header__pc-nav {
    display: none;
  }
}

.p-header__pc-nav-items {
  display: flex;
  height: 100%;
}

.p-header__pc-nav-item {
  height: 100%;
}

.p-header__pc-nav-item-link {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  overflow: hidden;
  padding: 0 24px;
  padding: 0 1.5rem;
  position: relative;
  transition: color 0.3s ease;
}

.p-header__pc-nav-item-link::before {
  background: transparent;
  content: "";
  filter: blur(10px);
  height: 50px;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
  width: 50px;
  z-index: -1;
}

.p-header__pc-nav-item-en {
  font-family: "Bellefair", serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0;
  text-transform: uppercase;
}

.p-header__pc-nav-item-ja {
  font-size: max(11px, 10px);
  font-size: max(0.6875rem, 10px);
  letter-spacing: 0.06em;
}

.p-header__pc-nav-button {
  align-items: center;
  display: flex;
  width: 169px;
  width: 10.5625rem;
}

.p-header__drawer {
  bottom: 0;
  left: 0;
  overflow: auto;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: all 0.3s ease-out;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .p-header__drawer {
    left: auto;
    max-width: 46.6666666667%;
    width: 50%;
  }
}

.p-header__drawer[aria-hidden=false] {
  transform: translateX(0);
}

/* hover指定できるPCを想定したスタイル */
@media (hover: hover) {
  .p-header__pc-nav-item-link:hover::before {
    background-color: #f1e8dd;
    opacity: 1;
  }
  .p-header__pc-nav-item-link:hover {
    opacity: 1;
  }
}
/* hoverが使えないタッチ端末を想定した装飾 */
@media (hover: none) {
  .p-header__pc-nav-item-link:active::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  .p-header__pc-nav-item-link:active {
    opacity: 1;
  }
}
.p-lower-mv {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  padding-top: 85px;
  padding-top: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .p-lower-mv {
    padding-bottom: 42px;
    padding-bottom: 2.625rem;
    padding-top: 66px;
    padding-top: 4.125rem;
  }
}

.p-lower-mv__title {
  text-align: center;
}

.p-lower-mv__title-en {
  font-family: "Bellefair", serif;
  font-size: max(56px, 10px);
  font-size: max(3.5rem, 10px);
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-lower-mv__title-en {
    font-size: max(42px, 10px);
    font-size: max(2.625rem, 10px);
  }
}

.p-lower-mv__title-jp {
  font-family: "Noto Serif JP", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4444444444;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-lower-mv__title-jp {
    line-height: 1.8;
    margin-top: 3px;
    margin-top: 0.1875rem;
  }
}

.p-menu-details {
  padding-bottom: 113px;
  padding-bottom: 7.0625rem;
  padding-top: 110px;
  padding-top: 6.875rem;
}
@media screen and (max-width: 767px) {
  .p-menu-details {
    padding-bottom: 53px;
    padding-bottom: 3.3125rem;
    padding-top: 60px;
    padding-top: 3.75rem;
  }
}

.p-menu-detail-toc__heading {
  color: #424242;
  font-family: "Noto Serif JP", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.p-menu-detail-toc__list {
  grid-gap: 12px;
  display: grid;
  gap: 12px;
  gap: 0.75rem;
}

.p-menu-detail-toc__item {
  align-items: center;
  display: flex;
  gap: 16px;
  gap: 1rem;
}

.p-menu-detail-toc__item::before {
  background-color: #BBB0A3;
  border-radius: 50%;
  content: "";
  flex-shrink: 0;
  height: 8px;
  height: 0.5rem;
  margin-top: 2px;
  margin-top: 0.125rem;
  width: 8px;
  width: 0.5rem;
}

.p-menu-detail-toc__link {
  color: #424242;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.04em;
  line-height: 2.2;
}

.p-menu-detail-heading {
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  padding-top: 40px;
  padding-top: 2.5rem;
}

.p-menu-detail-heading__wrapper {
  grid-gap: 48px;
  align-items: start;
  display: grid;
  gap: 48px;
  gap: 3rem;
  grid-template-columns: 1fr 19.875rem;
}

.p-menu-detail-heading__meta {
  grid-gap: 12px;
  display: grid;
  gap: 12px;
  gap: 0.75rem;
}

.p-menu-detail-heading__category {
  color: #AFA394;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.08em;
}

.p-menu-detail-heading__title {
  color: #424242;
  font-family: "Noto Serif JP", serif;
  font-size: max(28px, 10px);
  font-size: max(1.75rem, 10px);
  font-weight: 500;
  letter-spacing: 0.12em;
}

.p-menu-detail-heading__lead {
  grid-gap: 16px;
  display: grid;
  gap: 16px;
  gap: 1rem;
  margin-top: 32px;
  margin-top: 2rem;
}

.p-menu-detail-heading__lead-text {
  color: #424242;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0.08em;
  line-height: 1.8;
}

.p-menu-detail-heading__lead-caption {
  color: #AFA394;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  letter-spacing: 0.08em;
}

.p-menu-detail-heading__visual {
  background-color: #E8E5E0;
  border-radius: 0.3125rem;
  height: 240px;
  height: 15rem;
  width: 100%;
}

.p-menu-detail-toc {
  background-color: #F8F3EE;
  border-radius: 0.625rem;
  margin-top: 32px;
  margin-top: 2rem;
}

.p-menu-detail-toc__inner {
  padding-bottom: 32px;
  padding-bottom: 2rem;
  padding-top: 32px;
  padding-top: 2rem;
}

.p-menu-detail-toc__wrapper {
  align-items: flex-start;
  display: flex;
  gap: 48px;
  gap: 3rem;
}

.p-menu-detail-toc__heading {
  color: #424242;
  font-family: "Noto Serif JP", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.p-menu-detail-toc__list {
  grid-gap: 12px;
  display: grid;
  gap: 12px;
  gap: 0.75rem;
}

.p-menu-detail-toc__item {
  align-items: center;
  display: flex;
  gap: 16px;
  gap: 1rem;
}

.p-menu-detail-toc__item::before {
  background-color: #BBB0A3;
  border-radius: 50%;
  content: "";
  flex-shrink: 0;
  height: 8px;
  height: 0.5rem;
  margin-top: 2px;
  margin-top: 0.125rem;
  width: 8px;
  width: 0.5rem;
}

.p-menu-detail-toc__link {
  color: #424242;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.04em;
  line-height: 2.2;
}

.p-menu-detail-about {
  padding-bottom: 72px;
  padding-bottom: 4.5rem;
  padding-top: 72px;
  padding-top: 4.5rem;
}

.p-menu-detail-section {
  padding-bottom: 72px;
  padding-bottom: 4.5rem;
  padding-top: 72px;
  padding-top: 4.5rem;
}

.p-menu-detail-section__heading {
  color: #424242;
  font-family: "Noto Serif JP", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.p-menu-detail-section__text {
  color: #424242;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.04em;
  line-height: 2.2;
  margin-top: 32px;
  margin-top: 2rem;
}

.p-menu-detail-section__emphasis {
  font-weight: 500;
}

.p-menu-detail-summary {
  padding-bottom: 72px;
  padding-bottom: 4.5rem;
  padding-top: 72px;
  padding-top: 4.5rem;
}

.p-menu-list:not(:first-child) {
  margin-top: 83px;
  margin-top: 5.1875rem;
}
@media screen and (max-width: 767px) {
  .p-menu-list:not(:first-child) {
    margin-top: 45px;
    margin-top: 2.8125rem;
  }
}

.p-menu-list__inner {
  max-width: 1086px;
  max-width: 67.875rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-menu-list__inner {
    max-width: 572px;
    max-width: 35.75rem;
  }
}

.p-menu-list__heading {
  border-bottom: 1px solid #424242;
  border-bottom: 0.0625rem solid #424242;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}

.p-menu-list__body {
  grid-gap: 38px;
  display: grid;
  gap: 38px;
  gap: 2.375rem;
  margin-top: 36px;
  margin-top: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-menu-list__body {
    gap: 31px;
    gap: 1.9375rem;
    margin-top: 29px;
    margin-top: 1.8125rem;
  }
}

.p-menu-list__group {
  grid-gap: 15px;
  display: grid;
  gap: 15px;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-menu-list__group {
    gap: 14px;
    gap: 0.875rem;
  }
}

.p-menu-list__group-title {
  font-family: "Noto Serif JP", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: normal;
  letter-spacing: 0.08em;
}

.p-menu-list__items {
  grid-gap: 16px 54px;
  display: grid;
  gap: 16px 54px;
  gap: 1rem 3.375rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .p-menu-list__items {
    grid-template-columns: 1fr;
  }
}

.p-menu-list__item {
  list-style: none;
}

.p-menu-list__link {
  align-items: center;
  background-color: #fff;
  border-radius: 0.3125rem;
  display: inline-flex;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  justify-content: space-between;
  letter-spacing: 0.04em;
  min-height: 56px;
  min-height: 3.5rem;
  padding: 2px 24px;
  padding: 0.125rem 1.5rem;
  transition: color 0.3s ease-out, background-color 0.3s ease-out;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-menu-list__link {
    padding: 2px 24px;
    padding: 0.125rem 1.5rem;
  }
}

.p-menu-list__link::after {
  -webkit-mask-image: url(../images/common/icon-arrow.svg);
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  background-color: #424242;
  content: "";
  height: 10px;
  height: 0.625rem;
          mask-image: url(../images/common/icon-arrow.svg);
          mask-position: center;
          mask-repeat: no-repeat;
          mask-size: cover;
  transition: background-color 0.3s ease-out;
  width: 20px;
  width: 1.25rem;
}

.p-menu-list__pagenavi {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 116px;
  margin-top: 7.25rem;
  padding-bottom: 150px;
  padding-bottom: 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-menu-list__pagenavi {
    margin-top: 60px;
    margin-top: 3.75rem;
    padding-bottom: 55px;
    padding-bottom: 3.4375rem;
  }
}

/* hover指定できるPCを想定したスタイル */
@media (hover: hover) {
  .p-menu-list__link:hover {
    background-color: #8D7C66;
    color: #fff;
    opacity: 1;
  }
  .p-menu-list__link:hover::after {
    background-color: #fff;
  }
}
/* hoverが使えないタッチ端末を想定した装飾 */
@media (hover: none) {
  .p-menu-list__link:active {
    background-color: #8D7C66;
    background-color: #fff;
    color: #fff;
    opacity: 1;
  }
  .p-menu-list__link:active::after {
    background-color: #fff;
  }
}
.p-menu-mv {
  padding-bottom: 80px;
  padding-bottom: 5rem;
  padding-top: 91px;
  padding-top: 5.6875rem;
}
@media screen and (max-width: 767px) {
  .p-menu-mv {
    padding-bottom: 52px;
    padding-bottom: 3.25rem;
    padding-top: 64px;
    padding-top: 4rem;
  }
}

.p-menu-mv__wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  gap: 0.75rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-menu-mv__wrapper {
    gap: 8px;
    gap: 0.5rem;
  }
}

.p-menu-mv__lead {
  color: #8D7C66;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-menu-mv__lead {
    font-size: max(13px, 10px);
    font-size: max(0.8125rem, 10px);
    line-height: 1.8;
  }
}

.p-news-detail__content {
  padding-bottom: 112px;
  padding-bottom: 7rem;
  padding-top: 110px;
  padding-top: 6.875rem;
}
@media screen and (max-width: 767px) {
  .p-news-detail__content {
    padding-bottom: 61px;
    padding-bottom: 3.8125rem;
    padding-top: 60px;
    padding-top: 3.75rem;
  }
}

.p-news-detail__inner.l-inner {
  max-width: 1086px;
  max-width: 67.875rem;
}

.p-news-detail__category {
  background-color: #E8E5E0;
  border-radius: 100vmax;
  display: inline-block;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 300;
  line-height: 1;
  padding: 6.5px 12px;
  padding: 0.40625rem 0.75rem;
}

.p-news-detail__link-wrap {
  margin-top: 112px;
  margin-top: 7rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-news-detail__link-wrap {
    margin-top: 55px;
    margin-top: 3.4375rem;
  }
}

.p-news-list {
  display: flex;
  flex-direction: column;
  padding-left: 40px;
  padding-left: 2.5rem;
  padding-right: 40px;
  padding-right: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-news-list {
    background-color: #fff;
    padding-left: 16px;
    padding-left: 1rem;
    padding-right: 16px;
    padding-right: 1rem;
  }
}

.p-news-list--lower {
  background-color: #fff;
  padding: 16px 48px 16px;
  padding: 1rem 3rem 1rem;
}
@media screen and (max-width: 767px) {
  .p-news-list--lower {
    padding: 0 16px 0;
    padding: 0 1rem 0;
  }
}

.p-news-list__item {
  border-top: 0.5px solid #424242;
  border-top: 0.03125rem solid #424242;
  display: flex;
  flex-direction: column;
  gap: 16px;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-news-list__item {
    gap: 16px;
    gap: 1rem;
  }
}

.p-news-list__item:last-child {
  border-bottom: 0.5px solid #424242;
  border-bottom: 0.03125rem solid #424242;
}
@media screen and (max-width: 767px) {
  .p-news-list__item:last-child {
    border-bottom: none;
  }
}

.p-news-list--lower .p-news-list__item:last-child {
  border-bottom: none;
}

@media screen and (max-width: 767px) {
  .p-news-list__item:first-child {
    border-top: none;
  }
}

.p-news-list--lower .p-news-list__item:first-child {
  border-top: none;
}

.p-news-list--lower .p-news-list__item:first-of-type {
  border-top: none;
}

.p-news-list__link {
  display: block;
  padding-bottom: 34px;
  padding-bottom: 2.125rem;
  padding-top: 40px;
  padding-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-news-list__link {
    padding-bottom: 17px;
    padding-bottom: 1.0625rem;
    padding-top: 24px;
    padding-top: 1.5rem;
  }
}

.p-news-list--lower .p-news-list__link {
  padding-bottom: 30.5px;
  padding-bottom: 1.90625rem;
}
@media screen and (max-width: 767px) {
  .p-news-list--lower .p-news-list__link {
    padding-bottom: 24px;
    padding-bottom: 1.5rem;
    padding-top: 32.5px;
    padding-top: 2.03125rem;
  }
}

.p-news-list__meta {
  align-items: center;
  display: flex;
  gap: 32px;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-news-list__meta {
    gap: 32px;
    gap: 2rem;
  }
}

.p-news-list__date {
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-news-list__date {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
}

.p-news-list__category {
  align-items: center;
  background-color: #E8E5E0;
  border-radius: 1rem;
  display: inline-flex;
  font-size: 12px;
  font-size: 0.75rem;
  justify-content: center;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 4.5px 12px;
  padding: 0.28125rem 0.75rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-news-list__category {
    font-size: max(12px, 10px);
    font-size: max(0.75rem, 10px);
    padding: 6px 12px;
    padding: 0.375rem 0.75rem;
  }
}

.p-news-list__title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-top: 8px;
  margin-top: 0.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-news-list__title {
    -webkit-line-clamp: 3;
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    line-height: 1.8;
    margin-top: 3px;
    margin-top: 0.1875rem;
  }
}

.p-news-list--lower .p-news-list__title {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-news-list--lower .p-news-list__title {
    -webkit-line-clamp: 2;
  }
}

.p-news {
  overflow-x: clip;
}

.p-news .p-lower-mv__title-en .u-pc {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-news .p-lower-mv__title-en .u-pc {
    display: none;
  }
}

.p-news__content {
  padding-bottom: 112px;
  padding-bottom: 7rem;
  padding-top: 28px;
  padding-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-news__content {
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
    padding-top: 20px;
    padding-top: 1.25rem;
  }
}

.p-news__inner.l-inner {
  max-width: 1086px;
  max-width: 67.875rem;
}

.p-news__tab {
  -ms-overflow-style: none;
  align-items: center;
  display: flex;
  gap: 14px;
  gap: 0.875rem;
  margin-right: calc(50% - 50vw);
  overflow: auto;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  padding-right: 16px;
  padding-right: 1rem;
  scrollbar-width: none;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-news__tab {
    gap: 10px;
    gap: 0.625rem;
  }
}

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

.p-news__tab-btn {
  border: 0.5px solid #8D7C66;
  border: 0.03125rem solid #8D7C66;
  border-radius: 100vmax;
  cursor: pointer;
  flex-shrink: 0;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 12.2px 24px;
  padding: 0.7625rem 1.5rem;
  text-align: center;
  text-transform: uppercase;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-news__tab-btn {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
}

.p-news__tab-btn.is-active {
  background-color: #8D7C66;
  color: #FEFDFB;
}

.p-news__list {
  margin-top: 46px;
  margin-top: 2.875rem;
}
@media screen and (max-width: 767px) {
  .p-news__list {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
}

.p-news__link-wrap {
  margin-top: 115px;
  margin-top: 7.1875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-news__link-wrap {
    margin-top: 55px;
    margin-top: 3.4375rem;
  }
}

.p-notice {
  background-color: #fff;
  border-radius: 0.3125rem;
  padding: 25px 48px;
  padding: 1.5625rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-notice {
    padding: 25px 16px;
    padding: 1.5625rem 1rem;
  }
}

.p-notice__item {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
.p-notice__item:first-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-notice__item {
    margin-top: 14px;
    margin-top: 0.875rem;
  }
  .p-notice__item:first-child {
    margin-top: 0;
  }
}

.p-notice__title {
  color: #424242;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.p-notice__text {
  color: #424242;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22.28px;
  gap: 0.625rem 1.3925rem;
  justify-content: center;
  margin-top: 72px;
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-pagination {
    margin-top: 48px;
    margin-top: 3rem;
  }
}

.p-pagination__page-btn {
  border-bottom: 1.5px solid transparent;
  color: #424242;
  cursor: pointer;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  padding: 4px 1.72px;
  padding: 0.25rem 0.1075rem;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.p-pagination__page-btn.is-active {
  border-bottom: 1.5px solid #8D7C66;
}

.p-pagination__page-btn:disabled {
  cursor: default;
  opacity: 0.4;
}

.p-pagination__page-btn--prev,
.p-pagination__page-btn--next {
  align-items: center;
  border: 0.5px solid #424242;
  border: 0.03125rem solid #424242;
  border-radius: 1.75rem;
  display: grid;
  height: 32px;
  height: 2rem;
  justify-items: center;
  place-items: center;
  transition: background-color 0.3s ease, border 0.3s ease;
  width: 56px;
  width: 3.5rem;
}

.p-pagination__page-btn--prev::after,
.p-pagination__page-btn--next::after {
  -webkit-mask-image: url("../images/common/icon-arrow2.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #424242;
  content: "";
  display: block;
  height: 6px;
  height: 0.375rem;
          mask-image: url("../images/common/icon-arrow2.svg");
          mask-position: center;
          mask-repeat: no-repeat;
          mask-size: contain;
  transition: background-color 0.3s ease;
  width: 10px;
  width: 0.625rem;
}

.p-pagination__page-btn--prev::after {
  transform: rotate(180deg);
}

@media (any-hover: hover) {
  .p-pagination__page-btn:hover:not(:disabled) {
    border-bottom: 1.5px solid #8D7C66;
    color: #8D7C66;
  }
  .p-pagination__page-btn--prev:hover:not(:disabled),
  .p-pagination__page-btn--next:hover:not(:disabled) {
    background-color: #8D7C66;
    border: 0.5px solid #8D7C66;
  }
  .p-pagination__page-btn--prev:hover:not(:disabled)::after,
  .p-pagination__page-btn--next:hover:not(:disabled)::after {
    background-color: #fff;
  }
}
.p-post-detail__inner.l-inner {
  max-width: 1086px;
  max-width: 67.875rem;
}
@media screen and (max-width: 767px) {
  .p-post-detail__inner.l-inner {
    max-width: 572px;
    max-width: 35.75rem;
  }
}

.p-post-detail__title {
  border-bottom: 1px solid #424242;
  font-family: "Noto Serif JP", serif;
  font-size: max(28px, 10px);
  font-size: max(1.75rem, 10px);
  font-weight: 500;
  letter-spacing: 0.08em;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-post-detail__title {
    font-size: max(24px, 10px);
    font-size: max(1.5rem, 10px);
    padding-bottom: 12px;
    padding-bottom: 0.75rem;
  }
}

.p-post-detail__toc {
  align-items: flex-start;
  background-color: #F8F3EE;
  border-radius: 0.625rem;
  display: flex;
  gap: 48px;
  gap: 3rem;
  margin-top: 70px;
  margin-top: 4.375rem;
  padding: 23px 48px;
  padding: 1.4375rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-post-detail__toc {
    flex-direction: column;
    gap: 15px;
    gap: 0.9375rem;
    margin-top: 55px;
    margin-top: 3.4375rem;
    padding: 23px 17px;
    padding: 1.4375rem 1.0625rem;
  }
}

.p-post-detail__toc-heading {
  color: #424242;
  font-family: "Noto Serif JP", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.p-post-detail__toc-list {
  grid-gap: 3px;
  display: grid;
  gap: 3px;
  gap: 0.1875rem;
}

.p-post-detail__toc-item {
  align-items: center;
  display: flex;
  gap: 7px;
  gap: 0.4375rem;
}

.p-post-detail__toc-item::before {
  background-color: #BBB0A3;
  border-radius: 50%;
  content: "";
  flex-shrink: 0;
  height: 8px;
  height: 0.5rem;
  margin-top: 2px;
  margin-top: 0.125rem;
  width: 8px;
  width: 0.5rem;
}

.p-post-detail__toc-link {
  color: #424242;
  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.2;
}

.p-post-detail__media {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-post-detail__media {
    margin-top: 45px;
    margin-top: 2.8125rem;
  }
}

.p-post-detail__sentence {
  margin-top: 38px;
  margin-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-post-detail__sentence {
    margin-top: 32px;
    margin-top: 2rem;
  }
}

.p-post-detail__table {
  margin-top: 47px;
  margin-top: 2.9375rem;
}
@media screen and (max-width: 767px) {
  .p-post-detail__table {
    margin-top: 20px;
    margin-top: 1.25rem;
  }
}

.p-post-detail__recommend {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-post-detail__recommend {
    margin-top: 45px;
    margin-top: 2.8125rem;
  }
}

.p-post-detail__effect {
  margin-top: 62px;
  margin-top: 3.875rem;
}
@media screen and (max-width: 767px) {
  .p-post-detail__effect {
    margin-top: 45px;
    margin-top: 2.8125rem;
  }
}

.p-post-detail__flow {
  margin-top: 53px;
  margin-top: 3.3125rem;
}
@media screen and (max-width: 767px) {
  .p-post-detail__flow {
    margin-top: 34px;
    margin-top: 2.125rem;
  }
}

.p-post-detail__treatment {
  margin-top: 61px;
  margin-top: 3.8125rem;
}
@media screen and (max-width: 767px) {
  .p-post-detail__treatment {
    margin-top: 50px;
    margin-top: 3.125rem;
  }
}

.p-post-detail__price {
  margin-top: 61px;
  margin-top: 3.8125rem;
}
@media screen and (max-width: 767px) {
  .p-post-detail__price {
    margin-top: 44px;
    margin-top: 2.75rem;
  }
}

.p-post-detail__reference {
  margin-top: 72px;
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-post-detail__reference {
    margin-top: 55px;
    margin-top: 3.4375rem;
  }
}

.p-post-detail__other {
  margin-top: 72px;
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-post-detail__other {
    margin-top: 55px;
    margin-top: 3.4375rem;
  }
}

.p-post-detail__pagenavi {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 116px;
  margin-top: 7.25rem;
}
@media screen and (max-width: 767px) {
  .p-post-detail__pagenavi {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
}

.p-post-detail__block {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-post-detail__block {
    margin-top: 12px;
    margin-top: 0.75rem;
  }
}

.p-post-detail__text {
  color: #424242;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .p-post-detail__text {
    line-height: 2.22;
  }
}

.p-menu-details__inner.l-inner {
  max-width: 1086px;
  max-width: 67.875rem;
}
@media screen and (max-width: 767px) {
  .p-menu-details__inner.l-inner {
    max-width: 572px;
    max-width: 35.75rem;
  }
}

.p-menu-details__title {
  border-bottom: 1px solid #424242;
  font-family: "Noto Serif JP", serif;
  font-size: max(28px, 10px);
  font-size: max(1.75rem, 10px);
  font-weight: 500;
  letter-spacing: 0.08em;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-menu-details__title {
    font-size: max(24px, 10px);
    font-size: max(1.5rem, 10px);
    padding-bottom: 12px;
    padding-bottom: 0.75rem;
  }
}

.p-menu-details__toc {
  align-items: flex-start;
  background-color: #F8F3EE;
  border-radius: 0.625rem;
  display: flex;
  gap: 48px;
  gap: 3rem;
  margin-top: 70px;
  margin-top: 4.375rem;
  padding: 23px 48px;
  padding: 1.4375rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-menu-details__toc {
    flex-direction: column;
    gap: 15px;
    gap: 0.9375rem;
    margin-top: 55px;
    margin-top: 3.4375rem;
    padding: 23px 17px;
    padding: 1.4375rem 1.0625rem;
  }
}

.p-menu-details__toc-heading {
  color: #424242;
  font-family: "Noto Serif JP", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.p-menu-details__toc-list {
  grid-gap: 3px;
  display: grid;
  gap: 3px;
  gap: 0.1875rem;
}

.p-menu-details__toc-item {
  align-items: center;
  display: flex;
  gap: 7px;
  gap: 0.4375rem;
}

.p-menu-details__toc-item::before {
  background-color: #BBB0A3;
  border-radius: 50%;
  content: "";
  flex-shrink: 0;
  height: 8px;
  height: 0.5rem;
  margin-top: 2px;
  margin-top: 0.125rem;
  width: 8px;
  width: 0.5rem;
}

.p-menu-details__toc-link {
  color: #424242;
  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.2;
}

.p-post-details__media {
  grid-gap: 82px;
  align-items: flex-start;
  display: grid;
  gap: 82px;
  gap: 5.125rem;
  grid-template-columns: 1fr 19.875rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-post-details__media {
    gap: 21px;
    gap: 1.3125rem;
    grid-template-columns: 1fr;
    margin-top: 45px;
    margin-top: 2.8125rem;
  }
}

.p-post-flow__list {
  grid-gap: 15px;
  display: grid;
  gap: 15px;
  gap: 0.9375rem;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-post-flow__list {
    gap: 18px;
    gap: 1.125rem;
    grid-template-columns: 1fr;
    margin-top: 23px;
    margin-top: 1.4375rem;
  }
}

.p-post-flow__item {
  grid-gap: 8px;
  background-color: #fff;
  border-radius: 0.3125rem;
  display: grid;
  gap: 8px;
  gap: 0.5rem;
  overflow: hidden;
  padding: 0 8px 12px 8px;
  padding: 0 0.5rem 0.75rem 0.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-post-flow__item {
    gap: 9px;
    gap: 0.5625rem;
    justify-content: center;
    padding: 6px 20px;
    padding: 0.375rem 1.25rem;
  }
}

.p-post-flow__badge {
  align-items: center;
  background-color: #8D7C66;
  border-radius: 0 0 1.5625rem 1.5625rem;
  color: #fff;
  display: inline-flex;
  font-family: "Bellefair", serif;
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  height: 36px;
  height: 2.25rem;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: 40px;
  width: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-post-flow__badge {
    border-radius: 0 0 62.4375rem 62.4375rem;
    font-size: max(40px, 10px);
    font-size: max(2.5rem, 10px);
    height: 65px;
    height: 4.0625rem;
    left: 10px;
    left: 0.625rem;
    padding-top: 6px;
    padding-top: 0.375rem;
    position: absolute;
    top: 0;
    width: 72px;
    width: 4.5rem;
  }
}

.p-post-flow__title {
  font-family: "Noto Serif JP", serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-post-flow__title {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
}

.p-post-flow__visual {
  margin-left: auto;
  margin-right: auto;
  max-width: 140px;
  max-width: 8.75rem;
  width: 100%;
}
.p-post-flow__visual img {
  -o-object-fit: cover;
  aspect-ratio: 140/80;
  height: 100%;
     object-fit: cover;
  width: auto;
}

.p-post-flow__text {
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  letter-spacing: 0.04em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-post-flow__text {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
}

.p-post-media {
  grid-gap: 82px;
  display: grid;
  gap: 82px;
  gap: 5.125rem;
  grid-template-columns: 1fr 19.875rem;
}
@media screen and (max-width: 767px) {
  .p-post-media {
    gap: 21px;
    gap: 1.3125rem;
    grid-template-columns: 1fr;
  }
}

.p-post-media__block {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-post-media__block {
    margin-top: 12px;
    margin-top: 0.75rem;
  }
}

.p-post-media__text {
  color: #424242;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .p-post-media__text {
    line-height: 2.22;
  }
}

.p-post-media__visual img {
  -o-object-fit: cover;
  aspect-ratio: 318/240;
  height: auto;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-post-media__visual img {
    aspect-ratio: 358/270;
  }
}

.p-post-other {
  grid-gap: 32px;
  background-color: #fff;
  border-radius: 0.3125rem;
  display: grid;
  gap: 32px;
  gap: 2rem;
  padding: 23px 48px;
  padding: 1.4375rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-post-other {
    padding: 24px 16px;
    padding: 1.5rem 1rem;
  }
}

.p-post-other__list {
  grid-gap: 16px;
  display: grid;
  gap: 16px;
  gap: 1rem;
}

.p-post-other__item {
  grid-gap: 9px;
  display: grid;
  gap: 9px;
  gap: 0.5625rem;
}

.p-post-other__title {
  color: #424242;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.p-post-other__text {
  color: #424242;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.p-post-price__group {
  background-color: #fff;
  border-radius: 0.3125rem;
  margin-top: 31px;
  margin-top: 1.9375rem;
}
@media screen and (max-width: 767px) {
  .p-post-price__group {
    margin-top: 24px;
    margin-top: 1.5rem;
  }
}

.p-post-price__sub-heading {
  background-color: #E8E5E0;
  border-top-left-radius: 5px;
  border-top-left-radius: 0.3125rem;
  border-top-right-radius: 5px;
  border-top-right-radius: 0.3125rem;
  color: #424242;
  font-family: "Noto Serif JP", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.6;
  padding: 13px 48px;
  padding: 0.8125rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-post-price__sub-heading {
    padding: 13px 16px;
    padding: 0.8125rem 1rem;
  }
}

.p-post-price__list {
  display: grid;
}

.p-post-price__item {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 15px 48px;
  padding: 0.9375rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-post-price__item {
    gap: 10px;
    gap: 0.625rem;
    min-height: 56px;
    min-height: 3.5rem;
    padding: 2px 16px;
    padding: 0.125rem 1rem;
  }
}

.p-post-price__item:not(:last-child) {
  border-bottom: 1px solid #E8E5E0;
}

.p-post-price__title {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.04em;
  width: 700px;
  width: 43.75rem;
}
@media screen and (max-width: 767px) {
  .p-post-price__title {
    width: 170px;
    width: 10.625rem;
  }
}

.p-post-price__detail {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0.04em;
}

.p-post-price__amount {
  display: inline-block;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
}

.p-post-price__note {
  display: inline-block;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  letter-spacing: 0.04em;
  margin-left: 8px;
  margin-left: 0.5rem;
}

.p-post-recommend__list {
  background-color: #fff;
  border-radius: 0.3125rem;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 56px;
  gap: 1rem 3.5rem;
  margin-top: 32px;
  margin-top: 2rem;
  padding: 23px 48px;
  padding: 1.4375rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-post-recommend__list {
    gap: 15px 20px;
    gap: 0.9375rem 1.25rem;
    margin-top: 24px;
    margin-top: 1.5rem;
    padding: 24px 17px;
    padding: 1.5rem 1.0625rem;
  }
}

.p-post-recommend__item {
  align-items: center;
  display: flex;
  gap: 7px;
  gap: 0.4375rem;
}

.p-post-recommend__item::before {
  background-color: #d1cbc2;
  border-radius: 50%;
  content: "";
  flex-shrink: 0;
  height: 8px;
  height: 0.5rem;
  width: 8px;
  width: 0.5rem;
}

.p-post-recommend__text {
  color: #424242;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.p-post-reference__heading {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.p-post-reference__list {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  list-style: decimal;
  padding-left: 1.5em;
}

.p-post-sentence__block {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-post-sentence__block {
    margin-top: 12px;
    margin-top: 0.75rem;
  }
}

.p-post-sentence__text,
.p-post-sentence__list,
.p-post-sentence__ol {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .p-post-sentence__text,
  .p-post-sentence__list,
  .p-post-sentence__ol {
    line-height: 2.22;
  }
}

.p-post-sentence__sub-heading {
  font-weight: 400;
}

.p-post-sentence__list {
  list-style: disc;
  padding-left: 1.5em;
}

.p-post-sentence__ol > li:not(:first-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-post-sentence__ol > li:not(:first-child) {
    margin-top: 12px;
    margin-top: 0.75rem;
  }
}

.p-post-sentence__emphasis {
  font-weight: normal;
  line-height: 1.8;
}

.p-post-sentence__visual img {
  -o-object-fit: cover;
  aspect-ratio: 1036/460;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-post-sentence2__text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2.2;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-post-sentence2__text {
    line-height: 2.22;
    margin-top: 21px;
    margin-top: 1.3125rem;
  }
}

.p-post-sentence2__emphasis {
  font-weight: normal;
  line-height: 1.8;
}

.p-post-table__wrapper {
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .p-post-table__wrapper {
    overflow-x: visible;
  }
}

.p-post-table__table {
  background-color: #fff;
  border-bottom-left-radius: 5px;
  border-bottom-left-radius: 0.3125rem;
  border-bottom-right-radius: 5px;
  border-bottom-right-radius: 0.3125rem;
  border-collapse: separate;
  border-spacing: 0;
  border-top-left-radius: 5px;
  border-top-left-radius: 0.3125rem;
  min-width: 640px;
  min-width: 40rem;
  overflow: hidden;
  table-layout: fixed;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-post-table__table {
    display: none;
  }
}

.p-post-table__heading-cell {
  background-color: #E8E5E0;
  border-bottom: 1px solid #424242;
  border-right: 1px solid #424242;
  color: #424242;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: normal;
  letter-spacing: 0.04em;
  line-height: 1.8;
  padding: 16px 16px;
  padding: 1rem 1rem;
  text-align: center;
}

.p-post-table__heading-cell:first-of-type,
.p-post-table__label {
  width: 136px;
  width: 8.5rem;
}

.p-post-table__heading-cell:not(:first-of-type),
.p-post-table__data:not(:first-of-type) {
  width: calc((100% - 8.5rem) / 3);
}

.p-post-table__heading-cell:last-of-type {
  border-right: none;
}

.p-post-table__label {
  background-color: #E8E5E0;
  border-bottom: 1px solid #424242;
  border-right: 1px solid #424242;
  color: #424242;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: normal;
  letter-spacing: 0.04em;
  line-height: 1.8;
  padding: 16px;
  padding: 1rem;
  text-align: center;
  vertical-align: middle;
}

.p-post-table__data {
  background-color: #fff;
  border-bottom: 1px solid #424242;
  border-right: 1px solid #424242;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.04em;
  line-height: 1.8;
  padding: 16px 10px;
  padding: 1rem 0.625rem;
  text-align: center;
}

.p-post-table__data:first-of-type {
  border-right: 1px solid #424242;
}

.p-post-table__table tr:last-of-type .p-post-table__label,
.p-post-table__table tr:last-of-type .p-post-table__data {
  border-bottom: none;
}

.p-post-table__table .p-post-table__data:last-of-type,
.p-post-table__table .p-post-table__heading-cell:last-of-type {
  border-right: none;
}

.p-post-table__table-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-post-table__table-sp {
    background-color: #fff;
    border-bottom-left-radius: 5px;
    border-bottom-left-radius: 0.3125rem;
    border-bottom-right-radius: 5px;
    border-bottom-right-radius: 0.3125rem;
    border-collapse: separate;
    border-spacing: 0;
    border-top-left-radius: 5px;
    border-top-left-radius: 0.3125rem;
    display: table;
    overflow: hidden;
    width: 100%;
  }
}

.p-post-table__table-sp:not(:first-child) {
  margin-top: 31px;
  margin-top: 1.9375rem;
}

.p-post-table__title-sp {
  background-color: #E8E5E0;
  border-bottom: 1px solid #424242;
  color: #424242;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: normal;
  padding: 17px 12px;
  padding: 1.0625rem 0.75rem;
  text-align: center;
}

.p-post-table__title-sp:first-of-type {
  border-right: 1px solid #424242;
}

.p-post-table__label-sp {
  background-color: #E8E5E0;
  border-bottom: 1px solid #424242;
  border-right: 1px solid #424242;
  width: 54px;
  width: 3.375rem;
}

.p-post-table__data-sp {
  border-bottom: 1px solid #424242;
}

.p-post-table__label-sp-text {
  color: #424242;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: normal;
  padding: 10px;
  padding: 0.625rem;
  text-align: center;
  vertical-align: middle;
}

.p-post-table__data-sp-text {
  align-items: center;
  display: flex;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  justify-content: center;
  letter-spacing: 0;
  line-height: 1.8;
  min-height: 80px;
  min-height: 5rem;
  padding: 12px 8px;
  padding: 0.75rem 0.5rem;
  text-align: center;
}

tbody tr:last-of-type .p-post-table__label-sp,
tbody tr:last-of-type .p-post-table__data-sp {
  border-bottom: none;
}

.p-post-table--col-3 .p-post-table__heading-cell:nth-of-type(1),
.p-post-table--col-3 .p-post-table__data:nth-of-type(1) {
  width: 196px;
  width: 12.25rem;
}
.p-post-table--col-3 .p-post-table__heading-cell:nth-of-type(2),
.p-post-table--col-3 .p-post-table__data:nth-of-type(2) {
  width: 420px;
  width: 26.25rem;
}
.p-post-table--col-3 .p-post-table__heading-cell:nth-of-type(3),
.p-post-table--col-3 .p-post-table__data:nth-of-type(3) {
  width: 420px;
  width: 26.25rem;
}
.p-post-table--col-3 .p-post-table__heading-cell {
  background-color: #e8e5e0;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.8;
  padding: 24px 16px;
  padding: 1.5rem 1rem;
  text-align: center;
}
.p-post-table--col-3 .p-post-table__data {
  background-color: white;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  padding: 24px 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-post-table--col-3 .p-post-table__wrapper-sp .p-post-table__table-sp {
    display: table;
    margin-bottom: 20px;
    margin-bottom: 1.25rem;
    width: 100%;
  }
}

.p-post-table--col-4 .p-post-table__heading-cell:nth-of-type(1),
.p-post-table--col-4 .p-post-table__data:nth-of-type(1) {
  width: 210px;
  width: 13.125rem;
}
.p-post-table--col-4 .p-post-table__heading-cell:nth-of-type(2),
.p-post-table--col-4 .p-post-table__data:nth-of-type(2) {
  width: 210px;
  width: 13.125rem;
}
.p-post-table--col-4 .p-post-table__heading-cell:nth-of-type(3),
.p-post-table--col-4 .p-post-table__data:nth-of-type(3) {
  width: 308px;
  width: 19.25rem;
}
.p-post-table--col-4 .p-post-table__heading-cell:nth-of-type(4),
.p-post-table--col-4 .p-post-table__data:nth-of-type(4) {
  width: 308px;
  width: 19.25rem;
}
.p-post-table--col-4 .p-post-table__heading-cell {
  background-color: #e8e5e0;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.8;
  padding: 24px 16px;
  padding: 1.5rem 1rem;
  text-align: center;
}
.p-post-table--col-4 .p-post-table__data {
  background-color: white;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  padding: 24px 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  vertical-align: middle;
}
.p-post-table--col-4 .p-post-table__data--mode {
  background-color: #e8e5e0;
  border-radius: 0.3125rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
  padding: 24px 32px;
  padding: 1.5rem 2rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-post-table--col-4 .p-post-table__wrapper-sp .p-post-table__table-sp {
    display: table;
    margin-bottom: 20px;
    margin-bottom: 1.25rem;
    width: 100%;
  }
}

.p-post-treatment__list {
  border-radius: 0.3125rem;
  display: grid;
  margin-top: 32px;
  margin-top: 2rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-post-treatment__list {
    margin-top: 23px;
    margin-top: 1.4375rem;
  }
}

.p-post-treatment__item {
  background-color: #fff;
  display: grid;
  grid-template-columns: 13.25rem 1fr;
}
@media screen and (max-width: 767px) {
  .p-post-treatment__item {
    grid-template-columns: 8.75rem 1fr;
  }
}

.p-post-treatment__item:not(:last-child) {
  border-bottom: 1px solid #424242;
}

.p-post-treatment__title {
  align-items: center;
  background-color: #E8E5E0;
  color: #424242;
  display: flex;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.04em;
  padding: 16px 32px;
  padding: 1rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-post-treatment__title {
    padding: 16px;
    padding: 1rem;
  }
}

.p-post-treatment__detail {
  background-color: #fff;
  color: #424242;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.04em;
  padding: 16px 48px;
  padding: 1rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-post-treatment__detail {
    padding: 16px;
    padding: 1rem;
  }
}

.p-post-treatment__detail-list,
.p-post-treatment__detail-sub-list {
  list-style: disc;
  padding-left: 1.5em;
}

.p-price-categories__inner {
  max-width: 1086px;
  max-width: 67.875rem;
}
@media screen and (max-width: 767px) {
  .p-price-categories__inner {
    max-width: 572px;
    max-width: 35.75rem;
  }
}

.p-price-group {
  background-color: #fff;
  border-radius: 0.3125rem;
}

.p-price-group__sub-heading {
  background-color: #BBB0A3;
  border-top-left-radius: 5px;
  border-top-left-radius: 0.3125rem;
  border-top-right-radius: 5px;
  border-top-right-radius: 0.3125rem;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.6;
  padding: 13px 48px;
  padding: 0.8125rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-price-group__sub-heading {
    padding: 13px 16px;
    padding: 0.8125rem 1rem;
  }
}

.p-price-group__list {
  display: grid;
}

.p-price-group__item {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 15px 48px;
  padding: 0.9375rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-price-group__item {
    gap: 10px;
    gap: 0.625rem;
    min-height: 56px;
    min-height: 3.5rem;
    padding: 2px 16px;
    padding: 0.125rem 1rem;
  }
}

.p-price-group__item:not(:last-child) {
  border-bottom: 1px solid #E8E5E0;
}

.p-price-group__title {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.04em;
  width: 700px;
  width: 43.75rem;
}
@media screen and (max-width: 767px) {
  .p-price-group__title {
    width: 170px;
    width: 10.625rem;
  }
}

.p-price-group__detail {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0.04em;
}

.p-price-group__amount {
  display: inline-block;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
}

.p-price-group__note {
  display: inline-block;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  letter-spacing: 0.04em;
  margin-left: 8px;
  margin-left: 0.5rem;
}

.p-price-mv {
  padding-bottom: 87px;
  padding-bottom: 5.4375rem;
  padding-top: 80px;
  padding-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-price-mv {
    padding-bottom: 62px;
    padding-bottom: 3.875rem;
    padding-top: 60px;
    padding-top: 3.75rem;
  }
}

.p-price-mv__title-group {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  gap: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-price-mv__title-group {
    gap: 0;
  }
}

.p-price-mv__title {
  text-transform: uppercase;
}

.p-price-mv__title-ja {
  letter-spacing: 0.1em;
}

.p-price {
  padding-bottom: 112px;
  padding-bottom: 7rem;
  padding-top: 45px;
  padding-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-price {
    padding-bottom: 54px;
    padding-bottom: 3.375rem;
    padding-top: 36px;
    padding-top: 2.25rem;
  }
}

.p-price__inner {
  max-width: 1086px;
  max-width: 67.875rem;
}
@media screen and (max-width: 767px) {
  .p-price__inner {
    max-width: 572px;
    max-width: 35.75rem;
  }
}

.p-price__wrapper:not(:first-child) {
  margin-top: 61px;
  margin-top: 3.8125rem;
}
@media screen and (max-width: 767px) {
  .p-price__wrapper:not(:first-child) {
    margin-top: 48px;
    margin-top: 3rem;
  }
}

.p-price__contents {
  grid-gap: 42px;
  display: grid;
  gap: 42px;
  gap: 2.625rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-price__contents {
    gap: 25px;
    gap: 1.5625rem;
  }
}

.p-price__pagenavi {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 116px;
  margin-top: 7.25rem;
}
@media screen and (max-width: 767px) {
  .p-price__pagenavi {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
}

.p-top-about {
  padding-top: 193px;
  padding-top: 12.0625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-about {
    padding-top: 126px;
    padding-top: 7.875rem;
  }
}

.p-top-about__wrapper {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-about__wrapper {
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .p-top-about__image-group {
    margin-top: 32px;
    margin-top: 2rem;
    position: relative;
  }
}

.p-top-about__image {
  border-radius: 0 520px 520px 0/0 520px 520px 0;
  overflow: hidden;
  width: 62.7777%;
}
@media screen and (max-width: 767px) {
  .p-top-about__image {
    position: relative;
    width: 92.3076923077%;
    z-index: 1;
  }
}

.p-top-about__image img {
  -o-object-fit: cover;
  aspect-ratio: 904/653;
  height: auto;
     object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-about__image img {
    aspect-ratio: 360/280;
  }
}

@media screen and (max-width: 767px) {
  .p-top-about__bg-round {
    aspect-ratio: 360/280;
    background-color: #fff;
    border-radius: 1000px 0 0 1000px/1000px 0 0 1000px;
    content: "";
    margin-top: 29px;
    margin-top: 1.8125rem;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    width: 92.3076923077%;
  }
}

.p-top-about__content {
  align-items: center;
  aspect-ratio: 904/653;
  background-color: #fff;
  border-radius: 1000px 0 0 1000px/1000px 0 0 1000px;
  display: flex;
  justify-content: center;
  margin-top: -60px;
  margin-top: -3.75rem;
  overflow: hidden;
  padding: 90px 50px;
  padding: 5.625rem 3.125rem;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 62.7777%;
}
@media screen and (max-width: 767px) {
  .p-top-about__content {
    border-radius: 0;
    border-radius: initial;
    margin-top: -50px;
    margin-top: -3.125rem;
    position: static;
    position: initial;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-top-about__text-block {
    padding-left: 15px;
    padding-left: 0.9375rem;
    padding-right: 15px;
    padding-right: 0.9375rem;
    text-align: center;
  }
}

.p-top-about__into {
  font-family: "Noto Serif JP", serif;
  font-size: max(22px, 10px);
  font-size: max(1.375rem, 10px);
  letter-spacing: 0.12em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__into {
    margin-top: 22px;
    margin-top: 1.375rem;
  }
}

.p-top-about__text {
  font-family: "Noto Serif JP", serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 2.8;
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (max-width: 767px) {
  .p-top-about__text {
    font-feature-settings: "palt";
    letter-spacing: -0.065em;
    margin-top: 21px;
    margin-top: 1.3125rem;
  }
}

.p-top-about__link {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__link {
    margin-top: 58px;
    margin-top: 3.625rem;
    text-align: center;
  }
}

.p-top-case {
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .p-top-case {
    padding-top: 10px;
    padding-top: 0.625rem;
  }
}

.p-top-case__wrapper {
  align-items: center;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-top-case__wrapper {
    flex-direction: column;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

.p-top-case__header {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 560px;
  height: 35rem;
  justify-content: center;
  position: relative;
  width: 40.54%;
}
@media screen and (max-width: 767px) {
  .p-top-case__header {
    height: auto;
    width: 100%;
  }
}

.p-top-case__header::before {
  background-color: #FCFAF8;
  border-radius: 18.75rem;
  bottom: 0;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-case__header::before {
    content: none;
  }
}

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

.p-top-case__follow-btn-wrap {
  margin-top: 40px;
  margin-top: 2.5rem;
  width: 172px;
  width: 10.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-case__follow-btn-wrap {
    margin-top: 35px;
    margin-top: 2.1875rem;
  }
}

.p-top-case__follow-btn {
  align-items: center;
  background-color: transparent;
  border: 0.5px solid #424242;
  border: 0.03125rem solid #424242;
  border-radius: 0.1875rem;
  color: #424242;
  display: flex;
  font-family: "Bellefair", serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  gap: 8px;
  gap: 0.5rem;
  justify-content: center;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 11.2px 16px;
  padding: 0.7rem 1rem;
  position: relative;
  transition: color 0.3s ease-out, background-color 0.3s ease-out;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-case__follow-btn {
    background-color: #8D7C66;
    border: 0.5px solid #8D7C66;
    border: 0.03125rem solid #8D7C66;
    color: #fff;
  }
}

.p-top-case__follow-btn::before {
  -webkit-mask-image: url("../images/common/icon-insta.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: currentColor;
  content: "";
  display: inline-block;
  height: 13.13px;
  height: 0.820625rem;
          mask-image: url("../images/common/icon-insta.svg");
          mask-position: center;
          mask-repeat: no-repeat;
          mask-size: contain;
  width: 13.14px;
  width: 0.82125rem;
}

@media (any-hover: hover) {
  .p-top-case__follow-btn:hover {
    background-color: #8D7C66;
    border: 0.5px solid #8D7C66;
    border: 0.03125rem solid #8D7C66;
    color: #fff;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .p-top-case__follow-btn:hover {
    background-color: transparent;
    color: #8D7C66;
  }
}
.p-top-case__gallery {
  margin-left: -116px;
  margin-left: -7.25rem;
  margin-top: 80px;
  margin-top: 5rem;
  width: 68.75%;
}
@media screen and (max-width: 767px) {
  .p-top-case__gallery {
    margin-left: 0;
    margin-top: 48px;
    margin-top: 3rem;
    width: 100%;
  }
}

.p-top-case__image-item {
  display: block;
}

.p-top-case__image {
  -o-object-fit: cover;
  aspect-ratio: 160/202;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-top-case__navigation {
  display: flex;
  gap: 32px;
  gap: 2rem;
  justify-content: center;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-top-case__navigation {
    margin-top: 24px;
    margin-top: 1.5rem;
  }
}

.p-top-case__nav-button {
  align-items: center;
  aspect-ratio: 1/1;
  background-color: transparent;
  border: 0.5px solid #424242;
  border: 0.03125rem solid #424242;
  border-radius: 50%;
  color: #424242;
  cursor: pointer;
  display: flex;
  height: 48px;
  height: 3rem;
  justify-content: center;
  transition: all 0.3s ease;
  width: 48px;
  width: 3rem;
}

.p-top-case__nav-button::before {
  -webkit-mask-image: url("../images/common/icon-arrow.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: currentColor;
  content: "";
  display: block;
  height: 6px;
  height: 0.375rem;
          mask-image: url("../images/common/icon-arrow.svg");
          mask-position: center;
          mask-repeat: no-repeat;
          mask-size: contain;
  width: 16px;
  width: 1rem;
}

.p-top-case__nav-button--prev::before {
  transform: rotate(180deg);
}

@media (any-hover: hover) {
  .p-top-case__nav-button:hover {
    background-color: #424242;
    color: #fff;
  }
}
.p-top-doctor__content {
  background-color: #FCFAF8;
  border-radius: 100vmax;
  padding: 45px 0 75px;
  padding: 2.8125rem 0 4.6875rem;
}

@media screen and (max-width: 767px) {
  .p-top-doctor__content {
    background-color: transparent;
    border-radius: 0;
    padding: 0 16px;
    padding: 0 1rem;
  }
}

.p-top-doctor__info {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
  gap: 2rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-top-doctor__info {
    gap: 23px;
    gap: 1.4375rem;
    margin-top: 10px;
    margin-top: 0.625rem;
  }
}

.p-top-doctor__message {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 83%;
}
@media screen and (max-width: 767px) {
  .p-top-doctor__message {
    width: 100%;
  }
}

.p-top-doctor__name {
  font-family: "Noto Serif JP", serif;
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  font-weight: 300;
  line-height: 2.5;
}

.p-top-doctor__name-small {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
}

.p-top-doctor__name-en {
  font-family: "Nunito Sans", sans-serif;
}

.p-top-doctor__text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2.2;
  margin-top: 5px;
  margin-top: 0.3125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-doctor__text {
    line-height: 2.21;
    margin-top: 8px;
    margin-top: 0.5rem;
    text-align: justify;
  }
}

.p-top-faq {
  padding-bottom: 112px;
  padding-bottom: 7rem;
  padding-top: 115px;
  padding-top: 7.1875rem;
}
@media screen and (max-width: 767px) {
  .p-top-faq {
    padding-bottom: 55px;
    padding-bottom: 3.4375rem;
    padding-top: 70px;
    padding-top: 4.375rem;
  }
}

.p-top-faq__inner.l-inner {
  max-width: 1086px;
  max-width: 67.875rem;
}

.p-top-faq__content {
  background-color: #fff;
  border-radius: 0.3125rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding-left: 48px;
  padding-left: 3rem;
  padding-right: 48px;
  padding-right: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top-faq__content {
    margin-top: 35px;
    margin-top: 2.1875rem;
    padding-left: 16px;
    padding-left: 1rem;
    padding-right: 16px;
    padding-right: 1rem;
  }
}

.p-top-faq__link-wrap {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-faq__link-wrap {
    margin-top: 34px;
    margin-top: 2.125rem;
  }
}

.p-top-menu {
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
  padding-top: 120px;
  padding-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-menu {
    padding-bottom: 48px;
    padding-bottom: 3rem;
    padding-top: 48px;
    padding-top: 3rem;
  }
}

.p-top-menu__wrapper {
  margin-top: 42px;
  margin-top: 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-menu__wrapper {
    margin-top: 35px;
    margin-top: 2.1875rem;
  }
}

.p-top-menu__text-block {
  margin-top: 45px;
  margin-top: 2.8125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-menu__text-block {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
}

.p-top-menu__lead {
  font-family: "Noto Serif JP", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-top-menu__lead {
    line-height: 1.6;
    text-align: center;
  }
}

.p-top-menu__text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2.2;
  margin-top: 13px;
  margin-top: 0.8125rem;
}

.p-top-menu__button {
  margin-top: 34px;
  margin-top: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-menu__button {
    margin-top: 27px;
    margin-top: 1.6875rem;
  }
}

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

.p-top-mv__button {
  position: absolute;
  right: 30px;
  right: 1.875rem;
  top: 15px;
  top: 0.9375rem;
  width: 169px;
  width: 10.5625rem;
}
@media screen and (max-width: 767px) {
  .p-top-mv__button {
    display: none;
  }
}

.p-top-mv__inner {
  padding-left: 40px;
  padding-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-mv__inner {
    padding-left: 0;
  }
}

.p-top-mv__wrapper {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-top-mv__wrapper {
    flex-direction: column-reverse;
  }
}

.p-top-mv__image {
  width: calc(50% + 1.25rem);
}
@media screen and (max-width: 767px) {
  .p-top-mv__image {
    height: 560px;
    height: 35rem;
    width: 100%;
  }
}

.p-top-mv__image img {
  -o-object-fit: cover;
  aspect-ratio: 720/890;
  height: auto;
     object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-mv__image img {
    aspect-ratio: 390/560;
  }
}

.p-top-mv__content {
  padding-top: 32px;
  padding-top: 2rem;
  width: calc(50% - 1.25rem);
}
@media screen and (max-width: 767px) {
  .p-top-mv__content {
    margin-top: 57px;
    margin-top: 3.5625rem;
    padding-top: 0;
    width: 100%;
    position: relative;
  }

  .p-top-mv__open.u-sp {
    display: block;       /* .u-sp で既に display:block だが明示してOK */
    position: absolute;   /* 任意の場所に固定したい場合 */
    left: 50%;
    transform: translateX(-50%);
    top: -230px;            /* 好みで調整 */
    width: 327px;         /* 好みで調整 */
  }

  .p-top-mv__open.u-pc { 
    display: none; 
  }
}

.p-top-mv__logo {
  display: inline-block;
  width: 116px;
  width: 7.25rem;
}

.p-top-mv__open {
  display: block;
  width: 380px;
  margin-top: 3.125rem;
}

.p-top-mv__menu-items {
  margin-top: 54px;
  margin-top: 3.375rem;
}

@media screen and (max-width: 767px) {
  .p-top-mv__menu-items {
    margin-top: 50px;
    margin-top: 3.125rem;
  }
}

.p-top-mv__menu-link {
  display: inline-block;
  font-family: "Bellefair", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  letter-spacing: 0;
  padding-bottom: 2px;
  padding-bottom: 0.125rem;
  padding-top: 2px;
  padding-top: 0.125rem;
  text-transform: uppercase;
}

.p-top-mv__copy {
  -o-object-fit: contain;
  aspect-ratio: 437/127;
  margin-top: 250px;
  margin-top: 15.625rem;
     object-fit: contain;
  width: 437px;
  width: 27.3125rem;
}
@media screen and (max-width: 767px) {
  .p-top-mv__copy {
    margin-top: 0;
    padding-left: 20px;
    padding-left: 1.25rem;
    padding-right: 20px;
    padding-right: 1.25rem;
    width: 321px;
    width: 20.0625rem;
  }
}

.p-top-news-campaign {
  padding: 128px 0;
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-news-campaign {
    padding: 120px 0;
    padding: 7.5rem 0;
  }
}

.p-top-news-campaign__wrapper {
  display: flex;
  gap: 81px;
  gap: 5.0625rem;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-top-news-campaign__wrapper {
    align-items: center;
    flex-direction: column;
    gap: 0;
  }
}

.p-top-news-campaign__header {
  display: flex;
  flex-direction: column;
  margin-top: -10px;
  margin-top: -0.625rem;
  row-gap: 25px;
  row-gap: 1.5625rem;
  width: 24%;
}
@media screen and (max-width: 767px) {
  .p-top-news-campaign__header {
    display: contents;
    margin-top: 0;
    width: 100%;
  }
}

.p-top-news-campaign__title {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-top-news-campaign__title {
    text-align: center;
  }
}

.p-top-news-campaign__link-wrap {
  align-self: flex-start;
}
@media screen and (max-width: 767px) {
  .p-top-news-campaign__link-wrap {
    align-self: center;
    margin-top: 38px;
    margin-top: 2.375rem;
    order: 3;
  }
}

.p-top-news-campaign__link {
  padding: 12px 24px 12px 0;
  padding: 0.75rem 1.5rem 0.75rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-news-campaign__link {
    padding: 0;
  }
}

.p-top-news-campaign__list {
  width: 66%;
}
@media screen and (max-width: 767px) {
  .p-top-news-campaign__list {
    margin-top: 34px;
    margin-top: 2.125rem;
    width: 100%;
  }
}

.js-fadein {
  opacity: 0;
  transform: translateY(5rem);
  transition: all 0.8s ease-out;
}

.js-fadein.is-scrollin {
  opacity: 1;
  transform: translateY(0);
}

.u-pc {
  display: block;
}
.u-pc-space {
  display: block; 
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-pc__inline {
  display: inline;
}
@media screen and (max-width: 767px) {
  .u-pc__inline {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
  .u-sp-space {
    display: block; 
    margin-top: 20px;
  }
}

.u-sp__inline {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp__inline {
    display: inline;
  }
}
/*# sourceMappingURL=style.css.map */
