@charset "UTF-8";

/* ============================================================
   FUWARIO — home
   ============================================================ */

:root {
  --color-bg: #f8f7f4;
  --color-bg-soft: #f8f6f0;
  --color-text: #594c47;
  --color-text-light: #99837a;
  --color-heading: #99837a;
  --color-accent: #99837a;
  --color-qa-bg: #a8908b;
  --color-white: #f8f7f4;
  --color-line: #99837a;
  --font-serif-jp: "fot-matisse-pron", "FOT-Matisse ProN", "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-serif-en: "sherborne-variable", "Sherborne Variable", "EB Garamond", serif;
  --header-h: 96px;
  --action-button-height: clamp(54px, 3.75vw, 72px);
  --action-button-font-size: 15px;
  --pc-section-side: min(10.42vw, 200px);
  --pc-section-text-width: min(31.7vw, 608px);
  --pc-section-readable-width: min(539px, 100%);
  --pc-section-image-width: min(37.5vw, 720px);
}

body.home,
body.page-home {
  --color-text-light: #99837a;
  --color-heading: #99837a;
  --color-accent: #99837a;
  --color-line: #99837a;
}

body.page-about {
  --color-text-light: #99837a;
  --color-heading: #99837a;
  --color-accent: #99837a;
  --color-line: #99837a;
}

body.page-brand {
  --color-text-light: #99837a;
  --color-heading: #99837a;
  --color-accent: #99837a;
  --color-line: #99837a;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, p, ul, dl, dt, dd, figure { margin: 0; padding: 0; }
ul { list-style: none; }
img { max-width: 100%; height: auto; vertical-align: bottom; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; padding: 0; }
br.sp-only-br { display: none; }
br.pc-br { display: inline; }
br.sp-comma-br { display: none; }

@media (max-width: 1024px) {
  :root {
    --action-button-font-size: 13px;
  }
}

@media (max-width: 600px) {
  :root {
    --action-button-height: 50px;
  }
  br.pc-br { display: none; }
  br.sp-comma-br { display: inline; }
}

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: var(--font-serif-jp);
  font-size: 15px;
  line-height: 2;
  letter-spacing: .12em;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* 横方向のはみ出しでモバイルが縮小表示されるのを防ぐ */
}

html.is-loading-lock,
body.is-loading-lock {
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

/* ---------- common ---------- */
.section { position: relative; }

/* ---------- スクロール演出: 文字は非表示状態から静かに表示 ---------- */
.anim-ready [data-animate="blur-text"] {
  opacity: 0;
  filter: blur(5px);
  will-change: opacity, filter;
}
@media (max-width: 768px) {
  .anim-ready [data-animate="blur-text"] {
    filter: blur(4px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .anim-ready [data-animate="blur-text"] {
    opacity: 1 !important;
    filter: none !important;
  }
}

/* 英語ラベル（About など）は本文と同サイズ・控えめに */
.section__label {
  font-family: var(--font-serif-en);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--color-text);
  margin-bottom: 24px;
}
.section__label--white { color: var(--color-white); }
.section__label--center { text-align: center; }

.section__title {
  font-size: clamp(19px, 1.45vw, 26px);
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.9;
  color: var(--color-heading);
  margin: 0 0 28px;
}

.section__text {
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: .1em;
  color: var(--color-text-light);
}
.section__blank-line {
  display: block;
  height: 1em;
}

/* Read More / View More */
.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
}
.btn-more__label {
  font-family: var(--font-serif-en);
  font-size: 17px;
  letter-spacing: .2em;
  color: var(--color-heading);
}
.btn-more__circle {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-accent);
  overflow: hidden;
  display: grid;
  place-items: center;
  transition: opacity .3s, background .3s;
}
/* 矢印本体(子要素) */
.btn-more__arrow {
  position: relative;
  left: -1px;
  width: 20px;
  height: 12px;
  background: url("../assets/img/arrow-white.svg") center / contain no-repeat;
}
.btn-more__arrow::before { /* 横線 */
  content: none;
  position: absolute;
  top: 50%;
  left: 0;
  width: 21px;
  height: 1px;
  background: #fff;
  transform: translateY(-50%);
}
.btn-more__arrow::after { /* 矢じり */
  content: none;
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.btn-more:hover .btn-more__circle { opacity: .9; }
/* ホバー: 矢印が右へ抜けて左から戻ってくる(円はoverflow:hiddenでクリップ) */
.btn-more:hover .btn-more__arrow,
/* .btn-more:focus-visible .btn-more__arrow { animation: arrowThrough 1.55s cubic-bezier(.7, 0, .25, 1); } */

@keyframes arrowThrough {
  0%   { transform: translateX(0);     opacity: 1; }
  40%  { transform: translateX(26px);  opacity: 0; }
  41%  { transform: translateX(-26px); opacity: 0; }
  100% { transform: translateX(0);     opacity: 1; }
}

.btn-more--white .btn-more__label { color: var(--color-white); }
.btn-more--white .btn-more__circle { background: var(--color-white); }
.btn-more--white .btn-more__arrow { background-image: url("../assets/img/arrow-brown.svg"); }
.btn-more--white .btn-more__arrow::before { background: var(--color-qa-bg); }
.btn-more--white .btn-more__arrow::after { border-color: var(--color-qa-bg); }

/* About / Brand の Read More は右寄せ */
.about__body .btn-more,
.brand__body .btn-more {
  display: flex;
  width: fit-content;
  margin-left: auto;
}

/* ============================================================
   Header
   ============================================================ */
.header {
  --drawer-duration: 1.25s;
  --drawer-ease: cubic-bezier(.16, 1, .3, 1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
  transition:
    background-color var(--drawer-duration) var(--drawer-ease),
    box-shadow var(--drawer-duration) var(--drawer-ease),
    -webkit-backdrop-filter var(--drawer-duration) var(--drawer-ease),
    backdrop-filter var(--drawer-duration) var(--drawer-ease);
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--color-bg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--drawer-duration) var(--drawer-ease);
}
.header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 1px;
  background: rgba(253, 252, 249, .5);
  pointer-events: none;
  transition: background .4s;
}
.header.is-scrolled,
.header.is-past-hero {
  background-color: rgba(255, 255, 255, .30);
  -webkit-backdrop-filter: blur(2px) saturate(1);
  backdrop-filter: blur(2px) saturate(1);
  box-shadow: 0 1px 10px rgba(110, 95, 84, .03);
}
.header.is-open {
  background-color: transparent;
  -webkit-backdrop-filter: blur(2px) saturate(1);
  backdrop-filter: blur(2px) saturate(1);
  box-shadow: 0 1px 10px rgba(110, 95, 84, .08);
}
.header.is-scrolled.is-open,
.header.is-past-hero.is-open {
  background-color: rgba(255, 255, 255, .30);
}
.header.is-drawer-active::before,
.header.is-closing::before {
  opacity: 1;
}
.header.is-past-hero::after { background: rgba(141, 116, 104, .22); }

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1780px;
  height: 72px;
  margin: 0 auto;
  padding: 0 40px;
  background-color: transparent;
  transition: background-color var(--drawer-duration) var(--drawer-ease);
  z-index: 2;
}

.header__logo {
  display: block;
  position: relative;
}
.header__logo-img {
  display: block;
  width: 178px;
  height: auto;
  transition: opacity .52s ease;
}
.header__logo-img--white { opacity: 1; }
.header__logo-img--brown {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.header.is-past-hero .header__logo-img--white,
.header.is-open .header__logo-img--white { opacity: 0; }
.header.is-past-hero .header__logo-img--brown,
.header.is-open .header__logo-img--brown { opacity: 1; }

.gnav { display: flex; align-items: center; flex: 1; }
.gnav__list { display: flex; align-items: center; gap: 30px; margin-left: auto; margin-right: clamp(34px, 4.1vw, 80px); }
.gnav__store-item { display: none; }

/* スクロール後はPC幅でもナビをハンバーガーに集約 */
.header.is-scrolled:not(.is-open) .gnav__list { display: none; }
.header.is-scrolled:not(.is-open) .btn-store { display: none; }
.header.is-open .gnav {
  position: fixed;
  inset: 0;
  flex-direction: column;
  justify-content: center;
  background: var(--color-bg);
  z-index: 100;
}
.header.is-open .gnav__list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 0;
  text-align: center;
}
.header.is-open .gnav__list a { color: var(--color-text); font-size: 17px; }
.header.is-open .btn-store {
  color: var(--color-white);
  background: var(--color-accent);
  border-color: transparent;
  font-size: 13px;
  letter-spacing: .18em;
  margin-top: 30px;
  padding: 12px 40px;
}
.gnav__list a {
  font-family: var(--font-serif-en);
  font-size: 14px;
  letter-spacing: .14em;
  color: var(--color-white);
  transition: color .4s, opacity .3s;
}
.gnav__list a:hover { opacity: .7; }
.header.is-past-hero .gnav__list a { color: var(--color-text); }

.btn-store {
  font-family: var(--font-serif-en);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: .14em;
  color: var(--color-white);
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 10px 38px;
  transition: color .4s, background .3s;
}
.btn-store:hover { background: rgba(255, 255, 255, .15); }
.header.is-past-hero:not(.is-open) .btn-store { color: var(--color-heading); }
.header.is-past-hero:not(.is-open) .btn-store:hover { background: rgba(141, 116, 104, .08); }
.header.is-open .btn-store:hover { background: var(--color-accent); opacity: .88; }

@media (min-width: 1025px) {
  .header.is-opening .gnav,
  .header.is-open .gnav {
    inset: 0 0 0 auto;
    width: 50vw;
    max-width: none;
    flex: 0 0 50vw;
    min-height: 100vh;
    align-items: flex-end;
    justify-content: flex-start;
    padding: clamp(222px, 31.8vh, 344px) clamp(44px, 4.17vw, 80px) 0 0;
    overflow: hidden;
    background: var(--color-bg);
    box-shadow: -10px 0 24px rgba(110, 95, 84, .045);
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform var(--drawer-duration) var(--drawer-ease), opacity .36s ease, visibility 0s linear var(--drawer-duration);
    will-change: transform, opacity;
    z-index: 100;
  }
  .header.is-opening .gnav {
    transition: none;
  }
  .header.is-drawer-active .gnav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition: transform var(--drawer-duration) var(--drawer-ease), opacity .36s ease, visibility 0s;
  }
  .header.is-closing .gnav {
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform var(--drawer-duration) var(--drawer-ease), opacity .36s ease, visibility 0s linear var(--drawer-duration);
  }
  .header.is-open .gnav::before {
    content: "";
    position: absolute;
    left: clamp(44px, 4.17vw, 80px);
    top: 34px;
    width: clamp(178px, 11.875vw, 228px);
    height: clamp(35px, 2.35vw, 45px);
    background: url("../assets/img/logo_brown.webp") left top / contain no-repeat;
    pointer-events: none;
    z-index: 1;
  }
  .header.is-open .gnav::after {
    content: "";
    position: absolute;
    left: clamp(40px, 5vw, 96px);
    right: auto;
    top: clamp(154px, 12.2vw, 184px);
    width: clamp(340px, 32vw, 614px);
    aspect-ratio: 648 / 880;
    background: url("../assets/img/drawer_illustration.webp") center / contain no-repeat;
    pointer-events: none;
    z-index: 0;
  }
  .header.is-open .gnav__list,
  .header.is-open .btn-store {
    position: relative;
    z-index: 2;
  }
  .header.is-open .gnav__list {
    align-items: flex-end;
    gap: clamp(16px, 2.1vh, 23px);
    text-align: right;
  }
  .header.is-open .gnav__list a,
  .header.is-open .btn-store {
    font-size: clamp(22px, 1.4vw, 27px);
    font-weight: 400;
    line-height: 1.36;
    letter-spacing: .055em;
    color: var(--color-accent);
  }
  .header.is-open .btn-store {
    display: inline-block;
    margin-top: clamp(16px, 2.1vh, 23px);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .header.is-open .btn-store:hover {
    background: transparent;
  }
}

.header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  z-index: 110;
  margin-left: 24px;
  overflow: visible;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header__toggle span {
  display: block;
  width: 30px;
  height: 1px;
  margin: 0 auto;
  background: var(--color-white);
  transition: transform .35s, opacity .35s, background .35s;
}
.header__toggle:focus-visible {
  outline: none;
}
.header.is-past-hero .header__toggle span { background: var(--color-heading); }
.header.is-open .header__toggle span {
  background: var(--color-heading);
  box-shadow: none;
}
.header.is-open .header__toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header.is-open .header__toggle span:nth-child(2) { opacity: 0; }
.header.is-open .header__toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.header.is-open .header__toggle {
  overflow: visible;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (min-width: 1025px) {
  .header__toggle {
    position: absolute;
    top: 50%;
    right: 40px;
    width: 44px;
    margin-left: 0;
    overflow: visible;
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    transform: translate(0, -50%);
    transition: opacity .24s ease;
  }
  .header.is-menu-button-visible .header__toggle,
  .header.is-open .header__toggle {
    width: 44px;
    margin-left: 0;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(0, -50%);
    transition: opacity .24s ease;
  }
  .header.is-open .header__toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .header.is-open .header__toggle span:nth-child(2) {
    opacity: 0;
  }
  .header.is-open .header__toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}
.hero__bg,
.hero__bg picture,
.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}
@media (min-width: 1025px) {
  .hero:not(.about-page-hero) .hero__bg img {
    object-position: center bottom;
  }
}
.anim-ready .hero__bg img {
  filter: blur(10px);
  transform: scale(1.04);
  transform-origin: center;
  transition: filter 1.9s ease, transform 1.9s ease;
  will-change: filter, transform;
}
.anim-ready .hero__bg.is-revealed img {
  filter: blur(0);
  transform: scale(1);
}
.anim-ready .about-page-hero .hero__bg img,
.anim-ready .about-page-hero .hero__bg.is-revealed img {
  filter: none;
  transform: none;
  transition: none;
  will-change: auto;
}

.hero__copy {
  position: absolute;
  top: 33.8%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  color: var(--color-white);
  z-index: 1;
}
.hero__title {
  font-size: clamp(24px, 1.72vw, 33px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .24em;
  text-indent: .24em;
  text-shadow: 0 0 24px rgba(80, 60, 50, .35);
}
.hero__lead {
  margin-top: 26px;
  font-size: clamp(13px, .95vw, 18px);
  letter-spacing: .18em;
  text-indent: .18em;
  line-height: 2.05;
  text-shadow: 0 0 18px rgba(80, 60, 50, .35);
}
.hero__lead br:nth-of-type(2) { display: none; }
/* ヒーロー内のOnline Storeボタン(スマホのみ表示。PCはヘッダーに常時表示のため非表示) */
.hero__store {
  display: none;
  margin: 40px auto 0;
  width: fit-content;
  padding: 10px 44px;
  border: 1px solid rgba(253, 252, 249, .85);
  border-radius: 999px;
  font-family: var(--font-serif-en);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  letter-spacing: .2em;
  color: var(--color-white);
  background: rgba(253, 252, 249, .12);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  transition: background .3s;
}
.hero__store:hover { background: rgba(253, 252, 249, .25); }
.anim-ready .hero__store[data-hero-store] {
  opacity: 0;
  filter: blur(4px);
  will-change: opacity, filter;
}
.hero__scroll {
  position: absolute;
  right: clamp(16px, 1vw, 20px);
  bottom: clamp(28px, 2.6vw, 46px);
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: clamp(7px, .62vw, 12px);
  color: var(--color-white);
  pointer-events: none;
}
.hero__scroll span {
  font-family: var(--font-serif-en);
  font-size: clamp(9px, .68vw, 13px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: .18em;
  white-space: nowrap;
  margin-bottom: 2px;
  text-shadow: 0 0 8px rgba(80, 60, 50, .2);
}
.hero__scroll-bar {
  position: relative;
  width: clamp(4px, .28vw, 5px);
  height: clamp(34px, 2.45vw, 46px);
  --scroll-pill-h: clamp(13px, .95vw, 18px);
  --scroll-pill-move: clamp(14px, 1.15vw, 22px);
  flex-shrink: 0;
}
/* 細い縦ライン（トラック） */
.hero__scroll-bar::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: rgba(253, 252, 249, .44);
  z-index: 0;
}
/* 白い太いカプセル（上下に動く） */
.hero__scroll-bar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: var(--scroll-pill-h);
  transform: translateX(-50%);
  border-radius: 2px;
  background: var(--color-white);
  animation: scrollPill 2.2s ease-in-out infinite;
  z-index: 1;
}
@keyframes scrollPill {
  0%, 100% { transform: translateX(-50%) translateY(calc(var(--scroll-pill-move) * -1)); }
  50%      { transform: translateX(-50%) translateY(0); }
}

/* ============================================================
   About
   ============================================================ */
.about {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 196px clamp(24px, 10.4vw, 200px) 100px 0;
  overflow: hidden;
}
.about__deco {
  position: absolute;
  right: 0.3%;
  top: calc(27px - min(93.75vw, 1800px) * 0.1786);
  width: min(93.75vw, 1800px);
  pointer-events: none;
}
.about__deco img { width: 100%; height: auto; }
.about__images {
  position: relative;
  z-index: 1;
  width: 38.75vw;
  flex-shrink: 0;
}
.about__img--main {
  width: 100%;
}
.about__img--sub {
  width: 74%;
  margin: -13% 0 0 42%;
  position: relative;
  z-index: 1;
}
.about__img img { width: 100%; }
.about__img--sub video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  pointer-events: none;
}
.about__img--sub video::-webkit-media-controls,
.about__img--sub video::-webkit-media-controls-panel,
.about__img--sub video::-webkit-media-controls-play-button,
.about__img--sub video::-webkit-media-controls-overlay-play-button,
.about__img--sub video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
}
.about__body {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: min(620px, 44vw);
  margin-left: auto;
  margin-top: 250px;
}

/* 線画と重なっても読めるよう、折り返した各行に地色を敷く（強制改行なし） */
.about__body .hl,
.brand__body .hl {
  background: var(--color-bg);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0.06em 0;
  box-shadow: 0 0 7px 4px var(--color-bg);
  border-radius: 6px;
}
.brand__body .hl {
  background: rgba(253, 252, 249, .92);
  padding-right: 0;
  box-shadow: 0 0 14px 8px rgba(253, 252, 249, .92);
}

/* ============================================================
   Brand Story
   ============================================================ */
.brand {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4%;
  padding: 0 0 200px;
  background: var(--color-bg);
  overflow: hidden;
}
.brand__deco {
  display: none !important;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  width: min(48.96vw, 940px);
  pointer-events: none;
}
.brand__deco img { width: 100%; height: auto; vertical-align: bottom; }
.brand__body {
  position: relative;
  z-index: 3;
  isolation: isolate;
  max-width: 530px;
  margin-left: clamp(24px, 10.4vw, 200px);
}
.brand__body .section__label,
.brand__body .section__title,
.brand__body .section__text,
.brand__body .btn-more {
  position: relative;
  z-index: 2;
}
.brand__img {
  width: 48.4%;
  flex-shrink: 0;
}
.brand__img img { width: 100%; }

/* ============================================================
   For Your Moments
   ============================================================ */
.moments {
  position: relative;
  z-index: 0;
  --moments-bg-overlap: clamp(190px, 34vw, 660px);
  padding: 160px 0 255px;
  color: var(--color-white);
  background: transparent;
}
.moments::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--moments-bg-overlap) * -1);
  height: calc(100% + var(--moments-bg-overlap));
  background: #2f3b27;
  pointer-events: none;
}
.moments__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
.moments__block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4%;
  margin-top: clamp(86px, 12vw, 230px);
}
.moments__inner > .section__label + .moments__block {
  margin-top: clamp(46px, 5.6vw, 108px);
}
.moments__body { max-width: 700px; }
.moments__title {
  font-size: clamp(19px, 1.45vw, 26px);
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.9;
  margin-bottom: 28px;
}
.moments__text {
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: .1em;
  opacity: .92;
}
.moments__img {
  width: 47.5%;
  flex-shrink: 0;
}
.moments__img img { width: 100%; }

@media (min-width: 1025px) {
  .moments::before {
    background: url("../assets/img/foryou_bg_pc_20260630.svg") center top / 100% auto no-repeat;
  }
  .about {
    align-items: center;
  }
  .about__img--sub {
    margin-left: calc(42% + 50px);
  }
  .about__body {
    width: clamp(500px, 25.6vw, 525px);
    max-width: none;
    margin-left: clamp(252px, 17.6vw, 360px);
    margin-top: 0;
  }
  .about__body .section__text {
    max-width: min(460px, 100%);
    overflow-wrap: anywhere;
  }
  .about__body .btn-more {
    margin-right: var(--readmore-hl-offset, max(0px, calc(100% - 460px)));
  }
  .brand {
    align-items: flex-start;
    z-index: 1;
    overflow: visible;
    --foryou-lineart-h: clamp(260px, 36.4vw, 700px);
  }
  .brand::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: var(--foryou-lineart-h);
    background: none;
    pointer-events: none;
  }
  .brand::after {
    background: url("../assets/img/foryou_bg_pc_20260630.svg") center top / 100% auto no-repeat;
  }
  .brand__body {
    width: clamp(500px, 25.6vw, 525px);
    max-width: none;
    margin-left: clamp(96px, 10.4vw, 213px);
    margin-top: clamp(150px, 8.8vw, 180px);
  }
  .brand__body .section__text {
    max-width: min(460px, 100%);
    overflow-wrap: anywhere;
  }
  .brand__body .btn-more {
    margin-right: var(--readmore-hl-offset, max(0px, calc(100% - 460px)));
  }

  .moments.moments--sequence {
    --foryou-lineart-h: clamp(260px, 36.4vw, 700px);
    --moments-info-height: clamp(420px, 48vh, 560px);
    --moments-label-title-gap: 54px;
    height: var(--moments-sequence-height, calc(100svh * 4));
    min-height: var(--moments-sequence-height, calc(100svh * 4));
    padding: 0;
    display: block;
    isolation: isolate;
    background: transparent;
  }
  .moments.moments--sequence::before {
    content: none;
  }
  .moments.moments--sequence .moments__inner {
    width: 100%;
    max-width: none;
    height: var(--moments-sticky-height, 100dvh);
    min-height: var(--moments-sticky-height, 100svh);
    position: sticky;
    top: 0;
    z-index: 1;
    overflow: hidden;
    isolation: isolate;
    padding-top: clamp(96px, 13vh, 150px);
    padding-bottom: clamp(80px, 10vh, 130px);
  }
  .moments.moments--sequence .moments__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #2f3b27 url("../assets/img/foryou_bg_pc_20260630.svg") center calc(var(--foryou-lineart-h) * -1) / 100% auto no-repeat;
    pointer-events: none;
    transform: translateZ(0);
    backface-visibility: hidden;
  }
  .moments.moments--sequence .section__label {
    position: absolute;
    top: calc(51% - (var(--moments-info-height) / 2));
    left: var(--pc-section-side);
    margin: 0;
    line-height: 1;
    z-index: 1;
  }
  .moments.moments--sequence .moments__block,
  .moments.moments--sequence .moments__inner > .section__label + .moments__block {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: var(--moments-info-height);
    display: block;
    margin: 0;
    z-index: 1;
    will-change: opacity, filter;
  }
  .moments.moments--sequence .moments__body {
    position: absolute;
    left: var(--pc-section-side);
    top: calc(50% - (var(--moments-info-height) / 2) + 15px + var(--moments-label-title-gap));
    display: block;
    width: var(--pc-section-text-width);
    max-width: none;
    transform: none;
  }
  .moments.moments--sequence .moments__title {
    width: auto;
    max-width: var(--pc-section-readable-width);
    font-size: clamp(18px, 1.22vw, 23px);
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: .075em;
    white-space: normal;
    margin: 0;
  }
  .moments.moments--sequence .moments__text {
    max-width: var(--pc-section-readable-width);
    margin-top: 28px;
  }
  .moments.moments--sequence .moments__img {
    position: absolute;
    right: var(--pc-section-side);
    top: 50%;
    width: var(--pc-section-image-width);
    aspect-ratio: 720 / 515;
    overflow: hidden;
    transform: translateY(-50%);
  }
  .moments.moments--sequence .moments__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

}

/* ============================================================
   Items
   ============================================================ */
.items {
  padding: 88px 0 84px;
  background: var(--color-bg-soft);
}
.items:not([data-lazy-bg]),
.items.is-bg-loaded {
  background: var(--color-bg-soft) url("../assets/img/items_bg.webp") center / cover no-repeat;
}
.items__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 56px;
}
.items__list {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 13.5vw, 260px);
  margin-top: 66px;
}
.item-card {
  width: clamp(280px, 34vw, 580px);
  text-align: center;
  overflow: hidden;
  border-radius: 999px;
  background: var(--color-white);
}
.item-card__img {
  overflow: hidden;
  aspect-ratio: 550 / 505;
}
.item-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-card__body {
  background: #fbfaf8;
  padding: 24px 6% 22%;
}
.item-card__name {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .3em;
  text-indent: .3em;
  color: var(--color-heading);
  padding-bottom: 20px;
  margin-bottom: 10px;
  position: relative;
}
.item-card__name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 230px;
  height: 1px;
  background: var(--color-line);
  transform-origin: center;
  transition: transform 1s cubic-bezier(.22, .61, .36, 1);
}
/* 下線: 中央→左右に広がる(スクロールで描画 / 戻すと縮む) */
.anim-ready .item-card__name::after { transform: translateX(-50%) scaleX(0); }
.anim-ready .item-card__name.is-drawn::after { transform: translateX(-50%) scaleX(1); }
.item-card__text {
  font-size: 12px;
  line-height: 2;
  letter-spacing: .1em;
  color: var(--color-text-light);
}
.item-card__text + .item-card__text { margin-top: 8px; }
/* セクション下のボタン余白を統一 */
.items__more,
.qa__more,
.news__more { text-align: right; margin-top: 64px; }
.items__more .btn-more,
.qa__more .btn-more,
.news__more .btn-more { margin-top: 0; }

/* ============================================================
   Q&A
   ============================================================ */
.qa {
  background: var(--color-qa-bg);
  color: var(--color-white);
  padding: 132px 0 132px;
}
.qa:not([data-lazy-bg]),
.qa.is-bg-loaded {
  background: var(--color-qa-bg) url("../assets/img/qa_bg.webp") center / cover no-repeat;
}
.qa__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
.qa__list { margin-top: 66px; }
/* 区切り線: 左→右に伸びる(スクロールで描画 / 戻すと縮む) */
.qa__item { position: relative; }
.qa__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(253, 252, 249, .55);
  transform-origin: left center;
  transition: transform .9s cubic-bezier(.22, .61, .36, 1);
}
.anim-ready .qa__item::after { transform: scaleX(0); }
.anim-ready .qa__item.is-drawn::after { transform: scaleX(1); }

.qa__q button {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 36px 0 36px 52px;
  text-align: left;
}
.qa__mark,
.qa__mark-a {
  font-family: var(--font-serif-en);
  flex-shrink: 0;
}
.qa__mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-qa-bg);
  font-size: 15px;
}
.qa__q-text {
  flex: 1;
  font-size: 19px;
  letter-spacing: .14em;
  line-height: 1.8;
}
.qa__icon {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid var(--color-white);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform .4s;
}
.qa__icon::before,
.qa__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-white);
  transform: translate(-50%, -50%);
}
.qa__icon::before { width: 14px; height: 1px; }
.qa__icon::after { width: 1px; height: 14px; transition: opacity .3s; }
.qa__item.is-open .qa__icon { transform: rotate(45deg); }

.qa__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s ease;
}
.qa__a-inner {
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-left: 55px;
}
.qa__item.is-open .qa__a { grid-template-rows: 1fr; }
.qa__item.is-open .qa__a-inner { padding: 0 40px 40px 55px; }
.qa__mark-a {
  width: 45px;
  text-align: center;
  font-size: 15px;
  line-height: 2.2;
  flex-shrink: 0;
}
.qa__a-inner p {
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: .1em;
  opacity: .95;
}

/* ============================================================
   News
   ============================================================ */
.news {
  padding: 132px 0 132px;
  background: var(--color-bg);
}
.news__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
/* PC: 3カラムの縦カード（画像上・文字下） */
.news__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 5.2vw, 80px);
  margin-top: 66px;
}
.news-card a { display: block; transition: opacity .3s; }
.news-card a:hover { opacity: .78; }
.news-card__img {
  aspect-ratio: 440 / 318;
  overflow: hidden;
  background: #fff;
}
.news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-card__title {
  margin-top: 30px;
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: .1em;
  color: var(--color-text-light);
}
.news-card__date {
  display: block;
  margin-top: 12px;
  font-family: var(--font-serif-en);
  font-size: 14px;
  letter-spacing: .16em;
  color: var(--color-text-light);
}
.news__deco {
  position: absolute;
  left: 25vw;
  bottom: 0;
  width: min(20.8vw, 400px);
  pointer-events: none;
}
.news__deco img { width: 100%; height: auto; vertical-align: bottom; }

/* ============================================================
   Contact
   ============================================================ */
.contact {
  position: relative;
  --contact-bg-overlap: clamp(86px, 7.55vw, 145px);
  aspect-ratio: 1920 / 551;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  text-align: center;
  color: var(--color-white);
  overflow: visible;
}
.contact__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--contact-bg-overlap) * -1);
  height: calc(100% + var(--contact-bg-overlap));
  overflow: hidden;
}
.contact__bg picture,
.contact__bg img {
  display: block;
  width: 100%;
  height: 100%;
}
.contact__bg img {
  object-fit: cover;
  object-position: center top;
}

.contact__inner {
  position: relative;
  padding-top: 80px;
}
.contact .section__label {
  font-weight: 700;
}
.contact__text {
  margin-top: 60px;
  font-size: 20px;
  letter-spacing: .2em;
}
.contact__links {
  width: min(740px, 100%);
  margin: 62px auto 0;
}
.contact__row {
  display: grid;
  grid-template-columns: minmax(210px, .9fr) minmax(360px, 1.35fr);
  align-items: center;
  gap: clamp(42px, 5vw, 86px);
  padding: 26px 0;
  text-align: left;
}
.contact__row + .contact__row {
  border-top: 1px solid rgba(253, 252, 249, .68);
}
.contact__row-text {
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .18em;
  color: var(--color-white);
}
.contact__row-text span { display: block; }
.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  width: min(450px, 100%);
  height: var(--action-button-height);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-heading);
  font-family: var(--font-serif-en);
  font-size: 17px;
  letter-spacing: .22em;
  transition: opacity .3s;
}
.btn-contact:hover { opacity: .85; }
.btn-contact__arrow {
  display: inline-block;
  position: relative;
  left: -1px;
  width: 20px;
  height: 12px;
  flex: 0 0 20px;
  background: url("../assets/img/arrow-brown.svg") center / contain no-repeat;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
  overflow: hidden;
}
/* .btn-contact:hover .btn-contact__arrow,
.btn-contact:focus-visible .btn-contact__arrow { animation: arrowThrough 1.55s cubic-bezier(.7, 0, .25, 1); } */

@media (min-width: 1025px) {
  .contact__inner {
    width: fit-content;
    max-width: calc(100vw - 80px);
    left: clamp(-16px, -0.75vw, -10px);
  }
  .contact__text {
    white-space: nowrap;
    font-size: 21px;
  }
  .contact__links {
    width: min(calc(548px + clamp(22px, 2vw, 28px)), calc(100vw - 80px));
  }
  .contact__row {
    grid-template-columns: 206px minmax(310px, 342px);
    justify-content: start;
    gap: clamp(22px, 2vw, 28px);
  }
  .contact__row .btn-contact {
    justify-self: start;
    width: min(342px, 100%);
    height: 60px;
  }
}

/* ============================================================
   LINE Modal
   ============================================================ */
.line-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  place-items: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .36s ease, visibility .36s ease;
}
.line-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.line-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(151, 132, 121, .58);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}
.line-modal__dialog {
  position: relative;
  width: min(820px, calc(100vw - 80px));
  padding: 76px 88px 82px;
  border-radius: 8px;
  background: rgba(253, 252, 249, .96);
  color: var(--color-heading);
  text-align: center;
  box-shadow: 0 26px 70px rgba(67, 50, 42, .18);
  transform: translateY(14px) scale(.985);
  transition: transform .42s cubic-bezier(.22, 1, .36, 1);
}
.line-modal.is-open .line-modal__dialog { transform: translateY(0) scale(1); }
.line-modal__close {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 28px;
  height: 28px;
}
.line-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 23px;
  height: 1px;
  background: var(--color-heading);
  transform-origin: center;
}
.line-modal__close span:first-child { transform: translate(-50%, -50%) rotate(40deg); }
.line-modal__close span:last-child { transform: translate(-50%, -50%) rotate(-40deg); }
.line-modal__eyebrow {
  font-family: var(--font-serif-en);
  font-size: 15px;
  letter-spacing: .2em;
  color: var(--color-heading);
}
.line-modal__title {
  margin-top: 28px;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1.7;
}
.line-modal__text {
  margin-top: 30px;
  font-size: 17px;
  letter-spacing: .1em;
  line-height: 2.25;
  color: var(--color-text-light);
}
.line-modal__sp-break {
  display: none;
}
.line-modal__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(300px, 100%);
  height: 62px;
  margin-top: 42px;
  border-radius: 999px;
  background: #18c65b;
  color: var(--color-white);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: .1em;
  transition: opacity .3s, transform .3s;
}
.line-modal__button:hover {
  opacity: .88;
  transform: translateY(-1px);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  position: relative;
  background: var(--color-bg);
  padding: 170px 0 170px;
}
.footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer__logo { line-height: 1; }
.footer__logo img {
  width: 190px;
  height: auto;
}
.footer__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-top: 45px;
}
.footer__tagline {
  font-size: 14px;
  line-height: 2.15;
  letter-spacing: .14em;
  color: var(--color-text-light);
}
.footer__nav {
  display: flex;
  gap: clamp(30px, 4.5vw, 85px);
}
.footer__nav a {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .12em;
  line-height: 1.6;
  white-space: nowrap;
  color: var(--color-text-light);
  padding: 4px 0;
  transition: opacity .3s;
}
.footer__nav a:hover { opacity: .65; }
.footer__sns {
  display: flex;
  align-items: center;
  gap: clamp(40px, 4vw, 78px);
}
.footer__sns a {
  color: var(--color-accent);
  transition: opacity .3s;
}
.footer__sns a:hover { opacity: .65; }
.footer__sns svg { width: 32px; height: 32px; }
.footer__sns a.footer__store {
  font-family: var(--font-serif-en);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .18em;
  color: var(--color-white);
  background: var(--color-accent);
  border-radius: 999px;
  padding: 12px 40px;
  white-space: nowrap;
}
.footer__copy {
  max-width: 1180px;
  margin: 70px auto 0;
  padding: 0 40px;
  font-family: var(--font-serif-en);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--color-text-light);
}

/* ============================================================
   About page
   ============================================================ */
.about-detail {
  background: var(--color-bg);
}

.about-page-hero {
  height: clamp(360px, 31.25vw, 600px);
  min-height: 0;
}
.about-page-hero .hero__bg img {
  object-position: center 88%;
}
.about-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(116, 88, 67, .13);
  pointer-events: none;
}
.about-page-hero__copy {
  top: 53%;
  z-index: 2;
}
.about-page-hero__title {
  font-family: var(--font-serif-en);
  font-size: clamp(18px, 1.82vw, 35px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .18em;
  text-indent: .18em;
  color: var(--color-white);
  text-shadow: 0 0 16px rgba(68, 50, 40, .24);
}

.about-page-section,
.about-page-brand {
  position: relative;
  overflow: hidden;
}
.about-page-section {
  background: var(--color-bg);
}
.about-page-copy {
  position: absolute;
  z-index: 2;
  color: var(--color-text-light);
}
.about-page-copy h2 {
  font-size: clamp(19px, 1.45vw, 26px);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: .1em;
  color: var(--color-heading);
}
.about-page-copy p {
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: .1em;
  color: var(--color-text-light);
}
.about-page-copy h2,
.about-page-copy p {
  max-width: var(--pc-section-readable-width);
}
.about-page-copy h2 + p,
.about-page-copy p + p {
  margin-top: 28px;
}
.about-page-copy .sp-br {
  display: none;
}
.about-page-copy--soft h2,
.about-page-copy--soft p,
.about-page-copy--brand h2,
.about-page-copy--brand p {
  color: inherit;
}
.about-page-photo {
  position: absolute;
  z-index: 1;
  margin: 0;
  overflow: hidden;
}
.about-page-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
.about-page-deco,
.about-page-logo-mark {
  position: absolute;
  pointer-events: none;
}
.about-page-deco {
  z-index: 0;
}
.about-page-logo-mark {
  z-index: 3;
}
.about-page-photo img,
.about-page-photo video,
.about-page-deco img,
.about-page-logo-mark img,
.about-page-soft__bg img,
.about-page-brand__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-page-photo video {
  pointer-events: none;
}
.about-page-photo video::-webkit-media-controls,
.about-page-photo video::-webkit-media-controls-panel,
.about-page-photo video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
}

.about-page-intro {
  height: clamp(860px, 68.5vw, 1320px);
}
.about-page-deco--intro {
  left: min(39.83vw, 764.8px);
  top: min(23.8vw, 456.9px);
  width: min(33.77vw, 648.3px);
  aspect-ratio: 648.3 / 834.3;
}
.about-page-copy--intro {
  left: var(--pc-section-side);
  top: min(38.86vw, 746px);
  width: var(--pc-section-text-width);
  transform: translateY(-50%);
}
.about-page-photo--lily {
  left: auto;
  right: 0;
  top: min(10.44vw, 200.5px);
  width: min(60.21vw, 1156px);
  aspect-ratio: 1156 / 1091;
}

.about-page-happiness {
  height: clamp(760px, 59.9vw, 1150px);
}
.about-page-photo--rest {
  left: 0;
  top: 0;
  width: min(38.75vw, 744px);
  aspect-ratio: 744 / 660;
}
.about-page-photo--light {
  left: min(22.43vw, 430.6px);
  top: min(28.67vw, 550.5px);
  width: min(31.25vw, 600px);
  aspect-ratio: 600 / 400;
  z-index: 2;
}
.about-page-copy--happiness {
  left: min(61.9vw, 1188.5px);
  top: min(24.75vw, 475px);
  /* width: min(33vw, 559.7px); */
  transform: translateY(-50%);
}

.about-page-soft {
  height: clamp(620px, 52.08vw, 1000px);
  color: var(--color-white);
}
.about-page-soft__bg,
.about-page-brand__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-page-brand__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}
.about-page-soft__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(81, 80, 68, .13);
}
.about-page-copy--soft {
  left: var(--pc-section-side);
  top: min(25.54vw, 490.4px);
  width: min(39vw, 748px);
  color: var(--color-white);
  transform: translateY(-50%);
}
.about-page-copy--soft h2,
.about-page-copy--soft p {
  max-width: min(39vw, 748px);
}
.about-page-photo--sky {
  right: min(6.25vw, 120px);
  top: 12vw;
  width: var(--pc-section-image-width);
  aspect-ratio: 720 / 520;
}

@media (min-width: 1025px) {
  .about-page-photo--sky {
    right: min(6.25vw, 120px);
  }
}

.about-page-logo-story {
  height: clamp(760px, 57.32vw, 1100px);
}
.about-page-logo-story::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 50vw;
  height: 100%;
  background: url("../assets/img/about_page_shadow_bg.webp") center / cover no-repeat;
  opacity: .62;
  z-index: 0;
  pointer-events: none;
}
.about-page-photo--logo-story {
  left: 0;
  top: min(11.02vw, 211.5px);
  width: min(49.48vw, 950px);
  aspect-ratio: 950 / 670;
}
.about-page-logo-mark {
  left: min(18.33vw, 351.9px);
  top: min(20.34vw, 390.5px);
  width: min(12.65vw, 242.9px);
  aspect-ratio: 242.9 / 320;
}
.about-page-copy--logo-story {
  left: min(61.9vw, 1188.5px);
  top: min(28.47vw, 546.5px);
  width: min(30vw, 545.2px);
  transform: translateY(-50%);
}

.about-page-brand {
  min-height: clamp(330px, 28.65vw, 550px);
  height: auto;
  padding: min(4.57vw, 87.7px) 0 clamp(48px, 4.8vw, 92px);
  box-sizing: border-box;
  color: var(--color-white);
}
.about-page-brand__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(69, 56, 48, .22);
}
.about-page-copy--brand {
  position: relative;
  left: auto;
  top: auto;
  width: var(--pc-section-image-width);
  margin-left: var(--pc-section-side);
  color: var(--color-white);
  text-align: center;
}
.about-page-copy--brand h2 {
  margin-left: auto;
  margin-right: auto;
}
.about-page-copy--brand h2 + p {
  width: min(31vw, 550px);
  max-width: none;
  margin-top: min(1.46vw, 28px);
  margin-left: auto;
  margin-right: auto;
}
.about-page-brand__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 48px);
  width: min(28.7vw, 550px);
  height: var(--action-button-height);
  margin-top: clamp(22px, 2.5vw, 48px);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-accent);
  font-family: var(--font-serif-en);
  font-weight: bold;
  font-size: var(--action-button-font-size);
  letter-spacing: .18em;
}
.about-page-brand__button-label {
  font-weight: inherit;
  line-height: 1;
}
.about-page-brand__button-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 18px;
  overflow: hidden;
}
.about-page-brand__button .btn-more__arrow {
  background-image: url("../assets/img/arrow-brown.svg");
}
.about-page-brand__button:hover .btn-more__arrow,
.about-page-brand__button:focus-visible .btn-more__arrow {
  /* animation: arrowThrough 1.55s cubic-bezier(.7, 0, .25, 1); */
}
.about-page-copy--brand .about-page-brand__button {
  margin-left: auto;
  margin-right: auto;
}
.page-about .footer {
  padding-top: min(8.89vw, 209px);
  padding-bottom: 218px;
}

/* ============================================================
   Q&A page
   ============================================================ */
.qa-detail {
  background: var(--color-bg);
}

.qa-page-hero {
  height: clamp(360px, 31.25vw, 600px);
  min-height: 0;
}
.qa-page-hero .hero__bg img {
  object-position: center center;
}
.qa-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(95, 73, 58, .08);
  pointer-events: none;
}
.qa-page-hero__copy {
  top: 53%;
  z-index: 2;
}
.qa-page-hero__title {
  font-family: var(--font-serif-en);
  font-size: clamp(18px, 1.82vw, 35px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .18em;
  text-indent: .18em;
  color: var(--color-white);
  text-shadow: 0 0 16px rgba(68, 50, 40, .22);
}

.qa-page-faq {
  --qa-page-faq-bottom-trim: 0px;
  position: relative;
  overflow: hidden;
  margin-bottom: calc(var(--qa-page-faq-bottom-trim, 0px) * -1);
  padding: clamp(118px, 10.5vw, 202px) 0 clamp(128px, 11.3vw, 216px);
  background: var(--color-bg);
}
.qa-page-faq::after {
  content: "";
  position: absolute;
  left: min(24vw, 460px);
  bottom: max(-8vw, -154px);
  width: min(30vw, 576px);
  aspect-ratio: 1 / 1;
  background: url("../assets/img/about_deco.webp") center / contain no-repeat;
  opacity: .18;
  pointer-events: none;
}
.qa-page-faq__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  gap: clamp(72px, 7.6vw, 146px);
  max-width: 1516px;
  margin: 0 auto;
  padding: 0 clamp(40px, 5.3vw, 102px);
}
.qa-page-category {
  position: sticky;
  top: calc(var(--header-h) + 44px);
  align-self: start;
}
.qa-page-category__title {
  font-family: var(--font-serif-en);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .18em;
  color: var(--color-accent);
  margin-bottom: 50px;
}
.qa-page-category__list {
  display: grid;
  gap: 32px;
}
.qa-page-category__select-wrap,
.news-page-category__select-wrap {
  position: relative;
  display: none;
}
.qa-page-category__select-wrap::after,
.news-page-category__select-wrap::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  color: var(--color-white);
  pointer-events: none;
  transform: translateY(-66%) rotate(45deg);
}
.qa-page-category__select,
.news-page-category__select {
  width: 100%;
  height: 56px;
  padding: 0 62px 0 28px;
  border: 0;
  border-radius: 999px;
  appearance: none;
  -webkit-appearance: none;
  background: #bca298;
  color: var(--color-white);
  font-family: var(--font-serif-en);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: .12em;
  white-space: nowrap;
  cursor: pointer;
}
.qa-page-category__select:focus-visible,
.news-page-category__select:focus-visible {
  outline: 1px solid rgba(188, 162, 152, .72);
  outline-offset: 4px;
}
.qa-page-category__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: var(--action-button-height);
  min-height: 0;
  padding: 0 44px;
  border-radius: 999px;
  background: #f0edeb;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .12em;
  text-align: center;
  white-space: nowrap;
  transition: background .3s, color .3s, opacity .3s;
}
.qa-page-category__button::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 50%;
  width: 22px;
  height: 19px;
  background: url("../assets/img/qa_category_check.svg") center / contain no-repeat;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity .3s;
}
.qa-page-category__button:hover {
  opacity: .78;
}
.qa-page-category__button:focus-visible {
  outline: 1px solid rgba(188, 162, 152, .72);
  outline-offset: 4px;
}
.qa-page-category__button.is-active {
  background: #bca298;
  color: var(--color-white);
}
.qa-page-category__button.is-active::after {
  opacity: .8;
}
.qa-page-faq__title {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.qa-page-faq .qa__list {
  margin-top: 0;
}
.qa-page-faq .qa__item[hidden] {
  display: none;
}
.qa-page-faq .qa__item::after {
  background: rgba(188, 162, 152, .48);
}
.qa-page-faq .qa__q button {
  gap: 24px;
  padding: 36px 0 36px 52px;
  color: var(--color-accent);
}
.qa-page-faq .qa__item.is-open .qa__q button {
  padding-bottom: 20px;
}
.qa-page-faq .qa__mark {
  width: 30px;
  height: 30px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 14px;
}

.qa-page-faq .qa__q-text {
  font-size: clamp(17px, 1.04vw, 20px);
  line-height: 1.75;
  letter-spacing: .28em;
  color: var(--color-accent);
}
.qa-page-faq .qa__icon {
  width: 30px;
  height: 30px;
  border-color: var(--color-accent);
  margin-left: auto;
}
.qa-page-faq .qa__icon::before,
.qa-page-faq .qa__icon::after {
  background: var(--color-accent);
}
.qa-page-faq .qa__icon::before { width: 12px; }
.qa-page-faq .qa__icon::after { height: 12px; }
.qa-page-faq .qa__a-inner {
  gap: 22px;
  padding-left: 52px;
}
.qa-page-faq .qa__item.is-open .qa__a-inner {
  padding: 0 44px 34px 52px;
}
.qa-page-faq .qa__mark-a {
  width: 30px;
  color: var(--color-accent);
  font-size: 14px;
  line-height: 2.2;
}
.qa-page-faq .qa__a-inner p {
  color: var(--color-accent);
  font-size: 14px;
  line-height: 2.15;
  letter-spacing: .1em;
  opacity: .88;
}
.qa-page-faq__answer-gap {
  display: block;
  height: 1em;
}
.page-qa .footer {
  padding-top: min(10.89vw, 209px);
  padding-bottom: 218px;
}

/* ============================================================
   Contact page
   ============================================================ */
.contact-detail {
  background: var(--color-bg);
}
.contact-page-hero .hero__bg img {
  object-position: center center;
}
.contact-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 29, 18, .18);
  pointer-events: none;
}
.contact-page-hero__copy {
  top: 53%;
  z-index: 2;
}
.contact-page-hero__title {
  font-family: var(--font-serif-en);
  font-size: clamp(18px, 1.82vw, 35px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .18em;
  text-indent: .18em;
  color: var(--color-white);
  text-shadow: 0 0 18px rgba(15, 25, 18, .32);
}
.contact-page-form {
  padding: clamp(96px, 5.84vw, 112px) 0 clamp(112px, 7.9vw, 152px);
  background: var(--color-bg);
}
.contact-page-form__inner {
  width: min(1100px, calc(100% - 80px));
  margin: 0 auto;
}
.contact-page-form__title {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.contact-page-form__lead {
  color: var(--color-text-light);
  font-size: 15px;
  line-height: 2.18;
  letter-spacing: .14em;
}
.contact-page-form__required {
  margin-top: clamp(58px, 4.17vw, 80px);
  color: #c77d78;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: .14em;
}
.contact-form {
  display: grid;
  gap: clamp(44px, 3.47vw, 66px);
  margin-top: clamp(24px, 2.08vw, 40px);
}
.contact-page-form .wpcf7 form.contact-form {
  margin-top: clamp(24px, 2.08vw, 40px);
}
.contact-form__field {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--color-text-light);
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: .14em;
}
.contact-form__field legend,
.contact-form__field > span {
  color: var(--color-text-light);
}
.contact-form__field span span,
.contact-form__field legend span {
  color: #c77d78;
}
.contact-form__split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(56px, 5.1vw, 98px);
}
.contact-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  min-width: 0;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(201, 189, 179, .82);
  border-radius: 8px;
  background: rgba(253, 252, 249, .42);
  color: var(--color-text);
  font: inherit;
  line-height: 1.6;
  letter-spacing: .12em;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
  height: clamp(72px, 4.95vw, 95px);
  padding: 0 28px;
}
.contact-form textarea {
  min-height: clamp(330px, 30.73vw, 590px);
  padding: 28px;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(188, 162, 152, .58);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(167, 141, 127, .9);
  background: rgba(253, 252, 249, .72);
  box-shadow: 0 0 0 3px rgba(167, 141, 127, .13);
}
.contact-form__privacy {
  display: grid;
  grid-template-columns: auto minmax(0, auto);
  align-items: start;
  justify-content: center;
  column-gap: 16px;
  row-gap: 8px;
  margin-top: clamp(20px, 1.35vw, 26px);
  color: var(--color-text-light);
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: .12em;
  text-align: left;
}
.contact-form__privacy input {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  margin: .62em 0 0;
  accent-color: var(--color-accent);
}
.contact-form__privacy .wpcf7-form-control-wrap {
  display: block;
  width: auto;
}
.contact-form__privacy .wpcf7-form-control,
.contact-form__privacy .wpcf7-list-item {
  display: flex;
  flex: 0 0 auto;
  margin: 0;
}
.contact-form__privacy .wpcf7-list-item-label {
  display: none;
}
.contact-form__privacy-text {
  min-width: 0;
  color: #85726a;
}
.contact-form__privacy a {
  color: #67709f;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .24em;
}
.contact-form__actions {
  display: grid;
  justify-items: center;
}
.contact-form__submit {
  justify-self: center;
  width: min(474px, 100%);
  height: var(--action-button-height);
  border: 0;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  letter-spacing: .22em;
  cursor: pointer;
  transition: opacity .3s, transform .3s;
}
.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  opacity: .88;
  transform: translateY(-1px);
}
.contact-form .wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #c77d78;
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: .08em;
}
.contact-form .wpcf7-response-output {
  margin: 0;
  padding: 18px 22px;
  border-color: rgba(201, 189, 179, .82);
  border-radius: 8px;
  color: var(--color-text-light);
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .08em;
  text-align: center;
}
.contact-form .wpcf7-spinner {
  display: block;
  margin: 14px auto 0;
  background-color: var(--color-accent);
}
.contact-page-qa {
  position: relative;
  min-height: clamp(360px, 25.52vw, 490px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--color-white);
  text-align: center;
}
.contact-page-qa__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-page-qa__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(111, 89, 73, .12);
}
.contact-page-qa__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.contact-page-qa__inner {
  position: relative;
  z-index: 1;
  padding: 64px 22px;
}
.contact-page-qa__title {
  font-family: var(--font-serif-en);
  font-size: clamp(20px, 1.82vw, 35px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .18em;
  text-indent: .18em;
}
.contact-page-qa__text {
  margin-top: clamp(38px, 3vw, 58px);
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: .16em;
}
.contact-page-qa__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  width: min(450px, calc(100vw - 44px));
  height: var(--action-button-height);
  margin-top: clamp(50px, 4.27vw, 82px);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-accent);
  font-family: var(--font-serif-en);
  font-size: var(--action-button-font-size);
  line-height: 1;
  letter-spacing: .2em;
  transition: opacity .3s;
}
.contact-page-qa__button .btn-more__arrow {
  background-image: url("../assets/img/arrow-brown.svg");
}
.contact-page-qa__button:hover {
  opacity: .9;
}
.contact-page-qa__button:hover .btn-more__arrow,
.contact-page-qa__button:focus-visible .btn-more__arrow {
  /* animation: arrowThrough 1.55s cubic-bezier(.7, 0, .25, 1); */
}

/* ============================================================
   Thanks page
   ============================================================ */
.thanks-detail {
  background: var(--color-bg);
}
.thanks-page-hero .hero__bg img {
  object-position: center center;
}
.thanks-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 29, 18, .18);
  pointer-events: none;
}
.thanks-page-message {
  padding: clamp(104px, 7.8vw, 150px) 0 clamp(132px, 9.38vw, 180px);
  background: var(--color-bg);
}
.thanks-page-message__inner {
  width: min(1100px, calc(100% - 80px));
  margin: 0 auto;
  text-align: center;
}
.thanks-page-message__title {
  color: var(--color-accent);
  font-size: clamp(22px, 2.08vw, 40px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: .18em;
  text-indent: .18em;
}
.thanks-page-message__text {
  margin-top: clamp(28px, 2.08vw, 40px);
  color: var(--color-text-light);
  font-size: 15px;
  line-height: 2.25;
  letter-spacing: .14em;
}
.thanks-page-message__actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(54px, 4.27vw, 82px);
}
.thanks-page-message__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(360px, 100%);
  height: clamp(54px, 3.75vw, 72px);
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  letter-spacing: .22em;
  transition: opacity .3s, transform .3s;
}
.thanks-page-message__button:hover,
.thanks-page-message__button:focus-visible {
  opacity: .88;
  transform: translateY(-1px);
}

/* ============================================================
   Privacy policy page
   ============================================================ */
.privacy-detail {
  background: var(--color-bg);
}
.privacy-hero {
  height: clamp(360px, 31.25vw, 600px);
  min-height: 0;
}
.privacy-hero .hero__bg img {
  object-position: center center;
}
.privacy-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(88, 74, 63, .12);
  pointer-events: none;
}
.privacy-hero__copy {
  top: 53%;
  z-index: 2;
}
.privacy-hero__title {
  font-size: clamp(20px, 1.82vw, 35px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: .24em;
  text-indent: .24em;
  color: var(--color-white);
  text-shadow: 0 0 18px rgba(68, 50, 40, .28);
}
section.privacy-policy {
  padding: clamp(96px, 10.4vw, 200px) 0 clamp(130px, 13vw, 250px);
  background: var(--color-bg);
}
.privacy-policy__inner {
  width: min(1520px, calc(100% - 80px));
  margin: 0 auto;
  color: #85726a;
}
.privacy-policy__lead,
.privacy-policy__section p,
.privacy-policy__section li,
.privacy-policy__date {
  font-size: 13px;
  line-height: 2.35;
  letter-spacing: .13em;
  color: #85726a;
}
.privacy-policy__lead {
  margin-bottom: clamp(52px, 4.5vw, 86px);
}
.privacy-policy__section {
  margin-top: clamp(42px, 3.7vw, 70px);
}
.privacy-policy__section h2 {
  padding-bottom: 15px;
  border-bottom: 1px solid #85726a;
  font-size: clamp(18px, 1.3vw, 25px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: .16em;
  color: #85726a;
}
.privacy-policy__section h2 + p,
.privacy-policy__section h2 + .privacy-policy__list {
  margin-top: 18px;
}
.privacy-policy__section p + p,
.privacy-policy__section p + .privacy-policy__list,
.privacy-policy__section .privacy-policy__list + p {
  margin-top: 2px;
}
.privacy-policy__list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: privacy-list;
}
.privacy-policy__list li {
  position: relative;
  padding-left: 3.6em;
  counter-increment: privacy-list;
}
.privacy-policy__list li::before {
  content: "(" counter(privacy-list) ")";
  position: absolute;
  left: 0;
  top: 0;
  letter-spacing: .08em;
}
.privacy-policy__links {
  margin: 34px 0;
}
.privacy-policy__links p + p {
  margin-top: 24px;
}
.privacy-policy__section a,
.privacy-policy__links a {
  color: #67709F;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .24em;
}
.privacy-policy__date {
  display: inline-block;
  margin-top: clamp(52px, 4.6vw, 88px);
  padding: 2px 12px;
  border: 1px solid #85726a;
  line-height: 1.9;
}
.page-privacy .footer {
  padding-top: min(10.89vw, 209px);
  padding-bottom: 218px;
}

/* ============================================================
   Legal page
   ============================================================ */
.legal-detail {
  background: var(--color-bg);
}
.legal-page-hero {
  height: clamp(360px, 31.25vw, 600px);
  min-height: 0;
}
.hero.legal-page-hero .hero__bg img {
  object-position: center center;
}
.legal-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(92, 75, 58, .18);
  pointer-events: none;
}
.legal-page-hero__copy {
  top: 53%;
  z-index: 2;
}
.legal-page-hero__title {
  font-size: clamp(20px, 1.82vw, 35px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: .22em;
  text-indent: .22em;
  color: var(--color-white);
  text-shadow: 0 0 16px rgba(68, 50, 40, .2);
}
.legal-page-content {
  max-width: 1600px;
  margin: min(9.9vw, 190px) auto 0;
  padding: 0 40px calc(clamp(130px, 13vw, 250px) + clamp(8px, .5vw, 10px));
  color: #85726a;
}
.legal-list {
  display: grid;
  gap: clamp(56px, 4.43vw, 85px);
}
.legal-item__title {
  padding-bottom: 18px;
  border-bottom: 1px solid #85726a;
  color: #85726a;
  font-size: clamp(19px, 1.25vw, 24px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: .12em;
}
.legal-item__body {
  margin-top: 20px;
  color: #85726a;
  font-size: 14px;
  line-height: 2.25;
  letter-spacing: .12em;
  overflow-wrap: anywhere;
}
.legal-item__body p + p {
  margin-top: 3px;
}
.legal-item__body a {
  color: #67709F;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .24em;
}
.legal-item__body-spacer {
  padding-top: 28px;
}
.legal-placeholder {
  color: #d75b82;
}
.legal-nowrap {
  white-space: nowrap;
}
.page-legal .footer {
  padding-top: min(10.89vw, 209px);
}

/* ============================================================
   Company page
   ============================================================ */
.company-detail {
  background: var(--color-bg);
}
.company-page-hero .hero__bg img {
  object-position: center center;
}
.company-page-hero::after {
  background: rgba(116, 88, 67, .12);
}
.company-page-hero__title {
  font-family: var(--font-serif-jp);
  font-weight: 400;
  letter-spacing: .22em;
  text-indent: .22em;
}
.company-overview {
  position: relative;
  overflow: hidden;
  --company-deco-w: clamp(300px, 22.4vw, 430px);
  --company-deco-visible: clamp(132px, 10vw, 190px);
  padding: clamp(124px, 9.95vw, 191px) 40px clamp(220px, 15.6vw, 300px);
  background: var(--color-bg);
}
.company-overview__inner {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
}
.company-overview__deco {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.company-overview__deco img {
  display: block;
  width: 100%;
  height: auto;
}
.company-overview__deco--right {
  right: calc((100% - 100vw) / 2);
  top: clamp(-105px, -5.47vw, -78px);
  width: var(--company-deco-w);
  opacity: 1;
  mix-blend-mode: normal;
}
.company-profile {
  position: relative;
  z-index: 1;
  color: #85726a;
}
.company-profile__row {
  display: grid;
  grid-template-columns: minmax(190px, 24.1%) minmax(0, 1fr);
  border-top: 1px solid rgba(166, 143, 130, .42);
}
.company-profile__row:last-child {
  border-bottom: 1px solid rgba(166, 143, 130, .42);
}
.company-profile__row dt,
.company-profile__row dd {
  min-height: clamp(88px, 6.67vw, 128px);
  padding: clamp(24px, 2vw, 38px) clamp(28px, 3.25vw, 62px);
  display: flex;
  align-items: center;
  color: #85726a;
}
.company-profile__row dt {
  background: rgba(180, 164, 154, .18);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .18em;
}
.company-profile__row dd {
  font-size: 16px;
  line-height: 2.05;
  letter-spacing: .14em;
  padding-right: max(clamp(28px, 3.25vw, 62px), calc(var(--company-deco-visible) + 24px));
  overflow-wrap: anywhere;
  word-break: break-word;
}
.company-profile__row--wide dd {
  align-items: flex-start;
}
.company-profile__list li {
  position: relative;
  padding-left: 1.05em;
}
.company-profile__list li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.company-profile a {
  color: #67709F;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .24em;
  transition: opacity .3s;
}
.company-profile a:hover {
  opacity: .65;
}
.company-profile__url-break {
  display: none;
}
.company-profile__url-part {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .24em;
}
.company-mobile-br {
  display: none;
}

.company-narrow-br {
  display: none;
}

@media (max-width: 1024px) {
  .about-page-hero {
    height: 46vh;
    min-height: 360px;
  }
  .about-page-hero__copy {
    top: 61%;
  }
  .about-page-hero__title {
    font-size: clamp(20px, 5.4vw, 34px);
    letter-spacing: .14em;
    text-indent: .14em;
  }
  .about-page-section,
  .about-page-brand {
    height: auto;
  }
  .about-page-section {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding: 74px 22px;
  }
  .about-page-copy,
  .about-page-photo {
    position: relative;
    inset: auto;
    width: 100%;
  }
  .about-page-deco--intro {
    display: none;
  }
  .about-page-logo-mark {
    left: 50%;
    top: 118px;
    width: min(180px, 46vw);
    transform: translateX(-50%);
  }
  .about-page-copy {
    max-width: 620px;
    margin: 0 auto;
    transform: none;
  }
  .about-page-copy h2 {
    font-size: clamp(13px, 3.9vw, 20px);
    line-height: 1.9;
    letter-spacing: .03em;
  }
  .about-page-copy p {
    font-size: 14px;
    line-height: 2.2;
    letter-spacing: .1em;
  }
  .about-page-photo {
    max-width: 620px;
    margin: 0 auto;
  }
  .about-page-photo--lily,
  .about-page-photo--rest,
  .about-page-photo--light,
  .about-page-photo--sky,
  .about-page-photo--logo-story {
    width: 100%;
  }
  .about-page-photo--light {
    width: min(72%, 420px);
    margin-top: -12px;
    margin-left: auto;
  }
  .about-page-soft {
    padding: 0;
    color: var(--color-white);
  }
  .about-page-soft__bg {
    position: absolute;
  }
  .about-page-soft .about-page-copy,
  .about-page-soft .about-page-photo {
    position: relative;
    z-index: 2;
  }
  .about-page-soft {
    padding: 82px 22px;
  }
  .about-page-copy--soft {
    color: var(--color-white);
  }
  .about-page-logo-story::after {
    width: 100%;
    opacity: .34;
  }
  .about-page-brand {
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 82px 22px;
  }
  .about-page-copy--brand {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
  }
  .about-page-copy--brand h2,
  .about-page-copy--brand h2 + p {
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .about-page-brand__button {
    width: min(300px, 100%);
    height: var(--action-button-height);
    margin-top: 34px;
    font-size: var(--action-button-font-size);
  }
  .qa-page-hero {
    height: 46vh;
    min-height: 360px;
  }
  .qa-page-hero__copy {
    top: 61%;
  }
  .qa-page-hero__title {
    font-size: clamp(20px, 5.4vw, 34px);
    letter-spacing: .14em;
    text-indent: .14em;
  }
  .qa-page-faq {
    padding: 86px 0 112px;
  }
  .qa-page-faq::after {
    left: auto;
    right: -80px;
    bottom: -92px;
    width: min(68vw, 420px);
  }
  .qa-page-faq__inner {
    display: block;
    max-width: 720px;
    padding: 0 22px;
  }
  .qa-page-category {
    position: static;
    margin-bottom: 56px;
  }
  .qa-page-category__title {
    margin-bottom: 24px;
    font-size: 15px;
  }
  .qa-page-category__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .qa-page-category__button {
    height: var(--action-button-height);
    min-height: 0;
    padding: 0 42px;
    font-size: 12px;
    letter-spacing: .05em;
  }
  .qa-page-category__button::after {
    right: 20px;
    width: 17px;
    height: 15px;
  }
  .qa-page-faq .qa__q button {
    gap: 16px;
    padding: 28px 0;
  }
  .qa-page-faq .qa__item.is-open .qa__q button {
    padding-bottom: 16px;
  }
  .qa-page-faq .qa__q-text {
    font-size: 15px;
    letter-spacing: .1em;
  }
  .qa-page-faq .qa__a-inner {
    padding-left: 0;
  }
  .qa-page-faq .qa__item.is-open .qa__a-inner {
    padding: 0 0 30px;
  }
  .contact-page-hero {
    height: 46vh;
    min-height: 360px;
  }
  .contact-page-hero__copy {
    top: 61%;
  }
  .contact-page-hero__title {
    font-size: clamp(20px, 5.4vw, 34px);
    letter-spacing: .14em;
    text-indent: .14em;
  }
  .contact-page-form {
    padding: 86px 0 112px;
  }
  .contact-page-form__inner {
    width: min(720px, calc(100% - 44px));
  }
  .contact-page-form__lead,
  .contact-page-form__required,
  .contact-form__field {
    font-size: 14px;
    line-height: 2.12;
    letter-spacing: .08em;
  }
  .contact-form {
    gap: 42px;
  }
  .contact-form__split {
    gap: 24px;
  }
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"] {
    height: 66px;
    padding: 0 22px;
  }
  .contact-form textarea {
    min-height: 330px;
    padding: 22px;
  }
  .contact-page-qa {
    min-height: 420px;
  }
  .contact-page-qa__text {
    font-size: 14px;
    letter-spacing: .1em;
  }
  .thanks-page-message {
    padding: 86px 0 112px;
  }
  .thanks-page-message__inner {
    width: min(720px, calc(100% - 44px));
  }
  .thanks-page-message__text {
    font-size: 14px;
    line-height: 2.12;
    letter-spacing: .08em;
  }
  .privacy-hero {
    height: 46vh;
    min-height: 360px;
  }
  .page-privacy .privacy-hero__copy {
    top: 61%;
  }
  .privacy-hero__title {
    font-size: clamp(20px, 5vw, 34px);
    letter-spacing: .16em;
    text-indent: .16em;
  }
  section.privacy-policy {
    padding: 86px 0 112px;
  }
  .privacy-policy__inner {
    width: min(720px, calc(100% - 44px));
  }
  .privacy-policy__lead,
  .privacy-policy__section p,
  .privacy-policy__section li,
  .privacy-policy__date {
    font-size: 13px;
    line-height: 2.2;
    letter-spacing: .08em;
  }
  .privacy-policy__section {
    margin-top: 50px;
  }
  .privacy-policy__section h2 {
    font-size: clamp(16px, 4vw, 22px);
    letter-spacing: .08em;
  }
  .legal-page-hero {
    height: 46vh;
    min-height: 360px;
  }
  .page-legal .legal-page-hero__copy {
    top: 61%;
  }
  .legal-page-hero__title {
    font-size: clamp(20px, 5vw, 34px);
    letter-spacing: .14em;
    text-indent: .14em;
  }
  .legal-page-content {
    max-width: 768px;
    margin-top: 92px;
    padding: 0 22px 146px;
  }
  .legal-list {
    gap: 58px;
  }
  .legal-item__title {
    font-size: clamp(18px, 4vw, 22px);
    letter-spacing: .08em;
  }
  .legal-item__body {
    font-size: 13px;
    line-height: 2.2;
    letter-spacing: .08em;
  }
  .company-overview {
    --company-deco-w: min(32vw, 220px);
    --company-deco-visible: 28px;
    padding: 92px 22px 174px;
  }
  .company-overview__inner {
    max-width: 720px;
  }
  .company-overview__deco--right {
    right: calc(var(--company-deco-visible) - var(--company-deco-w));
    top: -52px;
    opacity: 1;
  }
  .company-profile__row {
    grid-template-columns: minmax(150px, 32%) minmax(0, 1fr);
  }
  .company-profile__row dt,
  .company-profile__row dd {
    min-height: 82px;
    padding: 22px 24px;
    font-size: 13px;
    line-height: 2.05;
    letter-spacing: .09em;
  }
  .company-profile__row dd {
    padding-right: calc(var(--company-deco-visible) + 20px);
  }
}

@media (max-width: 600px) {
  .about-page-hero {
    height: clamp(210px, 28vh, 240px);
    min-height: 0;
  }
  .page-about .about-page-hero__copy {
    top: calc(50% + 30px);
    padding: 0 22px;
    transform: translate(-50%, -50%);
  }
  .about-page-hero .hero__bg img {
    object-position: center center;
  }
  .about-page-section {
    gap: 30px;
    padding: 62px 22px;
  }
  .about-page-intro {
    overflow: visible;
    padding-bottom: 0;
  }
  .about-page-copy--intro {
    order: 1;
  }
  .about-page-photo--lily {
    order: 0;
    width: min(83.6vw, 326px);
    max-width: none;
    margin-left: auto;
    margin-right: -22px;
    margin-bottom: 24px;
    overflow: visible;
    aspect-ratio: auto;
  }
  .about-page-photo--lily img {
    height: auto;
    object-fit: contain;
  }
  .about-page-happiness {
    display: block;
    padding: 62px 0;
  }
  .about-page-copy--happiness {
    position: relative;
    inset: auto;
    width: auto;
    max-width: none;
    margin: 56px 22px 0;
  }
  .about-page-photo--rest {
    position: relative;
    inset: auto;
    width: 72vw;
    max-width: none;
    margin: 0 auto 0 0;
    background: url("../assets/img/about_page_rest_sp_20260628.webp") center / cover no-repeat;
    z-index: 1;
  }
  .about-page-photo--rest picture,
  .about-page-photo--rest > img {
    opacity: 0;
  }
  .about-page-photo--light {
    position: relative;
    inset: auto;
    width: 50vw;
    max-width: none;
    margin: -42px 22px 0 auto;
    z-index: 2;
  }
  .about-page-copy h2 {
    font-size: clamp(13px, 3.9vw, 20px);
    line-height: 1.9;
    letter-spacing: .03em;
  }
  .about-page-copy p {
    font-size: 14px;
    line-height: 2.08;
    letter-spacing: .075em;
  }
  .about-page-copy .pc-br {
    display: none;
  }
  .about-page-copy .sp-br {
    display: inline;
  }
  .about-page-copy h2 + p,
  .about-page-copy p + p {
    margin-top: 22px;
  }
  .about-page-soft {
    padding: 72px 22px;
  }
  .about-page-soft {
    display: block;
    height: 190vh;
    height: 190svh;
    height: 190dvh;
    height: 190lvh;
    min-height: 1320px;
    padding: 0;
    overflow: visible;
    background: url("../assets/img/about_page_sky_group.webp") 36% center / cover no-repeat;
  }
  .about-page-soft__bg {
    display: none;
  }
  .about-page-soft .about-page-photo--sky {
    position: sticky;
    top: 0;
    width: 100vw;
    max-width: none;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    height: 100lvh;
    min-height: 620px;
    margin: 0 0 0 calc(50% - 50vw);
    aspect-ratio: auto;
    overflow: hidden;
    background: url("../assets/img/about_page_sky_group.webp") 36% center / cover no-repeat;
    z-index: 1;
  }
  .about-page-photo--sky img {
    position: relative;
    z-index: 1;
    object-fit: cover;
    object-position: 36% center;
    transform: scale(1.02);
  }
  .about-page-photo--sky::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(55, 48, 42, .86);
    opacity: var(--soft-overlay-opacity, 0);
    pointer-events: none;
    transition: opacity .18s linear;
    z-index: 2;
  }
  .about-page-soft .about-page-copy--soft {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: auto;
    max-width: none;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    min-height: 100lvh;
    margin: -100vh 0 0;
    margin: -100svh 0 0;
    margin: -100dvh 0 0;
    margin: -100lvh 0 0;
    padding: 0 22px;
    color: var(--color-white);
    z-index: 3;
  }
  .about-page-copy--soft h2,
  .about-page-copy--soft p {
    max-width: none;
  }
  .about-page-logo-story::after {
    display: none;
  }
  .about-page-logo-story {
    position: relative;
    z-index: 5;
    isolation: isolate;
    background: var(--color-bg);
  }
  .about-page-brand {
    min-height: 620px;
    padding: 72px 22px;
  }
  .about-page-brand__bg {
    background: url("../assets/img/about_page_brand_sp_20260628.webp") 58% center / cover no-repeat;
  }
  .about-page-brand__bg picture {
    display: none;
  }
  .about-page-brand__bg img {
    object-position: 58% center;
  }
  .about-page-brand__button {
    display: flex;
    margin-left: auto;
    margin-right: auto;
  }
  .about-page-copy--brand h2 {
    font-size: clamp(16px, 4.4vw, 20px);
    line-height: 1.8;
    letter-spacing: .08em;
  }
  .about-page-copy--brand h2 + p {
    width: 100%;
    max-width: none;
    font-size: 12px;
    line-height: 2.1;
    letter-spacing: .06em;
  }
  .page-about .footer {
    margin-top: 72px;
    padding-bottom: 64px;
  }
  .qa-page-hero {
    height: 46vh;
    min-height: 305px;
  }
  .qa-page-hero .hero__bg img {
    object-position: 66% center;
  }
  .page-qa .qa-page-hero__copy {
    top: 59%;
  }
  .qa-page-hero__title {
    font-size: clamp(18px, 5.4vw, 24px);
    letter-spacing: .12em;
    text-indent: .12em;
  }
  .qa-page-faq {
    padding: 62px 0 88px;
  }
  .qa-page-faq::after {
    right: -88px;
    bottom: -60px;
    width: min(84vw, 320px);
  }
  .qa-page-category {
    margin-bottom: 42px;
  }
  .qa-page-category__title {
    display: none;
    margin-bottom: 20px;
    font-size: 14px;
  }
  .qa-page-category__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .qa-page-category__button {
    height: var(--action-button-height);
    min-height: 0;
    padding: 0 30px 0 14px;
    font-size: 11.5px;
    letter-spacing: .04em;
  }
  .qa-page-category__button::after {
    right: 12px;
    width: 14px;
    height: 13px;
  }
  .qa-page-faq .qa__q button {
    gap: 12px;
    padding: 22px 0;
  }
  .qa-page-faq .qa__item.is-open .qa__q button {
    padding-bottom: 12px;
  }
  .qa-page-faq .qa__mark,
  .qa-page-faq .qa__icon {
    width: 28px;
    height: 28px;
  }
  .qa-page-faq .qa__mark {
    font-size: 12px;
  }
  .qa-page-faq .qa__q-text {
    font-size: 14px;
    line-height: 1.65;
    letter-spacing: .045em;
  }
  .qa-page-faq .qa__icon::before {
    width: 10px;
  }
  .qa-page-faq .qa__icon::after {
    height: 10px;
  }
  .qa-page-faq .qa__a-inner {
    gap: 10px;
  }
  .qa-page-faq .qa__item.is-open .qa__a-inner {
    padding: 0 0 26px;
  }
  .qa-page-faq .qa__mark-a {
    width: 28px;
    font-size: 12px;
  }
  .qa-page-faq .qa__a-inner p {
    font-size: 12.5px;
    line-height: 2.05;
    letter-spacing: .055em;
  }
  .page-qa .footer {
    padding-bottom: 64px;
  }
  .contact-page-hero {
    height: clamp(210px, 28vh, 240px);
    min-height: 0;
  }
  .contact-page-hero .hero__bg img {
    object-position: 18% center;
  }
  .page-contact .contact-page-hero__copy {
    top: calc(50% + 30px);
    padding: 0 22px;
    transform: translate(-50%, -50%);
  }
  .contact-page-hero__title {
    font-size: clamp(17px, 5.2vw, 22px);
    line-height: 1.7;
    letter-spacing: .12em;
    text-indent: .12em;
  }
  .contact-page-form {
    padding: 72px 0 92px;
  }
  .contact-page-form__inner {
    width: calc(100% - 44px);
  }
  .contact-page-form__lead,
  .contact-page-form__required,
  .contact-form__field,
  .contact-form__privacy {
    font-size: 13px;
    line-height: 2.08;
    letter-spacing: .045em;
  }
  .contact-page-form__required {
    margin-top: 42px;
  }
  .contact-form {
    gap: 32px;
    margin-top: 22px;
  }
  .contact-form__field {
    gap: 10px;
  }
  .contact-form__split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"] {
    height: 56px;
    padding: 0 16px;
  }
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form input[type="url"],
  .contact-form input[type="number"],
  .contact-form input[type="search"],
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
    line-height: 1.6;
  }
  .contact-form textarea {
    min-height: 230px;
    padding: 16px;
  }
  .contact-form__privacy {
    align-items: start;
    justify-content: start;
    gap: 10px;
    margin-top: 6px;
    text-align: left;
  }
  .contact-form__privacy input {
    margin-top: .62em;
  }
  .contact-form__submit {
    width: 100%;
    height: var(--action-button-height);
    font-size: 14px;
  }
  .contact-page-qa {
    min-height: 360px;
  }
  .contact-page-qa__bg img {
    object-position: 72% center;
  }
  .contact-page-qa__inner {
    padding: 56px 22px;
  }
  .contact-page-qa__title {
    font-size: clamp(18px, 5.2vw, 22px);
    letter-spacing: .14em;
    text-indent: .14em;
  }
  .contact-page-qa__text {
    margin-top: 28px;
    font-size: 13px;
    line-height: 2.05;
    letter-spacing: .07em;
  }
  .contact-page-qa__button {
    width: min(260px, 100%);
    height: var(--action-button-height);
    margin-top: 40px;
    gap: 22px;
    font-size: var(--action-button-font-size);
  }
  .thanks-page-message {
    padding: 72px 0 96px;
  }
  .thanks-page-message__inner {
    width: calc(100% - 44px);
  }
  .thanks-page-message__title {
    font-size: clamp(20px, 5.4vw, 24px);
    line-height: 1.8;
    letter-spacing: .1em;
    text-indent: .1em;
  }
  .thanks-page-message__text {
    margin-top: 26px;
    font-size: 13px;
    line-height: 2.08;
    letter-spacing: .055em;
  }
  .thanks-page-message__actions {
    margin-top: 42px;
  }
  .thanks-page-message__button {
    width: 100%;
    height: 56px;
    font-size: 14px;
  }
  .privacy-hero {
    height: clamp(210px, 28vh, 240px);
    min-height: 0;
  }
  .page-privacy .privacy-hero__copy {
    top: calc(50% + 30px);
    padding: 0 22px;
    transform: translate(-50%, -50%);
  }
  .privacy-hero__title {
    font-size: clamp(17px, 5.2vw, 22px);
    line-height: 1.7;
    letter-spacing: .12em;
    text-indent: .12em;
  }
  section.privacy-policy {
    padding: 68px 0 84px;
  }
  .privacy-policy__inner {
    width: calc(100% - 44px);
  }
  .privacy-policy__lead,
  .privacy-policy__section p,
  .privacy-policy__section li,
  .privacy-policy__date {
    font-size: 12px;
    line-height: 2.05;
    letter-spacing: .035em;
  }
  .privacy-policy__lead {
    margin-bottom: 44px;
  }
  .privacy-policy__section {
    margin-top: 42px;
  }
  .privacy-policy__section h2 {
    padding-bottom: 12px;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: .04em;
  }
  .privacy-policy__section h2 + p,
  .privacy-policy__section h2 + .privacy-policy__list {
    margin-top: 15px;
  }
  .privacy-policy__list li {
    padding-left: 2.9em;
  }
  .privacy-policy__links {
    margin: 28px 0;
  }
  .privacy-policy__date {
    margin-top: 46px;
    padding: 2px 10px;
  }
  .page-privacy .footer {
    margin-top: 0;
    padding-bottom: 64px;
  }
  .legal-page-hero {
    height: clamp(210px, 28vh, 240px);
    min-height: 0;
  }
  .page-legal .legal-page-hero__copy {
    top: calc(50% + 30px);
    padding: 0 22px;
    transform: translate(-50%, -50%);
  }
  .legal-page-hero__title {
    font-size: clamp(17px, 4.7vw, 22px);
    line-height: 1.7;
    letter-spacing: .1em;
    text-indent: .1em;
  }
  .legal-page-content {
    margin-top: 70px;
    padding: 0 22px 80px;
  }
  .legal-list {
    gap: 48px;
  }
  .legal-item__title {
    padding-bottom: 13px;
    font-size: 18px;
    line-height: 1.65;
    letter-spacing: .06em;
  }
  .legal-item__body {
    margin-top: 15px;
    font-size: 12px;
    line-height: 2.1;
    letter-spacing: .06em;
  }
  .legal-item__body-spacer {
    padding-top: 20px;
  }
  .page-legal .footer {
    padding-bottom: 64px;
  }
  .company-page-hero .hero__bg img {
    object-position: center center;
  }
  .page-company .about-page-hero__copy {
    top: calc(50% + 30px);
    padding: 0 22px;
    transform: translate(-50%, -50%);
  }
  .company-page-hero__title {
    font-size: clamp(18px, 5.2vw, 22px);
    letter-spacing: .16em;
    text-indent: .16em;
  }
  .company-overview {
    --company-deco-w: min(48vw, 186px);
    --company-deco-visible: clamp(86px, 25.5vw, 110px);
    padding: 58px 22px 38px;
  }
  .company-overview__deco {
    z-index: 2;
  }
  .company-overview__inner,
  .company-profile {
    width: calc(100vw - 44px);
    max-width: calc(100vw - 44px);
    min-width: 0;
  }
  .company-profile {
    overflow: hidden;
  }
  .company-overview__deco--right {
    top: -28px;
    opacity: 1;
  }
  .company-profile__row {
    display: grid;
    grid-template-columns: clamp(92px, 28.7vw, 112px) minmax(0, 1fr);
    width: calc(100vw - 44px);
    max-width: calc(100vw - 44px);
    min-width: 0;
  }
  .company-profile__row dt,
  .company-profile__row dd {
    width: auto;
    max-width: 100%;
    min-width: 0;
    min-height: 78px;
    padding: 18px 14px;
    font-size: 13px;
    line-height: 2.05;
    letter-spacing: .1em;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .company-profile__row dt {
    display: flex;
    align-items: center;
    padding-left: 10px;
    padding-right: 8px;
    letter-spacing: .14em;
  }
  .company-profile__row dd {
    display: flex;
    align-items: center;
    max-width: 100%;
    padding-right: 4px;
    white-space: normal;
    line-break: strict;
    word-break: normal;
  }
  .company-profile a {
    overflow-wrap: anywhere;
    word-break: break-all;
  }
  .company-profile__row--wide dt,
  .company-profile__row--wide dd {
    min-height: 152px;
  }
  .company-profile__row--wide dd {
    display: flex;
    align-items: center;
  }
  .company-mobile-br {
    display: block;
  }
  .company-profile__list {
    width: 100%;
  }
  .company-profile__list li {
    padding-left: .85em;
  }
  .company-profile__address {
    overflow-wrap: normal;
    word-break: keep-all;
  }
  .company-profile a.company-profile__url {
    display: block;
    max-width: 100%;
    font-size: inherit;
    letter-spacing: .02em;
    line-height: 1.9;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    transform: none;
  }
  .company-profile__url-part {
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
  }
  .company-profile__url-break {
    display: none;
  }
  .company-profile__url--sns .company-profile__url-break {
    display: block;
  }
  .company-profile__concept {
    overflow-wrap: anywhere;
    word-break: normal;
  }
}

@media (max-width: 360px) {
  .company-overview {
    --company-deco-w: min(50vw, 174px);
    --company-deco-visible: clamp(82px, 25vw, 96px);
    padding-bottom: 34px;
  }
  .company-profile__row dt,
  .company-profile__row dd {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
    letter-spacing: .075em;
  }
  .company-profile__row dt {
    padding-left: 9px;
    padding-right: 7px;
    letter-spacing: .1em;
  }
  .company-profile__row dd {
    padding-right: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__scroll-bar::after { animation: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1180px) {
  .gnav__list { gap: 22px; }
  .gnav { gap: 24px; }
  /* 中間幅で本文と画像が近づきすぎないよう、シャドウ動画のはみ出しを抑える */
  .about__img--sub { width: 68%; margin-left: 36%; }
}

@media (min-width: 1025px) and (max-width: 1180px) {
  .about__img--sub { margin-left: calc(36% + 50px); }
}

@media (max-width: 1024px) {
  :root { --header-h: 56px; }

  /* --- header / drawer --- */
  /* スマホ時はメインビジュアル上でも白ぼかしのヘッダーにする */
  .header {
    background-color: rgba(255, 255, 255, .30);
    -webkit-backdrop-filter: blur(2px) saturate(1);
    backdrop-filter: blur(2px) saturate(1);
    box-shadow: 0 1px 10px rgba(110, 95, 84, .03);
  }
  .header::after { display: none; }
  .header.is-scrolled,
  .header.is-past-hero {
    background-color: rgba(255, 255, 255, .30);
    -webkit-backdrop-filter: blur(2px) saturate(1);
    backdrop-filter: blur(2px) saturate(1);
    box-shadow: 0 1px 10px rgba(110, 95, 84, .03);
  }
  .header.is-open {
    background-color: rgba(255, 255, 255, .30);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: 0 1px 10px rgba(110, 95, 84, .08);
  }
  .header__inner { padding: 9px 20px; }
  .header__logo-img { width: 168px; }
  .header .header__logo-img--white {
    opacity: 1;
    filter: none;
  }
  .header .header__logo-img--brown {
    opacity: 0;
  }
  .header.is-past-hero .header__logo-img--white,
  .header.is-open .header__logo-img--white {
    opacity: 0;
  }
  .header.is-past-hero .header__logo-img--brown,
  .header.is-open .header__logo-img--brown {
    opacity: 1;
  }

  .header__toggle {
    display: flex;
    width: 44px;
    margin-left: 24px;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
  }
  .header .header__toggle span {
    background: var(--color-white);
    box-shadow: none;
  }
  .header.is-past-hero .header__toggle span,
  .header.is-open .header__toggle span {
    background: var(--color-heading);
  }

  .gnav {
    position: fixed;
    inset: 0;
    width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    padding: clamp(158px, 20vh, 190px) clamp(28px, 7.2vw, 64px) 32px 24px;
    background: var(--color-bg);
    overflow: hidden;
    clip-path: inset(0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform var(--drawer-duration) var(--drawer-ease), opacity .32s ease, visibility 0s linear var(--drawer-duration);
    will-change: transform, opacity;
  }
  .header.is-open .gnav::after {
    content: "";
    position: absolute;
    left: clamp(-56px, -13vw, -34px);
    right: auto;
    top: clamp(176px, 22vh, 210px);
    width: min(80vw, 330px);
    aspect-ratio: 648 / 880;
    background: url("../assets/img/drawer_illustration.webp") center / contain no-repeat;
    pointer-events: none;
    z-index: 0;
  }
  .header.is-open .gnav {
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform var(--drawer-duration) var(--drawer-ease), opacity .28s ease, visibility 0s;
  }
  .header.is-drawer-active .gnav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition: transform var(--drawer-duration) var(--drawer-ease), opacity .28s ease, visibility 0s;
  }
  .header.is-closing .gnav {
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform var(--drawer-duration) var(--drawer-ease), visibility 0s linear var(--drawer-duration);
  }
  .gnav__list {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: clamp(14px, 2.35vh, 24px);
    text-align: right;
    margin: 0;
  }
  .header.is-open .gnav__list {
    align-items: flex-end;
    gap: clamp(14px, 2.35vh, 24px);
    text-align: right;
  }
  .gnav__list,
  .header.is-open .btn-store {
    position: relative;
    z-index: 1;
  }
  .gnav__list a { color: var(--color-text); font-size: 16px; }
  .gnav__store-item { display: list-item; }
  .btn-store { color: var(--color-heading); margin-top: 10px; padding-top: 10px; padding-bottom: 10px; }
  .header.is-open .btn-store {
    display: none;
    align-self: flex-end;
    width: auto;
    max-width: none;
    height: auto;
    min-height: 0;
    margin-top: clamp(28px, 4.5vh, 50px);
    padding: 0;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: .14em;
    color: var(--color-text);
    background: transparent;
    border: 0;
    border-radius: 0;
  }
  .header.is-open .btn-store:hover {
    background: transparent;
    opacity: .7;
  }
  .header__logo { position: relative; z-index: 110; }

  /* ヘッダーのOnline Storeはハンバーガー内なので、ヒーローにボタンを表示 */
  .hero__store { display: block; }

  /* --- sections --- */
  .about { flex-direction: column; padding: 72px 0 88px; gap: 0; position: relative; overflow: hidden; }
  /* 線画を右上に大きく配置(写真の右、タイトル付近まで伸ばす) */
  .about__deco { top: 20px; right: -16vw; bottom: auto; width: clamp(150px, 44vw, 280px); opacity: .74; }
  .about__deco img { width: 100%; height: auto; }
  /* 写真は左寄せ(右側に線画のスペースを残す) */
  .about__images { width: 72%; padding-right: 0; position: relative; z-index: 1; }
  .about__body { padding: 54px 22px 0; margin: 0; width: auto; max-width: none; position: relative; z-index: 1; }
  .about__body > .section__label {
    position: static;
    margin: 0 0 24px;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    line-height: 1.4;
    letter-spacing: .14em;
    z-index: 2;
  }
  .about__body > .section__label .hl {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }
  /* Read Moreを右寄せ */
  .about__body .btn-more { display: flex; width: fit-content; margin-left: auto; margin-top: 32px; }

  /* 線画はセクション内に収め、はみ出さない(下端で緑に接して連続感を出す) */
  .brand,
  .moments {
    --moments-join-y: clamp(140px, 43.88vw, 450px);
    --moments-bg-scale: 1.08;
    --moments-bg-size: calc(100% * var(--moments-bg-scale)) auto;
    --moments-bg-shift: calc(var(--moments-join-y) * var(--moments-bg-scale));
    --moments-bg-x: calc(50% - 18px);
  }
  .brand { flex-direction: column-reverse; padding: 0 0 120px; overflow: hidden; position: relative; }
  .brand::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: var(--moments-bg-shift);
    background: none;
    filter: brightness(0) saturate(100%) invert(55%) sepia(13%) saturate(617%) hue-rotate(338deg) brightness(91%) contrast(84%);
    opacity: .3;
    pointer-events: none;
  }
  .brand::after {
    background: url("../assets/img/foryou_bg_sp_20260630.svg") var(--moments-bg-x) top / var(--moments-bg-size) no-repeat;
  }
  .brand__deco {
    position: relative;
    z-index: 0;
    inset: auto;
    width: 86vw;
    margin: -110px 0 0;
    align-self: flex-start;
  }
  .brand__img { width: 100%; align-self: flex-end; padding-left: 22px; }
  .brand__body { margin: 60px 22px 0; }

  /* スマホでも背景画像でセクション全体を埋める(緑の地色を見せない) */
  .moments {
    position: relative;
    z-index: 1;
    isolation: isolate;
    --moments-bg-overlap: clamp(360px, 128vw, 520px);
    min-height: calc(100svh - var(--header-h));
    padding: 104px 0 88px;
    background: #2f3b27 url("../assets/img/foryou_bg_sp_20260630.svg") var(--moments-bg-x) calc(-1 * var(--moments-bg-shift)) / var(--moments-bg-size) no-repeat;
  }
  .moments::before {
    content: none;
  }
  .moments__inner { padding: 0 22px; }
  .moments__block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 62px;
    align-items: flex-start;
  }
  .moments__inner > .section__label + .moments__block { margin-top: 34px; }
  .moments__body { display: contents; margin-left: 0; }
  .moments__title {
    order: 1;
    font-size: clamp(13px, 3.9vw, 20px);
    font-weight: 500;
    margin-bottom: 0;
  }
  .moments__img { order: 2; width: 100%; }
  .moments__text { order: 3; }
  .moments.moments--sequence {
    height: var(--moments-sequence-height, calc(100svh * 4));
    min-height: var(--moments-sequence-height, calc(100svh * 4));
    margin-bottom: 0;
    padding: 0;
    display: block;
    z-index: 2;
    isolation: isolate;
    background: #2f3b27 url("../assets/img/foryou_bg_sp_20260630.svg") var(--moments-bg-x) calc(-1 * var(--moments-bg-shift)) / var(--moments-bg-size) no-repeat;
  }
  .moments.moments--sequence::before {
    content: none;
  }
  .moments.moments--sequence .moments__inner {
    width: 100%;
    height: var(--moments-sticky-height, 100dvh);
    height: max(var(--moments-sticky-height, 100dvh), 100dvh);
    min-height: var(--moments-sticky-height, 100svh);
    min-height: max(var(--moments-sticky-height, 100svh), 100dvh);
    position: sticky;
    top: 0;
    z-index: 1;
    overflow: hidden;
    isolation: isolate;
    padding: calc(var(--header-h) + 28px) 22px 42px;
    transform: translateZ(0);
    backface-visibility: hidden;
  }
  .moments.moments--sequence .moments__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #2f3b27 url("../assets/img/foryou_bg_sp_20260630.svg") var(--moments-bg-x) calc(-1 * var(--moments-bg-shift)) / var(--moments-bg-size) no-repeat;
    pointer-events: none;
    transform: translateZ(0);
    backface-visibility: hidden;
  }
  .moments.moments--sequence .section__label {
    position: absolute;
    z-index: 1;
    top: calc(var(--header-h) + 6px);
    left: 22px;
    margin: 0;
  }
  .moments.moments--sequence .moments__block,
  .moments.moments--sequence .moments__inner > .section__label + .moments__block {
    position: absolute;
    left: 22px;
    right: 22px;
    top: calc(var(--header-h) + 60px);
    bottom: clamp(20px, 3.6vh, 36px);
    transform: none;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    align-content: start;
    gap: clamp(9px, 1.7vh, 14px);
    margin: 0;
    z-index: 1;
    will-change: opacity, filter;
  }
  .moments.moments--sequence .moments__title {
    grid-row: 1;
    min-height: 1.75em;
    font-size: clamp(13px, 3.9vw, 20px);
    font-weight: 500;
    line-height: 1.75;
    margin: 0;
  }
  .moments.moments--sequence .moments__img {
    grid-row: 2;
    width: 100%;
    height: clamp(178px, calc(72.22vw - 34.67px), 252px);
    margin-bottom: 12px;
    overflow: hidden;
  }
  .moments.moments--sequence .moments__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .moments.moments--sequence .moments__text {
    grid-row: 3;
    font-size: clamp(11px, 3vw, 13px);
    line-height: 1.8;
    letter-spacing: .08em;
    overflow: visible;
  }

  .items {
    position: relative;
    z-index: 3;
    padding: 50px 0 48px;
    /* 草の影は画像左上にあるため、スマホでも左上を基準にして影を見せる */
    background-position: left top;
  }
  .items:not([data-lazy-bg]),
  .items.is-bg-loaded {
    background-position: left top;
  }
  .items__inner { padding: 0 22px; }
  .items__list { flex-direction: column; align-items: center; gap: 58px; margin-top: 42px; }
  .item-card { width: 100%; }
  .item-card__body { padding: 24px 6% 22%; }
  .items__more { margin-top: 40px; }

  .qa { padding: 66px 0 82px; }
  .qa__inner { padding: 0 22px; }
  .qa__list { margin-top: 32px; }
  .qa__q button { gap: 12px; padding: 22px 0; }
  .qa__q-text { font-size: 14px; letter-spacing: .04em; line-height: 1.6; }
  .qa__mark, .qa__icon { width: 30px; height: 30px; }
  .qa__mark { font-size: 12px; }
  .qa__icon::before { width: 11px; }
  .qa__icon::after { height: 11px; }
  .qa__a-inner { align-items: flex-start; gap: 12px; padding-left: 0; }
  .qa__item.is-open .qa__a-inner { padding: 0 0 26px; }
  .qa__mark-a { width: 30px; font-size: 13px; line-height: 2.2; }
  .qa__a-inner p { font-size: 13px; line-height: 2.2; }
  .qa__more { margin-top: 44px; }

  .news { padding: 72px 0 48px; position: relative; overflow: hidden; }
  .news__inner { padding: 0 22px; }

  .contact {
    --contact-bg-overlap: clamp(76px, 24vw, 96px);
    aspect-ratio: auto;
    display: block;
    min-height: min(140vw, 620px);
    padding: 82px 22px 78px;
    position: relative;
  }
  .contact__bg img { object-position: center top; }
  .contact__inner { padding-top: 80px; }
  .contact__text { font-size: 16px; }
  .contact__links {
    width: 100%;
    margin-top: 42px;
  }
  .contact__row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 26px 0;
    text-align: left;
  }
  .contact__row-text {
    font-size: clamp(11px, 3.2vw, 13px);
    line-height: 1.9;
    letter-spacing: .06em;
    text-align: center;
    white-space: nowrap;
  }
  .contact__row-text span { display: inline; }
  .contact__row-text br { display: none; }
  .contact__row .btn-contact {
    width: 100%;
  }
  /* スマホ: 画像左・文字右の横並びリスト */
  .news__list {
    display: flex;
    flex-direction: column;
    gap: clamp(0px, 0vw, 0px);
    max-width: 520px;
    margin: 42px auto 0;
  }
  .news-card { border-bottom: 1px solid var(--color-line); }
  .news-card:first-child { border-top: 1px solid var(--color-line); }
  .news-card a { display: flex; align-items: flex-start; gap: 18px; padding: 20px 2px; }
  .news-card__img { width: 40%; max-width: 180px; flex-shrink: 0; }
  .news-card__body { flex: 1; min-width: 0; }
  .news-card__title { font-size: 14px; margin-top: 0; line-height: 1.7; }
  .news-card__date { margin-top: 8px; font-size: 12px; }

  .section__label { font-size: 14px; margin-bottom: 20px; }
  .moments__text { font-size: 13px; line-height: 2.2; }
  .item-card__name {
    font-size: 19px;
    margin-bottom: 20px;
  }
  .item-card__text {
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
  }
  .item-card__text + .item-card__text { margin-top: 8px; }

  .footer { padding: 72px 0 68px; text-align: center; }
  .footer__inner { padding: 0 22px; position: relative; }
  .footer__logo img { width: 220px; margin: 0 auto; }
  .footer__row { flex-direction: column; align-items: center; gap: 34px; margin-top: 30px; }
  .footer__nav {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    column-gap: clamp(56px, 17vw, 96px);
    row-gap: 28px;
    text-align: center;
  }
  .footer__nav-legal {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* gap: 12px; */
    margin-top: 8px;
  }
  .footer__tagline { font-size: 13px; line-height: 2.05; }
  .footer__nav a { font-size: 12px; }
  .footer__copy { margin-top: 52px; padding: 0 22px; font-size: 11px; }
  /* Instagramは「特定商取引法」の行の右端に配置、Online Storeは下に横幅いっぱいのボタン */
  .footer__sns { width: 100%; flex-direction: column; justify-content: center; gap: 28px; }
  .footer__sns a[aria-label="Instagram"] {
    position: static;
  }
  .footer__sns .footer__store {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 56px;
    padding: 0;
  }

  .about-detail-hero {
    height: 72svh;
    min-height: 560px;
  }
  .about-detail-hero__copy {
    top: 45%;
  }
  .about-detail-hero__title {
    font-size: clamp(22px, 6vw, 34px);
    letter-spacing: .16em;
    text-indent: .16em;
    text-shadow: 0 0 18px rgba(48, 36, 30, .72);
  }
  .about-story__inner,
  .about-story--reverse .about-story__inner,
  .about-story--logo .about-story__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 0 22px;
  }
  .about-story--intro {
    padding: 82px 0 96px;
  }
  .about-story--reverse {
    padding: 24px 0 96px;
  }
  .about-story--reverse .about-story__body,
  .about-story--reverse .about-story__visual,
  .about-story--logo .about-story__body,
  .about-story__mark {
    grid-column: auto;
    grid-row: auto;
  }
  .about-story__body {
    max-width: none;
  }
  .about-story__title {
    font-size: clamp(18px, 4.7vw, 26px);
    line-height: 1.8;
    letter-spacing: .06em;
  }
  .about-story__text {
    margin-top: 28px;
    font-size: 14px;
    line-height: 2.2;
    letter-spacing: .07em;
  }
  .about-story__visual {
    width: min(100%, 620px);
    justify-self: center;
  }
  .about-rest__inner {
    padding: 96px 22px;
  }
  .about-rest__title {
    font-size: clamp(18px, 4.7vw, 26px);
    line-height: 1.8;
    letter-spacing: .06em;
  }
  .about-rest__text {
    margin-top: 28px;
    font-size: 14px;
    line-height: 2.2;
    letter-spacing: .07em;
  }
  .about-story--logo {
    padding: 92px 0 96px;
  }
  .about-story--logo::before {
    width: 100%;
    height: 46%;
    bottom: auto;
  }
  .about-story__mark {
    order: -1;
    width: min(430px, 74vw);
    margin: 0 auto -8px;
    opacity: .13;
  }
  .about-brand-lead {
    min-height: 640px;
  }
  .about-brand-lead__inner {
    padding: 108px 22px;
  }
  .about-brand-lead__body {
    width: 100%;
    margin: 0 auto;
  }
  .about-brand-lead__title {
    font-size: clamp(18px, 4.7vw, 26px);
    line-height: 1.8;
    letter-spacing: .08em;
  }
  .about-brand-lead__text {
    margin-top: 28px;
    font-size: 14px;
    line-height: 2.15;
    letter-spacing: .07em;
  }
}

@media (max-width: 600px) {
  body { font-size: 14px; }
  /* About/Brandの見出しが1行に収まるよう、画面幅に応じて縮小 */
  .section__title { font-size: clamp(13px, 3.9vw, 20px); letter-spacing: .03em; margin: 0 0 22px; white-space: nowrap; }
  .section__text { font-size: 14px; line-height: 2.2; }
  .hero__bg {
    background: url("../assets/img/hero.webp") center center / cover no-repeat;
  }
  .hero__bg img {
    bottom: auto;
    height: 100%;
    object-position: 56% center;
  }
  .hero__copy { top: 29%; padding: 0 22px; }
  /* タイトルが1行に収まるよう字間を詰めてサイズ調整 */
  .hero__title { font-size: clamp(16px, 5.5vw, 22px); letter-spacing: .05em; text-indent: .05em; white-space: nowrap; }
  .hero__lead {
    font-size: clamp(12px, 3.86vw, 14.5px);
    letter-spacing: .04em;
    text-indent: .04em;
    line-height: 2.05;
    white-space: nowrap;
  }
  .hero__store {
    width: min(300px, 72vw);
    height: 48px;
    margin-top: 28px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 1;
  }
  .hero__scroll {
    right: 14px;
    bottom: 24px;
    left: auto;
    gap: 7px;
  }
  .hero__scroll span {
    font-size: 9px;
    letter-spacing: .16em;
    margin-bottom: 1px;
  }
  .hero__scroll-bar {
    width: 2px;
    height: 32px;
    --scroll-pill-h: 12px;
    --scroll-pill-move: 12px;
  }
  .hero__scroll-bar::after { border-radius: 2px; }
  .about__img--sub { margin-top: -12%; }
  .moments__title { font-size: clamp(13px, 3.9vw, 20px); font-weight: 500; }
  .btn-more { margin-top: 36px; gap: 12px; }
  .btn-more__label { font-size: 15px; letter-spacing: .16em; }
  .btn-more__circle { width: 40px; height: 40px; }
  .btn-more__circle::before { width: 18px; }
  .contact {
    --contact-bg-overlap: 0px;
    z-index: 1;
    min-height: clamp(700px, 180vw, 720px);
    padding: clamp(134px, 36vw, 142px) 22px clamp(86px, 23vw, 98px);
    overflow: visible;
  }
  .contact__bg {
    top: 0;
    height: 100%;
    background: var(--color-bg);
  }
  .contact__bg picture {
    height: 100%;
    transform: none;
  }
  .contact__bg img {
    object-position: center top;
  }
  .contact__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
  }
  .contact .section__label {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .15em;
  }
  .contact__text {
    max-width: 342px;
    margin-top: clamp(68px, 18vw, 72px);
    font-size: clamp(17px, 4.6vw, 18px);
    line-height: 1.9;
    letter-spacing: .12em;
  }
  br.sp-only-br { display: block; }
  .contact__links {
    width: 100%;
    margin-top: clamp(62px, 16.5vw, 66px);
  }
  .contact__row {
    width: min(286px, 73.4vw);
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    gap: clamp(20px, 5.3vw, 22px);
    padding: 0;
    text-align: center;
  }
  .contact__row + .contact__row {
    margin-top: clamp(44px, 12vw, 48px);
    padding-top: clamp(32px, 8.7vw, 34px);
  }
  .contact__row-text {
    font-size: 12.5px;
    line-height: 1.9;
    letter-spacing: .09em;
    white-space: nowrap;
  }
  .contact__row-text span {
    display: inline;
    font-size: inherit;
    line-height: inherit;
  }
  .contact__row .btn-contact,
  .btn-contact {
    width: min(286px, 73.4vw);
    height: 42px;
    font-size: 13px;
    gap: 24px;
    letter-spacing: .22em;
  }
  .line-modal { padding: 24px; }
  .line-modal__dialog {
    width: calc(100vw - 48px);
    padding: 58px 28px 52px;
  }
  .line-modal__close {
    top: 22px;
    right: 20px;
  }
  .line-modal__eyebrow { font-size: 13px; }
  .line-modal__title {
    margin-top: 24px;
    font-size: 20px;
  }
  .line-modal__text {
    margin-top: 26px;
    font-size: 13px;
    line-height: 2.2;
  }
  .line-modal__sp-break {
    display: block;
  }
  .line-modal__button {
    width: min(220px, 100%);
    height: 54px;
    margin-top: 34px;
    font-size: 14px;
  }

  .about-detail-hero {
    height: 76svh;
    min-height: 520px;
  }
  .about-detail-hero__title {
    font-size: clamp(20px, 6vw, 26px);
    letter-spacing: .12em;
    text-indent: .12em;
  }
  .about-story--intro {
    padding: 70px 0 78px;
  }
  .about-story--reverse,
  .about-story--logo {
    padding: 0 0 78px;
  }
  .about-story__inner,
  .about-story--reverse .about-story__inner,
  .about-story--logo .about-story__inner {
    gap: 34px;
  }
  .about-story__text,
  .about-rest__text,
  .about-brand-lead__text {
    font-size: 13px;
    line-height: 2.1;
    letter-spacing: .04em;
  }
  .about-story__text p + p,
  .about-rest__text p + p,
  .about-brand-lead__text p + p {
    margin-top: .9em;
  }
  .about-rest__inner {
    padding: 80px 22px;
  }
  .about-story__mark {
    width: min(340px, 82vw);
  }
  .about-brand-lead {
    min-height: 680px;
  }
  .about-brand-lead__inner {
    padding: 90px 22px;
  }
}

/* ============================================================
   Loading（参考: fuwario2 のローダー）
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #d8d1c4;
  color: #f8f4ea;
  opacity: 1;
  transition: opacity 640ms ease, visibility 640ms ease;
  overscroll-behavior: none;
  touch-action: none;
}
.loader-bg,
.loader-shade { position: absolute; inset: 0; pointer-events: none; }
.loader-bg { overflow: hidden; }
.loader-photo {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(1);
  backface-visibility: hidden;
  will-change: opacity, transform;
}
.loader-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.loader-photo-a { opacity: 1; animation: loaderPhotoA 3600ms cubic-bezier(.4, 0, .2, 1) both; }
.loader-photo-b { animation: loaderPhotoB 3600ms cubic-bezier(.4, 0, .2, 1) both; }
.loader-shade {
  background: transparent;
}
.loader.is-hidden { visibility: hidden; opacity: 0; pointer-events: none; }
.loader-logo {
  position: absolute;
  top: 38%;
  left: 50%;
  z-index: 1;
  display: block;
  width: clamp(250px, 19vw, 320px);
  max-height: 34vh;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(28, 20, 14, .16));
  transform: translate3d(-50%, -50%, 0);
  animation: logoEnter 900ms cubic-bezier(.22, 1, .36, 1) both;
  will-change: opacity, transform;
}
.loader-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 2px;
  overflow: hidden;
  background: rgba(253, 252, 249, .18);
}
.loader-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(253, 252, 249, .92);
  transform: scaleX(0);
  transform-origin: left center;
  animation: loaderProgress 3600ms cubic-bezier(.4, 0, .2, 1) forwards;
}
@keyframes loaderPhotoA {
  0%, 42%   { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
  62%, 100% { opacity: 0; transform: translate3d(0, 0, 0) scale(1.006); }
}
@keyframes loaderPhotoB {
  0%, 42%   { opacity: 0; transform: translate3d(0, 0, 0) scale(1.006); }
  62%, 100% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes logoEnter {
  from { opacity: 0; transform: translate3d(-50%, calc(-50% + 8px), 0) scale(.985); }
  to   { opacity: 1; transform: translate3d(-50%, -50%, 0) scale(1); }
}
@keyframes loaderProgress {
  to { transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) {
  .loader-photo, .loader-logo, .loader-progress span { animation: none; }
  .loader-photo-b { opacity: 0; }
  .loader-progress span { transform: scaleX(1); }
}

@media (max-width: 600px) {
  .header__inner {
    height: 60px;
    padding: 0 28px;
  }
  .header__logo-img {
    width: 122px;
  }
  .header__toggle {
    width: 34px;
    height: 34px;
    margin-left: 16px;
  }
  .header__toggle span {
    width: 31px;
  }
  .header.is-open .gnav::after {
    left: clamp(-32px, calc(-11vw + 20px), -14px);
    top: clamp(150px, 19.5vh, 176px);
    width: min(82vw, 336px);
  }
  .hero__bg img {
    object-position: 52% center;
  }
  .hero__copy {
    top: 31.8%;
    padding: 0 18px;
  }
  .hero__title {
    font-size: clamp(18px, 5.1vw, 20px);
    letter-spacing: .08em;
    text-indent: .08em;
  }
  .hero__lead {
    margin-top: 12px;
    font-size: clamp(12.5px, 3.55vw, 14px);
    letter-spacing: .1em;
    text-indent: .1em;
    line-height: 2.35;
    white-space: normal;
  }
  .hero__lead br:nth-of-type(2) {
    display: none;
  }
  .hero__store {
    width: min(190px, 49vw);
    height: 40px;
    margin-top: 22px;
    letter-spacing: .18em;
  }
  .loader-photo img {
    object-position: center center;
  }
  .loader-shade {
    background: transparent;
  }
  .loader-logo {
    display: none;
  }
}

/* Header drawer open-state guard */
.header.is-open {
  background-color: transparent;
  -webkit-backdrop-filter: blur(2px) saturate(1);
  backdrop-filter: blur(2px) saturate(1);
  box-shadow: 0 1px 10px rgba(110, 95, 84, .08);
}
.header.is-scrolled.is-open,
.header.is-past-hero.is-open {
  background-color: rgba(255, 255, 255, .30);
}
.header.is-open .header__inner {
  position: relative;
  z-index: 130;
  background-color: transparent;
}
.header.is-open .gnav {
  background-color: var(--color-bg);
}
.header.is-open .header__logo-img--white {
  opacity: 0;
}
.header.is-open .header__logo-img--brown {
  opacity: 1;
}
.header.is-open .header__toggle {
  display: flex;
  position: relative;
  top: auto;
  right: auto;
  transform: none;
  width: 44px;
  height: 44px;
  margin-left: 24px;
  z-index: 140;
}
.header.is-open .header__toggle span {
  position: static;
  width: 30px;
  height: 1px;
  margin: 0 auto;
  background: var(--color-heading);
  box-shadow: none;
}
.header.is-open .header__toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header.is-open .header__toggle span:nth-child(2) {
  opacity: 0;
}
.header.is-open .header__toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media (min-width: 1025px) {
  .header.is-open .header__inner {
    max-width: 1780px;
    height: 72px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .header.is-open .header__logo-img {
    width: 178px;
  }
  .header.is-open .header__toggle {
    position: absolute;
    top: 50%;
    right: 40px;
    margin-left: 0;
    transform: translate(0, -50%);
    transition: opacity .24s ease;
  }
}

@media (max-width: 1024px) {
  .header.is-open .header__inner {
    padding: 9px 20px;
  }
  .header.is-open {
    background-color: rgba(255, 255, 255, .30);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .header.is-open,
  .header.is-closing {
    height: auto;
    background-color: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
  }
  .header.is-open::before,
  .header.is-drawer-active::before,
  .header.is-closing::before {
    opacity: 0;
    transition: none;
  }
  .header.is-open .gnav,
  .header.is-drawer-active .gnav,
  .header.is-closing .gnav {
    position: fixed;
    inset: 0;
    width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
  }
  .header.is-open .header__logo-img {
    width: 168px;
  }
  .header.is-closing .header__toggle span:nth-child(1),
  .header.is-closing .header__toggle span:nth-child(3) {
    transform: none;
  }
  .header.is-closing .header__toggle span:nth-child(2) {
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .header.is-open .header__inner {
    height: 60px;
    padding: 0 28px;
  }
  .header.is-open .header__logo-img {
    width: 122px;
  }
  .header.is-open .header__toggle {
    width: 34px;
    height: 34px;
    margin-left: 16px;
  }
  .header.is-open .header__toggle span {
    width: 31px;
  }
}

/* News画像: ぼかしから静かに表示 */
.anim-ready .news-card__img[data-animate="fade-up"] {
  opacity: 0;
  filter: blur(6px);
  will-change: opacity, filter;
}
@media (prefers-reduced-motion: reduce) {
  .anim-ready .news-card__img[data-animate="fade-up"] {
    opacity: 1 !important;
    filter: none !important;
  }
}

@media (max-width: 1024px) {
  .header.is-open .btn-store {
    display: none;
    align-self: flex-end;
    width: auto;
    max-width: none;
    height: auto;
    min-height: 0;
    margin-top: clamp(28px, 4.5vh, 50px);
    padding: 0;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: .14em;
    color: var(--color-text);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-sizing: border-box;
  }
  .header.is-open .btn-store:hover {
    background: transparent;
    opacity: .7;
  }
}

/* ============================================================
   Brand Story page - rebuilt from About page structure
   ============================================================ */
.brand-story-hero .hero__bg img {
  object-position: center 88%;
}

.brand-story .about-page-copy {
  z-index: 3;
}
.brand-story .section__blank-line {
  height: 1em;
}
.brand-story-list {
  margin: 0;
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: .1em;
  color: var(--color-text-light);
}
.brand-story-list li {
  position: relative;
  padding-left: 1.1em;
}
.brand-story-list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.brand-story-intro {
  height: clamp(820px, 65.13vw, 1251px);
}
.brand-story-intro__bg,
.brand-story-soft__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.brand-story-intro__bg picture,
.brand-story-soft__bg picture,
.brand-story-intro__bg img,
.brand-story-soft__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-story-intro__bg {
  opacity: .72;
}
.brand-story-copy--intro {
  left: min(10.45vw, 200.7px);
  top: 50%;
  width: min(42vw, 512.3px);
  transform: translateY(-50%);
}
.brand-story-photo--intro-collage {
  right: 0;
  top: 50%;
  width: min(56vw, 1076px, calc(100% - min(10.45vw, 200.7px) - min(42vw, 512.3px) - 80px));
  aspect-ratio: 1014 / 964;
  transform: translateY(-50%);
  z-index: 2;
}

.brand-story-field {
  height: clamp(760px, 52.08vw, 1000px);
  color: var(--color-white);
  background: #6f675d;
}
.brand-story-field::before,
.brand-story-field::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.brand-story-field::before {
  z-index: 0;
  background: url("../assets/img/brand_page_field_bg.webp") center / cover no-repeat;
}
.brand-story-field::after {
  z-index: 1;
  background: rgba(58, 49, 43, .28);
}
.brand-story-photo--field {
  left: var(--pc-section-side);
  top: min(13.02vw, 250px);
  width: var(--pc-section-image-width);
  aspect-ratio: 720 / 528;
  z-index: 2;
}
.brand-story-photo--field img {
  object-position: center 66%;
}
.brand-story-copy--field {
  right: var(--pc-section-side);
  left: auto;
  top: calc(min(13.02vw, 250px) + min(13.75vw, 264px));
  width: var(--pc-section-text-width);
  transform: translateY(-50%);
}
.brand-story-copy--field h2,
.brand-story-copy--field p,
.brand-story-copy--field .brand-story-list,
.brand-story-copy--field .brand-story-list li {
  color: var(--color-white);
}

.brand-story-soft {
  height: clamp(620px, 52.08vw, 1000px);
  color: var(--color-white);
}
.brand-story-soft__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(81, 80, 68, .22);
}
.brand-story-copy--feature {
  right: var(--pc-section-side);
  left: auto;
  top: 50%;
  width: var(--pc-section-text-width);
  color: var(--color-white);
  transform: translateY(-50%);
}
.brand-story-copy--feature h2,
.brand-story-copy--feature p,
.brand-story-copy--feature .brand-story-list,
.brand-story-copy--feature .brand-story-list li {
  color: var(--color-white);
}
.brand-story-photo--feature {
  left: var(--pc-section-side);
  right: auto;
  top: min(12.5vw, 240px);
  width: var(--pc-section-image-width);
  aspect-ratio: 720 / 515;
}

.brand-story-relax {
  height: clamp(760px, 57.32vw, 1100px);
}
.brand-story-relax::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 50vw;
  height: 100%;
  background: url("../assets/img/about_page_shadow_bg.webp") center / cover no-repeat;
  opacity: .38;
  z-index: 0;
  pointer-events: none;
}
.brand-story-photo--relax {
  right: 0;
  left: auto;
  top: min(11.45vw, 220px);
  width: min(49.48vw, 950px);
  aspect-ratio: 950 / 680;
}
.brand-story-copy--relax {
  left: min(10.45vw, 200px);
  top: min(28.5vw, 547px);
  width: min(31vw, 595px);
  transform: translateY(-50%);
}

.brand-story-care {
  height: clamp(900px, 69vw, 1325px);
}
.brand-story-care::after {
  content: "";
  position: absolute;
  left: max(-11vw, -210px);
  bottom: clamp(-56px, -2.9vw, -28px);
  width: min(57.3vw, 1100px);
  aspect-ratio: 945 / 566;
  background: url("../assets/img/brand_deco_20260630.svg") center / contain no-repeat;
  z-index: 0;
  pointer-events: none;
}
@media (min-width: 1025px) {
  .brand-story-care::after {
    left: max(-4vw, -112px);
    bottom: clamp(42px, 3.2vw, 80px);
    width: min(46vw, 960px);
    aspect-ratio: 649.929 / 277.437;
    background-image: url("../assets/img/brand_deco_20260630.svg");
    transform: scaleX(-1);
    transform-origin: center;
  }
}
.brand-story-copy--care {
  left: min(10.45vw, 200.7px);
  top: min(30.9vw, 594px);
  width: min(42vw, 512.3px);
  transform: translateY(-50%);
}
.brand-story-copy--care .hl {
  background: rgba(253, 252, 249, .92);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: .06em 0;
  box-shadow: 0 0 14px 8px rgba(253, 252, 249, .92);
  border-radius: 6px;
}
.brand-story-photo--care-main {
  right: min(8.72vw, 167.5px);
  top: min(10.78vw, 207px);
  width: min(44.27vw, 850px);
  aspect-ratio: 850 / 670;
}
.brand-story-photo--care-sub {
  right: 0;
  bottom: min(8.6vw, 165px);
  width: min(31.25vw, 600px);
  aspect-ratio: 600 / 400;
  z-index: 3;
}

.brand-story-professional .about-page-brand__bg::after {
  background: rgba(40, 34, 30, .5);
}
.brand-story-professional {
  min-height: clamp(330px, 29.06vw, 558px);
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--color-white);
  text-align: center;
}
.brand-story-copy--professional {
  position: relative;
  inset: auto;
  width: min(620px, calc(100% - 48px));
  max-width: none;
  margin: 0 auto;
  padding: clamp(62px, 5.2vw, 100px) 0;
  text-align: center;
  transform: none;
}
.brand-story-copy--professional h2,
.brand-story-copy--professional p {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-white);
}
.brand-story-copy--professional h2 {
  font-size: clamp(20px, 1.35vw, 26px);
}
.brand-story-copy--professional h2 + p {
  width: auto;
  margin-top: 24px;
  font-size: 13px;
}
.brand-story-copy--professional .about-page-brand__button {
  width: min(28.7vw, 550px);
  height: var(--action-button-height);
  margin-top: clamp(22px, 2.5vw, 48px);
}

/* ============================================================
   PC content width alignment for visual story sections
   ============================================================ */
@media (min-width: 1025px) {
  .moments.moments--sequence,
  .about-page-soft,
  .brand-story-field,
  .brand-story-soft {
    --story-section-max: 1180px;
    --story-section-gap: 64px;
    --story-section-side: max(40px, calc((100vw - var(--story-section-max)) / 2));
    --story-section-width: min(calc(100vw - 80px), var(--story-section-max));
    --story-section-text-width: calc(var(--story-section-width) - var(--pc-section-image-width) - var(--story-section-gap) - 16px);
  }

  .moments.moments--sequence .section__label,
  .moments.moments--sequence .moments__body,
  .about-page-copy--soft {
    left: var(--story-section-side);
  }

  .moments.moments--sequence .moments__body,
  .about-page-copy--soft,
  .brand-story-copy--field,
  .brand-story-copy--feature {
    width: var(--story-section-text-width);
  }

  .moments.moments--sequence .moments__title,
  .moments.moments--sequence .moments__text,
  .about-page-copy--soft h2,
  .about-page-copy--soft p,
  .brand-story-copy--field h2,
  .brand-story-copy--field p,
  .brand-story-copy--field .brand-story-list,
  .brand-story-copy--feature h2,
  .brand-story-copy--feature p,
  .brand-story-copy--feature .brand-story-list {
    max-width: 100%;
  }

  .moments.moments--sequence .moments__img,
  .about-page-photo--sky {
    right: var(--story-section-side);
  }

  .brand-story-photo--field,
  .brand-story-photo--feature {
    left: var(--story-section-side);
  }

  .brand-story-copy--field,
  .brand-story-copy--feature {
    right: var(--story-section-side);
  }
}

@media (max-width: 1024px) {
  .brand-story .about-page-section {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding: 74px 22px;
  }
  .brand-story .about-page-copy,
  .brand-story .about-page-photo {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    transform: none;
  }
  .brand-story .about-page-copy {
    order: 1;
  }
  .brand-story-list {
    font-size: 14px;
    line-height: 2.2;
    letter-spacing: .08em;
  }
  .brand-story-intro {
    background: var(--color-bg);
  }
  .brand-story-photo--intro-collage {
    order: 0;
    width: min(100%, 620px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  .brand-story .brand-story-copy--intro {
    order: 2;
  }
  .brand-story-photo--field,
  .brand-story-photo--feature,
  .brand-story-photo--relax,
  .brand-story-photo--care-main {
    order: 0;
    width: min(82vw, 620px);
  }
  .brand-story-copy--field,
  .brand-story-copy--feature,
  .brand-story-copy--relax,
  .brand-story-copy--care {
    order: 1;
  }
  .brand-story-soft {
    min-height: 720px;
    justify-content: center;
    color: var(--color-white);
  }
  .brand-story-soft__bg {
    position: absolute;
  }
  .brand-story-soft .about-page-copy,
  .brand-story-soft .about-page-photo {
    z-index: 2;
  }
  .brand-story-relax::after {
    width: 100%;
    opacity: .28;
  }
  .brand-story-professional {
    min-height: 520px;
    display: grid;
    padding: 0 22px;
  }
  .brand-story-copy--professional {
    width: 100%;
    max-width: 620px;
    padding: 82px 0;
  }
  .brand-story-copy--professional .about-page-brand__button {
    width: min(320px, 100%);
    height: var(--action-button-height);
    font-size: var(--action-button-font-size);
  }
  .brand-story-photo--care-sub {
    order: 1;
    width: min(68vw, 420px);
    margin-top: -12px;
    margin-right: 0;
  }
  .brand-story .brand-story-copy--care {
    order: 2;
  }
}

@media (max-width: 600px) {
  .page-brand .about-page-hero__copy {
    top: calc(50% + 30px);
    padding: 0 22px;
    transform: translate(-50%, -50%);
  }
  .brand-story-hero .hero__bg img {
    object-position: center center;
  }
  .brand-story .about-page-section {
    gap: 30px;
    padding: 62px 22px;
  }
  .brand-story .about-page-copy h2,
  .brand-story .about-page-copy p {
    max-width: var(--sp-readable-w);
  }
  .brand-story .about-page-copy p {
    font-size: 12px;
  }
  .brand-story .about-page-copy br.sp-comma-br,
  .brand-story .about-page-copy br.sp-br {
    display: none;
  }
  .brand-story-list {
    max-width: var(--sp-readable-w);
    font-size: 12px;
    line-height: 2.08;
    letter-spacing: .075em;
  }
  .brand-story .section__blank-line {
    height: 1em;
  }
  .brand-story-photo--intro-collage {
    width: min(calc(100% + 22px), 444px);
    max-width: none;
    margin-left: 0;
    margin-right: auto;
    overflow: visible;
  }
  .brand-story-intro__bg {
    opacity: 1;
  }
  .brand-story-intro__bg::after {
    content: none;
  }
  .brand-story-intro__bg img {
    height: auto;
    object-fit: contain;
    object-position: top center;
    filter: none;
  }
  .brand-story-field {
    display: block;
    padding: 62px 0 86px;
  }
  .brand-story-photo--field {
    position: relative;
    inset: auto;
    width: 79.6vw;
    max-width: none;
    margin: 0 auto 0 0;
    z-index: 2;
  }
  .brand-story-copy--field {
    position: relative;
    inset: auto;
    width: auto;
    max-width: none;
    margin: 56px 22px 0;
    transform: none;
    z-index: 3;
  }
  .brand-story-photo--feature,
  .brand-story-photo--relax {
    width: 100%;
    max-width: none;
  }
  .brand-story-soft {
    padding: 72px 22px 82px;
  }
  .brand-story-soft__bg img {
    object-position: center center;
  }
  .brand-story-copy--feature {
    order: 1;
  }
  .brand-story-photo--feature {
    order: 0;
  }
  .brand-story-relax {
    padding: 68px 22px 78px;
  }
  .brand-story-photo--relax {
    order: 0;
  }
  .brand-story-copy--relax {
    order: 1;
  }
  .brand-story .brand-story-care {
    display: flex;
    gap: 18px;
    padding: 62px 22px 142px;
  }
  .brand-story-photo--care-main {
    position: relative;
    inset: auto;
    width: min(79.6vw, 326px);
    max-width: none;
    margin: 0 auto 0 -22px;
    z-index: 1;
  }
  .brand-story-photo--care-sub {
    position: relative;
    inset: auto;
    width: min(62.6vw, 244px);
    max-width: none;
    margin: -48px 11px 0 auto;
    z-index: 2;
  }
  .brand-story .brand-story-copy--care {
    position: relative;
    inset: auto;
    width: auto;
    max-width: none;
    margin: 0;
    transform: none;
    z-index: 3;
  }
  .brand-story-care::after {
    left: auto;
    right: -10vw;
    bottom: 6vw;
    width: 76vw;
    aspect-ratio: 649.929 / 277.437;
    background-image: url("../assets/img/brand_deco_20260630.svg");
    transform: none;
    transform-origin: center;
  }
  .brand-story-professional {
    min-height: 560px;
    padding: 0 22px;
  }
  .brand-story-professional .about-page-brand__bg {
    background: url("../assets/img/brand_page_professional_sp_20260629_scroll.webp") center center / cover no-repeat;
  }
  .brand-story-copy--professional {
    width: 100%;
    padding: 72px 0;
  }
  .brand-story-copy--professional h2,
  .brand-story-copy--professional p {
    max-width: none;
  }
  .brand-story-copy--professional h2 {
    font-size: clamp(16px, 4.4vw, 20px);
    line-height: 1.8;
    letter-spacing: .08em;
  }
  .brand-story-copy--professional h2 + p {
    font-size: 12px;
    line-height: 2.1;
    letter-spacing: .06em;
  }
  .brand-story-copy--professional .about-page-brand__button {
    display: flex;
    width: min(300px, 100%);
    margin-left: auto;
    margin-right: auto;
  }
  .brand-story .brand-story-photo--intro-collage {
    width: min(calc(100% + 22px), 444px);
    max-width: none;
    margin-left: 0;
    margin-right: auto;
  }
  .brand-story .brand-story-photo--field {
    width: 79.6vw;
    max-width: none;
    margin: 0 auto 0 0;
  }
  .brand-story .brand-story-photo--feature,
  .brand-story .brand-story-photo--relax {
    width: 100%;
    max-width: none;
  }
  .brand-story .brand-story-field,
  .brand-story .brand-story-soft {
    display: block;
    height: 190vh;
    height: 190svh;
    height: 190dvh;
    height: 190lvh;
    min-height: 1320px;
    padding: 0;
    overflow: visible;
    color: var(--color-white);
  }
  .brand-story-field::before,
  .brand-story-field::after,
  .brand-story-soft__bg {
    display: none;
  }
  .brand-story .brand-story-photo--field,
  .brand-story .brand-story-photo--feature {
    position: sticky;
    top: 0;
    width: 100vw;
    max-width: none;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    height: 100lvh;
    min-height: 620px;
    margin: 0 0 0 calc(50% - 50vw);
    aspect-ratio: auto;
    z-index: 1;
  }
  .brand-story-photo--field img,
  .brand-story-photo--feature img {
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
  }
  .brand-story-photo--field::after,
  .brand-story-photo--feature::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: var(--soft-overlay-opacity, 0);
    pointer-events: none;
    transition: opacity .18s linear;
  }
  .brand-story-photo--field::after {
    background: rgba(55, 48, 42, .56);
  }
  .brand-story-photo--feature::after {
    background: rgba(55, 48, 42, .86);
  }
  .brand-story-photo--field img {
    object-position: center center;
  }
  .brand-story-photo--feature img {
    object-fit: cover;
    object-position: center center;
    transform: none;
  }
  .brand-story .brand-story-copy--field,
  .brand-story .brand-story-copy--feature {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: auto;
    max-width: none;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    min-height: 100lvh;
    margin: -100vh 0 0;
    margin: -100svh 0 0;
    margin: -100dvh 0 0;
    margin: -100lvh 0 0;
    padding: 0 22px;
    color: var(--color-white);
    transform: none;
    z-index: 3;
  }
  .brand-story-copy--field h2,
  .brand-story-copy--field p,
  .brand-story-copy--field .brand-story-list,
  .brand-story-copy--field .brand-story-list li,
  .brand-story-copy--feature h2,
  .brand-story-copy--feature p,
  .brand-story-copy--feature .brand-story-list,
  .brand-story-copy--feature .brand-story-list li {
    color: var(--color-white);
  }
  .brand-story .brand-story-photo--care-main {
    width: min(79.6vw, 326px);
    max-width: none;
    margin: 0 auto 0 -22px;
  }
  .brand-story .brand-story-photo--care-sub {
    width: min(62.6vw, 244px);
    max-width: none;
    margin: -48px 11px 0 auto;
  }
  .brand-story .brand-story-copy--care {
    margin-top: 40px;
  }
  .brand-story-professional .about-page-brand__bg img {
    object-position: center center;
  }
}

/* ============================================================
   Top / About / Brand Story text size normalization
   ============================================================ */
.about__body .section__title,
.brand__body .section__title,
.moments__title,
.moments.moments--sequence .moments__title,
.items .item-card__name,
.about-detail .about-page-copy h2,
.brand-story .about-page-copy h2 {
  font-size: 24px;
}

.about__body .section__text,
.brand__body .section__text,
.moments__text,
.moments.moments--sequence .moments__text,
.items .item-card__text,
.qa .qa__a-inner p,
.news .news-card__title,
.about-detail .about-page-copy p,
.brand-story .about-page-copy p,
.brand-story .brand-story-list,
.brand-story .brand-story-list li {
  font-size: 15px;
}

@media (max-width: 600px) {
  .about__body .section__title,
  .brand__body .section__title,
  .moments__title,
  .moments.moments--sequence .moments__title,
  .items .item-card__name,
  .about-detail .about-page-copy h2,
  .brand-story .about-page-copy h2 {
    font-size: 15px;
  }

  .about__body .section__text,
  .brand__body .section__text,
  .moments__text,
  .moments.moments--sequence .moments__text,
  .items .item-card__text,
  .qa .qa__a-inner p,
  .news .news-card__title,
  .about-detail .about-page-copy p,
  .brand-story .about-page-copy p,
  .brand-story .brand-story-list,
  .brand-story .brand-story-list li {
    font-size: 12.5px;
  }
}

@media (max-width: 600px) {
  .about-page-copy--brand p,
  .brand-story-copy--professional p {
    text-align: center;
  }
}

/* ============================================================
   Top PC Items / Q&A / News text size normalization
   ============================================================ */
@media (min-width: 1025px) {
  .items .item-card__name,
  .qa .qa__q-text {
    font-size: 17px;
  }

  .items .item-card__text,
  .qa .qa__a-inner p,
  .news .news-card__title {
    font-size: 15px;
  }
}

/* ============================================================
   News page
   ============================================================ */
.news-detail {
  background: var(--color-bg);
}

.news-page-hero {
  height: clamp(360px, 31.25vw, 600px);
  min-height: 0;
}
.hero.news-page-hero .hero__bg img {
  object-position: center center;
}
.news-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(88, 74, 63, .1);
  pointer-events: none;
}
.news-page-hero__copy {
  top: 53%;
  z-index: 2;
}
.news-page-hero__title {
  font-family: var(--font-serif-en);
  font-size: clamp(18px, 1.82vw, 35px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .18em;
  text-indent: .18em;
  color: var(--color-white);
  text-shadow: 0 0 16px rgba(68, 50, 40, .24);
}

.news-page-list {
  position: relative;
  overflow: hidden;
  --news-page-card-min-height: 216px;
  --news-page-pagination-reserve: 132px;
  padding: clamp(112px, 10.42vw, 200px) 0 clamp(190px, 14vw, 268px);
  background: var(--color-bg);
}
.news-page-list__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 340px) minmax(0, 1fr);
  gap: clamp(72px, 5.2vw, 100px);
  max-width: 1516px;
  margin: 0 auto;
  padding: 0 clamp(40px, 5.3vw, 102px);
}
.news-page-category {
  position: sticky;
  top: calc(var(--header-h) + 44px);
  align-self: start;
}
.news-page-category__title {
  font-family: var(--font-serif-en);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .18em;
  color: var(--color-accent);
  margin-bottom: 58px;
}
.news-page-category__list {
  display: grid;
  gap: 40px;
}
.news-page-category__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: var(--action-button-height);
  min-height: 0;
  padding: 0 44px;
  border-radius: 999px;
  background: #f0edeb;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .12em;
  text-align: center;
  white-space: nowrap;
  transition: background .3s, color .3s, opacity .3s;
}
.news-page-category__button::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 50%;
  width: 22px;
  height: 19px;
  background: url("../assets/img/qa_category_check.svg") center / contain no-repeat;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity .3s;
}
.news-page-category__button:hover {
  opacity: .78;
}
.news-page-category__button.is-active {
  background: #bca298;
  color: var(--color-white);
}
.news-page-category__button.is-active::after {
  opacity: .82;
}
@media (max-width: 1024px) {
  .qa-page-category__select-wrap,
  .news-page-category__select-wrap {
    display: block;
  }
  .qa-page-category__list,
  .news-page-category__list {
    display: none;
  }
}
@media (min-width: 1025px) {
  .qa-page-category__button[data-qa-filter=""],
  .news-page-category__button[data-news-filter=""] {
    display: none;
  }
}
.news-page-list__title {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.news-page-list__body {
  min-height: calc((var(--news-page-min-items, 10) * var(--news-page-card-min-height)) + var(--news-page-pagination-reserve));
}
.news-page-items {
  margin: 0;
}
.news-page-card {
  position: relative;
}
.news-page-card[hidden] {
  display: none;
}
.news-page-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(188, 162, 152, .55);
  transform-origin: left center;
  transition: transform .9s cubic-bezier(.22, .61, .36, 1);
}
.anim-ready .news-page-card::after {
  transform: scaleX(0);
}
.anim-ready .news-page-card.is-drawn::after {
  transform: scaleX(1);
  color: #99837a;
}
.news-page-card a {
  display: grid;
  grid-template-columns: minmax(150px, 200px) minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 206px;
  padding: 34px 0;
  transition: opacity .3s;
}
.news-page-card a:hover {
  opacity: .78;
}
.news-page-card__img {
  aspect-ratio: 200 / 148;
  overflow: hidden;
  background: var(--color-white);
}
.news-page-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-page-card__date {
  display: block;
  margin-top: 16px;
  font-family: var(--font-serif-en);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: .2em;
  color: var(--color-accent);
}
.news-page-card__title {
  margin-top: 0;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: .16em;
  color: var(--color-accent);
}
.news-page-empty {
  margin-top: 34px;
  padding: 42px 0;
  border-top: 1px solid rgba(188, 162, 152, .55);
  border-bottom: 1px solid rgba(188, 162, 152, .55);
  color: var(--color-accent);
  font-size: 14px;
  line-height: 2;
  letter-spacing: .12em;
}
.news-page-empty[hidden] {
  display: none;
}
.news-page-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  margin-top: 72px;
  color: var(--color-accent);
  font-family: var(--font-serif-en);
  font-size: 19px;
  letter-spacing: .14em;
}
.news-page-pagination a {
  transition: opacity .3s;
    color: #D0C1BB;
}
.news-page-pagination a:hover {
  opacity: .68;
}
.news-page-pagination a[aria-current="page"] {
    color: #99837a;
}
.news-page-pagination__prev,
.news-page-pagination__next {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  overflow: hidden;
}
.news-page-pagination__prev span,
.news-page-pagination__next span {
  width: 20px;
  height: 12px;
  background: url("../assets/img/arrow-white.svg") center / contain no-repeat;
}
.news-page-pagination__prev span {
  transform: rotate(180deg);
}
.news-page-pagination__next:hover span,
.news-page-pagination__next:focus-visible span {
  /* animation: arrowThrough 1.55s cubic-bezier(.7, 0, .25, 1); */
}
.news-page-pagination__prev:hover span,
.news-page-pagination__prev:focus-visible span {
  /* animation: arrowThroughPrev 1.55s cubic-bezier(.7, 0, .25, 1); */
}
@keyframes arrowThroughPrev {
  0%   { transform: rotate(180deg) translateX(0);     opacity: 1; }
  40%  { transform: rotate(180deg) translateX(26px);  opacity: 0; }
  41%  { transform: rotate(180deg) translateX(-26px); opacity: 0; }
  100% { transform: rotate(180deg) translateX(0);     opacity: 1; }
}
.page-news .contact {
  z-index: 2;
}
.page-news .footer {
  padding-top: min(10.89vw, 209px);
  padding-bottom: 218px;
}

.anim-ready .news-page-card__img[data-animate="fade-up"] {
  opacity: 0;
  filter: blur(6px);
  will-change: opacity, filter;
}

@media (min-width: 1025px) {
  .qa-page-faq__inner,
  .news-page-list__inner {
    align-items: start;
  }
  .qa-page-faq__inner {
    min-height: clamp(560px, 35.5vw, 680px);
  }
  .news-page-list__inner {
    min-height: clamp(560px, 35.5vw, 680px);
  }
  .news-page-list__body {
    min-height: 0;
  }
  .qa-page-category,
  .news-page-category {
    position: absolute;
    top: 0;
    left: clamp(40px, 5.3vw, 102px);
    z-index: 3;
    height: max-content;
  }
  .qa-page-category {
    width: 360px;
  }
  .news-page-category {
    width: 340px;
  }
  .qa-page-faq__body,
  .news-page-list__body {
    grid-column: 2;
    min-width: 0;
  }
}

@media (max-width: 1024px) {
  .news-page-hero {
    height: 46vh;
    min-height: 360px;
  }
  .page-news .news-page-hero__copy {
    top: 61%;
  }
  .news-page-hero__title {
    font-size: clamp(20px, 5.4vw, 34px);
    letter-spacing: .14em;
    text-indent: .14em;
  }
  .news-page-list {
    --news-page-card-min-height: 148px;
    --news-page-pagination-reserve: 96px;
    padding: 86px 0 146px;
  }
  .news-page-list__inner {
    display: block;
    max-width: 720px;
    padding: 0 22px;
  }
  .news-page-list__body {
    min-height: 0;
  }
  .news-page-category {
    position: static;
    margin-bottom: 52px;
  }
  .news-page-category__title {
    margin-bottom: 24px;
    font-size: 15px;
  }
  .news-page-category__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
  .news-page-category__button {
    width: 100%;
    height: var(--action-button-height);
    min-height: 0;
    padding: 0 36px;
    font-size: 12px;
    letter-spacing: .05em;
  }
  .news-page-category__button::after {
    right: 18px;
    width: 17px;
    height: 15px;
  }
  .news-page-card a {
    grid-template-columns: minmax(116px, 32%) minmax(0, 1fr);
    gap: 20px;
    min-height: 0;
    padding: 26px 0;
  }
  .news-page-card__date {
    margin-top: 10px;
    font-size: 12px;
  }
  .news-page-card__title {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: .08em;
  }
  .news-page-pagination {
    margin-top: 48px;
    gap: 22px;
    font-size: 16px;
  }
  .news-page-pagination__prev,
  .news-page-pagination__next {
    width: 48px;
    height: 48px;
  }
  .page-news .footer {
    padding-bottom: 64px;
  }
}

@media (max-width: 600px) {
  .news-page-hero {
    height: clamp(210px, 28vh, 240px);
    min-height: 0;
  }
  .hero.news-page-hero .hero__bg img {
    object-position: 64% center;
  }
  .page-news .news-page-hero__copy {
    top: calc(50% + 30px);
    padding: 0 22px;
    transform: translate(-50%, -50%);
  }
  .news-page-hero__title {
    font-size: clamp(17px, 5.2vw, 22px);
    letter-spacing: .12em;
    text-indent: .12em;
  }
  .news-page-list {
    --news-page-card-min-height: 136px;
    --news-page-pagination-reserve: 96px;
    padding: 62px 0 108px;
  }
  .news-page-category {
    margin-bottom: 42px;
  }
  .news-page-category__title {
    display: none;
    margin-bottom: 20px;
    font-size: 14px;
  }
  .news-page-category__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .news-page-category__button {
    height: var(--action-button-height);
    min-height: 0;
    padding: 0 30px 0 14px;
    font-size: 11.5px;
    letter-spacing: .04em;
  }
  .news-page-category__button::after {
    right: 12px;
    width: 14px;
    height: 13px;
  }
  .news-page-card a {
    grid-template-columns: minmax(96px, 34%) minmax(0, 1fr);
    gap: 16px;
    padding: 22px 0;
  }
  .news-page-card__title {
    font-size: 12.5px;
    line-height: 1.65;
    letter-spacing: .045em;
  }
  .news-page-empty {
    padding: 30px 0;
    font-size: 12.5px;
    letter-spacing: .06em;
  }
  .news-page-pagination {
    justify-content: center;
    gap: 18px;
    margin-top: 40px;
    font-size: 14px;
  }
  .news-page-pagination__prev,
  .news-page-pagination__next {
    width: 42px;
    height: 42px;
  }
}

/* ============================================================
   News article page
   ============================================================ */
.page-news-article {
  background: var(--color-bg);
}

.page-news-article .header {
  background: rgba(248, 247, 244, .94);
  -webkit-backdrop-filter: blur(2px) saturate(1);
  backdrop-filter: blur(2px) saturate(1);
  box-shadow: 0 1px 10px rgba(110, 95, 84, .03);
}
.page-news-article .header::after {
  background: rgba(141, 116, 104, .22);
}
.page-news-article .header__logo-img--white {
  opacity: 0;
}
.page-news-article .header__logo-img--brown {
  opacity: 1;
}
.page-news-article .gnav__list a {
  color: var(--color-text);
}
.page-news-article .btn-store {
  color: var(--color-heading);
}
.page-news-article .btn-store:hover {
  background: rgba(141, 116, 104, .08);
}
.page-news-article .header__toggle span {
  background: var(--color-heading);
  box-shadow: none;
}
.page-news-article .header.is-open .gnav {
  background: var(--color-bg);
}

@media (min-width: 1025px) {
  .page-news-article .header.is-open .gnav {
    background: var(--color-bg);
  }
}

.news-article {
  background: var(--color-bg);
}
.news-article-main {
  padding: calc(var(--header-h) + clamp(110px, 8.85vw, 170px)) 0 clamp(150px, 12.4vw, 238px);
}
.news-article-main__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
.news-article-header {
  color: var(--color-heading);
}
.news-article-title {
  font-size: clamp(26px, 2.08vw, 40px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: .2em;
  overflow-wrap: anywhere;
  word-break: normal;
}
.news-article-date {
  display: block;
  margin-top: 13px;
  font-family: var(--font-serif-en);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: .2em;
  color: var(--color-accent);
}
.news-article-visual {
  aspect-ratio: 1220 / 884;
  margin-top: clamp(56px, 4.43vw, 85px);
  overflow: hidden;
  background: var(--color-white);
}
.news-article-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-article-body {
  margin-top: clamp(66px, 5.1vw, 98px);
  color: var(--color-heading);
  font-size: 15px;
  line-height: 3.2;
  letter-spacing: .2em;
  overflow-wrap: anywhere;
  word-break: normal;
}
.news-article-body p {
  max-width: 100%;
}
.news-article-body p + p {
  margin-top: .55em;
}
.news-article-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 240px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(34px, 4.4vw, 84px);
  margin-top: clamp(88px, 8.33vw, 160px);
  padding-top: clamp(72px, 5.9vw, 114px);
  border-top: 1px solid rgba(177, 152, 141, .5);
}
.news-article-nav-card {
  display: grid;
  width: min(264px, 100%);
  color: var(--color-accent);
  transition: opacity .3s;
}
.news-article-nav-card:hover {
  opacity: .72;
}
.news-article-nav-card--prev {
  justify-self: start;
}
.news-article-nav-card--next {
  justify-self: end;
}
.news-article-nav-card__image {
  display: block;
  aspect-ratio: 264 / 191;
  overflow: hidden;
  background: var(--color-white);
}
.news-article-nav-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-article-nav-card__title {
  display: block;
  margin-top: 22px;
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: .14em;
}
.news-article-nav-card__date {
  display: block;
  margin-top: 16px;
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: .14em;
}
.news-article-nav-all {
  position: relative;
  display: inline-flex;
  justify-self: center;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 66px;
  color: var(--color-heading);
  font-family: var(--font-serif-en);
  font-size: 25px;
  line-height: 1.4;
  letter-spacing: .2em;
  text-align: center;
  transition: opacity .3s;
}
.news-article-nav-all:hover {
  opacity: .68;
}
.news-article-nav-all span {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}
.news-article-nav-all span::after {
  content: "";
  position: absolute;
  left: 0;
  right: .2em;
  bottom: 0;
  height: 1px;
  background: currentColor;
}
.news-article-nav-all::before,
.news-article-nav-all::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 27px;
  height: 12px;
  background: url("../assets/img/arrow-brown.svg") center / contain no-repeat;
  transform: translateY(-50%);
  opacity: .9;
}
.news-article-nav-all::before {
  left: clamp(-190px, -10vw, -88px);
  transform: translateY(-50%) scaleX(-1);
}
.news-article-nav-all::after {
  right: clamp(-190px, -10vw, -88px);
}
.news-article-nav--no-prev .news-article-nav-all::before,
.news-article-nav--no-next .news-article-nav-all::after {
  display: none;
}

.news-article-instagram {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(430px, 31.25vw, 600px);
  overflow: hidden;
  color: var(--color-white);
  text-align: center;
}
.news-article-instagram::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(82, 65, 52, .18);
  pointer-events: none;
}
.news-article-instagram__bg,
.news-article-instagram__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.news-article-instagram__bg img {
  object-fit: cover;
  object-position: center center;
}
.news-article-instagram__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
  padding: 0 40px;
}
.news-article-instagram__title {
  font-family: var(--font-serif-en);
  font-size: clamp(28px, 1.82vw, 35px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: .1em;
}
.news-article-instagram__text {
  margin-top: 56px;
  font-size: 15px;
  line-height: 2;
  letter-spacing: .2em;
}
.news-article-instagram__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  width: min(450px, 100%);
  height: var(--action-button-height);
  margin-top: 34px;
  border-radius: 999px;
  background: var(--color-bg);
  color: var(--color-accent);
  font-family: var(--font-serif-en);
  font-size: var(--action-button-font-size);
  line-height: 1.4;
  letter-spacing: .22em;
  transition: opacity .3s, transform .3s;
}
.news-article-instagram__button:hover {
  opacity: .9;
  transform: translateY(-1px);
}
.news-article-instagram__button i {
  display: inline-block;
  position: relative;
  left: -1px;
  width: 20px;
  height: 12px;
  flex: 0 0 20px;
  background: url("../assets/img/arrow-brown.svg") center / contain no-repeat;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
  overflow: hidden;
}
.news-article-instagram__button:hover i,
.news-article-instagram__button:focus-visible i {
  /* animation: arrowThrough 1.55s cubic-bezier(.7, 0, .25, 1); */
}

.page-news-article .footer {
  padding-top: clamp(136px, 8.85vw, 170px);
}

@media (max-width: 1024px) {
  .page-news-article .header__toggle {
    display: flex;
  }
  .news-article-main {
    padding: calc(var(--header-h) + 84px) 0 130px;
  }
  .news-article-main__inner {
    max-width: 760px;
    padding: 0 22px;
  }
  .news-article-title {
    font-size: clamp(22px, 4.1vw, 32px);
    line-height: 1.8;
    letter-spacing: .13em;
  }
  .news-article-visual {
    margin-top: 52px;
  }
  .news-article-body {
    font-size: 14px;
    line-height: 2.75;
    letter-spacing: .11em;
  }
  .news-article-nav {
    grid-template-columns: 1fr;
    gap: 44px;
    margin-top: 72px;
    padding-top: 56px;
  }
  .news-article-nav-all {
    order: -1;
    margin-top: 0;
    font-size: 21px;
  }
  .news-article-nav-all::before,
  .news-article-nav-all::after {
    display: none;
  }
  .news-article-nav-card,
  .news-article-nav-card--prev,
  .news-article-nav-card--next {
    justify-self: center;
    width: min(320px, 100%);
  }
  .news-article-instagram {
    min-height: 420px;
  }
  .news-article-instagram__text {
    margin-top: 36px;
    font-size: 14px;
    letter-spacing: .12em;
  }
  .news-article-instagram__button {
    margin-top: 30px;
  }
}

@media (max-width: 600px) {
  .page-news-article .header {
    background: rgba(248, 247, 244, .96);
  }
  .news-article-main {
    padding: calc(var(--header-h) + 58px) 0 104px;
  }
  .news-article-title {
    font-size: clamp(19px, 5vw, 24px);
    line-height: 1.9;
    letter-spacing: .08em;
    word-break: break-all;
  }
  .news-article-date {
    margin-top: 8px;
    font-size: 12px;
  }
  .news-article-visual {
    aspect-ratio: 100 / 86;
    margin-top: 38px;
  }
  .news-article-body {
    margin-top: 48px;
    font-size: 13px;
    line-height: 2.45;
    letter-spacing: .05em;
    line-break: anywhere;
    word-break: break-all;
  }
  .news-article-body p + p {
    margin-top: .9em;
  }
  .news-article-nav {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr);
    gap: 0 22px;
    align-items: start;
    margin-top: 56px;
    padding-top: 58px;
  }
  .news-article-nav::before,
  .news-article-nav::after {
    content: "";
    position: absolute;
    top: 104px;
    width: 20px;
    height: 12px;
    background: url("../assets/img/arrow-brown.svg") center / contain no-repeat;
    opacity: .9;
  }
  .news-article-nav::before {
    left: 50%;
    transform: translate(-35px, -50%) scaleX(-1);
  }
  .news-article-nav::after {
    left: 50%;
    transform: translate(9px, -50%);
  }
  .news-article-nav--no-prev::before,
  .news-article-nav--no-next::after {
    display: none;
  }
  .news-article-nav-all {
    order: 0;
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 72px;
    font-size: 22px;
  }
  .news-article-nav-card,
  .news-article-nav-card--prev,
  .news-article-nav-card--next {
    width: 100%;
  }
  .news-article-nav-card--prev {
    grid-column: 1;
    grid-row: 1;
  }
  .news-article-nav-card--next {
    grid-column: 3;
    grid-row: 1;
  }
  .news-article-nav-card__image {
    aspect-ratio: 304 / 220;
  }
  .news-article-nav-card__title {
    display: block;
    margin-top: 18px;
    font-size: 10.5px;
    line-height: 1.75;
    letter-spacing: .04em;
    overflow-wrap: anywhere;
  }
  .news-article-nav-card__date {
    margin-top: 10px;
    font-size: 10px;
    line-height: 1.8;
    letter-spacing: .08em;
  }
  .news-article-instagram {
    min-height: 360px;
  }
  .news-article-instagram__bg img {
    object-position: 64% center;
  }
  .news-article-instagram__inner {
    padding: 0 22px;
  }
  .news-article-instagram__title {
    font-size: 24px;
  }
  .news-article-instagram__text {
    margin-top: 28px;
    font-size: 13px;
    line-height: 2;
    letter-spacing: .06em;
  }
  .news-article-instagram__button {
    gap: 24px;
    width: min(286px, 73.4vw);
    height: var(--action-button-height);
    padding: 0 28px;
    font-size: var(--action-button-font-size);
    letter-spacing: .22em;
  }
  .page-news-article .footer {
    padding-top: 72px;
    padding-bottom: 68px;
  }
}

/* ============================================================
   Shared subpage hero
   ============================================================ */
.page-about .about-page-hero,
.page-brand .about-page-hero,
.page-privacy .about-page-hero,
.page-legal .about-page-hero,
.page-qa .about-page-hero,
.page-news .about-page-hero,
.page-thanks .about-page-hero {
  height: clamp(360px, 31.25vw, 600px);
  min-height: 0;
}
.page-about .about-page-hero::after,
.page-brand .about-page-hero::after,
.page-privacy .about-page-hero::after,
.page-legal .about-page-hero::after,
.page-qa .about-page-hero::after,
.page-news .about-page-hero::after,
.page-thanks .about-page-hero::after {
  background: rgba(116, 88, 67, .13);
}
.page-about .about-page-hero__copy,
.page-brand .about-page-hero__copy,
.page-privacy .about-page-hero__copy,
.page-legal .about-page-hero__copy,
.page-qa .about-page-hero__copy,
.page-news .about-page-hero__copy,
.page-thanks .about-page-hero__copy {
  top: 53%;
  z-index: 2;
}
.page-about .about-page-hero__title,
.page-brand .about-page-hero__title,
.page-privacy .about-page-hero__title,
.page-legal .about-page-hero__title,
.page-qa .about-page-hero__title,
.page-news .about-page-hero__title,
.page-thanks .about-page-hero__title {
  font-family: var(--font-serif-en);
  font-size: clamp(18px, 1.82vw, 35px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .18em;
  text-indent: .18em;
  color: var(--color-white);
  text-shadow: 0 0 16px rgba(68, 50, 40, .24);
}

@media (max-width: 1024px) {
  .page-about .about-page-hero,
  .page-brand .about-page-hero,
  .page-privacy .about-page-hero,
  .page-legal .about-page-hero,
  .page-qa .about-page-hero,
  .page-news .about-page-hero,
  .page-thanks .about-page-hero {
    height: 46vh;
    min-height: 360px;
  }
  .page-about .about-page-hero__copy,
  .page-brand .about-page-hero__copy,
  .page-privacy .about-page-hero__copy,
  .page-legal .about-page-hero__copy,
  .page-qa .about-page-hero__copy,
  .page-news .about-page-hero__copy,
  .page-thanks .about-page-hero__copy {
    top: 61%;
  }
  .page-about .about-page-hero__title,
  .page-brand .about-page-hero__title,
  .page-privacy .about-page-hero__title,
  .page-legal .about-page-hero__title,
  .page-qa .about-page-hero__title,
  .page-news .about-page-hero__title,
  .page-thanks .about-page-hero__title {
    font-size: clamp(20px, 5.4vw, 34px);
    letter-spacing: .14em;
    text-indent: .14em;
  }
}

@media (max-width: 600px) {
  .page-about .about-page-hero,
  .page-brand .about-page-hero,
  .page-privacy .about-page-hero,
  .page-legal .about-page-hero,
  .page-qa .about-page-hero,
  .page-news .about-page-hero,
  .page-thanks .about-page-hero {
    height: clamp(210px, 28vh, 240px);
    min-height: 0;
  }
  .page-about .about-page-hero__copy,
  .page-brand .about-page-hero__copy,
  .page-privacy .about-page-hero__copy,
  .page-legal .about-page-hero__copy,
  .page-qa .about-page-hero__copy,
  .page-news .about-page-hero__copy,
  .page-thanks .about-page-hero__copy {
    top: calc(50% + 30px);
    padding: 0 22px;
    transform: translate(-50%, -50%);
  }
  .page-about .about-page-hero__title,
  .page-brand .about-page-hero__title,
  .page-privacy .about-page-hero__title,
  .page-legal .about-page-hero__title,
  .page-qa .about-page-hero__title,
  .page-news .about-page-hero__title,
  .page-thanks .about-page-hero__title {
    font-size: clamp(17px, 5.2vw, 22px);
    line-height: 1.7;
    letter-spacing: .12em;
    text-indent: .12em;
  }
}

/* ============================================================
   Shared subpage footer spacing
   ============================================================ */
.page-about .footer,
.page-brand .footer,
.page-privacy .footer,
.page-legal .footer,
.page-qa .footer,
.page-news .footer,
.page-news-article .footer,
.page-thanks .footer {
  padding-bottom: 80px;
}

/* ============================================================
   Button typography
   ============================================================ */
.btn-store,
.header.is-open .btn-store,
.btn-contact,
.line-modal__button,
.about-page-brand__button,
.qa-page-category__select,
.news-page-category__select,
.qa-page-category__button,
.news-page-category__button,
.contact-form__submit,
.contact-form input[type="submit"],
.contact-form .wpcf7-submit,
.contact-page-qa__button,
.contact-page-qa__button span,
.thanks-page-message__button,
.news-page-pagination a,
.news-article-instagram__button {
  font-weight: 700;
}

.btn-more .btn-more__label {
  font-weight: bold;
}

@media (min-width: 1025px) {
  .header.is-open .btn-store {
    font-weight: 400;
  }
}

@media (max-width: 1024px) {
  .page-about .footer,
  .page-brand .footer,
  .page-privacy .footer,
  .page-legal .footer,
  .page-qa .footer,
  .page-news .footer,
  .page-news-article .footer,
  .page-thanks .footer {
    padding-bottom: 64px;
  }
}

/* ============================================================
   Contact / News article requested text color
   ============================================================ */
.contact-page-form__lead,
.contact-form__field,
.contact-form__field legend,
.contact-form__field > span,
.news-article-title,
.news-article-date,
.news-article-body,
.news-article-body p,
.news-article-body a,
.news-article-nav-all,
.news-article-nav-all span {
  color: #85726a;
}

.news-article-nav-all::before,
.news-article-nav-all::after,
.news-article-nav::before,
.news-article-nav::after {
  background-color: #85726a;
  background-image: none;
  -webkit-mask: url("../assets/img/arrow-brown.svg") center / contain no-repeat;
  mask: url("../assets/img/arrow-brown.svg") center / contain no-repeat;
}


    .items .item-card__text{
    }

    .footer__nav .sp-only{
      display: none;
    }
    .pc-only{
      display: block;
    }
    .qa .qa__a-inner p{
      font-size: 14px;
    }
    @media (max-width: 600px) {
    .footer__nav .sp-only{
      display: block;
    }
    .pc-only{
     display: none; 
    }
    .qa .qa__a-inner p {
      font-size: 12.5px;
    }

  }
