@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

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

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
******************************************/
/*****************************************
 * px→remの計算（1rem = 10px 固定）
 * 例：rem(16) → 1.6rem
******************************************/
/*****************************************
 * vwの計算
 * 例：vw(1440, 18) → 1.25vw
******************************************/
/*****************************************
 * SP値・PC値から clamp() を生成
 * 例（$comp-width-pc: 1440px）：fluid(14, 18) → clamp(1.4rem, 1.25vw, 1.8rem)
 *
 * - 最小値 = SPカンプ（375px基準）の実測px
 * - 最大値 = PCカンプ（$comp-width-pc基準）の実測px
 * - vw値   = PC実測px ÷ カンプ幅 × 100vw
 * - htmlのfont-sizeは62.5%固定のため二重スケーリングしない
 * - カンプ幅ちょうど（PC/SP）で必ず実測値と一致する
 * - 前提：PC値 >= SP値。逆転する値は rem() + mq() で個別に書く
******************************************/
/*****************************************
 * セクション間の波形の境界（Figma: wave フレーム 1440×60 / Vector 1440×45）
 * 呼び出し側の ::after に適用する。$color には「次のセクションの背景色」を渡す。
 * SVGを background で 100% 100% に伸ばすとレターボックス化するため、
 * preserveAspectRatio="none" のSVGを mask にして background-color で着色する。
******************************************/
html {
  font-size: 62.5%;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #4e4238;
}
body.is-drawer-open {
  overflow: hidden;
}

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

@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}
/*-------------------------------
l-drawer
-------------------------------*/
.l-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  background-color: rgba(78, 66, 56, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.l-drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.l-drawer__panel {
  padding-top: 9.6rem;
  padding-inline: 20px;
  width: 74%;
  max-width: 32rem;
  height: 100svh;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  background-color: #faf6f0;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.l-drawer.is-open .l-drawer__panel {
  transform: translateX(0);
}

.l-drawer__list {
  display: flex;
  flex-direction: column;
}

.l-drawer__item {
  padding-block: 1.6rem;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.06em;
  border-top: 1px solid rgba(140, 123, 110, 0.3);
}
.l-drawer__item:first-child {
  border-top: none;
}
.l-drawer__item.-top {
  text-transform: uppercase;
}

/*-------------------------------
l-footer
-------------------------------*/
.l-footer {
  padding-top: 5.6rem;
  padding-bottom: 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  background-color: #4e4238;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-top: 4.8rem;
    padding-bottom: 8.8rem;
  }
}

.l-footer__inner {
  display: flex;
  justify-content: center;
  gap: 4.8%;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    flex-direction: column;
    gap: 3.2rem;
  }
}

.l-footer__info {
  padding-bottom: 0.4rem;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .l-footer__info {
    width: 100%;
  }
}

.l-footer__logo {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 1.6666666667vw, 2.4rem);
  line-height: 1.9;
  letter-spacing: 0.12em;
  color: #faf6f0;
  font-style: italic;
}

.l-footer__name {
  margin-top: 0.3rem;
  font-size: 1.3rem;
  line-height: 1.9;
  color: rgba(250, 246, 240, 0.5);
}

.l-footer__address {
  margin-top: 1.3rem;
  font-size: 1.4rem;
  line-height: 1.9;
  color: rgba(250, 246, 240, 0.7);
}

.l-footer__hours {
  margin-top: 0.4rem;
  font-size: 1.4rem;
  line-height: 1.9;
  color: rgba(250, 246, 240, 0.7);
}

.l-footer__sns {
  margin-top: 0.8rem;
  font-size: 1.4rem;
  line-height: 1.9;
  color: #d9a8a0;
}

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

.l-footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.l-footer__item {
  font-size: 1.4rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: rgba(250, 246, 240, 0.7);
  text-align: right;
}
.l-footer__item.-top {
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .l-footer__item {
    text-align: left;
  }
}

.l-footer__copyright {
  padding-top: 1.6rem;
  font-size: 1.2rem;
  line-height: 1.9;
  color: rgba(250, 246, 240, 0.4);
  text-align: center;
  border-top: 1px solid rgba(250, 246, 240, 0.12);
}

/*-------------------------------
l-header
-------------------------------*/
.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  background-color: rgba(245, 230, 225, 0.88);
  backdrop-filter: blur(8px);
}

.l-header__inner {
  padding-block: 1.4rem;
  padding-inline: 4rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding-block: 1rem;
    padding-inline: 20px;
  }
}

.l-header__brand {
  font-size: 1.6rem;
  font-weight: 400;
}

.l-header__brand a {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
}

.l-header__logo {
  margin-right: -0.15em;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 1.8055555556vw, 2.6rem);
  line-height: 2;
  letter-spacing: 0.15em;
  font-style: italic;
}

.l-header__tagline {
  font-size: clamp(1.1rem, 0.8333333333vw, 1.2rem);
  line-height: 2;
  letter-spacing: 0.06em;
  color: #8c7b6e;
}

.l-header__list {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}

.l-header__item {
  padding-top: 0.4rem;
  padding-bottom: 0.2rem;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .l-header__item {
    display: none;
  }
}
.l-header__item.-top {
  text-transform: uppercase;
}
.l-header__item.-contact {
  padding-top: 0;
  padding-bottom: 0;
}

/*-------------------------------
l-inner
-------------------------------*/
.l-inner {
  padding-inline: 40px;
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-inline: 20px;
  }
}

/*-------------------------------
c-btn
-------------------------------*/
.c-btn {
  padding: 1rem 2.4rem;
  font-size: clamp(1.3rem, 0.9722222222vw, 1.4rem);
  line-height: 2;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  background-color: #4e4238;
  border-radius: 99.9rem;
  transition: opacity 0.3s;
}
.c-btn::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background: url("../images/common/icon/icon-line.svg") no-repeat center/contain;
}
@media (any-hover: hover) {
  .c-btn:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .c-btn {
    padding: 0.8rem 1.6rem;
  }
}

.c-btn.-large {
  padding: 1.6rem 4rem;
  font-size: clamp(1.4rem, 1.1111111111vw, 1.6rem);
  line-height: 2;
  letter-spacing: 0.06em;
  color: #faf6f0;
  gap: 1rem;
}
.c-btn.-large::before {
  width: 2rem;
  height: 2rem;
}
@media screen and (max-width: 767px) {
  .c-btn.-large {
    padding: 1.4rem 2.8rem;
  }
}

.c-btn.-light {
  padding: 1.8rem 4.8rem;
  font-size: clamp(1.5rem, 1.1805555556vw, 1.7rem);
  line-height: 2;
  letter-spacing: 0.06em;
  color: #4e4238;
  gap: 1rem;
  background-color: #faf6f0;
}
.c-btn.-light::before {
  width: 2.2rem;
  height: 2.2rem;
}
@media screen and (max-width: 767px) {
  .c-btn.-light {
    padding: 1.4rem 2.8rem;
  }
}

/*-------------------------------
c-hamburger
-------------------------------*/
.c-hamburger {
  padding: 0;
  width: 4rem;
  height: 4rem;
  position: relative;
  display: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.c-hamburger::before, .c-hamburger::after {
  content: "";
  width: 2.4rem;
  height: 0.2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4e4238;
  transition: transform 0.3s;
}
.c-hamburger::before {
  top: 1.5rem;
}
.c-hamburger::after {
  bottom: 1.5rem;
}
.c-hamburger.is-open::before {
  transform: translate(-50%, 0.4rem) rotate(45deg);
}
.c-hamburger.is-open::after {
  transform: translate(-50%, -0.4rem) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .c-hamburger {
    display: block;
  }
}

/*-------------------------------
c-line-float
-------------------------------*/
.c-line-float {
  width: 5.6rem;
  height: 5.6rem;
  position: fixed;
  right: 2.4rem;
  bottom: 2.4rem;
  z-index: 15;
  background-color: #4e4238;
  border-radius: 50%;
  box-shadow: 0 0.4rem 1.6rem rgba(78, 66, 56, 0.2);
}

.c-line-float a {
  width: 100%;
  height: 100%;
  display: block;
  background: url("../images/common/icon/icon-line.svg") no-repeat center/2.8rem 2.8rem;
}

/*-------------------------------
p-cta
-------------------------------*/
.p-cta {
  padding-top: 7.9rem;
  padding-bottom: 8rem;
  background-color: #5e6f58;
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding-top: 5.6rem;
    padding-bottom: 5.6rem;
  }
}

.p-cta__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}

.p-cta__title {
  padding-bottom: 1.3rem;
  width: 100%;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(1.8rem, 1.5277777778vw, 2.2rem);
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: #faf6f0;
  text-align: center;
}

.p-cta__note {
  width: 100%;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.04em;
  color: rgba(250, 246, 240, 0.7);
  text-align: center;
}

/*-------------------------------
p-dummy（セクション実装時に p-{ブロック名}.scss を作成し、このファイルは削除する）
-------------------------------*/
/*-------------------------------
p-menu
-------------------------------*/
.p-menu {
  padding-top: 10rem;
  padding-bottom: 12rem;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 6.4rem;
  background-color: #e3eadd;
  overflow: hidden;
}
.p-menu::after {
  content: "";
  width: 100%;
  height: 4.5rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #f5e6e1;
  -webkit-mask: url("../images/common/wave.svg") no-repeat center/100% 100%;
          mask: url("../images/common/wave.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .p-menu {
    padding-top: 6.4rem;
    padding-bottom: 10rem;
    gap: 4rem;
  }
}

.p-menu__inner {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.p-menu__eyebrow {
  width: 100%;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.3rem, 1.0416666667vw, 1.5rem);
  line-height: 2;
  letter-spacing: 0.12em;
  color: #d9a8a0;
  text-align: center;
  font-style: italic;
}

.p-menu__title {
  width: 100%;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(1.7rem, 1.3888888889vw, 2rem);
  line-height: 2;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-align: center;
}

.p-menu__list {
  padding-top: 4.8rem;
  display: flex;
  justify-content: center;
  gap: 3.6%;
}
@media screen and (max-width: 767px) {
  .p-menu__list {
    flex-direction: column;
    gap: 3.2rem;
  }
}

.p-menu__item {
  width: 48.2%;
  position: relative;
  background-color: #ffffff;
  border-radius: 1.2rem;
  box-shadow: 0 0.4rem 2rem rgba(78, 66, 56, 0.06);
}
.p-menu__item::after {
  content: "";
  width: 51.76%;
  aspect-ratio: 499/444;
  position: absolute;
  bottom: -16.56%;
  right: -13.85%;
  background: url("../images/top/menu/menu-deco.png") no-repeat center/contain;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-menu__item {
    width: 100%;
  }
}

.p-menu__image {
  width: 100%;
  aspect-ratio: 482/240;
  border-radius: 1.2rem 1.2rem 0 0;
  overflow: hidden;
}

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

.p-menu__body {
  padding: 2.8rem 2.8rem 3.2rem;
}

.p-menu__name {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(1.6rem, 1.25vw, 1.8rem);
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.p-menu__price {
  margin-top: 0.8rem;
  line-height: 2;
  color: #8c7b6e;
}

.p-menu__link {
  padding-top: 4.1rem;
  text-align: center;
}

.p-menu__link a {
  padding-bottom: 0.2rem;
  line-height: 2;
  letter-spacing: 0.04em;
  display: inline-block;
  border-bottom: 1px solid #d9a8a0;
}

.p-menu__gallery {
  width: 100%;
  max-width: 110rem;
  aspect-ratio: 1100/460;
  position: relative;
}

.p-menu__photo {
  position: absolute;
}

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

.p-menu__photo.-photo1 {
  width: 18.18%;
  aspect-ratio: 1;
  top: 8.7%;
  left: 0;
}

.p-menu__photo.-photo2 {
  width: 13.64%;
  aspect-ratio: 1;
  top: 0;
  left: 24%;
}

.p-menu__photo.-photo3 {
  width: 20%;
  aspect-ratio: 1;
  top: 30.43%;
  left: 38%;
}

.p-menu__photo.-photo4 {
  width: 14.55%;
  aspect-ratio: 1;
  top: 2.17%;
  left: 71.45%;
}

.p-menu__photo.-photo5 {
  width: 15.91%;
  aspect-ratio: 1;
  top: 50%;
  left: 81.09%;
}

/*-------------------------------
p-mv
-------------------------------*/
.p-mv {
  --fv-padding-top: clamp(9.6rem, 100svh - 80.4rem, 15rem);
  --fv-padding-bottom: clamp(7.6rem, 100svh - 82.4rem, 13rem);
  --fv-inner-padding: clamp(0px, 100svh - 91.4rem, 4rem);
  --fv-content: calc(min(120rem, 100vw) - 8rem);
  --fv-col: min(var(--fv-content) * 0.5786, (100svh - var(--fv-padding-top) - var(--fv-padding-bottom) - var(--fv-inner-padding) * 2) * 648 / 594);
  --fv-blob: calc(var(--fv-col) * 1.1574);
  padding-top: var(--fv-padding-top);
  padding-bottom: var(--fv-padding-bottom);
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  background-color: #f5e6e1;
  overflow: hidden;
}
.p-mv::after {
  content: "";
  width: 100%;
  height: 4.5rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #faf6f0;
  -webkit-mask: url("../images/common/wave.svg") no-repeat center/100% 100%;
          mask: url("../images/common/wave.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .p-mv {
    --fv-content: calc(100vw - 20px * 2);
    --fv-col: var(--fv-content);
    padding-top: 11rem;
    padding-bottom: 10.8rem;
  }
}

.p-mv__inner.l-inner {
  max-width: 120rem;
}

.p-mv__inner {
  padding-block: var(--fv-inner-padding);
  display: flex;
  align-items: center;
  gap: 3.57%;
}
@media screen and (max-width: 767px) {
  .p-mv__inner {
    flex-direction: column;
    gap: 4rem;
  }
}

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

.p-mv__eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.3rem, 1.0416666667vw, 1.5rem);
  line-height: 2;
  letter-spacing: 0.12em;
  color: #d9a8a0;
  font-style: italic;
}

.p-mv__title {
  margin-top: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(2.4rem, 2.2222222222vw, 3.2rem);
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.p-mv__lead {
  margin-top: 2.4rem;
  font-size: clamp(1.4rem, 1.1111111111vw, 1.6rem);
  line-height: 2;
  letter-spacing: 0.06em;
  color: #8c7b6e;
}

.p-mv__btn {
  margin-top: 4.4rem;
}

.p-mv__visual {
  width: var(--fv-col);
  position: relative;
  isolation: isolate;
}
.p-mv__visual::before {
  content: "";
  width: var(--fv-blob);
  height: var(--fv-blob);
  position: absolute;
  top: -42.09%;
  left: 21.3%;
  z-index: -1;
  background-color: rgba(217, 168, 160, 0.18);
  border-radius: 50% 50% 23.07% 27.07%;
}
@media screen and (max-width: 767px) {
  .p-mv__visual {
    width: 100%;
  }
}

.p-mv__image {
  margin-left: 11.34%;
  width: 85.49%;
  aspect-ratio: 554/594;
  filter: drop-shadow(0 1.2rem 4.8rem rgba(78, 66, 56, 0.12));
}

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

.p-mv__badge {
  width: 29.32%;
  aspect-ratio: 1;
  position: absolute;
  top: 73.33%;
  right: -1.54%;
  border: 0.5rem solid #f5e6e1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0.6rem 2.4rem rgba(78, 66, 56, 0.1);
}

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

/*-------------------------------
p-profile
-------------------------------*/
.p-profile {
  padding-top: 7.1rem;
  padding-bottom: 13.2rem;
  position: relative;
  background-color: #f5e6e1;
}
.p-profile::after {
  content: "";
  width: 100%;
  height: 4.5rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #faf6f0;
  -webkit-mask: url("../images/common/wave.svg") no-repeat center/100% 100%;
          mask: url("../images/common/wave.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .p-profile {
    padding-top: 5.6rem;
    padding-bottom: 10.8rem;
  }
}

.p-profile__inner {
  display: flex;
  align-items: center;
  gap: 5.6%;
}
@media screen and (max-width: 767px) {
  .p-profile__inner {
    flex-direction: column;
    gap: 3.2rem;
  }
}

.p-profile__photo {
  width: 24%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0.4rem 2.4rem rgba(78, 66, 56, 0.08);
}
@media screen and (max-width: 767px) {
  .p-profile__photo {
    width: 60%;
  }
}

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

.p-profile__body {
  width: 70.4%;
}
@media screen and (max-width: 767px) {
  .p-profile__body {
    width: 100%;
  }
}

.p-profile__eyebrow {
  font-family: "Cormorant Garamond", serif;
  line-height: 2.1;
  letter-spacing: 0.08em;
  color: #8c7b6e;
  font-style: italic;
}

.p-profile__en {
  text-transform: uppercase;
}

.p-profile__name {
  margin-top: 2.5rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(2.2rem, 1.8055555556vw, 2.6rem);
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.p-profile__role {
  margin-top: 0.3rem;
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: #8c7b6e;
}

.p-profile__text {
  margin-top: 2.4rem;
  line-height: 2.1;
}

.p-profile__link {
  margin-top: 2.6rem;
}

.p-profile__link a {
  padding-bottom: 0.2rem;
  line-height: 2;
  letter-spacing: 0.04em;
  display: inline-block;
  border-bottom: 1px solid #d9a8a0;
}

/*-------------------------------
p-voice
-------------------------------*/
.p-voice {
  padding-top: 12.8rem;
  padding-bottom: 10rem;
  background-color: #faf6f0;
}
@media screen and (max-width: 767px) {
  .p-voice {
    padding-top: 7.2rem;
    padding-bottom: 5.6rem;
  }
}

.p-voice__inner {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.p-voice__eyebrow {
  width: 100%;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.3rem, 1.0416666667vw, 1.5rem);
  line-height: 2;
  letter-spacing: 0.12em;
  color: #d9a8a0;
  text-align: center;
  font-style: italic;
}

.p-voice__title {
  width: 100%;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(2rem, 1.6666666667vw, 2.4rem);
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-align: center;
}

.p-voice__list {
  padding-top: 4.8rem;
  display: flex;
  justify-content: center;
  gap: 3.2%;
}
@media screen and (max-width: 767px) {
  .p-voice__list {
    flex-direction: column;
    gap: 2.4rem;
  }
}

.p-voice__item {
  padding: 5.4rem 2.8rem 2.8rem;
  width: 31.2%;
  position: relative;
  background-color: #ffffff;
  border-radius: 1.2rem;
  box-shadow: 0 0.2rem 1.2rem rgba(78, 66, 56, 0.05);
}
.p-voice__item::after {
  content: "";
  width: 38.46%;
  aspect-ratio: 120/95;
  position: absolute;
  top: 30%;
  left: 15.38%;
  background: url("../images/top/voice/voice-deco.png") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-voice__item {
    width: 100%;
  }
}

.p-voice__avatar {
  margin-inline: auto;
  width: 45.31%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}

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

.p-voice__text {
  margin-top: 3.4rem;
  position: relative;
  z-index: 1;
  line-height: 2;
}

.p-voice__name {
  margin-top: 1.6rem;
  font-size: 1.3rem;
  line-height: 2;
  color: #8c7b6e;
}

/*-------------------------------
p-worry
-------------------------------*/
.p-worry {
  padding-top: 12.8rem;
  padding-bottom: 16rem;
  position: relative;
  background-color: #faf6f0;
}
.p-worry::after {
  content: "";
  width: 100%;
  height: 4.5rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #e3eadd;
  -webkit-mask: url("../images/common/wave.svg") no-repeat center/100% 100%;
          mask: url("../images/common/wave.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .p-worry {
    padding-top: 7.2rem;
    padding-bottom: 11rem;
  }
}

.p-worry__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.p-worry__eyebrow {
  width: 100%;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.3rem, 1.0416666667vw, 1.5rem);
  line-height: 2;
  letter-spacing: 0.12em;
  color: #d9a8a0;
  text-align: center;
  font-style: italic;
}

.p-worry__title {
  width: 100%;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(1.8rem, 1.5277777778vw, 2.2rem);
  line-height: 2;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-align: center;
}

.p-worry__image {
  width: 82%;
  aspect-ratio: 820/526;
}
@media screen and (max-width: 767px) {
  .p-worry__image {
    width: 100%;
  }
}

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

/*-------------------------------
u-dummy（ユーティリティが必要になったら u-{名称}.scss を作成し、このファイルは削除する）
-------------------------------*/
/*# sourceMappingURL=style.css.map */
