@charset "UTF-8";
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

html {
  font-size: clamp(16px, 4vw, 18px);
}

body {
  color: #333;
  background: #F9F7F1;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif, "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 1rem;
  line-height: 1.6;
}

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

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

@font-face {
  font-family: "AntroVectra";
  src: url("../font/Antro_Vectra_Bolder.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* ========================================
   Header
======================================== */
.l-header {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  height: 65px;
  z-index: 2000;
  background: #F9F7F1;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* 表示制御 */
html.is-scrolled .l-header,
html.is-drawer-open .l-header {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ========================================
   Inner
======================================== */
.l-header__inner {
  width: 100%;
  max-width: 1300px;
  height: 100%;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .l-header__inner {
    padding-inline: 30px;
    position: relative;
  }
}

/* ========================================
   Logo
======================================== */
.l-header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  color: #8F5D46;
  transition: opacity 0.2s ease;
}
.l-header__logo:hover {
  opacity: 0.7;
}
.l-header__logo:focus-visible {
  outline: none;
}

.l-header__logoImg {
  width: 55px;
  height: auto;
  display: block;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .l-header__logoImg {
    width: 90px;
  }
}

/* ========================================
   Nav (PC only)
======================================== */
.l-header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .l-header__nav {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -40%);
    padding: 0;
    min-width: 0;
  }
}

/* ========================================
   Actions
======================================== */
.l-header__actions {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 0.75rem);
  flex-shrink: 0;
}

/* CTA */
.l-header__actions .l-header__cta {
  display: none;
}

@media (min-width: 1024px) {
  .l-header__actions .l-header__cta {
    display: inline-flex;
  }
}
/* ========================================
   PCのみ右側に固定の問い合わせリンク
======================================== */
.p-fixed-contact {
  display: none;
}
@media (min-width: 1024px) {
  .p-fixed-contact {
    display: block;
    position: fixed;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
}
.p-fixed-contact.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.p-fixed-contact__btn {
  writing-mode: vertical-rl;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  color: #8F5D46;
  padding: 24px 16px;
  border-radius: 5px 0 0 5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.p-fixed-contact__btn:hover {
  background: #8F5D46;
  color: #fff;
}

.p-fixed-contact__icon {
  width: 18px;
  height: auto;
}

.p-fixed-contact__slash {
  display: inline-block;
  transform: rotate(-60deg);
}

.l-section {
  position: relative;
  padding-block: 40px;
}
@media (min-width: 1024px) {
  .l-section {
    padding-block: 80px;
  }
}

.l-section__inner {
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
  padding-inline: 16px;
  --section-padding: 16px;
}
@media (min-width: 380px) {
  .l-section__inner {
    padding-inline: 30px;
    --section-padding: 30px;
  }
}
@media (min-width: 1024px) {
  .l-section__inner {
    padding-inline: 30px;
    --section-padding: f.$space-inline-pc;
  }
}

/* 共通グリッド：左=タイトル列、右=本文 */
.l-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 10px;
}
@media (min-width: 1024px) {
  .l-section__grid {
    grid-template-columns: 250px 1fr;
    column-gap: 40px;
    align-items: start;
  }
}

.l-section__head {
  min-width: 0;
}

.l-section__body {
  min-width: 0;
}

/* 見出しタイポ（共通） */
.l-section__eyebrow {
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 12px;
  font-size: 20px;
  color: #8F5D46;
}
@media (min-width: 1024px) {
  .l-section__eyebrow {
    font-size: 16px;
  }
}

.l-section__title {
  margin: 0 0 14px;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .l-section__title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .l-section__title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .l-section__title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}

.l-section__title--en {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
@media (min-width: 380px) {
  .l-section__title--en {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.3;
  }
}
@media (min-width: 768px) {
  .l-section__title--en {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.3;
  }
}
@media (min-width: 1024px) {
  .l-section__title--en {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.3;
  }
}
.l-section__title--en {
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
}

.l-section__lead {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .l-section__lead {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .l-section__lead {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .l-section__lead {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}

.l-section__lead--en {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media (min-width: 380px) {
  .l-section__lead--en {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
}
@media (min-width: 768px) {
  .l-section__lead--en {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
}
@media (min-width: 1024px) {
  .l-section__lead--en {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
}
.l-section__lead--en {
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
}

.l-section__text {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .l-section__text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .l-section__text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .l-section__text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}

.l-section__text--en {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .l-section__text--en {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .l-section__text--en {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .l-section__text--en {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.6;
  }
}
.l-section__text--en {
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
}

/* ===== conceptだけ：PCで3カラム（左=eyebrow / 中=title+lead / 右=body） ===== */
.l-section--concept .l-section__mid {
  min-width: 0;
}

/* ===== conceptだけ：PCで3カラム（左=eyebrow / 中=title+lead / 右=body） ===== */
@media (min-width: 1024px) {
  .l-section--concept .l-section__grid {
    grid-template-columns: 140px 420px minmax(0, 1fr);
    column-gap: 56px;
    align-items: start;
  }
  .l-section--concept .l-section__head {
    grid-column: 1/2;
  }
  .l-section--concept .l-section__mid {
    grid-column: 2/3;
  }
  .l-section--concept .l-section__body {
    grid-column: 3/4;
    max-width: 520px;
  }
  /* eyebrowは少し下げるとカンプに近い */
  .l-section--concept .l-section__eyebrow {
    margin-top: 8px;
  }
}
/* overlay共通（必要なセクションだけ付与） */
.l-section--overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

/*スムーススクロール*/
section[id] {
  scroll-margin-top: 89px;
}

.l-footer {
  position: relative;
  z-index: 10;
  background: #8F5D46;
  color: #F5F1ED;
  padding-block: clamp(2rem, 6vh, 3rem) clamp(3rem, 8vh, 5rem);
}
@media (min-width: 1024px) {
  .l-footer {
    padding-block: 64px;
  }
}

.l-footer__inner {
  width: min(1120px, 100% - 32px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}
@media (min-width: 1024px) {
  .l-footer__inner {
    padding-inline: clamp(1.25rem, 4vw, 1.5rem);
    max-width: 1120px;
  }
}

.l-footer__main {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 5vh, 2.5rem);
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .l-footer__main {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    text-align: left;
    gap: 48px;
    flex-wrap: wrap;
  }
}

.l-footer__left,
.l-footer__right {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .l-footer__left,
  .l-footer__right {
    height: auto;
  }
}
/* ================= 左側 ================= */
.l-footer__left {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 4vh, 2rem);
  align-items: center;
  text-align: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .l-footer__left {
    flex: 0 0 auto;
    align-items: flex-start;
    text-align: left;
    width: auto;
    gap: 24px;
  }
}

.l-footer__logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  justify-content: center;
  max-width: 120px;
}
@media (min-width: 1024px) {
  .l-footer__logo {
    justify-content: flex-start;
  }
}

.l-footer__logoLink {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
.l-footer__logoLink:hover {
  opacity: 0.8;
}

.l-footer__logoImg {
  display: block;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  width: 100px;
}
@media (min-width: 1024px) {
  .l-footer__logoImg {
    width: 120px;
  }
}

/* PCのみ表示 */
.l-footer__info {
  display: none;
}
@media (min-width: 1024px) {
  .l-footer__info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* SPのみ表示 */
.l-footer__info--sp {
  display: flex;
  gap: clamp(1rem, 4vw, 1.5rem);
  justify-content: center;
}
@media (min-width: 1024px) {
  .l-footer__info--sp {
    display: none;
  }
}

.l-footer__infoItem {
  display: grid;
  grid-template-columns: 24px auto;
  align-items: center;
  column-gap: 10px;
  gap: 8px;
  color: #F5F1ED;
  text-decoration: none;
  font-size: clamp(0.75rem, 3vw, 0.875rem);
  transition: opacity 0.2s ease;
}
@media (min-width: 1024px) {
  .l-footer__infoItem {
    font-size: 14px;
  }
}
.l-footer__infoItem:hover {
  opacity: 0.8;
}

.l-footer__infoItem:nth-child(2) {
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  letter-spacing: 1.2px;
  font-size: 16px;
}

.l-footer__icon {
  width: clamp(18px, 4vw, 22px);
  height: clamp(18px, 4vw, 22px);
  object-fit: contain;
}
@media (min-width: 1024px) {
  .l-footer__icon {
    width: 22px;
    height: 22px;
  }
}

/* ================= 右側 ================= */
.l-footer__right {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 4vh, 2rem);
  align-items: center;
  text-align: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .l-footer__right {
    align-items: flex-start;
    text-align: left;
    width: auto;
    gap: 24px;
  }
}

/* CTA */
.l-footer__cta {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .l-footer__cta {
    width: auto;
    max-width: none;
  }
}
.l-footer__cta a img {
  padding-right: 10px;
  max-width: 50px;
}

.l-footer__cta .c-btn--footer {
  border: 1px solid #F5F1ED;
  color: #F5F1ED;
  background: transparent;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-weight: 500;
  font-size: clamp(0.875rem, 3.5vw, 1rem);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 100%;
  padding: 12px 20px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition: opacity 0.2s ease, background-color 0.2s ease;
  max-width: 250px;
}
@media (min-width: 1024px) {
  .l-footer__cta .c-btn--footer {
    width: auto;
    font-size: 14px;
    padding: clamp(12px, 2.5vw, 22px) clamp(24px, 5vw, 40px);
  }
}
.l-footer__cta .c-btn--footer:hover {
  opacity: 0.8;
  background-color: rgba(245, 241, 237, 0.1);
}
.l-footer__cta .c-btn--footer img {
  height: 25px;
  width: auto;
  display: block;
}

.l-footer__cta-mail {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .l-footer__cta-mail {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .l-footer__cta-mail {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .l-footer__cta-mail {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
.l-footer__cta-mail {
  border-bottom: 1px solid #fff;
}

/* ================= ナビ ================= */
.l-footer__nav {
  width: 100%;
}
@media (min-width: 1024px) {
  .l-footer__nav {
    width: auto;
  }
}

.l-footer__navList {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* PLAN（2列） */
.l-footer__nav--plan .l-footer__navList {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 16px 32px;
  justify-content: center;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
}
@media (min-width: 1024px) {
  .l-footer__nav--plan .l-footer__navList {
    justify-content: start;
  }
}

/* FLOW FAQ ACCESS（横3） */
.l-footer__nav--sub .l-footer__navList {
  display: flex;
  gap: 10px 32px;
  justify-content: center;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 14px;
}
@media (min-width: 1024px) {
  .l-footer__nav--sub .l-footer__navList {
    justify-content: flex-start;
  }
}

.l-footer__navLink {
  color: #F5F1ED;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.875rem, 3.5vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
@media (min-width: 1024px) {
  .l-footer__navLink {
    font-size: 14px;
  }
}
.l-footer__navLink:hover {
  opacity: 0.8;
}

/* ================= 法的リンク ================= */
.l-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  font-size: 13px;
}
@media (min-width: 1024px) {
  .l-footer__legal {
    align-items: flex-start;
  }
}

.l-footer__legalLink {
  color: #F5F1ED;
  text-decoration: none;
  font-size: clamp(0.625rem, 2.5vw, 0.75rem);
  transition: opacity 0.2s ease;
}
@media (min-width: 1024px) {
  .l-footer__legalLink {
    font-size: 12px;
  }
}
.l-footer__legalLink:hover {
  opacity: 0.8;
}

/* ================= コピーライト ================= */
.l-footer__copy {
  margin-top: auto;
  font-size: clamp(0.625rem, 2.5vw, 0.75rem);
  opacity: 0.9;
  text-align: center;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
}
@media (min-width: 1024px) {
  .l-footer__copy {
    width: 100%;
    margin-top: 40px;
  }
}

/* ================= SP固定CTA ================= */
.l-footer__fixedCta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: clamp(40px, 8vh, 50px);
  background: #8F5D46;
  border-top: 1px solid rgba(245, 241, 237, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .l-footer__fixedCta {
    display: none;
  }
}
.l-footer__fixedCta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.l-footer__fixedCtaLink {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #F5F1ED;
  text-decoration: none;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: clamp(0.75rem, 3vw, 0.875rem);
  letter-spacing: 0.05em;
}
.l-footer__fixedCtaLink:active {
  background-color: rgba(245, 241, 237, 0.1);
}
.l-footer__fixedCtaLink img {
  padding-right: 10px;
  max-width: 50px;
  height: 25px;
  width: auto;
  display: block;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding-inline: 16px;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: clamp(0.875rem, 3.5vw, 1rem);
  white-space: nowrap;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.c-btn:hover, .c-btn:focus {
  opacity: 0.8;
}

.c-btn--primary {
  border-color: #8F5D46;
  background: #8F5D46;
  color: #fff;
}
.c-btn--primary:hover, .c-btn--primary:focus {
  background: #7A4F3A;
  border-color: #7A4F3A;
}

.c-btn--full {
  width: 100%;
}

/* フッター用ボタン */
.c-btn--footer {
  border: 1px solid #F5F1ED;
  background: transparent;
  color: #F5F1ED;
  padding: 12px 32px;
  border-radius: 999px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.c-btn--footer:hover {
  background: #F5F1ED;
  color: #8F5D46;
}

/* ドロワー用ボタン */
.c-btn--primary-outline {
  border-color: #8F5D46;
  background: transparent;
  color: #8F5D46;
}
.c-btn--primary-outline:hover, .c-btn--primary-outline:focus {
  background: #8F5D46;
  color: #fff;
  border-color: #8F5D46;
}

.c-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 32px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-nav li {
  position: relative;
}
.c-nav a {
  display: block;
  font-weight: 500;
  font-size: clamp(12px, 0.8vw, 14px);
  line-height: 1.2;
  padding-block: 8px;
  padding-inline: clamp(4px, 0.8vw, 12px);
  color: #8F5D46;
  text-decoration: none;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease;
}
.c-nav a:hover, .c-nav a:focus-visible {
  opacity: 0.7;
}
.c-nav .current-menu-item > a {
  font-weight: 600;
}

/* ========================================
   PC submenu
======================================== */
@media (min-width: 1024px) {
  .c-nav__item--has-children {
    position: relative;
  }
  .c-nav__item--has-children:hover > .c-nav__subMenu, .c-nav__item--has-children:focus-within > .c-nav__subMenu {
    display: block;
  }
  .c-nav__item--has-children::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -12px;
    width: calc(100% + 24px);
    height: 16px;
  }
  .c-nav__subMenu {
    display: none;
    position: absolute;
    top: calc(100% - 6px);
    left: 0%;
    min-width: 140px;
    margin: 0;
    padding: 14px 5px 12px;
    list-style: none;
    background: rgba(249, 247, 241, 0.86);
    backdrop-filter: blur(6px);
    border: 0;
    border-radius: 0 0 5px 5px;
    box-shadow: 8px 10px 16px rgba(0, 0, 0, 0.06);
    z-index: 2000;
  }
  .c-nav__subItem + .c-nav__subItem {
    margin-top: 0px;
  }
}
.c-hamburger {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: opacity 0.2s ease;
}
.c-hamburger:hover {
  opacity: 0.7;
}
.c-hamburger:active {
  opacity: 0.5;
}
.c-hamburger:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
@media (min-width: 1024px) {
  .c-hamburger {
    display: none;
  }
}

/* line */
.c-hamburger__line {
  width: 24px;
  height: 2px;
  background: #8F5D46;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* 3本目は使わない */
.c-hamburger__line:nth-child(3) {
  display: none;
}

/* =============================
   OPEN時にXに変形
============================= */
html.is-drawer-open .c-hamburger:not(.c-hamburger--close) .c-hamburger__line:nth-child(1) {
  transform: translateY(4.5px) rotate(45deg);
}

html.is-drawer-open .c-hamburger:not(.c-hamburger--close) .c-hamburger__line:nth-child(2) {
  transform: translateY(-4.5px) rotate(-45deg);
}

/* =============================
   ② ドロワー内の閉じるボタン
   常にX表示
============================= */
.c-hamburger--close {
  gap: 0;
}

.c-hamburger--close .c-hamburger__line:nth-child(1) {
  position: absolute;
  transform: rotate(45deg);
}

.c-hamburger--close .c-hamburger__line:nth-child(2) {
  position: absolute;
  transform: rotate(-45deg);
}

.c-linkArrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #8F5D46;
  padding-bottom: 6px;
  padding-right: 24px;
  transition: opacity 0.3s ease;
}
.c-linkArrow--section {
  margin-left: auto;
}
.c-linkArrow {
  /*
  ----------------------------
  下線（左→右へ描画）
  ----------------------------
  */
}
.c-linkArrow::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: left center;
  transform: scaleX(0);
  animation: linkLine 2.2s ease-in-out infinite;
}
.c-linkArrow {
  /*
  ----------------------------
  右端の斜め矢印
  ----------------------------
  */
}
.c-linkArrow::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 12px;
  height: 1px;
  background-color: currentColor;
  transform-origin: right bottom;
  transform: rotate(30deg) scaleX(0);
  animation: linkArrow 2.2s ease-in-out infinite;
}
.c-linkArrow:hover, .c-linkArrow:focus-visible {
  opacity: 0.7;
}
.c-linkArrow--boxed {
  display: block;
  margin: 0 16px;
  padding: 16px;
  border: 1px solid currentColor;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.c-linkArrow--boxed::before, .c-linkArrow--boxed::after {
  display: none;
}
.c-linkArrow--boxed {
  /* SPのみ枠あり */
}
@media (min-width: 1024px) {
  .c-linkArrow--boxed {
    display: inline-flex;
    padding: 0 24px 6px 0;
    border: none;
    text-align: right;
    margin: 0;
    box-shadow: none;
    /* PCでは元の矢印を復活 */
  }
  .c-linkArrow--boxed::before, .c-linkArrow--boxed::after {
    display: block;
  }
}

/*
========================================
下線アニメーション
========================================
*/
@keyframes linkLine {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  40% {
    transform: scaleX(1);
    opacity: 1;
  }
  75% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(0);
    opacity: 0;
  }
}
/*
========================================
矢印アニメーション
========================================
*/
@keyframes linkArrow {
  0% {
    transform: rotate(30deg) scaleX(0);
    opacity: 0;
  }
  45% {
    transform: rotate(30deg) scaleX(1);
    opacity: 1;
  }
  75% {
    transform: rotate(30deg) scaleX(1);
    opacity: 1;
  }
  100% {
    transform: rotate(30deg) scaleX(0);
    opacity: 0;
  }
}
.c-post-card__thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.c-post-card__meta {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 12px;
}
.c-post-card__title {
  margin-top: 12px;
  font-size: 16px;
}
.c-post-card__excerpt {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.8;
}

.c-plan-card {
  position: relative;
  overflow: visible;
}
.c-plan-card__link {
  display: block;
  position: relative;
}
.c-plan-card__media {
  border-radius: 5px;
  /* ======================
     SP：横長
  ====================== */
  aspect-ratio: 4/3;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.c-plan-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.c-plan-card__media {
  /* ======================
     PC：必要なら戻す
  ====================== */
}
@media (min-width: 1024px) {
  .c-plan-card__media {
    aspect-ratio: 3/4;
  }
}
.c-plan-card__caption {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}
.c-plan-card__name {
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: #8F5D46;
}

.c-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .c-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .c-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .c-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
.c-title {
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
}

.c-subtitle {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .c-subtitle {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .c-subtitle {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .c-subtitle {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
.c-subtitle {
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
}

.c-text {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .c-text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .c-text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .c-text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
.c-text {
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
}

.c-title--en {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
@media (min-width: 380px) {
  .c-title--en {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.3;
  }
}
@media (min-width: 768px) {
  .c-title--en {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.3;
  }
}
@media (min-width: 1024px) {
  .c-title--en {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.3;
  }
}
.c-title--en {
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
}

.c-subtitle--en {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media (min-width: 380px) {
  .c-subtitle--en {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
}
@media (min-width: 768px) {
  .c-subtitle--en {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
}
@media (min-width: 1024px) {
  .c-subtitle--en {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
}
.c-subtitle--en {
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
}

.c-text--en {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .c-text--en {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .c-text--en {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .c-text--en {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.6;
  }
}
.c-text--en {
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
}

.p-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
}

.p-hero__media {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.p-hero__video {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.p-hero__img,
.p-hero__videoElement {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.p-hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: rgba(143, 93, 70, 0);
  transition: background-color 0.3s ease;
}

/**
 * スクロール開始と同時に「透過ブラウン」を付ける（既存JSの is-scrolled を流用）
 * ※スクロール量に追従する“連続フェード”まで要らないならこれで十分
 */
html.is-scrolled .p-hero__overlay {
  background: rgba(143, 93, 70, 0.2);
}

.p-concept {
  position: relative;
  width: 100%;
  color: #fff;
  min-height: 100vh;
  min-height: 100dvh;
  z-index: 10;
  display: flex;
  align-items: flex-end;
}
.p-concept::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.p-concept__inner {
  position: relative;
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}
@media (min-width: 1024px) {
  .p-concept__inner {
    padding-inline: clamp(1.25rem, 4vw, 1.5rem);
  }
}

.p-concept__text {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .p-concept__text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .p-concept__text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-concept__text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
.p-concept__text p {
  margin: 0 0 clamp(16px, 4vh, 24px);
}

.p-concept__label {
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: clamp(0.75rem, 2.5vw, 0.875rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 clamp(0.5rem, 2vh, 1rem);
}

.p-concept__title {
  font-size: clamp(1.5rem, 6vw, 3rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 clamp(1rem, 4vh, 2rem);
}
@media (min-width: 1024px) {
  .p-concept__title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }
}

.p-concept__subtitle {
  font-size: clamp(0.875rem, 3.5vw, 1.25rem);
  font-weight: 400;
  line-height: 2;
  margin: 0 0 clamp(1.5rem, 6vh, 3rem);
}
@media (min-width: 1024px) {
  .p-concept__subtitle {
    font-size: clamp(1rem, 4vw, 1.5rem);
    line-height: 2.2;
  }
}

/* CONCEPT だけタイトル白に */
.l-section--concept .l-section__eyebrow {
  color: #fff;
}

.p-parallaxBlock {
  position: relative;
}

.p-parallaxBlock__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  z-index: 0;
}

/* ================================
   Color
================================ */
/* ================================
   Overlay
================================ */
.p-drawerOverlay {
  position: fixed;
  inset: 0;
  background: rgba(143, 93, 70, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2050;
  backdrop-filter: blur(2px);
}

/* ================================
   Drawer
================================ */
.p-drawer {
  position: fixed;
  inset: 0;
  width: 100vw;
  min-height: 100vh;
  height: 100dvh;
  background: #FCF1EE;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2100;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.p-drawer__inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  z-index: 1;
}

/* ================================
   Header
================================ */
.p-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(143, 93, 70, 0.3);
  flex-shrink: 0;
}

.p-drawer__logoImg {
  width: 55px;
  height: auto;
}

.p-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: none;
  background: transparent;
  cursor: pointer;
}

.p-drawer__closeIcon {
  font-size: 2rem;
  line-height: 1;
  color: #8F5D46;
}

/* ================================
   Navigation
================================ */
.p-drawer__nav {
  flex: initial;
  overflow: visible;
  min-height: auto;
  padding-block: 8px 0;
}

.p-drawer__menu,
.p-drawer__submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* depth 0 */
.p-drawer__menu > li > a {
  display: block;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-weight: 700;
  font-size: clamp(18px, 3.8vw, 20px);
  line-height: 1.35;
  text-transform: uppercase;
  padding: 12px 20px;
  color: #8F5D46;
  text-decoration: none;
}

/* depth 1 */
.p-drawer__submenu {
  padding-left: 24px;
}

.p-drawer__submenu > li > a {
  display: block;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-weight: 600;
  font-size: clamp(16px, 3.4vw, 18px);
  line-height: 1.5;
  padding: 6px 0;
  color: #8F5D46;
  text-decoration: none;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/* depth 2 */
.p-drawer__submenu .p-drawer__submenu {
  padding-left: 20px;
}

/* 日本語注釈 */
.p-drawer__menu .u-font-jp {
  font-size: 0.9em;
  white-space: nowrap;
}

/* ================================
   Drawer grid menu
================================ */
.p-drawer__menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 8px;
  margin-top: 12px;
  padding-inline: 20px;
  list-style: none;
}

.p-drawer__menu-grid > li {
  min-width: 0;
}

.p-drawer__menu-grid > li > a {
  display: block;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-weight: 700;
  font-size: clamp(18px, 3.8vw, 20px);
  line-height: 1.35;
  text-transform: uppercase;
  padding: 12px 0;
  color: #8F5D46;
  text-decoration: none;
}

/* ================================
   CTA Area
================================ */
.p-drawer__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 20px 32px;
  flex-shrink: 0;
}

.p-drawer__ctaGroup {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1 1 auto;
  border: 1px solid #8F5D46;
  padding: 0;
  border-radius: 999px;
}

.p-drawer__line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  width: 100%;
  padding: 12px 16px;
  text-decoration: none;
}

.p-drawer__line img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: block;
}

.p-drawer__line span {
  color: #8F5D46;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: clamp(0.8rem, 3.2vw, 0.95rem);
  line-height: 1.2;
  white-space: nowrap;
}

.p-drawer__contactBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: #8F5D46;
  text-decoration: none;
}

.p-drawer__sns {
  flex: 0 0 auto;
}

.p-drawer__sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.p-drawer__sns img {
  width: 28px;
  height: 28px;
  aspect-ratio: 1/1;
  object-fit: contain;
  display: block;
}

/* ================================
   Footer
================================ */
.p-drawer__footer {
  display: none;
}

/* ================================
   State
================================ */
html.is-drawer-open {
  overflow: hidden;
}

html.is-drawer-open .p-drawerOverlay {
  opacity: 1;
  pointer-events: auto;
}

html.is-drawer-open .p-drawer {
  transform: translateX(0);
}

/* ================================
   Small device adjustment
================================ */
@media (max-width: 374px) {
  .p-drawer__header {
    padding-inline: 16px;
  }
  .p-drawer__menu > li > a {
    font-size: clamp(12px, 3vw, 16px);
    padding-inline: 16px;
  }
  .p-drawer__submenu {
    padding-left: 20px;
  }
  .p-drawer__submenu .p-drawer__submenu {
    padding-left: 16px;
  }
  .p-drawer__submenu > li > a {
    font-size: clamp(11px, 2.8vw, 15px);
  }
  .p-drawer__actions {
    padding-inline: 16px;
    gap: 10px;
  }
  .p-drawer__line {
    padding-inline: 12px;
  }
  .p-drawer__line span {
    font-size: clamp(0.72rem, 3vw, 0.86rem);
  }
  .p-drawer__menu-grid > li > a {
    font-size: clamp(12px, 3vw, 16px);
  }
}
.p-news__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 32px;
}
@media (min-width: 1024px) {
  .p-news__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 0;
    row-gap: 0;
  }
}

.p-news__item--pc-only {
  display: none;
}
@media (min-width: 1024px) {
  .p-news__item--pc-only {
    display: block;
  }
}

.p-news__item {
  display: flex;
  flex-direction: column;
  padding-block: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.p-news__item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media (min-width: 1024px) {
  .p-news__item {
    padding-block: 24px;
    padding-inline: 24px;
    border-top: none;
    border-bottom: none;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
  }
  .p-news__item:first-child {
    border-left: 1px solid rgba(0, 0, 0, 0.2);
  }
  .p-news__item:last-child {
    border-right: none;
    border-bottom: none;
  }
}

.p-news__date {
  font-size: 13px;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
}

.p-news__content {
  display: block;
}

.p-news__title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .p-news__title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .p-news__title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .p-news__title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .p-news__title {
    margin-bottom: 8px;
    min-height: 50px;
  }
}

.p-news__excerpt {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .p-news__excerpt {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .p-news__excerpt {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-news__excerpt {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}

.p-news__buttonWrap {
  margin-top: 16px;
  text-align: center;
}
@media (min-width: 1024px) {
  .p-news__buttonWrap {
    margin-top: auto;
    padding-top: 24px;
  }
}

.p-news__btn {
  min-width: 160px;
  padding-inline: 32px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .p-news__btn {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .p-news__btn {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .p-news__btn {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.6;
  }
}
.p-news__btn {
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
}

.p-news__empty {
  font-size: 14px;
}

/* ==============================
   PLAN animation
============================== */
@keyframes planFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes planTextFadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-plan {
  position: relative;
  isolation: isolate;
}
.p-plan::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../../assets/images/top/plan_bg_sp.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  z-index: 0;
}
@media (min-width: 1024px) {
  .p-plan::before {
    background-image: url("../../assets/images/top/plan__bg_pc.jpg");
  }
}
.p-plan__visual {
  min-width: 0;
}
.p-plan__slides--visual {
  touch-action: pan-y;
}
.p-plan__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
@media (min-width: 1024px) {
  .p-plan__dots {
    display: none;
  }
}
.p-plan__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid #8F5D46;
  border-radius: 50%;
  background: transparent;
  appearance: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.p-plan__dot.is-active {
  background: #8F5D46;
  transform: scale(1.05);
}
.p-plan__image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-plan__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-plan .l-section__inner {
  position: relative;
  z-index: 10;
}

/* PLAN 全体の 2 カラムレイアウト（左タイトル / 右本文） */
@media (min-width: 1024px) {
  .p-plan__layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    column-gap: 40px;
    align-items: flex-start;
  }
}

/* 右側・左側の2カラム全体 */
.p-plan__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .p-plan__body {
    display: grid;
    grid-template-columns: 450px minmax(0, 1fr); /* 左：画像 / 右：テキスト+others */
    column-gap: 40px;
    align-items: stretch; /* ★左右の高さを揃える（重要） */
  }
}

/* 左：画像カラム */
.p-plan__visual {
  min-width: 0;
  order: 2;
}
@media (min-width: 1024px) {
  .p-plan__visual {
    order: initial;
  }
}

/* 右：テキスト＋Other plans カラム */
.p-plan__content {
  min-width: 0;
  order: 1;
}
@media (min-width: 1024px) {
  .p-plan__content {
    max-width: 420px;
    height: 100%; /* ★左（画像）と同じ高さにストレッチ */
    /* ★上：メイン、下：Other plans */
    display: grid;
    grid-template-rows: 1fr auto; /* 上を可変、下を固定 */
    row-gap: 24px;
    order: initial;
  }
}

.p-plan__slides {
  position: relative;
  min-height: auto;
}
@media (min-width: 1024px) {
  .p-plan__slides {
    min-height: 540px;
  }
}

.p-plan__slide {
  /* SP */
  position: relative;
  inset: auto;
  display: none;
  /* フェードは keyframes に任せるので不要 */
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (min-width: 1024px) {
  .p-plan__slide {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
  }
}

.p-plan__slide.is-active {
  display: block;
  animation: planFadeIn 1.2s ease-in-out both;
}
@media (min-width: 1024px) {
  .p-plan__slide.is-active {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .p-plan__slide {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
  .p-plan__image {
    order: 1;
    flex: 0 0 450px;
    max-width: 450px;
  }
  .p-plan__text {
    order: 2;
    flex: 1 1 auto;
    max-width: 360px;
  }
}
/* 画像スライド用：画像を中央に置くだけ */
.p-plan__slide--visual {
  position: relative;
  height: 100%;
  min-height: 540px;
}

/* 画像コンテナ：左カラムで中央寄せ */
.p-plan__image {
  max-width: 450px;
  width: 100%;
}
.p-plan__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
}

/* テキストブロック（右カラム上部） */
.p-plan__text {
  max-width: 360px;
}

/* キャッチコピー */
.p-plan__catch {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .p-plan__catch {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .p-plan__catch {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .p-plan__catch {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}

/* 日本語プラン名：SP 15px / PC 18px */
.p-plan__name-ja {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .p-plan__name-ja {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .p-plan__name-ja {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-plan__name-ja {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-plan__name-ja {
    font-size: 18px;
  }
}

/* 英語プラン名：SP 24px / PC 18px */
.p-plan__name-en {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media (min-width: 380px) {
  .p-plan__name-en {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
}
@media (min-width: 768px) {
  .p-plan__name-en {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
}
@media (min-width: 1024px) {
  .p-plan__name-en {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
}

/* View more（矢印リンク） */
.p-plan__btn {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .p-plan__btn {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .p-plan__btn {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .p-plan__btn {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.6;
  }
}

/* ---------- Other plans ---------- */
/* 右カラム下部：メインテキストと同じ幅で右寄せ */
.p-plan__others {
  margin-top: 0; /* ★grid row-gapに任せる */
  order: 3;
}
@media (min-width: 1024px) {
  .p-plan__others {
    width: 220px;
    margin-left: auto;
    text-align: left;
    order: initial;
  }
}

.p-plan__othersLabel {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 14px;
  letter-spacing: 0.18em;
}

.p-plan__othersList {
  display: none;
}
@media (min-width: 1024px) {
  .p-plan__othersList {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: block;
    width: 100%;
  }
}

.p-plan__othersItem {
  position: relative;
  padding-left: 24px;
}
.p-plan__othersItem + .p-plan__othersItem {
  margin-top: 6px;
}

/* マーク（listmark.png） */
.p-plan__othersItem::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.2em;
  width: 14px;
  height: 14px;
  background-image: url("../../assets/images/top/listmark.png");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}

.p-plan__othersButton {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  border: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.p-plan__othersName-ja {
  font-size: 11px;
  line-height: 1.3;
}

.p-plan__othersName-en {
  font-size: 15px;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  line-height: 1.2;
}

/* アクティブなプランを下線でハイライト */
.p-plan__othersItem--active .p-plan__othersName-ja,
.p-plan__othersItem--active .p-plan__othersName-en {
  text-decoration: underline;
}

/* SP では Other plans を非表示（カンプ準拠） */
@media (max-width: 767px) {
  .p-plan__othersList, .p-plan__othersLabel {
    display: none;
  }
}
/* メインテキスト（スライドに連動して切り替え） */
.p-plan__mainText {
  position: static;
  min-height: 0; /* ★grid内で潰れないように */
  margin-top: 0px;
}
@media (min-width: 1024px) {
  .p-plan__mainText {
    position: relative;
  }
}

.p-plan__textItem {
  display: none;
}

.p-plan__textItem.is-active {
  display: block;
  animation: planTextFadeIn 1s ease-out both;
}

/* SP専用 View all */
.p-plan__viewAll--sp {
  display: inline-block;
  margin-left: auto;
  margin-top: 16px;
  order: 3;
}

/* PCでは非表示 */
@media (min-width: 1024px) {
  .p-plan__viewAll--sp {
    display: none;
  }
}
/* =====================================
  上段：ABOUT 見出し + ロゴ（2カラム）
===================================== */
/* コンテナ自体は何もしない */
.p-about-head {
  position: relative;
}

/* 左カラム（ABOUT） */
.l-section__head {
  display: flex;
  align-items: center;
}

/* 右カラム（ロゴ） */
.p-about-head .l-section__body {
  position: relative;
}

/* ロゴの見え方・余白はここで調整 */
.p-about-head__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 2rem;
}
@media (min-width: 1024px) {
  .p-about-head__logo {
    padding-block: 6rem;
  }
}
.p-about-head__logo img {
  max-width: 120px;
}

.p-about-heroMessage {
  position: relative;
  color: #333;
}

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

.p-about-heroMessage__bg {
  display: block;
  width: 100%;
}
.p-about-heroMessage__bg img {
  display: block;
  width: 100%;
  height: auto;
}

.p-about-heroMessage__overlay {
  display: none;
}

.p-about-heroMessage .l-section__inner {
  position: relative;
  z-index: 10;
}

.p-about-heroMessage__body {
  padding-top: 24px;
  padding-bottom: 0;
}

.p-about-heroMessage__text {
  margin: 0;
  max-width: 34em;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .p-about-heroMessage__text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .p-about-heroMessage__text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-about-heroMessage__text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
.p-about-heroMessage__text {
  color: #333;
}

.js-fadeTarget {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  transition-delay: 0.35s;
}

.js-fadeTarget.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .p-about-heroMessage__body {
    padding-top: 32px;
  }
  .p-about-heroMessage__text {
    font-size: 15px;
    line-height: 2.15;
  }
}
@media (min-width: 1024px) {
  .p-about-heroMessage {
    overflow: hidden;
  }
  .p-about-heroMessage__media {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .p-about-heroMessage__bg {
    width: 100%;
    height: 100%;
  }
  .p-about-heroMessage__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .p-about-heroMessage__overlay {
    display: block;
    position: absolute;
    inset: 0;
  }
  .p-about-heroMessage__body {
    min-height: 720px;
    display: flex;
    align-items: flex-end;
    padding-top: 240px;
    padding-bottom: 96px;
  }
  .p-about-heroMessage__text {
    max-width: 40em;
    color: #fff;
  }
}
.p-about-gallery__head {
  display: block;
  text-align: center;
}
.p-about-gallery__title {
  margin-bottom: 1rem;
  color: #8F5D46;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
}
.p-about-gallery__lead {
  max-width: 48rem;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .p-about-gallery__lead {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .p-about-gallery__lead {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-about-gallery__lead {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
.p-about-gallery__lead p {
  text-align: left;
}
.p-about-gallery__body {
  margin-top: 3rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}
.p-about-gallery {
  /* =========================
     SP / TAB：1段スライダー
  ========================= */
}
.p-about-gallery__pc {
  display: none;
}
.p-about-gallery__sp {
  display: block;
}
.p-about-gallery__slider {
  overflow: hidden;
  touch-action: pan-y;
}
.p-about-gallery__slides {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}
.p-about-gallery__slide {
  flex: 0 0 100%;
  min-width: 100%;
}
.p-about-gallery__item {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  appearance: none;
  cursor: pointer;
}
.p-about-gallery__item img {
  display: block;
  width: 100%;
  height: 60vw;
  object-fit: cover;
  border-radius: 5px;
}
.p-about-gallery__meta {
  margin-top: 1rem;
}
.p-about-gallery__count {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.2em;
  color: #8F5D46;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.04em;
}
.p-about-gallery__dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.875rem;
}
.p-about-gallery__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.2);
  appearance: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.p-about-gallery__dot.is-active {
  background: rgba(143, 93, 70, 0.8);
  transform: scale(1.1);
}
.p-about-gallery {
  /* =========================
     PC：現状維持（上下2段）
  ========================= */
}
@media (min-width: 1024px) {
  .p-about-gallery__lead {
    margin: 5rem auto;
  }
  .p-about-gallery__body {
    width: auto;
    margin-left: 0;
    overflow: visible;
  }
  .p-about-gallery__pc {
    display: block;
  }
  .p-about-gallery__sp {
    display: none;
  }
  .p-about-gallery__list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 1200px;
    margin-inline: auto;
  }
  .p-about-gallery__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
  .p-about-gallery__item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 5px;
  }
}

.p-about-staff {
  padding-block: 0;
  padding-bottom: 0;
}
@media (min-width: 1024px) {
  .p-about-staff {
    padding-block: 0;
    max-width: 48rem;
    margin-inline: auto;
  }
}
.p-about-staff__head {
  display: block;
}
.p-about-staff__title {
  text-align: center;
  color: #8F5D46;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
}
.p-about-staff__list {
  display: block;
  padding-left: 0;
}
@media (min-width: 1024px) {
  .p-about-staff__list {
    display: grid;
    gap: 4rem;
    margin-top: 5rem;
  }
}
.p-about-staff__item {
  display: block;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .p-about-staff__item {
    display: grid;
    grid-template-columns: 3fr 2fr;
    column-gap: 2rem;
    align-items: end;
  }
}
.p-about-staff__role {
  margin: 20px 0 10px 0;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
@media (min-width: 1024px) {
  .p-about-staff__role {
    margin-bottom: 1.5rem;
  }
}
.p-about-staff__name {
  margin: 10px 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .p-about-staff__name {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .p-about-staff__name {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .p-about-staff__name {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .p-about-staff__name {
    margin-bottom: 4rem;
  }
}
.p-about-staff {
  /* ========================
     Message
  ======================== */
}
.p-about-staff__message {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .p-about-staff__message {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .p-about-staff__message {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-about-staff__message {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
.p-about-staff__message--sp {
  display: block;
}
@media (min-width: 1024px) {
  .p-about-staff__message--sp {
    display: none;
  }
}
.p-about-staff__message--pc {
  display: none;
}
@media (min-width: 1024px) {
  .p-about-staff__message--pc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    column-gap: 2rem;
  }
}
.p-about-staff__col {
  line-height: 2;
}
.p-about-staff__col--sp {
  line-height: 2;
}
.p-about-staff {
  /* ========================
     SP Media
  ======================== */
}
.p-about-staff__mediaSp {
  float: right;
  width: min(38vw, 170px);
  margin-top: 0.8rem;
  margin-right: 0;
  margin-bottom: 0.75rem;
  margin-left: 1rem;
  shape-outside: inset(0 round 5px);
}
.p-about-staff__mediaSp img,
.p-about-staff__mediaSp .p-about-staff__mediaSpImage {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 5px;
}
@media (min-width: 1024px) {
  .p-about-staff__mediaSp {
    display: none;
  }
}
.p-about-staff__item:first-child .p-about-staff__mediaSp {
  margin-top: 1.5rem;
}
.p-about-staff {
  /* ========================
     PC Media
  ======================== */
}
.p-about-staff__media {
  display: none;
}
@media (min-width: 1024px) {
  .p-about-staff__media {
    display: block;
    width: 100%;
    max-width: 350px;
    margin-top: 0;
    justify-self: end;
    perspective: 1000px;
  }
}
.p-about-staff__card {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  transform-style: preserve-3d;
  transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.p-about-staff__face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
}
.p-about-staff__face img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 5px;
}
.p-about-staff__face--back {
  transform: rotateY(180deg);
}
@media (min-width: 1024px) {
  .p-about-staff__item.is-flipped .p-about-staff__card {
    transform: rotateY(180deg);
  }
}

.p-garage {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 0;
}
.p-garage__link {
  position: relative;
  display: block;
  color: #fff;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif, "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
}
.p-garage__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-garage__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-garage__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}
.p-garage {
  /* =============================
     中央ブロック
  ============================== */
}
.p-garage__inner {
  position: relative;
  z-index: 10;
  min-height: 420px;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
}
@media (min-width: 768px) {
  .p-garage__inner {
    min-height: 560px;
  }
}
.p-garage__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.p-garage__moreWrap {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .p-garage__moreWrap {
    padding-bottom: 40px;
  }
}
.p-garage {
  /* =============================
     上部2行テキスト
  ============================== */
}
.p-garage__lead {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 32px;
  color: #fff;
}
@media (min-width: 768px) {
  .p-garage__lead {
    margin-bottom: 48px;
  }
}
.p-garage {
  /* =============================
     ロゴ（中央基準）
  ============================== */
}
.p-garage__logo {
  width: 260px;
}
@media (min-width: 768px) {
  .p-garage__logo {
    width: 420px;
  }
}
.p-garage__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.p-garage {
  /* =============================
     View more（右下固定）
  ============================== */
}
.p-garage__more {
  color: #fff;
}

.p-blog {
  padding-block: 60px;
  /*
  ----------------------------
  左カラム（タイトル）
  ----------------------------
  */
}
.p-blog__title {
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  letter-spacing: 0.1em;
  color: #8F5D46;
}
.p-blog {
  /*
  ----------------------------
  右カラム上部（View all）
  ----------------------------
  */
}
.p-blog__top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .p-blog__top {
    margin-bottom: 32px;
  }
}
.p-blog {
  /*
  ----------------------------
  記事リスト
  ----------------------------
  */
}
.p-blog__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .p-blog__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .p-blog__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*
========================================
Post card
========================================
*/
.c-post-card {
  min-width: 0;
}

.c-post-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.c-post-card__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  margin: 0 0 12px;
  border-radius: 5px;
  background: #f1ede7;
}

.c-post-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.c-post-card__meta {
  display: grid;
  gap: 12px;
}

.c-post-card__metaRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/*
----------------------------------------
カテゴリ
----------------------------------------
*/
.c-post-card__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 10px;
  border: 1px solid #8F5D46;
  border-radius: 9999px;
  color: #8F5D46;
  background-color: transparent;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

/*
----------------------------------------
日付
----------------------------------------
*/
.c-post-card__date {
  display: block;
  color: rgba(51, 51, 51, 0.72);
  font-size: 12px;
  line-height: 1.5;
  white-space: nowrap;
}

/*
----------------------------------------
タイトル・抜粋
----------------------------------------
*/
.c-post-card__title {
  margin: 0;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

.c-post-card__excerpt {
  margin: 0;
  color: rgba(51, 51, 51, 0.8);
  font-size: 14px;
  line-height: 1.8;
}

/*
========================================
SPでは2記事のみ表示（3件目を非表示）
========================================
*/
@media (max-width: 767px) {
  .p-blog__list .c-post-card:nth-child(n+3) {
    display: none;
  }
}
/*
========================================
HOMEだけ上部padding消し
========================================
*/
.home > #main > #blog {
  padding-top: 0;
}
@media (min-width: 768px) {
  .home > #main > #blog {
    padding-top: 120px;
  }
}

.p-instagram {
  /*
  ----------------------------
  左カラム
  ----------------------------
  */
}
.p-instagram__title {
  letter-spacing: 0.1em;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  color: #8F5D46;
}
.p-instagram {
  /*
  ----------------------------
  右上 View all
  ----------------------------
  */
}
.p-instagram__top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .p-instagram__top {
    margin-bottom: 32px;
  }
}
.p-instagram {
  /*
  ----------------------------
  投稿一覧
  ----------------------------
  */
}
.p-instagram__list {
  /*
  プラグインのレイアウトを無効化し、
  こちらで完全制御する
  */
}
.p-instagram__list .sbi_feed {
  display: grid !important;
  gap: 16px;
}
.p-instagram__list {
  /*
  SP：2列 × 3段
  */
}
.p-instagram__list .sbi_feed {
  grid-template-columns: repeat(2, 1fr);
}
.p-instagram__list {
  /*
  PC：3列 × 2段
  */
}
@media (min-width: 768px) {
  .p-instagram__list .sbi_feed {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-instagram__list {
  /*
  画像
  */
}
.p-instagram__list .sbi_photo_wrap {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.p-instagram__list .sbi_photo_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-access {
  background: #F9F7F1;
  padding-top: 0;
  scroll-margin-top: calc(65px + 12px);
}
@media (min-width: 1024px) {
  .p-access {
    scroll-margin-top: calc(65px + 100px);
  }
}
.p-access__grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 1024px) {
  .p-access__grid {
    grid-template-columns: 250px 1fr;
    column-gap: 80px;
  }
}
.p-access {
  /* ===== 左タイトルカラム ===== */
}
.p-access__title {
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  letter-spacing: 0.1em;
  color: #8F5D46;
}
.p-access {
  /* ===== 右本文カラム ===== */
}
.p-access__body {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) {
  .p-access__body {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
}
.p-access__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}
.p-access__content {
  font-size: 14px;
  line-height: 1.8;
}
.p-access__studio {
  font-size: 16px;
  margin-bottom: 16px;
}
.p-access__address {
  margin-bottom: 16px;
}
.p-access__map {
  margin-bottom: 24px;
}
.p-access__map a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #8F5D46;
  padding-bottom: 5px;
}
.p-access__map a .p-access__map-icon img {
  width: 100%;
  max-width: 15px;
}
.p-access__text p + p {
  margin-top: 8px;
}

.p-plans {
  padding: 40px 0;
  background: rgba(143, 93, 70, 0.2);
}
@media (min-width: 1024px) {
  .p-plans {
    margin-top: 80px;
    padding: 80px 0;
  }
}
.p-plans__head {
  text-align: center;
  margin-bottom: 48px;
}
@media (min-width: 1024px) {
  .p-plans__head {
    margin-bottom: 56px;
  }
}
.p-plans__title {
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 24px;
  letter-spacing: 0.2em;
  color: #8F5D46;
  margin-bottom: 0;
}
.p-plans__sub {
  margin-top: 0;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #8F5D46;
}
.p-plans__grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 1024px) {
  .p-plans__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

.p-contact {
  background: rgba(228, 201, 193, 0.2);
  padding-block: 0;
  padding-top: 40px;
}
.p-contact__inner {
  max-width: 48rem;
  margin: 0 auto;
  /* ====================
     head
  ==================== */
}
.p-contact__inner__head {
  text-align: center;
  margin-bottom: 56px;
}
.p-contact__inner .p-contact__title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .p-contact__inner .p-contact__title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .p-contact__inner .p-contact__title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .p-contact__inner .p-contact__title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
.p-contact__inner .p-contact__title {
  color: #8F5D46;
}
.p-contact__inner {
  /* ====================
     steps
  ==================== */
}
.p-contact__inner__steps {
  display: grid;
  gap: 32px;
  /* SPは縦積み */
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .p-contact__inner__steps {
    gap: 48px;
  }
}
.p-contact__inner {
  /* ====================
     step
  ==================== */
}
.p-contact__inner__step {
  text-align: center;
  display: grid;
  gap: 16px;
}
@media (min-width: 1024px) {
  .p-contact__inner__step {
    grid-template-columns: auto 1fr 220px;
    gap: 38px;
    align-items: center;
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .p-contact__inner__step .c-linkArrow {
    justify-self: start;
    margin-left: 24px;
  }
}
.p-contact__inner__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  min-width: 120px;
  border-radius: 999px;
  background: #8F5D46;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.08em;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .p-contact__inner__label {
    margin: 0;
  }
}
.p-contact__inner__text {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .p-contact__inner__text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .p-contact__inner__text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-contact__inner__text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
.p-contact__inner__text {
  padding: 0 16px;
  text-align: left;
}
@media (min-width: 1024px) {
  .p-contact__inner__text {
    padding: 0;
  }
}
.p-contact__inner__cta {
  margin-top: 64px;
  text-align: center;
  background: rgba(143, 93, 70, 0.2);
  padding: 60px 0 0;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .p-contact__inner__cta {
    background: transparent;
    display: block;
    min-height: auto;
    padding: 60px 0 30px;
  }
}
.p-contact__inner__cta .c-btn-contact {
  border: 1px solid #8F5D46;
  font-size: clamp(0.875rem, 3.5vw, 1rem);
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  color: #8F5D46;
  width: 100%;
  max-width: 250px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1024px) {
  .p-contact__inner__cta .c-btn-contact {
    display: inline;
    font-size: 14px;
    padding: clamp(12px, 2.5vw, 22px) clamp(24px, 5vw, 40px);
  }
}
.p-contact__inner__cta .c-btn-contact img {
  height: 25px;
  width: auto;
  padding-right: 10px;
}
.p-contact__sub {
  margin: 0;
  text-align: center;
  background: rgba(143, 93, 70, 0.2);
  padding-bottom: 50px;
}
@media (min-width: 1024px) {
  .p-contact__sub {
    background: transparent;
    padding-bottom: 60px;
  }
}
.p-contact__sub a {
  color: #8F5D46;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .p-contact__sub a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .p-contact__sub a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-contact__sub a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
.p-contact__sub a {
  border-bottom: 1px solid #8F5D46;
}

/* ==============================
   PLAN DETAIL
============================== */
@keyframes planDetailFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes planDetailTextFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroTextFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-plan-detail-hero__content {
    opacity: 1;
    animation: none;
  }
}
.p-plan-detail-page {
  background: #F9F7F1;
  color: #333;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif, "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
}

/* ==============================
   HERO
============================== */
.p-plan-detail-hero {
  position: relative;
  background: #F9F7F1;
}
.p-plan-detail-hero__media {
  position: relative;
  overflow: clip;
  min-height: calc(100svh - 65px);
  height: calc(100svh - 65px);
}
@media (min-width: 1024px) {
  .p-plan-detail-hero__media {
    min-height: min(980px, 100svh - 65px);
    height: calc(100svh - 65px);
    overflow: hidden;
  }
}
.p-plan-detail-hero__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: planDetailFadeIn 1.2s ease both;
}
.p-plan-detail-hero__overlay {
  position: absolute;
  inset: 0 0 -1px 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(249, 247, 241, 0) 0%, rgba(249, 247, 241, 0.04) 56%, rgba(249, 247, 241, 0.18) 74%, rgba(249, 247, 241, 0.56) 86%, rgba(249, 247, 241, 0.9) 94%, #f9f7f1 100%);
}
.p-plan-detail-hero__content {
  position: relative;
  z-index: 2;
  background: #F9F7F1;
  padding: 0 0 20px;
  opacity: 0;
  animation: heroTextFadeIn 1s ease 0.6s forwards;
}
@media (min-width: 1024px) {
  .p-plan-detail-hero__content {
    position: absolute;
    left: 0;
    bottom: 52px;
    width: min(42vw, 600px);
    max-width: 600px;
    padding: clamp(26px, 2.8vw, 40px) clamp(28px, 2.8vw, 40px) clamp(28px, 3vw, 40px) 0;
    background: rgba(169, 131, 108, 0.22);
    backdrop-filter: blur(1px);
  }
}
.p-plan-detail-hero__head {
  margin-top: -84px;
  padding: 14px 20px 12px;
  background: rgba(169, 131, 108, 0.24);
}
@media (min-width: 1024px) {
  .p-plan-detail-hero__head {
    margin-top: 0;
    background: transparent;
  }
}
.p-plan-detail-hero__title-en {
  margin: 0;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
@media (min-width: 380px) {
  .p-plan-detail-hero__title-en {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.3;
  }
}
@media (min-width: 768px) {
  .p-plan-detail-hero__title-en {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.3;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-hero__title-en {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.3;
  }
}
.p-plan-detail-hero__title-en {
  color: #8F5D46;
}
@media (min-width: 1024px) {
  .p-plan-detail-hero__title-en {
    color: #fff;
    padding: 0px 40px;
  }
}
.p-plan-detail-hero__title-jp {
  margin: 6px 0 0;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .p-plan-detail-hero__title-jp {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .p-plan-detail-hero__title-jp {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-hero__title-jp {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
.p-plan-detail-hero__title-jp {
  color: #8F5D46;
}
@media (min-width: 1024px) {
  .p-plan-detail-hero__title-jp {
    margin-top: 8px;
    color: #fff;
    padding: 0px 40px;
  }
}
.p-plan-detail-hero__copy {
  margin: 18px 20px 0;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .p-plan-detail-hero__copy {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .p-plan-detail-hero__copy {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-hero__copy {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
.p-plan-detail-hero__copy {
  color: #333;
}
@media (min-width: 1024px) {
  .p-plan-detail-hero__copy {
    margin: 34px 0 0;
    color: #fff;
    padding: 0px 60px;
  }
}
.p-plan-detail-hero__text {
  margin: 18px 20px 0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .p-plan-detail-hero__text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .p-plan-detail-hero__text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-hero__text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-hero__text {
    margin: 22px 0 0;
  }
}
.p-plan-detail-hero__text p {
  margin: 0;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  color: #333;
}
@media (min-width: 1024px) {
  .p-plan-detail-hero__text p {
    color: #fff;
    padding: 0px 60px;
  }
}
.p-plan-detail-hero__text p + p {
  margin-top: 8px;
}
@media (min-width: 1024px) {
  .p-plan-detail-hero__text p + p {
    margin-top: 10px;
  }
}
@media (max-width: 1023px) {
  .p-plan-detail-hero__media {
    min-height: auto;
    height: auto;
    overflow: visible;
  }
  .p-plan-detail-hero__img {
    height: auto;
    aspect-ratio: 375/430;
  }
  .p-plan-detail-hero__overlay {
    background: linear-gradient(to bottom, rgba(249, 247, 241, 0) 0%, rgba(249, 247, 241, 0.04) 62%, rgba(249, 247, 241, 0.28) 82%, rgba(249, 247, 241, 0.82) 94%, #f9f7f1 100%);
  }
  .p-plan-detail-hero__content {
    position: relative;
    width: 100%;
    max-width: none;
    padding: 0 0 20px;
    background: #F9F7F1;
    backdrop-filter: none;
  }
  .p-plan-detail-hero__head {
    position: relative;
    z-index: 2;
  }
}

/* ==============================
   PLAN DETAIL SLIDER
============================== */
.p-plan-detail-slider {
  position: relative;
  padding-top: 24px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .p-plan-detail-slider {
    padding-top: 60px;
  }
}
.p-plan-detail-slider__inner {
  max-width: none;
  padding-inline: 0;
}
.p-plan-detail-slider__viewport {
  overflow: hidden;
  padding-inline: 20px;
}
@media (min-width: 1024px) {
  .p-plan-detail-slider__viewport {
    padding-inline: 24px;
  }
}
.p-plan-detail-slider__track {
  display: flex;
  gap: 16px;
  will-change: transform;
  transition: transform 0.8s ease;
}
@media (min-width: 1024px) {
  .p-plan-detail-slider__track {
    gap: 28px;
  }
}
.p-plan-detail-slider__item {
  flex: 0 0 78%;
}
@media (min-width: 1024px) {
  .p-plan-detail-slider__item {
    flex: 0 0 min(750px, 62vw);
  }
}
.p-plan-detail-slider__img {
  display: block;
  width: 100%;
  aspect-ratio: 230/140;
  object-fit: cover;
  border-radius: 5px;
}
@media (min-width: 1024px) {
  .p-plan-detail-slider__img {
    aspect-ratio: 750/500;
  }
}
.p-plan-detail-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
@media (min-width: 1024px) {
  .p-plan-detail-slider__dots {
    margin-top: 18px;
  }
}
.p-plan-detail-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid #8F5D46;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.p-plan-detail-slider__dot.is-active {
  background: #8F5D46;
  transform: scale(1.05);
}

/* ==============================
   FOR WHO
============================== */
.p-plan-detail-forwho__inner {
  width: 100%;
}
.p-plan-detail-forwho__head {
  text-align: center;
}
.p-plan-detail-forwho__title-en {
  margin: 0;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media (min-width: 380px) {
  .p-plan-detail-forwho__title-en {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
}
@media (min-width: 768px) {
  .p-plan-detail-forwho__title-en {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-forwho__title-en {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
}
.p-plan-detail-forwho__title-en {
  color: #8F5D46;
}
.p-plan-detail-forwho__title-jp {
  margin: 10px 0 0;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .p-plan-detail-forwho__title-jp {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .p-plan-detail-forwho__title-jp {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-forwho__title-jp {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
.p-plan-detail-forwho__title-jp {
  color: #333;
}
@media (min-width: 1024px) {
  .p-plan-detail-forwho__title-jp {
    margin-top: 8px;
  }
}
.p-plan-detail-forwho__content {
  margin-top: 34px;
}
@media (min-width: 1024px) {
  .p-plan-detail-forwho__content {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    align-items: center;
    max-width: 60rem;
    margin: 48px auto 0;
    padding-inline: 88px 0;
    column-gap: 5vw;
  }
}
.p-plan-detail-forwho__image {
  position: relative;
}
@media (min-width: 1024px) {
  .p-plan-detail-forwho__image {
    width: 100%;
    margin-inline: 0;
  }
}
.p-plan-detail-forwho__img {
  display: block;
  width: 100%;
  aspect-ratio: 375/302;
  object-fit: cover;
  border-radius: 5px;
}
@media (min-width: 1024px) {
  .p-plan-detail-forwho__img {
    aspect-ratio: 420/315;
  }
}
.p-plan-detail-forwho__body {
  margin-top: 18px;
}
@media (min-width: 1024px) {
  .p-plan-detail-forwho__body {
    margin-top: 0;
    align-self: center;
  }
}
.p-plan-detail-forwho__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-plan-detail-forwho__item {
  display: block;
  padding-bottom: 0px;
}
@media (min-width: 1024px) {
  .p-plan-detail-forwho__item {
    padding-bottom: 20px;
  }
}
.p-plan-detail-forwho__item + .p-plan-detail-forwho__item {
  margin-top: 0;
}
.p-plan-detail-forwho__item-textWrap {
  display: block;
  max-width: 100%;
  opacity: 0;
}
@media (min-width: 1024px) {
  .p-plan-detail-forwho__item-textWrap {
    display: inline-block;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    vertical-align: top;
  }
}
.p-plan-detail-forwho__item-text {
  display: inline;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .p-plan-detail-forwho__item-text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .p-plan-detail-forwho__item-text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-forwho__item-text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
.p-plan-detail-forwho__item-text {
  color: #333;
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
  background-image: linear-gradient(transparent 50%, rgba(143, 93, 70, 0.28) 50%);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 0% 100%;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  transition: background-size 0.8s ease;
}
@media (min-width: 1024px) {
  .p-plan-detail-forwho__item-text {
    display: inline-block;
    line-height: 1.95;
    letter-spacing: 0.05em;
    white-space: nowrap;
    overflow-wrap: normal;
  }
}
.p-plan-detail-forwho {
  /* 既存HTMLは残すが表示には使わない */
}
.p-plan-detail-forwho__item-line {
  display: none;
}
.p-plan-detail-forwho {
  /* SP：通常表示 */
}
.p-plan-detail-forwho__item.is-visible .p-plan-detail-forwho__item-textWrap {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.p-plan-detail-forwho {
  /* PC：タイプライター */
}
@media (min-width: 1024px) {
  .p-plan-detail-forwho__item.is-typing .p-plan-detail-forwho__item-textWrap, .p-plan-detail-forwho__item.is-visible .p-plan-detail-forwho__item-textWrap {
    width: 100%;
    opacity: 1;
    transition: width 1s ease, opacity 0.2s ease;
  }
}
.p-plan-detail-forwho {
  /* ライナー */
}
.p-plan-detail-forwho__item.is-lined .p-plan-detail-forwho__item-text {
  background-size: 100% 100%;
}

/* ==============================
   REDUCED MOTION
============================== */
@media (prefers-reduced-motion: reduce) {
  .p-plan-detail-hero__img,
  .p-plan-detail-slider__track,
  .p-plan-detail-slider__dot,
  .p-plan-detail-forwho__item-textWrap,
  .p-plan-detail-forwho__item-line {
    animation: none !important;
    transition: none !important;
  }
  .p-plan-detail-forwho__item-textWrap {
    width: 100%;
    opacity: 1;
  }
  .p-plan-detail-forwho__item-line {
    transform: scaleX(1);
    opacity: 1;
  }
}
/* ==============================
   PRICING & DETAILS
============================== */
.p-plan-detail-pricing {
  background: #F9F7F1;
  padding-block: 0;
}
.p-plan-detail-pricing__head {
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__head {
    position: sticky;
    top: 89px;
    padding-top: 8px;
    align-items: flex-start;
  }
}
.p-plan-detail-pricing__title-en {
  margin: 0;
}
.p-plan-detail-pricing__title-jp {
  margin: 8px 0 0;
  line-height: 1.8;
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__title-jp {
    line-height: 1.8;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) and (min-width: 380px) {
  .p-plan-detail-pricing__title-jp {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) and (min-width: 768px) {
  .p-plan-detail-pricing__title-jp {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .p-plan-detail-pricing__title-jp {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
.p-plan-detail-pricing__body {
  min-width: 0;
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__body {
    padding-right: 250px;
  }
}
.p-plan-detail-pricing__intro {
  margin-bottom: 32px;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__intro {
    max-width: 640px;
  }
}
.p-plan-detail-pricing__intro p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .p-plan-detail-pricing__intro p {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .p-plan-detail-pricing__intro p {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__intro p {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
.p-plan-detail-pricing__common {
  margin-bottom: 72px;
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__common {
    margin-bottom: 88px;
  }
}
.p-plan-detail-pricing__menus {
  display: flex;
  flex-direction: column;
  gap: 72px;
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__menus {
    gap: 96px;
  }
}
.p-plan-detail-pricing__menus--single {
  gap: 0;
}
.p-plan-detail-pricing__menu {
  min-width: 0;
}
.p-plan-detail-pricing__section-head {
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #8F5D46;
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__section-head {
    margin-bottom: 24px;
    padding-bottom: 12px;
  }
}
.p-plan-detail-pricing__section-title {
  margin: 0;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .p-plan-detail-pricing__section-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .p-plan-detail-pricing__section-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__section-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
.p-plan-detail-pricing__section-title {
  color: #8F5D46;
}
.p-plan-detail-pricing__menu-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__menu-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 40px;
    align-items: center;
    margin-bottom: 32px;
  }
}
.p-plan-detail-pricing__menu-image {
  min-width: 0;
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__menu-image {
    max-width: 640px;
  }
}
.p-plan-detail-pricing__menu-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 375/302;
  object-fit: cover;
  border-radius: 5px;
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__menu-img {
    aspect-ratio: 640/360;
  }
}
.p-plan-detail-pricing__menu-card {
  padding: 0px;
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__menu-card {
    position: relative;
    z-index: 1;
    margin-left: -96px;
    border: 1px solid rgba(143, 93, 70, 0.2);
    border-radius: 5px;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
  }
}
.p-plan-detail-pricing__menu-script {
  display: none;
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__menu-script {
    display: block;
    position: absolute;
    top: -60px;
    right: -60px;
    font-family: "AntroVectra";
    font-size: clamp(60px, 5vw, 90px);
    opacity: 0.15;
    pointer-events: none;
    color: #8F5D46;
  }
}
.p-plan-detail-pricing__menu-name {
  margin: 0;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media (min-width: 380px) {
  .p-plan-detail-pricing__menu-name {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
}
@media (min-width: 768px) {
  .p-plan-detail-pricing__menu-name {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__menu-name {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
}
.p-plan-detail-pricing__menu-name {
  color: #8F5D46;
}
.p-plan-detail-pricing__menu-text {
  margin-top: 14px;
  color: #333;
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__menu-text {
    margin-top: 16px;
  }
}
.p-plan-detail-pricing__menu-text p {
  margin: 0;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .p-plan-detail-pricing__menu-text p {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .p-plan-detail-pricing__menu-text p {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__menu-text p {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
.p-plan-detail-pricing__menu-text p + p {
  margin-top: 8px;
}
.p-plan-detail-pricing__menu-priceWrap {
  margin-top: 0px;
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__menu-priceWrap {
    margin-top: 24px;
  }
}
.p-plan-detail-pricing__menu-priceLabel {
  margin: 0 0 4px;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .p-plan-detail-pricing__menu-priceLabel {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .p-plan-detail-pricing__menu-priceLabel {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__menu-priceLabel {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
.p-plan-detail-pricing__menu-priceLabel {
  color: #8F5D46;
}
.p-plan-detail-pricing__menu-price {
  margin: 0;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #333;
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__menu-price {
    font-size: 28px;
  }
}
.p-plan-detail-pricing__menu-price span {
  margin-left: 6px;
  font-size: 12px;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__menu-price span {
    font-size: 14px;
  }
}
.p-plan-detail-pricing__menu-details {
  min-width: 0;
}
.p-plan-detail-pricing__accordions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__accordions {
    gap: 12px;
  }
}
.p-plan-detail-pricing__accordion {
  overflow: hidden;
  border: 1px solid rgba(143, 93, 70, 0.16);
  border-radius: 5px;
}
.p-plan-detail-pricing__accordion[open] .p-plan-detail-pricing__accordion-icon::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.p-plan-detail-pricing__accordion-summary {
  position: relative;
  display: block;
  padding: 16px 48px 16px 16px;
  list-style: none;
  cursor: pointer;
  background: rgba(143, 93, 70, 0.12);
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__accordion-summary {
    padding: 18px 64px 18px 20px;
  }
}
.p-plan-detail-pricing__accordion-summary::-webkit-details-marker {
  display: none;
}
.p-plan-detail-pricing__accordion-title {
  display: block;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .p-plan-detail-pricing__accordion-title {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .p-plan-detail-pricing__accordion-title {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__accordion-title {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
.p-plan-detail-pricing__accordion-title {
  color: #333;
}
.p-plan-detail-pricing__accordion-icon {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__accordion-icon {
    right: 18px;
    width: 20px;
    height: 20px;
  }
}
.p-plan-detail-pricing__accordion-icon::before, .p-plan-detail-pricing__accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #8F5D46;
  transition: transform 0.3s ease;
}
.p-plan-detail-pricing__accordion-icon::before {
  width: 10px;
  height: 1px;
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-plan-detail-pricing__accordion-icon::after {
  width: 10px;
  height: 1px;
  transform: translate(-50%, -50%);
}
.p-plan-detail-pricing__accordion-content {
  background: transparent;
}
.p-plan-detail-pricing__accordion-content-inner {
  padding: 18px 16px 20px;
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__accordion-content-inner {
    padding: 20px 24px 22px;
  }
}
.p-plan-detail-pricing__accordion-text {
  color: #333;
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__accordion-text {
    text-align: center;
  }
}
.p-plan-detail-pricing__accordion-text p {
  margin: 0;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .p-plan-detail-pricing__accordion-text p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .p-plan-detail-pricing__accordion-text p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__accordion-text p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
.p-plan-detail-pricing__accordion-text p + p {
  margin-top: 8px;
}
.p-plan-detail-pricing__accordion-text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}
.p-plan-detail-pricing__accordion-link {
  margin-top: 12px;
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__accordion-link {
    margin-top: 14px;
    text-align: center;
  }
}
.p-plan-detail-pricing__accordion-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: #333;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__accordion-link a {
    font-size: 12px;
  }
}
.p-plan-detail-pricing__accordion-link a::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid rgba(143, 93, 70, 0.35);
}
.p-plan-detail-pricing__detail-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__detail-images {
    gap: 16px;
    max-width: 520px;
    margin-top: 20px;
    margin-inline: auto;
  }
}
.p-plan-detail-pricing__detail-image {
  margin: 0;
}
.p-plan-detail-pricing__detail-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 375/302;
  object-fit: cover;
  border-radius: 5px;
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__detail-img {
    aspect-ratio: 420/315;
  }
}
.p-plan-detail-pricing__menu--single .p-plan-detail-pricing__menu-intro {
  border-bottom: 1px solid #8F5D46;
  text-align: center;
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__menu--single .p-plan-detail-pricing__menu-intro {
    display: block;
    margin-bottom: 40px;
    padding-bottom: 30px;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__menu--single .p-plan-detail-pricing__menu-card {
    position: static;
    z-index: auto;
    margin-left: 0;
    margin-inline: auto;
    max-width: 520px;
    padding: 0;
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-pricing__menu--single .p-plan-detail-pricing__menu-name,
  .p-plan-detail-pricing__menu--single .p-plan-detail-pricing__menu-text,
  .p-plan-detail-pricing__menu--single .p-plan-detail-pricing__menu-priceWrap {
    text-align: center;
  }
}

/* ==============================
   PLAN CTA
============================== */
.p-plan-detail-cta {
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(143, 93, 70, 0.35);
}
@media (min-width: 1024px) {
  .p-plan-detail-cta {
    padding-top: 56px;
    padding-bottom: 56px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.p-plan-detail-cta__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 560px;
}
@media (min-width: 1024px) {
  .p-plan-detail-cta__inner {
    gap: 40px;
  }
}
.p-plan-detail-cta__block {
  text-align: center;
  margin-bottom: 2rem;
}
.p-plan-detail-cta__text {
  margin: 0 0 20px;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .p-plan-detail-cta__text {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .p-plan-detail-cta__text {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-cta__text {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
.p-plan-detail-cta__text {
  color: #333;
}
@media (min-width: 1024px) {
  .p-plan-detail-cta__text {
    margin-bottom: 24px;
  }
}
.p-plan-detail-cta__buttonWrap {
  display: flex;
  justify-content: center;
}
.p-plan-detail-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 48px;
  padding-inline: 24px;
  border: 1px solid #8F5D46;
  border-radius: 50px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .p-plan-detail-cta__button {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .p-plan-detail-cta__button {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-cta__button {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
.p-plan-detail-cta__button {
  color: #8F5D46;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .p-plan-detail-cta__button {
    min-width: 220px;
    min-height: 52px;
    padding: 1rem 3rem;
  }
}

/* ==============================
   POSING GALLERY BANNER
============================== */
.p-plan-detail-posing-banner {
  background: rgba(143, 93, 70, 0.28);
}
.p-plan-detail-posing-banner__inner {
  padding-top: 32px;
  padding-bottom: 32px;
}
@media (min-width: 1024px) {
  .p-plan-detail-posing-banner__inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.p-plan-detail-posing-banner__content {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}
.p-plan-detail-posing-banner__text {
  margin: 0 0 24px;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .p-plan-detail-posing-banner__text {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .p-plan-detail-posing-banner__text {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-posing-banner__text {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
.p-plan-detail-posing-banner__text {
  color: #8F5D46;
  padding-inline: 16px;
}
@media (min-width: 1024px) {
  .p-plan-detail-posing-banner__text {
    margin-bottom: 28px;
  }
}
.p-plan-detail-posing-banner__buttonWrap {
  display: flex;
  justify-content: center;
}
.p-plan-detail-posing-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 48px;
  padding-inline: 24px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 50px;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .p-plan-detail-posing-banner__button {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .p-plan-detail-posing-banner__button {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-posing-banner__button {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.6;
  }
}
.p-plan-detail-posing-banner__button {
  text-decoration: none;
  color: #8F5D46;
  border: 1px solid #8F5D46;
}
@media (min-width: 1024px) {
  .p-plan-detail-posing-banner__button {
    min-width: 300px;
    min-height: 56px;
  }
}

/* ==============================
   TWINS
============================== */
.p-plan-detail-twins {
  padding-top: 64px;
  padding-bottom: 48px;
}
@media (min-width: 1024px) {
  .p-plan-detail-twins {
    padding-top: 88px;
    padding-bottom: 72px;
  }
}
.p-plan-detail-twins__content {
  padding-top: 20px;
  border-top: 1px solid rgba(143, 93, 70, 0.35);
}
@media (min-width: 1024px) {
  .p-plan-detail-twins__content {
    padding-top: 28px;
  }
}
.p-plan-detail-twins__head {
  text-align: center;
}
.p-plan-detail-twins__title-en {
  margin: 0;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media (min-width: 380px) {
  .p-plan-detail-twins__title-en {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
}
@media (min-width: 768px) {
  .p-plan-detail-twins__title-en {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-twins__title-en {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
}
.p-plan-detail-twins__title-en {
  color: #8F5D46;
}
.p-plan-detail-twins__title-jp {
  margin: 8px 0 0;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .p-plan-detail-twins__title-jp {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .p-plan-detail-twins__title-jp {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-twins__title-jp {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
.p-plan-detail-twins__title-jp {
  color: #333;
}
.p-plan-detail-twins__text {
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .p-plan-detail-twins__text {
    text-align: center;
  }
}
.p-plan-detail-twins__text p {
  margin: 0;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .p-plan-detail-twins__text p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .p-plan-detail-twins__text p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-twins__text p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
.p-plan-detail-twins__slider {
  margin-top: 24px;
}
@media (min-width: 1024px) {
  .p-plan-detail-twins__viewport {
    padding-inline: 0;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-twins__track {
    gap: 8px;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-twins__item {
    flex: 0 0 calc((100% - 16px) / 3);
  }
}
.p-plan-detail-twins__img {
  aspect-ratio: 1/0.72;
  border-radius: 5px;
}
@media (min-width: 1024px) {
  .p-plan-detail-twins__dots {
    display: none;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-twins__dot {
    display: none;
  }
}

/* ==============================
   ATTENTION
============================== */
.p-plan-detail-attention {
  padding-top: 16px;
  padding-bottom: 32px;
}
@media (min-width: 1024px) {
  .p-plan-detail-attention {
    padding-top: 24px;
    padding-bottom: 48px;
  }
}
.p-plan-detail-attention__inner {
  max-width: 920px;
}
.p-plan-detail-attention__content {
  padding-top: 28px;
  border-top: 1px solid rgba(143, 93, 70, 0.35);
}
@media (min-width: 1024px) {
  .p-plan-detail-attention__content {
    padding-top: 32px;
  }
}
.p-plan-detail-attention__title {
  margin: 0 0 24px;
  text-align: center;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .p-plan-detail-attention__title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .p-plan-detail-attention__title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-attention__title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
.p-plan-detail-attention__title {
  color: #333;
}
@media (min-width: 1024px) {
  .p-plan-detail-attention__title {
    margin-bottom: 28px;
  }
}
.p-plan-detail-attention__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-plan-detail-attention__item {
  position: relative;
  padding-left: 1em;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .p-plan-detail-attention__item {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .p-plan-detail-attention__item {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-attention__item {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
.p-plan-detail-attention__item {
  color: #333;
}
.p-plan-detail-attention__item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.p-plan-detail-attention__item + .p-plan-detail-attention__item {
  margin-top: 6px;
}
.p-plan-detail-attention__link {
  margin-top: 16px;
}
.p-plan-detail-attention__link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif, "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: #8F5D46;
  text-decoration: none;
}
.p-plan-detail-attention__link a::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid rgba(143, 93, 70, 0.35);
  flex-shrink: 0;
}
.p-plan-detail-attention__link a:hover {
  opacity: 0.8;
}

/* ==============================
   LOCATION
============================== */
.p-plan-detail-location {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .p-plan-detail-location {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.p-plan-detail-location__head {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .p-plan-detail-location__head {
    margin-bottom: 0;
    padding-top: 8px;
    display: block;
  }
}
.p-plan-detail-location__title-en {
  margin: 0;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  line-height: 1.2;
  color: #8F5D46;
}
.p-plan-detail-location__title-jp {
  margin: 8px 0 0;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #8F5D46;
  font-size: clamp(1px, 18px + 2 * (100vw - 375px) / 649, 16px);
}
.p-plan-detail-location__body {
  min-width: 0;
}
.p-plan-detail-location__section + .p-plan-detail-location__section {
  margin-top: 56px;
}
@media (min-width: 1024px) {
  .p-plan-detail-location__section + .p-plan-detail-location__section {
    margin-top: 72px;
  }
}
.p-plan-detail-location__section-head {
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(143, 93, 70, 0.45);
}
@media (min-width: 1024px) {
  .p-plan-detail-location__section-head {
    margin-bottom: 20px;
  }
}
.p-plan-detail-location__section-title {
  margin: 0;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #333;
}
@media (min-width: 1024px) {
  .p-plan-detail-location__section-title {
    font-size: 16px;
  }
}
.p-plan-detail-location__section-layout {
  display: grid;
  gap: 24px;
}
@media (min-width: 1024px) {
  .p-plan-detail-location__section-layout {
    grid-template-columns: minmax(280px, 330px) minmax(0, 1fr);
    column-gap: 36px;
    align-items: start;
  }
}
.p-plan-detail-location__texts {
  min-width: 0;
}
.p-plan-detail-location__text p, .p-plan-detail-location__attention p {
  margin: 0;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .p-plan-detail-location__text p, .p-plan-detail-location__attention p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .p-plan-detail-location__text p, .p-plan-detail-location__attention p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-location__text p, .p-plan-detail-location__attention p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
.p-plan-detail-location__text p, .p-plan-detail-location__attention p {
  color: #333;
}
.p-plan-detail-location__text p + p, .p-plan-detail-location__attention p + p {
  margin-top: 8px;
}
.p-plan-detail-location__list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.p-plan-detail-location__item {
  position: relative;
  padding-left: 1.2em;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 13px;
  line-height: 1.95;
  letter-spacing: 0.05em;
  color: #333;
}
@media (min-width: 1024px) {
  .p-plan-detail-location__item {
    font-size: 12px;
  }
}
.p-plan-detail-location__item::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(143, 93, 70, 0.7);
}
.p-plan-detail-location__item + .p-plan-detail-location__item {
  margin-top: 4px;
}
.p-plan-detail-location__attention {
  margin-top: 18px;
}
.p-plan-detail-location__media {
  min-width: 0;
}
.p-plan-detail-location__gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 10px;
  width: 100%;
  align-items: start;
}
@media (min-width: 1024px) {
  .p-plan-detail-location__gallery {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: auto auto;
    gap: 14px;
    align-self: start;
  }
}
.p-plan-detail-location__figure {
  margin: 0;
  overflow: hidden;
  border-radius: 5px;
  background-color: rgba(143, 93, 70, 0.06);
}
.p-plan-detail-location__figure--1, .p-plan-detail-location__figure--2, .p-plan-detail-location__figure--3, .p-plan-detail-location__figure--4 {
  grid-column: auto;
  grid-row: auto;
}
.p-plan-detail-location__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .p-plan-detail-location__section--studio .p-plan-detail-location__gallery {
    max-width: 640px;
  }
}
.p-plan-detail-location__section--studio .p-plan-detail-location__figure--1 {
  grid-column: 1/span 4;
  grid-row: 1;
  align-self: end;
}
@media (min-width: 1024px) {
  .p-plan-detail-location__section--studio .p-plan-detail-location__figure--1 {
    grid-column: 1/span 7;
    grid-row: 1;
    align-self: end;
  }
}
.p-plan-detail-location__section--studio .p-plan-detail-location__figure--2 {
  grid-column: 5/span 2;
  grid-row: 1;
  align-self: end;
}
@media (min-width: 1024px) {
  .p-plan-detail-location__section--studio .p-plan-detail-location__figure--2 {
    grid-column: 8/span 3;
    grid-row: 1;
    align-self: end;
  }
}
.p-plan-detail-location__section--studio .p-plan-detail-location__figure--3 {
  grid-column: 1/span 2;
  grid-row: 2;
  align-self: start;
}
@media (min-width: 1024px) {
  .p-plan-detail-location__section--studio .p-plan-detail-location__figure--3 {
    grid-column: 2/span 4;
    grid-row: 2;
    align-self: start;
  }
}
.p-plan-detail-location__section--studio .p-plan-detail-location__figure--4 {
  grid-column: 3/span 4;
  grid-row: 2;
  align-self: start;
}
@media (min-width: 1024px) {
  .p-plan-detail-location__section--studio .p-plan-detail-location__figure--4 {
    grid-column: 6/span 6;
    grid-row: 2;
    align-self: start;
  }
}
.p-plan-detail-location__section--studio .p-plan-detail-location__figure--1 .p-plan-detail-location__img {
  aspect-ratio: 1.28/1;
}
@media (min-width: 1024px) {
  .p-plan-detail-location__section--studio .p-plan-detail-location__figure--1 .p-plan-detail-location__img {
    aspect-ratio: 1.34/1;
  }
}
.p-plan-detail-location__section--studio .p-plan-detail-location__figure--2 .p-plan-detail-location__img {
  aspect-ratio: 0.72/1;
}
@media (min-width: 1024px) {
  .p-plan-detail-location__section--studio .p-plan-detail-location__figure--2 .p-plan-detail-location__img {
    aspect-ratio: 0.7/1;
  }
}
.p-plan-detail-location__section--studio .p-plan-detail-location__figure--3 .p-plan-detail-location__img {
  aspect-ratio: 1/1;
}
@media (min-width: 1024px) {
  .p-plan-detail-location__section--studio .p-plan-detail-location__figure--3 .p-plan-detail-location__img {
    aspect-ratio: 1/1;
  }
}
.p-plan-detail-location__section--studio .p-plan-detail-location__figure--4 .p-plan-detail-location__img {
  aspect-ratio: 1.28/1;
}
@media (min-width: 1024px) {
  .p-plan-detail-location__section--studio .p-plan-detail-location__figure--4 .p-plan-detail-location__img {
    aspect-ratio: 1.32/1;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-location__section--home .p-plan-detail-location__gallery {
    max-width: 640px;
  }
}
.p-plan-detail-location__section--home .p-plan-detail-location__figure--1 {
  grid-column: 1/span 2;
  grid-row: 1;
  align-self: end;
}
@media (min-width: 1024px) {
  .p-plan-detail-location__section--home .p-plan-detail-location__figure--1 {
    grid-column: 1/span 3;
    grid-row: 1;
    align-self: end;
  }
}
.p-plan-detail-location__section--home .p-plan-detail-location__figure--2 {
  grid-column: 3/span 4;
  grid-row: 1;
  align-self: end;
}
@media (min-width: 1024px) {
  .p-plan-detail-location__section--home .p-plan-detail-location__figure--2 {
    grid-column: 4/span 8;
    grid-row: 1;
    align-self: end;
  }
}
.p-plan-detail-location__section--home .p-plan-detail-location__figure--3 {
  grid-column: 1/span 3;
  grid-row: 2;
  align-self: start;
}
@media (min-width: 1024px) {
  .p-plan-detail-location__section--home .p-plan-detail-location__figure--3 {
    grid-column: 2/span 6;
    grid-row: 2;
    align-self: start;
  }
}
.p-plan-detail-location__section--home .p-plan-detail-location__figure--4 {
  grid-column: 4/span 3;
  grid-row: 2;
  align-self: start;
}
@media (min-width: 1024px) {
  .p-plan-detail-location__section--home .p-plan-detail-location__figure--4 {
    grid-column: 8/span 4;
    grid-row: 2;
    align-self: start;
  }
}
.p-plan-detail-location__section--home .p-plan-detail-location__figure--1 .p-plan-detail-location__img {
  aspect-ratio: 0.82/1;
}
@media (min-width: 1024px) {
  .p-plan-detail-location__section--home .p-plan-detail-location__figure--1 .p-plan-detail-location__img {
    aspect-ratio: 0.82/1;
  }
}
.p-plan-detail-location__section--home .p-plan-detail-location__figure--2 .p-plan-detail-location__img {
  aspect-ratio: 1.45/1;
}
@media (min-width: 1024px) {
  .p-plan-detail-location__section--home .p-plan-detail-location__figure--2 .p-plan-detail-location__img {
    aspect-ratio: 1.52/1;
  }
}
.p-plan-detail-location__section--home .p-plan-detail-location__figure--3 .p-plan-detail-location__img {
  aspect-ratio: 1.12/1;
}
@media (min-width: 1024px) {
  .p-plan-detail-location__section--home .p-plan-detail-location__figure--3 .p-plan-detail-location__img {
    aspect-ratio: 1.18/1;
  }
}
.p-plan-detail-location__section--home .p-plan-detail-location__figure--4 .p-plan-detail-location__img {
  aspect-ratio: 1/1;
}
@media (min-width: 1024px) {
  .p-plan-detail-location__section--home .p-plan-detail-location__figure--4 .p-plan-detail-location__img {
    aspect-ratio: 0.98/1;
  }
}

/* ==============================
   BGCOLOR
============================== */
.p-plan-detail-bgcolor {
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .p-plan-detail-bgcolor {
    padding-bottom: 80px;
  }
}
.p-plan-detail-bgcolor__head {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .p-plan-detail-bgcolor__head {
    margin-bottom: 0;
    padding-top: 8px;
    display: block;
  }
}
.p-plan-detail-bgcolor__title-en {
  margin: 0;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  line-height: 1.2;
  color: #8F5D46;
}
.p-plan-detail-bgcolor__title-jp {
  margin: 8px 0 0;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #8F5D46;
  font-size: clamp(1px, 18px + 2 * (100vw - 375px) / 649, 16px);
}
.p-plan-detail-bgcolor__body {
  min-width: 0;
}
@media (min-width: 1024px) {
  .p-plan-detail-bgcolor__body {
    margin-top: 100px;
    padding-right: 250px;
  }
}
.p-plan-detail-bgcolor__text {
  margin-bottom: 24px;
}
.p-plan-detail-bgcolor__text p {
  margin: 0;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .p-plan-detail-bgcolor__text p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .p-plan-detail-bgcolor__text p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-bgcolor__text p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
.p-plan-detail-bgcolor__text p {
  color: #333;
}
@media (min-width: 1024px) {
  .p-plan-detail-bgcolor__text p {
    text-align: center;
  }
}
.p-plan-detail-bgcolor__text p + p {
  margin-top: 8px;
}
.p-plan-detail-bgcolor__viewport {
  position: relative;
  overflow: hidden;
  min-width: 0;
}
@media (min-width: 1024px) {
  .p-plan-detail-bgcolor__viewport {
    overflow: visible;
  }
}
.p-plan-detail-bgcolor__track {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.8s ease;
  will-change: transform;
}
@media (min-width: 1024px) {
  .p-plan-detail-bgcolor__track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 22px;
    transform: none !important;
    transition: none;
    will-change: auto;
  }
}
.p-plan-detail-bgcolor__item {
  flex: 0 0 min(44.8vw, 180px);
}
@media (min-width: 1024px) {
  .p-plan-detail-bgcolor__item {
    flex: initial;
    min-width: 0;
  }
}
.p-plan-detail-bgcolor__image {
  overflow: hidden;
  border-radius: 5px;
  background-color: rgba(143, 93, 70, 0.06);
}
.p-plan-detail-bgcolor__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.p-plan-detail-bgcolor__name {
  margin: 8px 0 0;
  text-align: center;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}
@media (min-width: 1024px) {
  .p-plan-detail-bgcolor__name {
    margin-top: 10px;
    font-size: 13px;
  }
}
.p-plan-detail-bgcolor__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
@media (min-width: 1024px) {
  .p-plan-detail-bgcolor__dots {
    display: none;
  }
}
.p-plan-detail-bgcolor__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid #8F5D46;
  border-radius: 50%;
  background: transparent;
  appearance: none;
  cursor: pointer;
}
.p-plan-detail-bgcolor__dot.is-active {
  background: #8F5D46;
}

/* ==============================
   RETOUCH
============================== */
.p-plan-detail-retouch {
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .p-plan-detail-retouch {
    padding-bottom: 80px;
  }
}
.p-plan-detail-retouch__head {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .p-plan-detail-retouch__head {
    margin-bottom: 0;
    padding-top: 8px;
    display: block;
  }
}
.p-plan-detail-retouch__title-en {
  margin: 0;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  line-height: 1.2;
  color: #8F5D46;
}
.p-plan-detail-retouch__title-jp {
  margin: 8px 0 0;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: clamp(1px, 18px + 2 * (100vw - 375px) / 649, 16px);
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #8F5D46;
}
.p-plan-detail-retouch__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1024px) {
  .p-plan-detail-retouch__body {
    padding-right: 250px;
  }
}
.p-plan-detail-retouch__text {
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .p-plan-detail-retouch__text {
    max-width: 590px;
    margin-bottom: 36px;
    margin-top: 100px;
  }
}
.p-plan-detail-retouch__text p {
  margin: 0;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .p-plan-detail-retouch__text p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .p-plan-detail-retouch__text p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-retouch__text p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
.p-plan-detail-retouch__text p {
  color: #333;
}
@media (min-width: 1024px) {
  .p-plan-detail-retouch__text p {
    text-align: center;
  }
}
.p-plan-detail-retouch__text p + p {
  margin-top: 8px;
}
.p-plan-detail-retouch__images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
@media (min-width: 1024px) {
  .p-plan-detail-retouch__images {
    max-width: 720px;
    gap: 25px;
  }
}
.p-plan-detail-retouch__figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 5px;
  background-color: rgba(143, 93, 70, 0.06);
}
.p-plan-detail-retouch__label {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
@media (min-width: 1024px) {
  .p-plan-detail-retouch__label {
    top: 16px;
    font-size: 18px;
  }
}
.p-plan-detail-retouch__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 0.84/1;
  object-fit: cover;
}

/* ==============================
   OPTION
============================== */
.p-plan-detail-option {
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .p-plan-detail-option {
    padding-bottom: 80px;
  }
}
.p-plan-detail-option__head {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .p-plan-detail-option__head {
    margin-bottom: 0;
    padding-top: 8px;
    display: block;
    position: sticky;
    top: 89px;
    align-self: start;
  }
}
.p-plan-detail-option__title-en {
  margin: 0;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  line-height: 1.2;
  color: #8F5D46;
}
.p-plan-detail-option__title-jp {
  margin: 8px 0 0;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: clamp(1px, 18px + 2 * (100vw - 375px) / 649, 16px);
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #8F5D46;
}
.p-plan-detail-option__body {
  min-width: 0;
}
@media (min-width: 1024px) {
  .p-plan-detail-option__body {
    padding-right: 250px;
    margin-top: 100px;
  }
}
.p-plan-detail-option__grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 1024px) {
  .p-plan-detail-option__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
  }
}
.p-plan-detail-option__meta {
  margin-bottom: 10px;
}
.p-plan-detail-option__metaHead {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
@media (min-width: 1024px) {
  .p-plan-detail-option__metaHead {
    min-height: 52px;
  }
}
.p-plan-detail-option__name {
  position: relative;
  margin: 0;
  padding-left: 14px;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 16px;
  line-height: 1.25;
  color: #8F5D46;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.p-plan-detail-option__name::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8F5D46;
  transform: translateY(-50%);
}
.p-plan-detail-option__priceWrap {
  text-align: right;
  flex-shrink: 0;
}
.p-plan-detail-option__price, .p-plan-detail-option__quantity {
  margin: 0;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #333;
}
@media (min-width: 1024px) {
  .p-plan-detail-option__price, .p-plan-detail-option__quantity {
    font-size: 12px;
  }
}
.p-plan-detail-option__price span {
  font-size: 0.9em;
}
.p-plan-detail-option__image {
  margin-top: 10px;
}
.p-plan-detail-option__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/0.74;
  object-fit: cover;
  border-radius: 5px;
}
.p-plan-detail-option__text {
  margin-top: 10px;
}
.p-plan-detail-option__text p {
  margin: 0;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .p-plan-detail-option__text p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .p-plan-detail-option__text p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-plan-detail-option__text p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
.p-plan-detail-option__text p {
  color: #333;
}
.p-plan-detail-option__text p + p {
  margin-top: 8px;
}

/* ==============================
   VOICE
============================== */
.p-plan-detail-voice {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .p-plan-detail-voice {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.p-plan-detail-voice__head {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .p-plan-detail-voice__head {
    margin-bottom: 0;
    padding-top: 8px;
    display: block;
  }
}
.p-plan-detail-voice__title-en, .p-plan-detail-voice__title-jp {
  margin: 0;
  color: #8F5D46;
}
.p-plan-detail-voice__title-jp {
  margin-top: 8px;
}
.p-plan-detail-voice__body {
  min-width: 0;
}
.p-plan-detail-voice__grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 1024px) {
  .p-plan-detail-voice__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 24px;
  }
}
.p-plan-detail-voice__card {
  min-width: 0;
}
.p-plan-detail-voice__image {
  overflow: hidden;
}
.p-plan-detail-voice__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/0.74;
  object-fit: cover;
  border-radius: 5px;
}
.p-plan-detail-voice__details {
  margin-top: 0;
  border: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .p-plan-detail-voice__details {
    display: block;
    pointer-events: none;
  }
}
.p-plan-detail-voice__details[open] .p-plan-detail-voice__icon::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.p-plan-detail-voice__summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  padding: 12px 28px 12px 0;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .p-plan-detail-voice__summary {
    display: block;
    padding: 14px 0 10px;
    cursor: default;
    pointer-events: none;
  }
}
.p-plan-detail-voice__summary::-webkit-details-marker {
  display: none;
}
.p-plan-detail-voice__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  color: #333;
}
.p-plan-detail-voice__name {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media (min-width: 1024px) {
  .p-plan-detail-voice__name {
    font-size: 13px;
  }
}
.p-plan-detail-voice__icon {
  position: absolute;
  top: 50%;
  right: 0;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
}
@media (min-width: 1024px) {
  .p-plan-detail-voice__icon {
    display: none;
  }
}
.p-plan-detail-voice__icon::before, .p-plan-detail-voice__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #8F5D46;
  transition: transform 0.3s ease;
}
.p-plan-detail-voice__icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-plan-detail-voice__icon::after {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.p-plan-detail-voice__text {
  color: #333;
  padding-inline: 5px;
}
@media (min-width: 1024px) {
  .p-plan-detail-voice__text {
    display: block !important;
    padding-inline: 0;
  }
}
.p-plan-detail-voice__text p {
  margin: 0;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 14px;
  line-height: 1.95;
  letter-spacing: 0.05em;
}
@media (min-width: 1024px) {
  .p-plan-detail-voice__text p {
    font-size: 12px;
    line-height: 2;
  }
}
.p-plan-detail-voice__text p + p {
  margin-top: 8px;
}
.p-plan-detail-voice__buttonWrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
@media (min-width: 1024px) {
  .p-plan-detail-voice__buttonWrap {
    margin-top: 48px;
  }
}
.p-plan-detail-voice__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 48px;
  padding-inline: 24px;
  border: 1px solid #8F5D46;
  border-radius: 50px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #8F5D46;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .p-plan-detail-voice__button {
    min-width: 260px;
    min-height: 52px;
    font-size: 15px;
  }
}

/* ==============================
   PRINT BANNER
============================== */
.p-print-banner {
  background: #F9F7F1;
}
.p-print-banner__inner {
  background: rgba(143, 93, 70, 0.08);
}
@media (min-width: 1024px) {
  .p-print-banner__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(360px, 620px);
    align-items: stretch;
    gap: 0;
    background: transparent;
  }
}
@media (min-width: 1024px) {
  .p-print-banner__img {
    overflow: hidden;
  }
}
.p-print-banner__img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .p-print-banner__img img {
    width: 100%;
    height: 100%;
  }
}
.p-print-banner__content {
  display: flex;
  flex-direction: column;
  padding: 24px 20px 50px;
}
@media (min-width: 1024px) {
  .p-print-banner__content {
    justify-content: center;
    min-height: 100%;
    padding: 56px 48px;
    background: rgba(143, 93, 70, 0.2);
  }
}
.p-print-banner__title {
  margin: 0 0 16px;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #8F5D46;
}
@media (min-width: 1024px) {
  .p-print-banner__title {
    margin-bottom: 24px;
    font-size: 20px;
  }
}
.p-print-banner__text {
  margin: 0;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #333;
}
@media (min-width: 1024px) {
  .p-print-banner__text {
    font-size: 15px;
    line-height: 2.1;
  }
}
.p-print-banner__text p + p {
  margin-top: 4px;
}
.p-print-banner__link {
  margin-top: 18px;
  margin-left: auto;
}
@media (min-width: 1024px) {
  .p-print-banner__link {
    margin-top: 50px;
  }
}

/* ==============================
   OTHER PLANS
============================== */
.p-otherPlans {
  padding-top: 40px;
  padding-bottom: 40px;
  background: rgba(143, 93, 70, 0.08);
}
@media (min-width: 1024px) {
  .p-otherPlans {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1024px) {
  .p-otherPlans__layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    column-gap: 40px;
    align-items: start;
  }
}
.p-otherPlans__head {
  margin-bottom: 28px;
  text-align: center;
}
@media (min-width: 1024px) {
  .p-otherPlans__head {
    margin-bottom: 0;
    padding-top: 8px;
    text-align: left;
  }
}
.p-otherPlans__title-en {
  margin: 0;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  line-height: 1.2;
  color: #8F5D46;
}
.p-otherPlans__title-jp {
  margin: 8px 0 0;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: clamp(1px, 18px + 2 * (100vw - 375px) / 649, 16px);
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #8F5D46;
}
.p-otherPlans__body {
  min-width: 0;
}
.p-otherPlans__grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 1024px) {
  .p-otherPlans__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    padding: 20px 100px;
  }
}
.p-otherPlans__item {
  min-width: 0;
}
.p-otherPlans .c-plan-card--overlay {
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.16));
}
.p-otherPlans .c-plan-card--overlay .c-plan-card__media {
  box-shadow: none;
}
.p-otherPlans .c-plan-card--overlay .c-plan-card__caption {
  left: 0;
  right: 0;
  bottom: 18px;
  transform: none;
  width: 100%;
  height: 48px;
  padding: 0 18px;
  justify-content: flex-end;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (min-width: 1024px) {
  .p-otherPlans .c-plan-card--overlay .c-plan-card__caption {
    bottom: 18px;
    height: 50px;
    padding: 0 18px;
  }
}
.p-otherPlans .c-plan-card--overlay .c-plan-card__name {
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #8F5D46;
  text-align: right;
}
@media (min-width: 1024px) {
  .p-otherPlans .c-plan-card--overlay .c-plan-card__name {
    font-size: 16px;
  }
}

.p-newborn {
  background: #F9F7F1;
  color: #333;
}

/* ========================================
Types
======================================== */
.p-newborn-types__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .p-newborn-types__list {
    gap: 0;
  }
}

.p-newborn-types__item {
  position: relative;
}

.p-newborn-types__image {
  position: relative;
  width: 100%;
}

.p-newborn-types__image picture,
.p-newborn-types__image img {
  display: block;
  width: 100%;
  height: 100%;
}

.p-newborn-types__image img {
  object-fit: cover;
}

/* --------------------
SP
-------------------- */
.p-newborn-types__item--lifestyle .p-newborn-types__image,
.p-newborn-types__item--posed .p-newborn-types__image {
  aspect-ratio: 353/454;
}

.p-newborn-types__item-title {
  position: absolute;
  left: 20px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
  pointer-events: none;
}

.p-newborn-types__item--lifestyle .p-newborn-types__item-title {
  bottom: calc(100% + 40px);
}

.p-newborn-types__item--posed .p-newborn-types__item-title {
  bottom: calc(100% + 40px);
}

.p-newborn-types__content {
  position: relative;
  padding: 0 20px 0;
}

.p-newborn-types__item-title-en {
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
@media (min-width: 380px) {
  .p-newborn-types__item-title-en {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.3;
  }
}
@media (min-width: 768px) {
  .p-newborn-types__item-title-en {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.3;
  }
}
@media (min-width: 1024px) {
  .p-newborn-types__item-title-en {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.3;
  }
}

.p-newborn-types__item-title-ja {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .p-newborn-types__item-title-ja {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .p-newborn-types__item-title-ja {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .p-newborn-types__item-title-ja {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}

.p-newborn-types__item-copy {
  margin-bottom: 16px;
}

.p-newborn-types__item-copy p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .p-newborn-types__item-copy p {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .p-newborn-types__item-copy p {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .p-newborn-types__item-copy p {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
.p-newborn-types__item-copy p {
  color: #8F5D46;
}

.p-newborn-types__text {
  font-size: 14px;
  line-height: 2;
}

.p-newborn-types__text p {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .p-newborn-types__text p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .p-newborn-types__text p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-newborn-types__text p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}

.p-newborn-types__text p + p {
  margin-top: 1em;
}

.p-newborn-types__more {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

/* --------------------
PC
-------------------- */
@media (min-width: 768px) {
  .p-newborn-types__item {
    aspect-ratio: 1300/560;
    min-height: 0;
  }
  .p-newborn-types__image {
    height: 100%;
  }
  .p-newborn-types__content {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 10;
    width: clamp(320px, 33.5vw, 430px);
    padding: clamp(28px, 4vw, 56px) clamp(20px, 2.8vw, 40px) clamp(24px, 3.4vw, 48px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .p-newborn-types__item--lifestyle .p-newborn-types__content {
    right: 0;
    left: auto;
    padding-top: clamp(28px, 4vw, 56px);
    background: rgba(255, 255, 255, 0.72);
  }
  .p-newborn-types__item--posed .p-newborn-types__content {
    left: 0;
    right: auto;
    padding-top: clamp(28px, 4vw, 56px);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: #fff;
  }
  .p-newborn-types__item-title {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: clamp(14px, 2vw, 20px);
    color: #8F5D46;
    pointer-events: auto;
  }
  .p-newborn-types__item-title-en {
    font-size: clamp(16px, 2.5vw, 18px);
    line-height: 1.2;
    letter-spacing: 0.2em;
  }
  .p-newborn-types__item-title-ja {
    font-size: clamp(12px, 1.15vw, 14px);
    line-height: 1.7;
  }
  .p-newborn-types__item-copy {
    margin-bottom: clamp(14px, 2.1vw, 24px);
  }
  .p-newborn-types__item-copy p {
    font-size: clamp(14px, 1.5vw, 20px);
    line-height: 1.8;
  }
  .p-newborn-types__text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) and (min-width: 380px) {
  .p-newborn-types__text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-newborn-types__text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) and (min-width: 1024px) {
  .p-newborn-types__text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .p-newborn-types__more {
    margin-top: clamp(16px, 2vw, 24px);
  }
  .p-newborn-types__item--posed .p-newborn-types__item-title-en,
  .p-newborn-types__item--posed .p-newborn-types__item-title-ja,
  .p-newborn-types__item--posed .p-newborn-types__item-copy p,
  .p-newborn-types__item--posed .p-newborn-types__text,
  .p-newborn-types__item--posed .p-newborn-types__text p,
  .p-newborn-types__item--posed .c-linkArrow {
    color: #fff;
  }
}
/* ========================================
Props
======================================== */
.p-newborn-props__head {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .p-newborn-props__head {
    margin-bottom: 32px;
    align-self: center;
  }
}

.p-newborn-props__title-ja {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .p-newborn-props__title-ja {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .p-newborn-props__title-ja {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .p-newborn-props__title-ja {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
.p-newborn-props__title-ja {
  color: #8F5D46;
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .p-newborn-props__title-ja {
    text-align: left;
  }
}

.p-newborn-props__body {
  width: 100%;
}

.p-newborn-props__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 768px) {
  .p-newborn-props__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 32px;
    row-gap: 24px;
    align-items: start;
    padding: 0 10vw;
  }
}

.p-newborn-props__image {
  width: 100%;
}

.p-newborn-props__image img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .p-newborn-props__image img {
    border-radius: 5px;
  }
}

/* SP
-------------------- */
.p-newborn-props__image--01 {
  order: 1;
  margin-bottom: 0;
}

.p-newborn-props__image--02 {
  order: 2;
  margin-top: 0;
  margin-bottom: 0;
}

.p-newborn-props__text {
  order: 3;
  padding-top: 16px;
}

.p-newborn-props__text p {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .p-newborn-props__text p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .p-newborn-props__text p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-newborn-props__text p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}

.p-newborn-props__text p + p {
  margin-top: 1em;
}

/* PC
-------------------- */
@media (min-width: 768px) {
  .p-newborn-props__head {
    width: 100%;
    margin-bottom: 24px;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
  }
  .p-newborn-props__image--01 {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .p-newborn-props__image--02 {
    grid-column: 2/3;
    grid-row: 1/2;
    margin-top: 0;
  }
  .p-newborn-props__text {
    grid-column: 2/3;
    grid-row: 2/3;
    padding-top: 0;
    align-self: center;
  }
}
/* ========================================
Safety
======================================== */
@media (min-width: 768px) {
  .p-newborn-safety.l-section {
    padding-bottom: 0;
  }
}

.p-newborn-safety__inner {
  position: relative;
}

.p-newborn-safety__image {
  margin-bottom: 0;
}

.p-newborn-safety__image img {
  width: 100%;
  height: auto;
  display: block;
}

.p-newborn-safety__content {
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .p-newborn-safety__content {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    width: 480px;
    padding: 0;
    z-index: 10;
    padding-left: 30px;
  }
}

.p-newborn-safety__title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  position: absolute;
  top: 10px;
  left: 5vw;
}
@media (min-width: 768px) {
  .p-newborn-safety__title {
    top: 50px;
    padding-left: 60px;
    left: 0;
  }
}

.p-newborn-safety__title-en {
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media (min-width: 380px) {
  .p-newborn-safety__title-en {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
}
@media (min-width: 768px) {
  .p-newborn-safety__title-en {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
}
@media (min-width: 1024px) {
  .p-newborn-safety__title-en {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
}
.p-newborn-safety__title-en {
  color: #8F5D46;
  letter-spacing: 0.2em;
}

.p-newborn-safety__title-ja {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .p-newborn-safety__title-ja {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .p-newborn-safety__title-ja {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-newborn-safety__title-ja {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
.p-newborn-safety__title-ja {
  color: #8F5D46;
  font-weight: 600;
}

.p-newborn-safety__sub {
  margin-bottom: 16px;
}

.p-newborn-safety__sub p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .p-newborn-safety__sub p {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .p-newborn-safety__sub p {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .p-newborn-safety__sub p {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
.p-newborn-safety__sub p {
  color: #8F5D46;
}

.p-newborn-safety__text {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .p-newborn-safety__text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .p-newborn-safety__text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-newborn-safety__text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}

.p-newborn-safety__more {
  margin-top: 24px;
  text-align: end;
}
.p-newborn-safety__more a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .p-newborn-safety__more a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .p-newborn-safety__more a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-newborn-safety__more a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}

.p-posing-gallery {
  position: relative;
  z-index: 10;
}

/* =================================
   Intro
================================= */
.p-posing-gallery__intro-text p {
  max-width: 700px;
  margin-inline: auto;
  color: #333;
  font-size: 14px;
  line-height: 2;
}
@media (min-width: 1024px) {
  .p-posing-gallery__intro-text p {
    text-align: center;
  }
}

/* =================================
   Menu / Content
================================= */
.p-posing-gallery__layout {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 32px;
}
@media (min-width: 1024px) {
  .p-posing-gallery__layout {
    grid-template-columns: 250px minmax(0, 1fr);
    column-gap: 40px;
    align-items: start;
  }
}

.p-posing-gallery__nav {
  display: none;
}
@media (min-width: 1024px) {
  .p-posing-gallery__nav {
    display: block;
    position: sticky;
    top: 105px;
  }
}

.p-posing-gallery__nav-inner {
  display: grid;
}

.p-posing-gallery__nav-link {
  display: inline;
  width: fit-content;
  color: #8F5D46;
  font-size: 14px;
  line-height: 2.2;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media (any-hover: hover) {
  .p-posing-gallery__nav-link:hover {
    opacity: 0.7;
  }
}

.p-posing-gallery__nav-link.is-active {
  color: #8F5D46;
  background-repeat: no-repeat;
  background-position: 0 72%;
  background-size: 100% 0.72em;
  background-image: linear-gradient(transparent 0, transparent 18%, rgba(143, 93, 70, 0.18) 18%, rgba(143, 93, 70, 0.18) 100%);
}

.p-posing-gallery__content {
  min-width: 0;
}

.p-posing-gallery__group {
  border-top: 1px solid #e6e6e6;
}
.p-posing-gallery__group:last-child {
  border-bottom: 1px solid #e6e6e6;
}
@media (min-width: 1024px) {
  .p-posing-gallery__group {
    border-top: 0;
  }
  .p-posing-gallery__group:last-child {
    border-bottom: 0;
  }
  .p-posing-gallery__group + .p-posing-gallery__group {
    margin-top: 80px;
  }
}

.p-posing-gallery__group-heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px 18px 0;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .p-posing-gallery__group-heading {
    padding: 0 0 24px;
    cursor: default;
    justify-content: center;
  }
}
.p-posing-gallery__group-heading::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 1px solid #8F5D46;
  border-bottom: 1px solid #8F5D46;
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform 0.3s ease, margin-top 0.3s ease;
}
@media (min-width: 1024px) {
  .p-posing-gallery__group-heading::after {
    display: none;
  }
}

.p-posing-gallery__group.is-open .p-posing-gallery__group-heading::after {
  margin-top: 6px;
  transform: rotate(-135deg);
}

.p-posing-gallery__group.is-open .p-posing-gallery__group-heading::after {
  margin-top: 6px;
  transform: rotate(-135deg);
}

/* SP: 初期は閉じる */
.p-posing-gallery__group > .p-posing-gallery__item {
  display: none;
}

/* SP: 開いているときだけ表示 */
.p-posing-gallery__group.is-open > .p-posing-gallery__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-posing-gallery__group > .p-posing-gallery__item + .p-posing-gallery__item {
  margin-top: 40px;
}

/* PC: 常に表示 */
@media (min-width: 1024px) {
  .p-posing-gallery__group.is-open > .p-posing-gallery__item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
  }
  .p-posing-gallery__group > .p-posing-gallery__item + .p-posing-gallery__item {
    margin-top: 56px;
  }
}
.p-posing-gallery__group-title {
  margin: 0;
  color: #8F5D46;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif, "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media (min-width: 1024px) {
  .p-posing-gallery__group-title {
    font-size: 20px;
  }
}

.p-posing-gallery__list {
  display: grid;
  row-gap: 40px;
}
@media (min-width: 1024px) {
  .p-posing-gallery__list {
    row-gap: 56px;
  }
}

.p-posing-gallery__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin: 50px 0;
}
@media (min-width: 1024px) {
  .p-posing-gallery__item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
    margin: 50px;
  }
}

.p-posing-gallery__item-meta {
  flex: 0 0 auto;
}
@media (min-width: 1024px) {
  .p-posing-gallery__item-meta {
    width: 24px;
    margin-top: 4px;
  }
}

.p-posing-gallery__item-number {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin: 0;
  border-radius: 50%;
  background-color: #8F5D46;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

.p-posing-gallery__item-body {
  min-width: 0;
}
@media (min-width: 1024px) {
  .p-posing-gallery__item-body {
    flex: 1 1 auto;
    max-width: 300px;
  }
}

.p-posing-gallery__item-head {
  display: grid;
  gap: 2px;
  justify-items: center;
}
@media (min-width: 1024px) {
  .p-posing-gallery__item-head {
    justify-items: start;
  }
}

.p-posing-gallery__item-title-en {
  margin: 0;
  color: #8F5D46;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 28px;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .p-posing-gallery__item-title-en {
    font-size: 30px;
  }
}

.p-posing-gallery__item-title-ja {
  margin: 0;
  color: #8F5D46;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 12px;
  line-height: 1.6;
}

.p-posing-gallery__item-text {
  margin-top: 16px;
  color: #333;
  font-size: 13px;
  line-height: 2.1;
}

.p-posing-gallery__item-text p {
  margin: 0;
}

.p-posing-gallery__item-image {
  width: 100%;
}
@media (min-width: 1024px) {
  .p-posing-gallery__item-image {
    flex: 0 0 320px;
    width: 320px;
    margin-left: auto;
  }
}

.p-posing-gallery__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.p-posing-gallery__group.is-collapsed .p-posing-gallery__list {
  display: none;
}
@media (min-width: 1024px) {
  .p-posing-gallery__group.is-collapsed .p-posing-gallery__list .p-posing-gallery__list {
    display: grid;
  }
}

/* =================================
   Message
================================= */
.p-posing-gallery__message-bg {
  position: relative;
  overflow: hidden;
  padding-block: 56px;
  background-image: url("../../assets/images/newborn/message_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 1024px) {
  .p-posing-gallery__message-bg {
    padding-block: 88px;
  }
}
.p-posing-gallery__message-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.p-posing-gallery__message-inner {
  position: relative;
  z-index: 10;
}

.p-posing-gallery__message-content {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.p-posing-gallery__message-title {
  margin: 0;
  color: #8F5D46;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif, "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 18px;
  line-height: 1.7;
}

.p-posing-gallery__message-text {
  margin-top: 16px;
  color: #333;
  font-size: 16px;
  line-height: 2;
  text-align: left;
}
@media (min-width: 1024px) {
  .p-posing-gallery__message-text {
    margin-top: 20px;
    text-align: center;
  }
}

/* =================================
   Props
================================= */
.p-posing-gallery__props-heading {
  text-align: center;
}

.p-posing-gallery__props-title {
  margin: 0;
  color: #8F5D46;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif, "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 18px;
  line-height: 1.7;
}
@media (min-width: 1024px) {
  .p-posing-gallery__props-title {
    font-size: 20px;
  }
}

.p-posing-gallery__props-lead {
  margin-top: 10px;
  color: #333;
  font-size: 14px;
  line-height: 1.8;
}
@media (min-width: 1024px) {
  .p-posing-gallery__props-lead {
    font-size: 16px;
  }
}

.p-posing-gallery__props-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1024px) {
  .p-posing-gallery__props-note {
    text-align: center;
  }
}

/* ===== Props専用の上書き ===== */
.p-posing-gallery__props .p-plan-detail-slider__viewport {
  padding-inline: 24px;
}
@media (min-width: 1024px) {
  .p-posing-gallery__props .p-plan-detail-slider__viewport {
    width: min(1100px, 100%);
    padding-inline: 0;
    margin-inline: auto;
  }
}
.p-posing-gallery__props .p-plan-detail-slider__track {
  gap: 12px;
}
@media (min-width: 1024px) {
  .p-posing-gallery__props .p-plan-detail-slider__track {
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  .p-posing-gallery__props .p-plan-detail-slider__item {
    flex: 0 0 320px;
  }
}
.p-posing-gallery__props .p-plan-detail-slider__caption {
  margin-top: 10px;
  color: #333;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif, "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-align: center;
}
@media (min-width: 1024px) {
  .p-posing-gallery__props .p-plan-detail-slider__caption {
    margin-top: 12px;
  }
}
.p-posing-gallery__props .p-plan-detail-slider__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .p-posing-gallery__props .p-plan-detail-slider__dots {
    display: none;
  }
}

/* =================================
   Back link
================================= */
.p-posing-gallery__back {
  text-align: center;
  margin: 0 0 50px;
  margin-inline: auto;
}

.p-posing-gallery__back-link {
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
  color: #8F5D46;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif, "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .p-posing-gallery__back-link {
    font-size: 15px;
  }
}
.p-posing-gallery__back-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 280px;
  height: 1px;
  background: #8F5D46;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.p-posing-gallery__back-link:hover::after {
  width: 250px;
}

.p-lower-page-hero {
  position: relative;
  overflow: hidden;
  background-color: #F9F7F1;
}

.p-lower-page-hero__media {
  position: relative;
  min-height: 240px;
}
.p-lower-page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  pointer-events: none;
}
@media (min-width: 768px) {
  .p-lower-page-hero__media {
    min-height: 360px;
  }
}
@media (min-width: 1024px) {
  .p-lower-page-hero__media {
    min-height: 420px;
  }
}

.p-lower-page-hero__img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 768px) {
  .p-lower-page-hero__img {
    height: 360px;
  }
}
@media (min-width: 1024px) {
  .p-lower-page-hero__img {
    height: 420px;
  }
}

.p-lower-page-hero__inner {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .p-lower-page-hero__inner {
    padding-inline: 30px;
  }
}

.p-lower-page-hero__content {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.p-lower-page-hero__title-en {
  margin: 0;
  color: #8F5D46;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif, "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
@media (min-width: 1024px) {
  .p-lower-page-hero__title-en {
    font-size: 24px;
  }
}

.p-lower-page-hero__title-ja {
  margin: 0;
  color: #8F5D46;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif, "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.p-garage-page {
  background: #F9F7F1;
  color: #333;
  /* 全体のベース余白（少し広め） */
}
@media (min-width: 1024px) {
  .p-garage-page .l-section__inner {
    padding-inline: clamp(24px, 6vw, 80px);
  }
}
.p-garage-page {
  --garage-gutter-wide: clamp(40px, 12vw, 200px);
}

/* 背景ありセクションだけ */
@media (min-width: 1024px) {
  .garage-recommend .l-section__inner {
    padding-inline: var(--garage-gutter-wide);
  }
}

/* ======================================
   共通
====================================== */
.garage-about__head,
.garage-scene__head,
.garage-event__head,
.garage-reserve__head,
.garage-defference__head,
.garage-recommend__head {
  margin-bottom: 32px;
}
.garage-about__title,
.garage-scene__title,
.garage-event__title,
.garage-reserve__title,
.garage-defference__title,
.garage-recommend__title {
  color: #8F5D46;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .garage-about__title,
  .garage-scene__title,
  .garage-event__title,
  .garage-reserve__title,
  .garage-defference__title,
  .garage-recommend__title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .garage-about__title,
  .garage-scene__title,
  .garage-event__title,
  .garage-reserve__title,
  .garage-defference__title,
  .garage-recommend__title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .garage-about__title,
  .garage-scene__title,
  .garage-event__title,
  .garage-reserve__title,
  .garage-defference__title,
  .garage-recommend__title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .garage-about__head,
  .garage-scene__head,
  .garage-event__head,
  .garage-reserve__head,
  .garage-defference__head,
  .garage-recommend__head {
    margin-bottom: 40px;
  }
}

/* ======================================
   section2: garage-about
====================================== */
.garage-about__head {
  text-align: center;
}
.garage-about__body {
  display: grid;
  gap: 40px;
}
.garage-about__row {
  display: grid;
  gap: 20px;
}
.garage-about__image {
  overflow: hidden;
}
.garage-about__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 343/240;
  object-fit: cover;
  border-radius: 5px;
}
.garage-about__text {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .garage-about__text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .garage-about__text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .garage-about__text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
.garage-about__text p + p {
  margin-top: 1.2em;
}
.garage-about__text p {
  margin: 0;
}
.garage-about {
  /* SP: 画像 → テキスト → 画像 → テキスト */
}
.garage-about__row--top .garage-about__image {
  order: 1;
}
.garage-about__row--top .garage-about__text {
  order: 2;
}
.garage-about__row--bottom .garage-about__image {
  order: 3;
}
.garage-about__row--bottom .garage-about__text {
  order: 4;
}
@media (min-width: 1024px) {
  .garage-about__head {
    margin-bottom: 56px;
  }
  .garage-about__body {
    gap: 56px;
  }
  .garage-about__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
  }
  .garage-about__row--top .garage-about__image {
    order: 0;
    grid-column: 1;
  }
  .garage-about__row--top .garage-about__text {
    order: 0;
    grid-column: 2;
  }
  .garage-about__row--bottom .garage-about__text {
    order: 0;
    grid-column: 1;
  }
  .garage-about__row--bottom .garage-about__image {
    order: 0;
    grid-column: 2;
  }
  .garage-about__img {
    aspect-ratio: 520/360;
  }
  .garage-about__text {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 520px;
    margin-inline: auto;
    padding: 32px 40px;
    font-size: 15px;
  }
}

/* ======================================
   section3: garage-scene
====================================== */
.garage-scene {
  background: rgba(228, 201, 193, 0.2);
}
.garage-scene__head {
  text-align: center;
}
.garage-scene__body {
  margin-top: 32px;
}
.garage-scene__list {
  display: grid;
  gap: 40px;
}
.garage-scene__card {
  display: grid;
  gap: 16px;
}
.garage-scene__card-image {
  overflow: hidden;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.5);
}
.garage-scene__card-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 343/240;
  object-fit: cover;
}
.garage-scene__card-content {
  display: grid;
  gap: 14px;
}
.garage-scene__card-title {
  color: #8F5D46;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .garage-scene__card-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .garage-scene__card-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .garage-scene__card-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
.garage-scene__card-title {
  text-align: center;
}
.garage-scene__card-copy {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(143, 93, 70, 0.45);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .garage-scene__card-copy {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .garage-scene__card-copy {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .garage-scene__card-copy {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
.garage-scene__card-copy {
  text-align: center;
}
.garage-scene__card-text {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .garage-scene__card-text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .garage-scene__card-text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .garage-scene__card-text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
.garage-scene__card-text p + p {
  margin-top: 1em;
}
@media (min-width: 1024px) {
  .garage-scene__body {
    margin-top: 40px;
  }
  .garage-scene__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    align-items: start;
  }
  .garage-scene__card {
    grid-template-rows: auto auto 1fr;
    gap: 18px;
  }
  .garage-scene__card-img {
    aspect-ratio: 320/220;
  }
  .garage-scene__card-content {
    gap: 16px;
  }
  .garage-scene__card-copy {
    min-height: 88px;
    padding-bottom: 14px;
  }
}

/* ======================================
   section4: garage-event
====================================== */
.garage-event {
  background: rgba(255, 255, 255, 0.4);
}
.garage-event__head {
  text-align: center;
  margin-bottom: 32px;
}
.garage-event__title {
  color: #8F5D46;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .garage-event__title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .garage-event__title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .garage-event__title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
.garage-event__body {
  display: grid;
  gap: 32px;
}
.garage-event__list {
  display: grid;
  gap: 20px;
}
.garage-event__card {
  height: 100%;
}
.garage-event__card-link {
  display: grid;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  height: 100%;
}
.garage-event__card-image {
  overflow: hidden;
  border-radius: 5px;
}
.garage-event__card-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 343/240;
  object-fit: cover;
}
.garage-event__card-content {
  display: grid;
  gap: 6px;
}
.garage-event__card-date {
  font-size: 12px;
  color: #8F5D46;
  letter-spacing: 0.08em;
}
.garage-event__card-title {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.garage-event__footer {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-top: 24px;
}
.garage-event {
  /* マイクロコピー */
}
.garage-event__footer-sub {
  font-size: 13px;
  color: #333;
  letter-spacing: 0.04em;
}
.garage-event__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  min-height: 56px;
  border: 1px solid #8F5D46;
  border-radius: 999px;
  color: #8F5D46;
  background: transparent;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.3s ease;
}
.garage-event__cta-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
}
.garage-event__cta-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.garage-event__cta-text {
  display: inline-block;
}
.garage-event {
  /* hover */
}
.garage-event__cta:hover {
  background: #8F5D46;
  color: #fff;
}
@media (min-width: 768px) {
  .garage-event__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .garage-event {
    padding-block: 80px;
  }
  .garage-event__head {
    margin-bottom: 40px;
  }
  .garage-event__body {
    gap: 40px;
  }
  .garage-event__list {
    gap: 32px;
  }
  .garage-event__card-link {
    gap: 14px;
  }
  .garage-event__card-img {
    aspect-ratio: 320/220;
  }
  .garage-event__card-content {
    gap: 8px;
  }
  .garage-event__card-title {
    font-size: 15px;
    margin: 0;
  }
  .garage-event__footer {
    margin-top: 32px;
  }
  .garage-event__cta {
    padding: 16px 40px;
    min-height: 60px;
    font-size: 16px;
  }
}

/* ======================================
   section5: garage-reserve
====================================== */
.garage-reserve__head {
  text-align: center;
  margin-bottom: 32px;
}
.garage-reserve__body {
  display: grid;
  gap: 32px;
}
.garage-reserve__content {
  display: grid;
  gap: 20px;
}
.garage-reserve__image {
  overflow: hidden;
  border-radius: 5px;
}
.garage-reserve__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 343/240;
  object-fit: cover;
}
.garage-reserve__text {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.04em;
}
.garage-reserve__text p + p {
  margin-top: 1.2em;
}
.garage-reserve {
  /* =========================
     フッター帯（ここが重要）
  ========================= */
}
.garage-reserve__footer {
  margin-top: 24px;
  /* 画面いっぱいに広げる */
  margin-inline: calc(50% - 50vw);
  padding: 24px 16px;
  background: rgba(228, 201, 193, 0.2);
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}
.garage-reserve {
  /* CTA（eventと統一） */
}
.garage-reserve__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid #8F5D46;
  border-radius: 999px;
  color: #8F5D46;
  background: transparent;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-size: clamp(0.875rem, 3.5vw, 1rem);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.3s ease;
}
.garage-reserve__cta-icon {
  height: 25px;
  width: auto;
}
.garage-reserve__cta-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.garage-reserve__cta:hover {
  background: #8F5D46;
  color: #fff;
}
.garage-reserve__sub {
  margin: 0;
}
.garage-reserve__mail {
  font-size: 13px;
  color: #8F5D46;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .garage-reserve__content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .garage-reserve__head {
    margin-bottom: 40px;
  }
  .garage-reserve__content {
    gap: 40px;
  }
  .garage-reserve__text {
    font-size: 15px;
  }
  .garage-reserve__footer {
    padding: 32px 0;
    gap: 16px;
  }
  .garage-reserve__cta {
    padding: 16px 40px;
    min-height: 60px;
    font-size: 16px;
  }
}

/* ======================================
   section6: garage-defference
====================================== */
.garage-defference__head {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
  justify-items: center;
  text-align: center;
}
.garage-defference__title {
  text-align: center;
}
.garage-defference__text {
  max-width: 720px;
  margin-inline: auto;
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-align: left;
}
.garage-defference__body {
  margin-top: 0;
}
.garage-defference__list {
  display: grid;
  gap: 28px;
}
.garage-defference__item {
  display: grid;
  gap: 14px;
}
.garage-defference__item-image {
  overflow: hidden;
  border-radius: 5px;
}
.garage-defference__item-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 343/240;
  object-fit: cover;
}
.garage-defference__item-content {
  display: grid;
  gap: 8px;
}
.garage-defference__item-label {
  color: #8F5D46;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.garage-defference__item-copy {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin: 0;
}
.garage-defference__item-text {
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
.garage-defference__item-text p + p {
  margin-top: 0.8em;
}
@media (min-width: 768px) {
  .garage-defference__item {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
  }
}
@media (min-width: 1024px) {
  .garage-defference__head {
    gap: 16px;
    margin-bottom: 32px;
  }
  .garage-defferencebody {
    padding-inline: 30px;
  }
  .garage-defference__text {
    max-width: 760px;
    font-size: 14px;
    line-height: 2;
  }
  .garage-defference__list {
    gap: 36px;
  }
  .garage-defference__item {
    gap: 24px;
    align-items: flex-end;
  }
  .garage-defference__item-img {
    aspect-ratio: 343/240;
  }
  .garage-defference__item-content {
    gap: 0px;
    padding-top: 6px;
    padding-bottom: 5vh;
  }
  .garage-defference__item-label {
    font-size: 14px;
  }
  .garage-defference__item-copy {
    font-size: 18px;
    line-height: 1.8;
  }
  .garage-defference__item-text {
    font-size: 14px;
    line-height: 1.9;
  }
}

/* ======================================
   section7: garage-recommend
====================================== */
.garage-recommend {
  position: relative;
  background: url("../../assets/images/garage/recommend-sp.jpg") center/cover no-repeat;
}
.garage-recommend::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.46);
}
.garage-recommend .l-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: inherit;
}
.garage-recommend__grid {
  display: grid;
  gap: 35px;
  min-height: 320px;
  align-content: center;
  width: 100%;
  max-width: 520px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.52);
  border-radius: 5px;
  backdrop-filter: blur(2px);
}
.garage-recommend__head {
  margin-bottom: 4px;
}
.garage-recommend__title {
  color: #8F5D46;
  font-size: clamp(18px, 4vw, 20px);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
.garage-recommend__list {
  display: grid;
  gap: 3.5px;
}
.garage-recommend__item {
  display: block;
  width: fit-content;
  max-width: 100%;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  margin: 0;
}
.garage-recommend__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.garage-recommend__item-text {
  display: inline;
  padding-inline: 0.08em;
  color: #333;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.04em;
  background-image: linear-gradient(transparent 50%, rgba(143, 93, 70, 0.28) 50%);
  background-repeat: no-repeat;
  background-size: 0 100%;
  transition: background-size 0.45s ease;
}
.garage-recommend__item.is-lined .garage-recommend__item-text {
  background-size: 100% 100%;
}
@media (min-width: 1024px) {
  .garage-recommend {
    background-image: url("../../assets/images/garage/recommend.jpg");
    background-position: center;
    background-size: cover;
  }
  .garage-recommend::before {
    background: rgba(255, 255, 255, 0.58);
  }
  .garage-recommend .l-section__inner {
    padding-inline: var(--garage-gutter-wide);
  }
  .garage-recommend__grid {
    min-height: 430px;
    gap: 20px;
    align-content: center;
    justify-items: start;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    max-width: 560px;
  }
  .garage-recommend__head {
    margin-bottom: 10px;
    transform: translateX(-24px);
  }
  .garage-recommend__body {
    padding: 0;
    margin-left: 0;
    padding-left: 0;
    transform: translateX(-24px);
  }
  .garage-recommend__list {
    gap: 8px;
  }
  .garage-recommend__item {
    transform: none;
  }
  .garage-recommend__item-text {
    display: inline-block;
    overflow: hidden;
    max-width: 0;
    white-space: nowrap;
    font-size: 16px;
    line-height: 1.7;
    transition: max-width 0.95s steps(30, end), background-size 0.45s ease;
  }
  .garage-recommend__item.is-typing .garage-recommend__item-text, .garage-recommend__item.is-visible .garage-recommend__item-text {
    max-width: 100%;
  }
}

.p-garage-page .p-plans {
  margin-top: 0px;
}

.p-single {
  background: #F9F7F1;
  color: #333;
}

.p-single-article__page-header {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: 40px;
  text-align: center;
}
.p-single-article__eyebrow {
  color: #8F5D46;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  margin: 0;
}
.p-single-article__page-title {
  color: #8F5D46;
  font-size: clamp(18px, 4vw, 20px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.p-single-article__layout {
  row-gap: 28px;
}
.p-single-article__meta {
  display: grid;
  gap: 14px;
  min-width: 0;
}
.p-single-article__date {
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.p-single-article__title {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
  writing-mode: horizontal-tb;
  overflow-wrap: anywhere;
  word-break: normal;
  white-space: normal;
  margin: 0;
  font-weight: 600;
}
.p-single-article__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-single-article__categories-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid #8F5D46;
  border-radius: 999px;
  color: #8F5D46;
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.p-single-article__categories-link:hover, .p-single-article__categories-link:focus-visible {
  background: #8F5D46;
  color: #fff;
}
.p-single-article__main {
  display: grid;
  gap: 28px;
  min-width: 0;
}
.p-single-article__thumbnail {
  overflow: hidden;
  border-radius: 5px;
}
.p-single-article__thumbnail-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 343/240;
  object-fit: cover;
}
.p-single-article__content {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
  word-break: break-word;
}
.p-single-article__content > *:first-child {
  margin-top: 0;
}
.p-single-article__content > * + * {
  margin-top: 1.5em;
}
.p-single-article__content p {
  margin: 0;
}
.p-single-article__content h2,
.p-single-article__content h3,
.p-single-article__content h4 {
  margin-top: 2.2em;
  font-weight: 700;
  line-height: 1.8;
}
.p-single-article__content h2 {
  font-size: 18px;
  color: #8F5D46;
  border-bottom: 1.5px solid #8F5D46;
  padding: 5px 0;
  font-weight: 600;
}
.p-single-article__content h3 {
  font-size: 20px;
}
.p-single-article__content h4 {
  font-size: 18px;
}
.p-single-article__content a {
  color: #8F5D46;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.p-single-article__content ul,
.p-single-article__content ol {
  padding-left: 1.5em;
}
.p-single-article__content li + li {
  margin-top: 0.5em;
}
.p-single-article__content img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}
.p-single-article__footer {
  margin-top: 24px;
  text-align: center;
}
.p-single-article__back {
  display: inline-block;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 14px;
  line-height: 1.6;
  color: #8F5D46;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.p-single-article__nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.p-single-article__nav-prev {
  text-align: left;
}
.p-single-article__nav-back {
  text-align: center;
}
.p-single-article__nav-next {
  text-align: right;
}
.p-single-article__nav-link {
  display: inline-block;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 14px;
  line-height: 1.6;
  color: #8F5D46;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
@media (min-width: 1024px) {
  .p-single-article__page-header {
    margin-bottom: 56px;
  }
  .p-single-article__eyebrow {
    font-size: 40px;
  }
  .p-single-article__layout {
    grid-template-columns: 280px minmax(0, 1fr);
    column-gap: 40px;
    align-items: start;
  }
  .p-single-article__meta {
    position: sticky;
    top: 89px;
    align-content: start;
    gap: 16px;
  }
  .p-single-article__date {
    font-size: 15px;
  }
  .p-single-article__title {
    max-width: 100%;
    font-size: 16px;
    line-height: 2;
  }
  .p-single-article__main {
    max-width: 760px;
    gap: 28px;
  }
  .p-single-article__thumbnail-img {
    aspect-ratio: 760/430;
  }
  .p-single-article__content {
    font-size: 15px;
    line-height: 2.2;
  }
}

main h4.wp-block-heading {
  position: relative;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: #333;
  text-decoration: none;
  padding: 2px 20px;
}

main h4.wp-block-heading:before {
  position: absolute;
  content: "▶";
  font-size: 15px; /*マーク部のサイズ*/
  left: 0;
  top: 0;
  color: #8F5D46;
}

.p-404 {
  background: #F9F7F1;
  color: #333;
}
.p-404__inner {
  display: grid;
  justify-items: center;
  gap: 28px;
  padding-block: 40px;
  text-align: center;
}
.p-404__heading {
  display: grid;
  gap: 8px;
}
.p-404__eyebrow {
  color: #8F5D46;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
.p-404__title {
  color: #8F5D46;
  font-size: clamp(18px, 4vw, 20px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.p-404__body {
  max-width: 640px;
}
.p-404__text {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.04em;
}
.p-404__footer {
  margin-top: 8px;
}
.p-404__home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border: 1px solid #8F5D46;
  border-radius: 999px;
  color: #8F5D46;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.p-404__home:hover, .p-404__home:focus-visible {
  background: #8F5D46;
  color: #fff;
}
@media (min-width: 1024px) {
  .p-404__inner {
    gap: 32px;
    padding-block: 80px;
  }
  .p-404__eyebrow {
    font-size: 56px;
  }
  .p-404__text {
    font-size: 16px;
  }
  .p-404__home {
    min-height: 56px;
    padding-inline: 40px;
  }
}

.p-archive {
  padding-top: 50px;
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .p-archive {
    padding-top: 56px;
    padding-bottom: 80px;
  }
}

.p-archive__heading {
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .p-archive__heading {
    margin-bottom: 24px;
  }
}

.p-archive__header {
  display: grid;
  gap: 4px;
  justify-items: center;
  text-align: center;
}

.p-archive__title-en {
  margin: 0;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.2em;
  color: #8F5D46;
}
@media (min-width: 1024px) {
  .p-archive__title-en {
    font-size: 24px;
  }
}

.p-archive__title-ja {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #8F5D46;
}
@media (min-width: 1024px) {
  .p-archive__title-ja {
    font-size: 18px;
  }
}

.p-archive__filter {
  margin-bottom: 32px;
  padding-block: 0px;
}
@media (min-width: 1024px) {
  .p-archive__filter {
    margin-bottom: 48px;
  }
}

.p-archive-filter {
  display: flex;
  justify-content: center;
}

.p-archive-filter__group {
  display: grid;
  gap: 8px;
  width: 100%;
  max-width: 300px;
}

.p-archive-filter__label {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #8F5D46;
  text-align: center;
}

.p-archive-filter__select-wrap {
  position: relative;
}
.p-archive-filter__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #8F5D46;
  border-bottom: 1px solid #8F5D46;
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

.p-archive-filter__select {
  appearance: none;
  width: 100%;
  min-height: 46px;
  padding: 12px 30px 12px 16px;
  border: 1px solid #e6e6e6;
  border-radius: 9999px;
  font-size: 15px;
  line-height: 1.4;
  color: #8F5D46;
  background-color: transparent;
}

.p-archive-filter__submit {
  min-height: 40px;
  margin-top: 12px;
  padding: 8px 16px;
  border: 1px solid #e6e6e6;
  border-radius: 9999px;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #333;
  background-color: transparent;
}

.p-archive__body {
  margin-top: 0;
}

.p-archive__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1024px) {
  .p-archive__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 24px;
  }
}

.p-archive-card {
  height: 100%;
}

.p-archive-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(230, 230, 230, 0.9);
  border-radius: 5px;
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.p-archive-card__media {
  overflow: hidden;
  background-color: #d9d9d9;
}

.p-archive-card__image,
.p-archive-card__image-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.p-archive-card__image-placeholder {
  background-color: #d9d9d9;
}

.p-archive-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 18px 22px;
  background-color: transparent;
}

.p-archive-card__terms {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-archive-card__term {
  margin: 0;
}

.p-archive-card__term-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid #8F5D46;
  border-radius: 9999px;
  font-size: 0.75rem;
  line-height: 1.2;
  color: #8F5D46;
  background-color: transparent;
}

.p-archive-card__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.7;
  color: #333;
}
@media (min-width: 1024px) {
  .p-archive-card__title {
    min-height: 3.4em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}

.p-archive-card__date {
  font-size: 0.875rem;
  line-height: 1.4;
  color: rgba(51, 51, 51, 0.8);
}
@media (min-width: 1024px) {
  .p-archive-card__date {
    min-height: 1.4em;
  }
}

.p-archive-card__excerpt {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(51, 51, 51, 0.82);
  line-break: strict;
  overflow-wrap: anywhere;
}
@media (min-width: 1024px) {
  .p-archive-card__excerpt {
    min-height: 3.8em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}

.p-archive__pagination {
  margin-top: 40px;
}
@media (min-width: 1024px) {
  .p-archive__pagination {
    margin-top: 56px;
  }
}
.p-archive__pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-archive__pagination .page-numbers li {
  margin: 0;
  list-style: none;
}
.p-archive__pagination .page-numbers a,
.p-archive__pagination .page-numbers span {
  display: grid;
  place-items: center;
  min-width: 40px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid #e6e6e6;
  border-radius: 9999px;
  font-size: 0.875rem;
  line-height: 1;
  color: #333;
  text-decoration: none;
  background-color: transparent;
}
.p-archive__pagination .page-numbers .current {
  color: #fff;
  background-color: #8F5D46;
  border-color: #8F5D46;
}
.p-archive__pagination .page-numbers .dots {
  border-color: transparent;
  background-color: transparent;
}

.p-archive__empty {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 48px 20px;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  text-align: center;
  background-color: transparent;
}
@media (min-width: 1024px) {
  .p-archive__empty {
    padding: 64px 32px;
  }
}

.p-archive__empty-title {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #333;
}

.p-archive__empty-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #333;
}

.p-policy {
  background: #F9F7F1;
}

.p-policy__inner {
  width: 100%;
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  padding: 80px 20px 0;
}
@media (min-width: 768px) {
  .p-policy__inner {
    padding-top: 120px;
    padding-right: 30px;
    padding-left: 30px;
  }
}

.p-policy__article {
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .p-policy__article {
    padding-bottom: 80px;
  }
}

.p-policy__header {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .p-policy__header {
    margin-bottom: 56px;
  }
}

.p-policy__title {
  margin: 0;
  color: #8F5D46;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif, "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-align: center;
}
@media (min-width: 768px) {
  .p-policy__title {
    font-size: 20px;
  }
}

.terms-sub {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (min-width: 380px) {
  .terms-sub {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .terms-sub {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .terms-sub {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
.terms-sub {
  color: #8F5D46;
  text-align: center;
}

.p-policy__body {
  color: #333;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif, "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 14px;
  line-height: 2;
  word-break: break-word;
  overflow-wrap: anywhere;
}
@media (min-width: 768px) {
  .p-policy__body {
    line-height: 2.1;
  }
}
.p-policy__body > *:first-child {
  margin-top: 0;
}
.p-policy__body > *:last-child {
  margin-bottom: 0;
}
.p-policy__body p {
  margin: 0 0 1.6em;
}
.p-policy__body h2,
.p-policy__body h3 {
  color: #333;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif, "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-weight: 500;
}
.p-policy__body h2 {
  margin: 56px 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6e6e6;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .p-policy__body h2 {
    margin-top: 72px;
    margin-bottom: 24px;
  }
}
.p-policy__body h3 {
  margin: 36px 0 16px;
  font-size: 15pxm;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .p-policy__body h3 {
    margin-top: 40px;
    margin-bottom: 18px;
  }
}
.p-policy__body ul,
.p-policy__body ol {
  margin: 0 0 1.6em;
  padding-left: 1.5em;
}
.p-policy__body li {
  margin-bottom: 0.6em;
}
.p-policy__body li:last-child {
  margin-bottom: 0;
}
.p-policy__body ul li {
  list-style: disc;
}
.p-policy__body ol li {
  list-style: decimal;
}
.p-policy__body a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.p-policy__body strong {
  font-weight: 700;
}
.p-policy__body table {
  width: 100%;
  margin: 0 0 1.6em;
  border-collapse: collapse;
}
.p-policy__body th,
.p-policy__body td {
  padding: 12px;
  border: 1px solid #e6e6e6;
  text-align: left;
  vertical-align: top;
}

.u-sp-br {
  display: none;
}
@media (max-width: 768px) {
  .u-sp-br {
    display: block;
  }
}

.p-accordion-page {
  background: #F9F7F1;
}

.p-accordion-page__article {
  width: 100%;
}

.p-accordion-page__hero {
  position: relative;
  overflow: hidden;
  background: #ede9e1;
}

.p-accordion-page__hero-media {
  position: relative;
  z-index: 0;
  height: 220px;
}
@media (min-width: 1024px) {
  .p-accordion-page__hero-media {
    height: 360px;
  }
}
.p-accordion-page__hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.p-accordion-page__hero-image {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-accordion-page__hero-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding-inline: 20px;
}
@media (min-width: 1024px) {
  .p-accordion-page__hero-inner {
    padding-inline: 30px;
  }
}

.p-accordion-page__hero-content {
  text-align: center;
}

.p-accordion-page__hero-eyebrow {
  margin: 0 0 8px;
  color: #8F5D46;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.2em;
}
@media (min-width: 1024px) {
  .p-accordion-page__hero-eyebrow {
    margin-bottom: 12px;
  }
}

.p-accordion-page__hero-title {
  margin: 0;
  color: #8F5D46;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.p-accordion-page__content {
  padding-top: 40px;
}
@media (min-width: 1024px) {
  .p-accordion-page__content {
    padding-top: 72px;
  }
}
.p-accordion-page__content > *:first-child {
  margin-top: 0;
}
.p-accordion-page__content > *:last-child {
  margin-bottom: 0;
}

.p-accordion-page .l-section {
  background: transparent;
}
.p-accordion-page .l-section__grid {
  row-gap: 24px;
}
@media (min-width: 1024px) {
  .p-accordion-page .l-section__grid {
    row-gap: 0;
  }
}
.p-accordion-page .l-section__head {
  min-width: 0;
  display: block;
}
@media (min-width: 1024px) {
  .p-accordion-page .l-section__head {
    display: flex;
    position: sticky;
    top: 89px;
    align-self: start;
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-accordion-page .l-section__title {
  margin: 0;
  color: #8F5D46;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  font-size: 20px;
}
@media (min-width: 1024px) {
  .p-accordion-page .l-section__title {
    text-align: left;
    font-size: 16px;
  }
}

.p-accordion-head-subtitle {
  margin: 0;
  color: #8F5D46;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}
@media (min-width: 1024px) {
  .p-accordion-head-subtitle {
    text-align: left;
  }
}

.p-accordion-head-subtitle + .p-accordion-head-subtitle {
  margin-top: 12px;
}

.p-accordion {
  display: grid;
  gap: 8px;
}
@media (min-width: 1024px) {
  .p-accordion {
    gap: 12px;
  }
}

.p-accordion + .p-accordion {
  margin-top: 24px;
}
@media (min-width: 1024px) {
  .p-accordion + .p-accordion {
    margin-top: 32px;
  }
}

.p-accordion__item {
  overflow: hidden;
  border: 1px solid rgba(143, 93, 70, 0.2);
  border-radius: 5px;
  background: transparent;
}

.p-accordion__summary {
  position: relative;
  display: block;
  padding: 16px 48px 16px 16px;
  list-style: none;
  background: rgba(143, 93, 70, 0.12);
  color: #333;
  cursor: pointer;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif, "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}
.p-accordion__summary::-webkit-details-marker {
  display: none;
}
@media (min-width: 1024px) {
  .p-accordion__summary {
    padding: 24px 72px 24px 24px;
  }
}

.p-accordion__icon {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
}
@media (min-width: 1024px) {
  .p-accordion__icon {
    right: 24px;
  }
}
.p-accordion__icon::before, .p-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: #8F5D46;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.p-accordion__icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.p-accordion__item[open] .p-accordion__icon::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.p-accordion__body {
  padding: 20px;
  background: transparent;
  color: #333;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif, "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .p-accordion__body {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .p-accordion__body {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-accordion__body {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
.p-accordion__body {
  word-break: break-word;
  overflow-wrap: anywhere;
}
@media (min-width: 1024px) {
  .p-accordion__body {
    padding: 24px;
  }
}
.p-accordion__body > *:first-child {
  margin-top: 0;
}
.p-accordion__body > *:last-child {
  margin-bottom: 0;
}
.p-accordion__body p {
  margin: 0 0 1.2em;
}
.p-accordion__body ul,
.p-accordion__body ol {
  margin: 0 0 1.2em;
  padding-left: 1.5em;
}
.p-accordion__body li {
  margin-bottom: 0.5em;
}
.p-accordion__body li:last-child {
  margin-bottom: 0;
}
.p-accordion__body ul li {
  list-style: disc;
}
.p-accordion__body ol li {
  list-style: decimal;
}
.p-accordion__body a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.p-accordion__body strong {
  font-weight: 700;
}

.p-accordion-important {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(143, 93, 70, 0.2);
  color: #333;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif, "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 14px;
  line-height: 1.9;
}
@media (min-width: 1024px) {
  .p-accordion-important {
    margin-top: 32px;
    padding-top: 32px;
  }
}
.p-accordion-important p {
  margin: 0;
}
.p-accordion-important strong {
  font-weight: 700;
}

/* FLOW CTA */
.p-accordion-cta {
  margin-top: 40px;
  padding: 32px 0;
  background: rgba(228, 201, 193, 0.2);
  width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
  text-align: center;
}
@media (min-width: 1024px) {
  .p-accordion-cta {
    margin-top: 40px;
    padding: 32px 0;
    background: rgba(228, 201, 193, 0.2);
  }
}

.p-accordion-cta__inner {
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
  padding-inline: 20px;
  text-align: center;
}
@media (min-width: 1024px) {
  .p-accordion-cta__inner {
    padding-inline: 30px;
  }
}

.p-accordion-cta__wrap {
  margin: 0;
}

.p-accordion-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 24px;
  border: 1px solid rgba(143, 93, 70, 0.5);
  border-radius: 9999px;
  box-shadow: 0 4px 10px rgba(143, 93, 70, 0.08);
  color: #8F5D46;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .p-accordion-cta__button {
    min-height: 48px;
    padding: 12px 32px;
  }
}

.p-accordion-cta__icon {
  display: block;
  flex: 0 0 auto;
  width: 18px;
  height: auto;
}

.p-accordion-cta__text {
  display: inline-block;
}

.p-accordion-page--faq .l-section__title {
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  letter-spacing: 0.08em;
  line-height: 1.6;
  font-size: 22px;
}

.p-accordion-important__link {
  margin-top: 12px;
}
.p-accordion-important__link a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8F5D46;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.p-accordion-important__link {
  /* 矢印（▶） */
}
.p-accordion-important__link a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #E4C9C1;
  border-radius: 5px;
}

.p-print-items {
  position: relative;
  z-index: 10;
}

.p-print-items__hero {
  position: relative;
  overflow: hidden;
  background: #ede9e1;
}

.p-print-items__hero-media {
  position: relative;
  z-index: 0;
  height: 220px;
}
@media (min-width: 1024px) {
  .p-print-items__hero-media {
    height: 360px;
  }
}
.p-print-items__hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.p-print-items__hero-image {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-print-items__hero-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding-inline: 20px;
}
@media (min-width: 1024px) {
  .p-print-items__hero-inner {
    padding-inline: 30px;
  }
}

.p-print-items__hero-content {
  text-align: center;
}

.p-print-items__hero-eyebrow {
  margin: 0 0 8px;
  color: #8F5D46;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.2em;
}
@media (min-width: 1024px) {
  .p-print-items__hero-eyebrow {
    margin-bottom: 12px;
  }
}

.p-print-items__hero-title {
  margin: 0;
  color: #8F5D46;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.p-print-items__main {
  padding-top: 40px;
  padding-bottom: 0;
}
@media (min-width: 1024px) {
  .p-print-items__main {
    padding-top: 80px;
  }
}

.p-print-items__inner {
  width: 100%;
}

.p-print-items__intro {
  padding-bottom: 0px;
  text-align: center;
}

.p-print-items__intro-inner {
  width: min(100%, 1060px);
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 1024px) {
  .p-print-items__intro-inner {
    padding-inline: 30px;
  }
}

.p-print-items__intro-title {
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
  color: #333;
}

.p-print-items__intro-text {
  margin-top: 20px;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif, "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: #333;
  text-align: left;
}
@media (min-width: 1024px) {
  .p-print-items__intro-text {
    margin-top: 28px;
    text-align: center;
  }
}

.p-print-group {
  position: relative;
}

.p-print-group + .p-print-group {
  margin-top: 96px;
}
@media (min-width: 1024px) {
  .p-print-group + .p-print-group {
    margin-top: 140px;
  }
}

.p-print-group__inner {
  width: min(100%, 1060px);
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 1024px) {
  .p-print-group__inner {
    padding-inline: 30px;
  }
}

.p-print-group__head {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding-bottom: 14px;
}
@media (min-width: 1024px) {
  .p-print-group__head {
    gap: 16px;
    padding-bottom: 18px;
  }
}

.p-print-group__head::before {
  content: "";
  width: 27px;
  height: 21px;
  flex: 0 0 27px;
  background: url("../../assets/images/common/lienmark.png") no-repeat center/contain;
}

.p-print-group__lead {
  flex: 0 0 auto;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  color: #8F5D46;
}

.p-print-group__head::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background-color: rgba(143, 93, 70, 0.55);
  align-self: center;
}

.p-print-group__items {
  display: grid;
  gap: 48px;
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .p-print-group__items {
    gap: 72px;
    margin-top: 24px;
  }
}

.p-print-group--treasure {
  background-color: rgba(228, 201, 193, 0.2);
  position: relative;
  z-index: 0;
  padding-top: 72px;
  padding-bottom: 72px;
}
@media (min-width: 1024px) {
  .p-print-group--treasure {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}

.p-print-product__layout {
  display: grid;
  gap: 20px;
}
@media (min-width: 1024px) {
  .p-print-product__layout {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    gap: 36px;
    align-items: start;
  }
}

.p-print-product__content {
  order: 2;
}
@media (min-width: 1024px) {
  .p-print-product__content {
    order: 1;
  }
}

.p-print-product__media {
  order: 1;
  min-width: 0;
}
@media (min-width: 1024px) {
  .p-print-product__media {
    order: 2;
  }
}

.p-print-product__box {
  padding: 24px 18px;
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}
@media (min-width: 1024px) {
  .p-print-product__box {
    min-height: 300px;
    padding: 32px 28px;
  }
}

.p-print-product__title {
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 400;
  color: #8F5D46;
}

.p-print-product__price {
  margin-top: 8px;
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .p-print-product__price {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .p-print-product__price {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-print-product__price {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
.p-print-product__price {
  color: #8F5D46;
}

.p-print-product__description {
  margin-top: 20px;
}

.p-print-product__description p {
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif, "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .p-print-product__description p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .p-print-product__description p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-print-product__description p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
.p-print-product__description p {
  color: #8F5D46;
}

.p-print-product__description p + p {
  margin-top: 16px;
}

.p-print-fade-slider {
  display: grid;
  gap: 12px;
}
@media (min-width: 1024px) {
  .p-print-fade-slider {
    gap: 16px;
  }
}

.p-print-fade-slider__main {
  position: relative;
}

.p-print-fade-slider__slides {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background-color: transparent;
}

.p-print-fade-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.p-print-fade-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.p-print-fade-slider__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.p-print-fade-slider__thumbs {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
@media (min-width: 1024px) {
  .p-print-fade-slider__thumbs {
    gap: 12px;
  }
}

.p-print-fade-slider__thumb {
  appearance: none;
  width: 76px;
  padding: 0;
  border: 1px solid transparent;
  background: transparent;
  opacity: 0.55;
  transition: opacity 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.p-print-fade-slider__thumb.is-active {
  opacity: 1;
}
@media (hover: hover) {
  .p-print-fade-slider__thumb:hover {
    opacity: 1;
  }
}
@media (min-width: 1024px) {
  .p-print-fade-slider__thumb {
    width: 116px;
  }
}

.p-print-fade-slider__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 5px;
}

@media (prefers-reduced-motion: reduce) {
  .p-print-fade-slider__slide {
    transition: none;
  }
  .p-print-fade-slider__thumb {
    transition: none;
  }
}
.p-print-items__wave,
.p-print-items svg {
  display: block;
  width: 100%;
  height: auto;
  line-height: 0;
}

.p-print-group--story {
  position: relative;
  z-index: 0;
  padding-block: 40px;
}
@media (min-width: 1024px) {
  .p-print-group--story {
    padding-block: 80px;
  }
}

.p-print-group--story::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url("../../assets/images/printitems/bg.jpg") no-repeat center/cover;
  z-index: -1;
  pointer-events: none;
}

.p-print-items .p-plans {
  margin-top: 0;
}

.p-otherPlans__head {
  text-align: center;
}
.p-otherPlans__titleEn {
  margin: 0;
  font-family: "Cormorant Garamond", "Garamond", "Garamond Premier Pro", "EB Garamond", "Crimson Text", serif;
  color: #8F5D46;
}
.p-otherPlans__titleJp {
  margin: 8px 0 0;
  color: #8F5D46;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media (min-width: 380px) {
  .p-otherPlans__titleJp {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .p-otherPlans__titleJp {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
@media (min-width: 1024px) {
  .p-otherPlans__titleJp {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
  }
}
.p-otherPlans__pc {
  display: none;
}
@media (min-width: 1024px) {
  .p-otherPlans__pc {
    display: block;
  }
}
@media (min-width: 1024px) {
  .p-otherPlans__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
  }
}
.p-otherPlans__sp {
  display: block;
  margin-top: 32px;
}
@media (min-width: 1024px) {
  .p-otherPlans__sp {
    display: none;
  }
}
.p-otherPlans__slider {
  overflow: hidden;
  touch-action: pan-y;
}
.p-otherPlans__track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}
.p-otherPlans__slide {
  flex: 0 0 100%;
  min-width: 100%;
}
.p-otherPlans__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.p-otherPlans__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid #8F5D46;
  border-radius: 50%;
  background: transparent;
  appearance: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.p-otherPlans__dot.is-active {
  background: #8F5D46;
  transform: scale(1.05);
}

.p-plans__pc {
  display: none;
}
@media (min-width: 1024px) {
  .p-plans__pc {
    display: block;
  }
}
.p-plans__sp {
  display: block;
}
@media (min-width: 1024px) {
  .p-plans__sp {
    display: none;
  }
}
.p-plans__slider {
  overflow: hidden;
  touch-action: pan-y;
}
.p-plans__track {
  display: flex;
  will-change: transform;
}
.p-plans__slide {
  flex: 0 0 100%;
  min-width: 100%;
}
.p-plans__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
@media (min-width: 1024px) {
  .p-plans__dots {
    display: none;
  }
}
.p-plans__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid #8F5D46;
  border-radius: 50%;
  background: transparent;
  appearance: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.p-plans__dot.is-active {
  background: #8F5D46;
  transform: scale(1.05);
}

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

.u-font-jp {
  font-family: "Noto Serif JP", "Noto Serif", "Yu Mincho", "YuMincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* PCだけ改行させたい <br class="pconly"> 用 */
.pconly {
  display: none;
}
@media (min-width: 1024px) {
  .pconly {
    display: inline;
  }
}

/* 逆にSPだけ改行したい場合（任意） */
.sponly {
  display: inline;
}
@media (min-width: 1024px) {
  .sponly {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
