@charset "utf-8";

/* =========================
   01. Base
========================= */
:root {
  --font-sans: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Yu Gothic", "Noto Sans JP", sans-serif;
  --font-serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;

  --color-bg: #f5f4f2;
  --color-white: #fff;
  --color-text: #202020;
  --color-muted: #666;
  --color-border: rgba(0, 0, 0, .08);

  --color-red: #b8122b;
  --color-red-dark: #941126;
  --color-beige: #c8ab82;
  --color-beige-light: #eee7dc;
  --color-dark: #282828;

  --color-accent: #8a6a2f;
  --color-gold: #8a6a2f;

  --fz-xs: clamp(1.1rem, 2.7vw, 1.3rem);
  --fz-s: clamp(1.2rem, 3vw, 1.4rem);
  --fz-m: clamp(1.4rem, 3.6vw, 1.6rem);
  --fz-l: clamp(1.8rem, 5vw, 2.4rem);
  --fz-xl: clamp(2.4rem, 7vw, 3.6rem);
  --fz-xxl: clamp(3rem, 9vw, 4.6rem);

  --lh-base: 1.8;
  --lh-heading: 1.45;

  --section-y: clamp(64px, 16vw, 112px);
  --section-x: clamp(20px, 6vw, 36px);

  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;

  --shadow-card: 0 18px 45px rgba(0, 0, 0, .08);
}

html,
body {
  margin: 0;
  padding: 0;
  font-size: 62.5%;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-sans);
  -webkit-text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

p {
  margin: 0;
  font-size: var(--fz-m);
  line-height: var(--lh-base);
  color: var(--color-muted);
  letter-spacing: .04em;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-text);
  line-height: var(--lh-heading);
  letter-spacing: .05em;
}

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 600;
}

h1 {
  font-size: var(--fz-xxl);
}

h2 {
  font-size: var(--fz-xl);
}

h3 {
  font-size: var(--fz-l);
}

/* =========================
   02. Header / Top Menu
========================= */
.site-header {
  background: var(--color-bg);
}

#top-menu {
  height: 60px;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: -3px;
  width: 100%;
  font-family: var(--font-sans);
}

#top-menu .top-menu-tel,
#top-menu .top-menu-contact,
#top-menu .top-menu-pc {
  text-decoration: none;
  float: left;
  width: 66px;
  height: 60px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-right: none;
}

#top-menu .top-menu-tel,
#top-menu .top-menu-contact {
  transform: translateY(3px);
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

#top-menu .top-menu-tel:focus,
#top-menu .top-menu-contact:focus,
#top-menu .top-menu-tel:focus-visible,
#top-menu .top-menu-contact:focus-visible {
  outline: none;
  box-shadow: none;
}

#top-menu .top-menu-tel img,
#top-menu .top-menu-contact img,
#top-menu .top-menu-pc img {
  display: block;
  width: 45%;
}

#top-menu .top-menu-tel span,
#top-menu .top-menu-contact span,
#top-menu .top-menu-pc span {
  line-height: 1;
  margin-top: 6px;
  font-size: var(--fz-xs);
  color: var(--color-text);
}

#top-menu .menu-btn {
  float: right;
  width: 56px;
  height: 60px;
  position: relative;
  border: none;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-left: none;
  padding: 0;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  color: var(--color-text);
}

#top-menu .menu-btn .menu-btn-inner,
#top-menu .menu-btn .menu-btn-inner span {
  display: inline-block;
  box-sizing: border-box;
}

#top-menu .menu-btn .menu-btn-inner {
  width: 25px;
  height: 22px;
  position: absolute;
  left: 50%;
  top: 15px;
  transform: translateX(-50%);
}

#top-menu .menu-btn .menu-btn-inner span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 2px;
  transition:
    transform .3s ease,
    opacity .3s ease;
}

#top-menu .menu-btn .menu-btn-inner span:nth-of-type(1) {
  top: 0;
}

#top-menu .menu-btn .menu-btn-inner span:nth-of-type(2) {
  top: 10px;
}

#top-menu .menu-btn .menu-btn-inner span:nth-of-type(3) {
  bottom: 0;
}

#top-menu .menu-btn .menu-btn-inner.active span:nth-of-type(1),
#top-menu .menu-btn[aria-expanded="true"] .menu-btn-inner span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}

#top-menu .menu-btn .menu-btn-inner.active span:nth-of-type(2),
#top-menu .menu-btn[aria-expanded="true"] .menu-btn-inner span:nth-of-type(2) {
  opacity: 0;
}

#top-menu .menu-btn .menu-btn-inner.active span:nth-of-type(3),
#top-menu .menu-btn[aria-expanded="true"] .menu-btn-inner span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}

#top-menu .menu-btn > span {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: block;
  line-height: 1;
  width: 100%;
  text-align: center;
  font-size: var(--fz-xs);
}

#top-menu:has(.menu-btn[aria-expanded="true"]) .top-menu-tel span,
#top-menu:has(.menu-btn[aria-expanded="true"]) .top-menu-contact span,
#top-menu:has(.menu-btn[aria-expanded="true"]) .menu-btn > span {
  color: #fff;
}

#top-menu:has(.menu-btn[aria-expanded="true"]) .menu-btn-inner span {
  background-color: #fff;
}

#top-menu:has(.menu-btn[aria-expanded="true"]) .top-menu-tel img,
#top-menu:has(.menu-btn[aria-expanded="true"]) .top-menu-contact img {
  filter: brightness(0) invert(1);
}

#top-menu .menu-btn[aria-expanded="true"] {
  color: #fff;
}

#top-menu .menu-btn[aria-expanded="true"] .menu-btn-inner span {
  background-color: #fff;
}

#top-menu .menu-btn[aria-expanded="true"] > span {
  color: #fff;
}



/* =========================
   SP Menu
========================= */

.sp-menu {
  position: fixed;
  inset: 0;
  z-index: 850;
  display: none;
  overflow-y: auto;
  padding:
    clamp(70px, 18vw, 92px)
    var(--section-x)
    calc(clamp(82px, 22vw, 112px) + env(safe-area-inset-bottom));
  background:
    linear-gradient(
      180deg,
      rgba(18, 16, 14, .82) 0%,
      rgba(33, 28, 23, .78) 100%
    );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sp-menu.active {
  display: block;
}

.sp-menu__panel {
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 0;
}

.sp-menu__label {
  margin:
    0
    0
    clamp(34px, 9vw, 48px);
  color: #ea5532;
  font-family:
    "Helvetica Neue",
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  font-size: clamp(1.5rem, 4.2vw, 1.75rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .24em;
  text-align: center;
}

.sp-menu__links {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sp-menu__links--main {
  gap: clamp(24px, 6.8vw, 34px);
}

.sp-menu__links--sub {
  gap: clamp(22px, 6.2vw, 30px);
  margin-top: clamp(46px, 12vw, 62px);
  padding-top: 0;
}

.sp-menu__links li {
  margin: 0;
  padding: 0;
}

.sp-menu__links a {
  display: block;
  color: rgba(255, 255, 255, .94);
  text-align: center;
  text-decoration: none;
}

.sp-menu__main-text {
  display: block;
  font-family:
    "Helvetica Neue",
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  font-size: clamp(1.72rem, 4.85vw, 2rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .12em;
}

.sp-menu__sub-text {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, .78);
  font-family:
    "Helvetica Neue",
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  font-size: clamp(1.16rem, 3.35vw, 1.34rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .16em;
}

.sp-menu__links--sub .sp-menu__main-text {
  color: rgba(255, 255, 255, .7);
  font-size: clamp(1.46rem, 4.15vw, 1.68rem);
  font-weight: 500;
  letter-spacing: .1em;
}

.sp-menu__links--sub .sp-menu__sub-text {
  color: rgba(255, 255, 255, .54);
  font-size: clamp(1.04rem, 3vw, 1.2rem);
}

.sp-menu__links a:active {
  opacity: .62;
}




/* =========================
   04. Hero
========================= */
.hero {
  position: relative;
  background: var(--color-bg);
}

.hero-image {
  overflow: hidden;
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.055);
  animation: heroImageReveal 1.6s cubic-bezier(.22, 1, .36, 1) forwards;
  transform-origin: center center;
}

@keyframes heroImageReveal {
  0% {
    transform: scale(1.04);
    filter: brightness(.94);
  }

  100% {
    transform: scale(1);
    filter: brightness(1);
  }
}

.hero-usecase {
  position: absolute;
  left: 50%;
  bottom: clamp(12px, 3.5vw, 22px);
  z-index: 5;
  width: min(92%, 420px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(6px, 1.8vw, 8px);
}

.hero-usecase span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(32px, 8vw, 38px);
  padding:
    clamp(5px, 1.5vw, 7px)
    clamp(6px, 2vw, 10px);
  color: #4a3920;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92) 0%, rgba(244, 238, 225, .86) 100%);
  border: 1px solid rgba(166, 126, 54, .48);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .03em;
  text-align: center;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .9),
    inset 0 -1px 0 rgba(166, 126, 54, .12),
    0 7px 18px rgba(0, 0, 0, .16);
}



/* =========================
   05. Common
========================= */

.top-main {
  overflow: hidden;
}

.section-heading {
  width: min(88%, 760px);
  margin: 0 auto clamp(32px, 9vw, 56px);
  text-align: center;
}

.section-heading__en {
  display: inline-block;
  margin-bottom: clamp(10px, 3vw, 16px);
  color: var(--color-red);
  font-size: var(--fz-xs);
  font-weight: 700;
  letter-spacing: .18em;
}

.section-heading h1,
.section-heading h2 {
  margin-bottom: clamp(18px, 5vw, 28px);
}

.section-heading p {
  text-align: left;
}

.top-intro,
.collection,
.features,
.occasion,
.reviews,
.process,
.professions,
.faq,
.pamphlet,
.final-cta {
  padding: var(--section-y) var(--section-x);
}

.top-intro,
.collection,
.features,
.reviews,
.professions,
.pamphlet {
  background: var(--color-white);
}

.occasion,
.process,
.faq {
  background: var(--color-bg);
}




/* =========================
   06. Intro / Explain
========================= */

.top-intro {
  position: relative;
  padding-top: clamp(56px, 14vw, 96px);
  padding-bottom: clamp(24px, 7vw, 40px);
  background:
    radial-gradient(
      circle at 18% 8%,
      rgba(184, 143, 66, .12) 0,
      rgba(184, 143, 66, 0) 34%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fbf8f2 100%
    );
}

.top-intro .section-heading {
  width: min(94%, 860px);
}

#top-intro-title {
  font-size: inherit;
  line-height: 1.55;
  letter-spacing: .03em;
}

#top-intro-title .top-intro-title__line {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  font-size: clamp(2.15rem, 5.6vw, 3rem);
  letter-spacing: .02em;
}

#top-intro-title .top-intro-title__line--small {
  font-size: clamp(2.2rem, 5.7vw, 3.1rem);
  letter-spacing: .02em;
}

.top-intro .section-heading p {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}


.explain {
  position: relative;
  padding:
    clamp(8px, 2vw, 16px)
    var(--section-x)
    var(--section-y);
  background:
    radial-gradient(
      circle at 88% 34%,
      rgba(138, 106, 47, .12) 0,
      rgba(138, 106, 47, 0) 30%
    ),
    linear-gradient(
      180deg,
      #fbf8f2 0%,
      #f1eadc 100%
    );
}

.explain__image {
  width: min(94%, 680px);
  margin:
    0
    auto
    clamp(32px, 9vw, 52px);
  border-radius:
    clamp(26px, 7vw, 38px)
    clamp(10px, 3vw, 16px)
    clamp(26px, 7vw, 38px)
    clamp(10px, 3vw, 16px);
  overflow: hidden;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, .12);
}

.explain__content {
  width: min(88%, 760px);
  margin: 0 auto;
  text-align: center;
}

#explain-title {
  width: 100%;
  max-width: 100%;
  margin:
    0
    auto
    clamp(18px, 5vw, 28px);
  padding: 0;
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  line-height: 2.2;
  letter-spacing: .02em;
  text-align: center;
}

#explain-title .explain-title__line {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  letter-spacing: .01em;
}

#explain-title .explain-title__line--main {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: .08em;
}

#explain-title .explain-title__word {
  display: inline-block;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  line-height: 1;
  letter-spacing: .02em;
  white-space: nowrap;
}

#explain-title .explain-title__small {
  display: inline-block;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  font-size: clamp(1.55rem, 3.8vw, 2.8rem);
  line-height: 1;
  letter-spacing: .01em;
  white-space: nowrap;
}

.explain__content p {
  text-align: left;
}



/* =========================
   贈呈シーン
========================= */

.gift-scene {
  width: 100vw;
  margin:
    clamp(18px, 4vw, 30px)
    calc(50% - 50vw)
    0;
  overflow: hidden;
}

.gift-scene__head h3 {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .04em;
}

.gift-scene-slider {
  width: 100%;
  overflow: visible;
}

.gift-scene-slider .splide__track {
  overflow: visible;
  padding:
    0
    var(--section-x);
}

.gift-scene-slider .splide__list {
  align-items: center;
}

.gift-scene-slider .splide__slide {
  width: clamp(250px, 74vw, 340px);
  overflow: hidden;
  border-radius: clamp(16px, 4.5vw, 22px);
  background: #eee;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, .12);
}

.gift-scene-slider .splide__slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}



/* =========================
   07. Collection
========================= */

.collection {
  position: relative;
  padding: var(--section-y) var(--section-x);
  background:
    radial-gradient(
      circle at 86% 8%,
      rgba(184, 143, 66, .10) 0,
      rgba(184, 143, 66, 0) 30%
    ),
    radial-gradient(
      circle at 12% 82%,
      rgba(138, 106, 47, .07) 0,
      rgba(138, 106, 47, 0) 34%
    ),
    linear-gradient(
      180deg,
      #f1eadc 0%,
      #ffffff 26%,
      #ffffff 74%,
      #f7f3ea 100%
    );
}

.collection .section-heading p {
  width: min(88%, 720px);
  margin: 0 auto;
  text-align: left;
}

#collection-title {
  width: 100%;
  max-width: 100%;
  margin:
    0
    auto
    clamp(18px, 5vw, 28px);
  padding: 0;
  font-size: clamp(2.0rem, 4.4vw, 3.4rem);
  line-height: 1.5;
  letter-spacing: .01em;
  text-align: center;
}

#collection-title span {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  letter-spacing: .01em;
}

.collection-list {
  display: flex;
  gap: clamp(18px, 5vw, 28px);
  width: 100%;
  margin-top: clamp(34px, 9vw, 56px);
  padding:
    0
    0
    clamp(28px, 7vw, 40px)
    max(6vw, 20px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: max(6vw, 20px);
  -webkit-overflow-scrolling: touch;
}

.collection-list::-webkit-scrollbar {
  display: none;
}

.collection-card {
  flex: 0 0 min(78vw, 340px);
  scroll-snap-align: start;
  overflow: hidden;
  border:
    1px
    solid
    rgba(138, 106, 47, .12);
  border-radius: var(--radius-l);
  background: rgba(255, 255, 255, .92);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, .075);
}

.collection-card:nth-child(even) {
  transform: translateY(clamp(10px, 3vw, 16px));
}

.collection-card img {
  display: block;
  width: 100%;
  height: auto;
}

.collection-card__body {
  padding:
    clamp(22px, 6vw, 30px)
    clamp(18px, 5vw, 26px)
    clamp(26px, 7vw, 34px);
}

.collection-card__num {
  display: inline-block;
  margin-bottom: clamp(8px, 2vw, 12px);
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3.2vw, 1.5rem);
  line-height: 1;
  letter-spacing: .14em;
  color: var(--color-beige);
}

.collection-card__body h3 {
  margin: 0 0 clamp(4px, 1.2vw, 6px);
  font-size: clamp(2.0rem, 5vw, 2.6rem);
  line-height: 1.35;
  letter-spacing: .06em;
}

.collection-card__body p {
  margin-top: 0;
  color: var(--color-muted);
  font-size: clamp(1.3rem, 3.7vw, 1.5rem);
  line-height: 1.8;
  letter-spacing: .03em;
  text-align: left;
}

.collection__nav-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8em;
  margin-top: clamp(16px, 4vw, 24px);
  font-size: clamp(1.2rem, 3.2vw, 1.4rem);
  line-height: 1.6;
  letter-spacing: .08em;
  color: var(--color-muted);
}

.collection__nav-hint span:first-child,
.collection__nav-hint span:last-child {
  font-size: 1.4em;
  color: var(--color-gold);
}

.collection__more {
  margin-top: clamp(26px, 7vw, 42px);
  text-align: center;
}

.collection__more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(80vw, 280px);
  min-height: clamp(50px, 13vw, 58px);
  padding:
    clamp(12px, 3vw, 16px)
    clamp(26px, 7vw, 36px);
  border: 1px solid rgba(138, 106, 47, .45);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-text);
  font-size: clamp(1.4rem, 3.6vw, 1.6rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .08em;
  text-decoration: none;
}

.collection-card__price {
  display: inline-block;
  margin:
    clamp(4px, 1.4vw, 6px)
    0
    clamp(10px, 2.8vw, 14px);
  padding:
    clamp(4px, 1.2vw, 6px)
    clamp(10px, 3vw, 14px);
  color: #8a6a2f;
  background: rgba(138, 106, 47, .08);
  border: 1px solid rgba(138, 106, 47, .28);
  border-radius: 999px;
  font-size: clamp(1.3rem, 3.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .04em;
}



/* =========================
   レイアウト案内
========================= */

.layout-patterns {
  padding:
    clamp(64px, 14vw, 96px)
    0;
  background:
    linear-gradient(
      180deg,
      #f2eadc 0%,
      #f7f5ef 18%,
      #ffffff 46%,
      #f7f5ef 100%
    );
  border-top: 1px solid rgba(138, 106, 47, .18);
  color: var(--color-text);
}

.layout-patterns__inner {
  width: min(90%, 720px);
  margin: 0 auto;
}

.layout-patterns .section-heading {
  width: 100%;
  margin:
    0
    auto
    clamp(36px, 9vw, 56px);
  text-align: center;
}

.layout-patterns .section-heading h2 {
  width: 100%;
  max-width: 100%;
  margin:
    0
    auto
    clamp(18px, 5vw, 28px);
  padding: 0;
  font-size: clamp(2.0rem, 4.4vw, 3.4rem);
  line-height: 1.9;
  letter-spacing: .01em;
  text-align: center;
}

.layout-patterns .section-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: clamp(1.4rem, 3.6vw, 1.6rem);
  line-height: 1.7;
  letter-spacing: .04em;
  text-align: left;
}

/* 基本レイアウト */
.basic-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 5vw, 28px);
  align-items: center;
  margin-bottom: clamp(40px, 10vw, 64px);
}

.basic-layout__content {
  padding:
    clamp(22px, 6vw, 30px)
    clamp(18px, 5vw, 24px);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .72) 0%,
      rgba(248, 244, 236, .82) 100%
    );
  border:
    1px
    solid
    rgba(138, 106, 47, .18);
  border-radius:
    clamp(24px, 6vw, 34px)
    clamp(10px, 3vw, 16px)
    clamp(24px, 6vw, 34px)
    clamp(10px, 3vw, 16px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, .06);
}

.basic-layout__label {
  display: inline-block;
  margin-bottom: clamp(4px, 1.4vw, 7px);
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3.2vw, 1.4rem);
  line-height: 1.4;
  letter-spacing: .14em;
}

.basic-layout__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(10px, 3vw, 14px);
  margin-top: 0;
  padding: 0;
  list-style: none;
}

.basic-layout__list li {
  position: relative;
  padding:
    clamp(14px, 4vw, 20px)
    clamp(12px, 4vw, 18px);
  background: rgba(255, 255, 255, .72);
  border:
    1px
    solid
    rgba(138, 106, 47, .16);
  border-radius: var(--radius-s);
  color: var(--color-text);
  font-size: clamp(1.3rem, 3.5vw, 1.5rem);
  line-height: 1.5;
  letter-spacing: .04em;
}



.basic-layout__list--simple li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.basic-layout__list--simple li span {
  display: block;
  margin-bottom: clamp(3px, 1vw, 6px);
  color: var(--color-text);
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  font-weight: 700;
  line-height: 1.5;
}

.basic-layout__list--simple li small {
  display: block;
  color: var(--color-muted);
  font-size: clamp(1.2rem, 3.3vw, 1.4rem);
  line-height: 1.6;
  letter-spacing: .03em;
}

.basic-layout__content p.basic-layout__note {
  margin-top: clamp(22px, 6vw, 32px);
  color: var(--color-muted);
  font-size: clamp(1.2rem, 3.4vw, 1.4rem);
  line-height: 1.75;
  letter-spacing: .03em;
  text-align: left;
}

/* タテ向き・ヨコ向き基本例 */
.basic-layout__examples {
  margin-top: clamp(10px, 3vw, 16px);
}

.basic-layout-examples__heading {
  margin-bottom: clamp(14px, 4vw, 20px);
  text-align: center;
}

.basic-layout-examples__heading span {
  display: block;
  margin-bottom: clamp(4px, 1.2vw, 6px);
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3.6vw, 1.5rem);
  line-height: 1.4;
  letter-spacing: .14em;
}

.basic-layout-examples__heading p {
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(1.2rem, 3.4vw, 1.4rem);
  line-height: 1.6;
  letter-spacing: .04em;
  text-align: center;
}

.basic-layout-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 86%;
  gap: clamp(16px, 4.5vw, 22px);
  overflow-x: auto;
  padding:
    0
    0
    clamp(10px, 3vw, 16px);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.basic-layout-slider::-webkit-scrollbar {
  display: none;
}

.basic-layout-slide {
  scroll-snap-align: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, #ffffff 0%, #f7f5ef 100%);
  border: 1px solid rgba(138, 106, 47, .2);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
}

.basic-layout-slide__image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(135deg, #ebe6dc 0%, #f7f3ea 100%);
}

.basic-layout-slide__image img {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.basic-layout-slide:first-child .basic-layout-slide__image img {
  max-width: 72%;
  max-height: 88%;
}

.basic-layout-slide:nth-child(2) .basic-layout-slide__image img {
  max-width: 94%;
  max-height: 80%;
}

.basic-layout-slide__text {
  padding:
    clamp(12px, 3.4vw, 16px)
    clamp(16px, 5vw, 24px);
  text-align: center;
}

.basic-layout-slide__text span {
  display: inline-block;
  margin-bottom: 0;
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  line-height: 1.2;
  letter-spacing: .14em;
}

.basic-layout-slide__text h4 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.9rem, 5vw, 2.4rem);
  line-height: 1.25;
  letter-spacing: .06em;
}

.basic-layout-slider__note {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin:
    clamp(10px, 3vw, 16px)
    auto
    0;
  color: var(--color-muted);
  font-size: clamp(1.2rem, 3.4vw, 1.4rem);
  line-height: 1.5;
  letter-spacing: .08em;
  text-align: center;
  gap: clamp(8px, 2.5vw, 12px);
}

.basic-layout-slider__note span:first-child,
.basic-layout-slider__note span:last-child {
  color: var(--color-accent);
  font-size: clamp(1.4rem, 4vw, 1.7rem);
  line-height: 1;
}


/* 本体色・金属素材案内 */

.layout-choice {
  margin-bottom: clamp(64px, 14vw, 96px);
  padding:
    clamp(26px, 7vw, 38px)
    0
    0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.layout-choice__label {
  display: inline-block;
  margin-bottom: clamp(8px, 2.5vw, 12px);
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  line-height: 1.2;
  letter-spacing: .16em;
}

.layout-choice h3.mincho {
  display: block;
  width: min(92%, 620px);
  margin:
    0
    auto
    clamp(16px, 4vw, 22px);
  color: #4a4035;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 3.8vw, 1.75rem);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: .04em;
  text-align: center;
}

.layout-metal {
  overflow: hidden;
  width: calc(100% + 10vw);
  margin:
    0
    -5vw
    clamp(18px, 5vw, 26px);
  background: #f1eee7;
  border:
    1px
    solid
    rgba(138, 106, 47, .16);
  border-radius:
    clamp(10px, 3vw, 16px)
    clamp(28px, 7vw, 40px)
    clamp(10px, 3vw, 16px)
    clamp(28px, 7vw, 40px);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, .09);
}

.layout-metal img {
  display: block;
  width: 100%;
  height: auto;
}

.layout-choice p.layout-choice__note {
  width: min(92%, 640px);
  margin: 0 auto;
  color: var(--color-muted);
  font-size: clamp(1.25rem, 3.5vw, 1.45rem);
  line-height: 1.85;
  letter-spacing: .03em;
  text-align: left;
}



/* 自由レイアウト */

.free-layout {
  margin:
    clamp(56px, 13vw, 88px)
    calc(50% - 50vw)
    clamp(72px, 16vw, 104px);
  padding:
    clamp(52px, 13vw, 76px)
    0
    clamp(46px, 12vw, 68px);
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #1b1713 0%,
      #2a2119 48%,
      #120f0d 100%
    );
}

.free-layout__heading {
  width: min(88%, 820px);
  margin:
    0
    auto
    clamp(30px, 8vw, 46px);
  text-align: left;
}

.free-layout__label {
  display: inline-block;
  margin-bottom: clamp(12px, 3.5vw, 18px);
  color: #c7a45a;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3.1vw, 1.3rem);
  line-height: 1.4;
  letter-spacing: .18em;
}

.free-layout__heading h3 {
  margin:
    0
    0
    clamp(18px, 5vw, 26px);
}

.free-layout__title-main {
  display: block;
  margin-bottom: clamp(10px, 3vw, 16px);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: clamp(1.7rem, 4.6vw, 2.05rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .08em;
}

.free-layout__title-sub {
  display: block;
  color: #f3ead7;
  font-size: clamp(2.25rem, 6.4vw, 3rem);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: .07em;
}

.free-layout__heading p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.35rem, 3.6vw, 1.55rem);
  line-height: 1.85;
  letter-spacing: .04em;
  text-align: left;
}

.free-layout__grid {
  display: flex;
  gap: clamp(16px, 4.5vw, 22px);
  margin:
    0
    calc(50% - 50vw);
  padding:
    0
    5vw
    clamp(12px, 3vw, 16px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.free-layout-card {
  flex:
    0
    0
    min(82vw, 360px);
  overflow: hidden;
  background: #211b16;
  border:
    1px
    solid
    rgba(199, 164, 90, .34);
  border-radius: clamp(18px, 5vw, 24px);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, .36);
  scroll-snap-align: start;
}

.free-layout-card img {
  display: block;
  width: 100%;
  aspect-ratio: 720 / 900;
  height: auto;
  object-fit: cover;
  background: #191511;
}

.free-layout-card--wide {
  flex-basis: min(88vw, 390px);
}

.free-layout-card--wide img {
  aspect-ratio: 900 / 760;
}

.free-layout-card__body {
  position: relative;
  padding:
    clamp(16px, 4.5vw, 22px)
    clamp(16px, 4.5vw, 22px)
    clamp(18px, 5vw, 24px);
  background:
    linear-gradient(
      180deg,
      rgba(33, 27, 22, .96) 0%,
      #17120f 100%
    );
}

.free-layout-card__num {
  display: block;
  margin-bottom: clamp(10px, 4vw, 15px);
  color: #c7a45a;
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 3vw, 1.25rem);
  line-height: 1;
  letter-spacing: .16em;
}

.free-layout-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap:
    clamp(5px, 1.6vw, 7px)
    clamp(8px, 2.4vw, 11px);
  margin: 0;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 3vw, 1.22rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .03em;
}

.free-layout-card__tags span {
  display: inline-flex;
  align-items: center;
  padding:
    clamp(4px, 1.3vw, 6px)
    clamp(7px, 2vw, 9px);
  color: #f3ead7;
  background:
    rgba(255, 255, 255, .08);
  border:
    1px
    solid
    rgba(199, 164, 90, .32);
  border-radius: 999px;
}


/* 手書き下書き案内 */

.rough-layout {
  position: relative;
  margin:
    clamp(56px, 13vw, 84px)
    auto
    clamp(20px, 5vw, 32px);
  padding:
    clamp(26px, 7vw, 40px)
    0
    0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.rough-layout__content {
  position: relative;
  margin-bottom: clamp(22px, 6vw, 32px);
  padding:
    clamp(20px, 5.5vw, 30px)
    clamp(18px, 5vw, 26px);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .74) 0%,
      rgba(250, 246, 238, .88) 100%
    );
  border-left:
    4px
    solid
    rgba(138, 106, 47, .38);
  border-radius:
    0
    clamp(18px, 5vw, 26px)
    clamp(18px, 5vw, 26px)
    0;
  text-align: left;
}

.rough-layout__label {
  display: inline-block;
  margin-bottom: clamp(10px, 3vw, 14px);
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3.1vw, 1.3rem);
  line-height: 1.4;
  letter-spacing: .16em;
}

.rough-layout__content h3 {
  margin:
    0
    0
    clamp(14px, 4vw, 20px);
  color: #332a22;
  font-size: clamp(2.0rem, 5.3vw, 2.45rem);
  line-height: 1.55;
  letter-spacing: .05em;
}

.rough-layout__content p {
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(1.35rem, 3.6vw, 1.55rem);
  line-height: 1.85;
  letter-spacing: .04em;
  text-align: left;
}

.rough-layout__image {
  overflow: hidden;
  width: calc(100% + 10vw);
  margin:
    0
    -5vw;
  background: #ebe6dc;
  border-radius: clamp(16px, 4vw, 22px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, .14);
}

.rough-layout__image img {
  display: block;
  width: 100%;
  aspect-ratio: 900 / 600;
  height: auto;
  object-fit: cover;
}



/* =========================
   Story Flow
========================= */

.story-flow {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 14% 6%,
      rgba(184, 143, 66, .18) 0,
      rgba(184, 143, 66, 0) 32%
    ),
    radial-gradient(
      circle at 92% 38%,
      rgba(184, 18, 43, .12) 0,
      rgba(184, 18, 43, 0) 30%
    ),
    radial-gradient(
      circle at 18% 78%,
      rgba(45, 52, 64, .07) 0,
      rgba(45, 52, 64, 0) 34%
    ),
    linear-gradient(
      180deg,
      #fff8e8 0%,
      #ffffff 34%,
      #f8f6f2 68%,
      #ffffff 100%
    );
}

.story-flow::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(138, 106, 47, .045) 0,
      rgba(138, 106, 47, .045) 1px,
      transparent 1px,
      transparent 12px
    );
  opacity: .55;
  pointer-events: none;
}

.story-flow > section {
  position: relative;
  z-index: 1;
  background: transparent;
}



/* =========================
   お客様の声・評価
========================= */

.reviews {
  position: relative;
  overflow: hidden;
  padding:
    clamp(68px, 16vw, 104px)
    0;
  background: transparent;
}

.reviews::before,
.reviews::after {
  content: none;
}

.reviews__inner {
  position: relative;
  z-index: 1;
  width: min(90%, 760px);
  margin: 0 auto;
}

.reviews__heading {
  margin-bottom: clamp(30px, 8vw, 46px);
  text-align: center;
}

.reviews__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(10px, 3vw, 14px);
  padding:
    clamp(5px, 1.5vw, 7px)
    clamp(14px, 4vw, 18px);
  color: #ffffff;
  background: var(--color-red);
  border-radius: 999px;
  font-size: clamp(1.15rem, 3.1vw, 1.3rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .18em;
  box-shadow: 0 8px 18px rgba(184, 18, 43, .24);
}

.reviews__heading h2 {
  margin:
    0
    0
    clamp(16px, 4.5vw, 24px);
  color: #3b2418;
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 6.2vw, 3rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .05em;
}

.reviews__heading p {
  margin: 0;
  color: #5d4634;
  font-size: clamp(1.35rem, 3.7vw, 1.55rem);
  line-height: 1.85;
  letter-spacing: .03em;
  text-align: left;
}

.review-score-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 4.5vw, 22px);
  margin:
    0
    auto
    clamp(28px, 7vw, 40px);
}

.review-score-card {
  position: relative;
  overflow: hidden;
  padding:
    clamp(44px, 11vw, 58px)
    clamp(18px, 5vw, 26px)
    clamp(26px, 7vw, 36px);
  border-radius: clamp(22px, 6vw, 30px);
  box-shadow:
    0 18px 38px rgba(105, 54, 14, .14),
    inset 0 1px 0 rgba(255, 255, 255, .95);
  text-align: center;
}

.review-score-card--google {
  border:
    2px
    solid
    rgba(66, 133, 244, .34);
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f4f8ff 48%,
      #fff9ec 100%
    );
}

.review-score-card--google::before {
  content: "Google";
  position: absolute;
  top: clamp(16px, 4.5vw, 22px);
  left: clamp(18px, 5vw, 24px);
  color: #4285f4;
  font-family:
    Arial,
    sans-serif;
  font-size: clamp(1.3rem, 3.6vw, 1.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: .02em;
}

.review-score-card--google::after {
  content: "";
  position: absolute;
  top: clamp(18px, 5vw, 24px);
  right: clamp(18px, 5vw, 24px);
  width: clamp(48px, 13vw, 58px);
  height: 10px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      #4285f4 0 25%,
      #ea4335 25% 50%,
      #fbbc05 50% 75%,
      #34a853 75% 100%
    );
}

.review-score-card--official {
  border:
    2px
    solid
    rgba(184, 18, 43, .26);
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #fff6f4 50%,
      #fffaf0 100%
    );
}

.review-score-card--official::before {
  content: "Official Review";
  position: absolute;
  top: clamp(16px, 4.5vw, 22px);
  left: clamp(18px, 5vw, 24px);
  color: var(--color-red);
  font-size: clamp(1.2rem, 3.3vw, 1.4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .07em;
}

.review-score-card--official::after {
  content: "";
  position: absolute;
  top: clamp(18px, 5vw, 24px);
  right: clamp(18px, 5vw, 24px);
  width: clamp(48px, 13vw, 58px);
  height: 10px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      var(--color-red) 0 38%,
      #d99516 38% 70%,
      #c7a45a 70% 100%
    );
}

.review-score-card__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(10px, 3vw, 14px);
  padding:
    clamp(5px, 1.5vw, 7px)
    clamp(14px, 4vw, 18px);
  border-radius: 999px;
  font-size: clamp(1.15rem, 3.2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .06em;
}

.review-score-card--google .review-score-card__label {
  color: #1a73e8;
  background: rgba(66, 133, 244, .10);
}

.review-score-card--official .review-score-card__label {
  color: var(--color-red);
  background: rgba(184, 18, 43, .09);
}

.review-score-card .rating {
  margin:
    0
    0
    clamp(8px, 2.5vw, 12px);
  color: #fbbc05;
  font-family: var(--font-sans);
  font-size: clamp(4.2rem, 13vw, 5.6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .01em;
  text-align: center;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, .95),
    0 10px 20px rgba(217, 149, 22, .24);
}

.review-score-card p {
  margin: 0;
  font-size: clamp(1.25rem, 3.5vw, 1.45rem);
  line-height: 1.65;
  letter-spacing: .02em;
  text-align: center;
}

.review-score-card--google p {
  color: #3c4043;
}

.review-score-card--official p {
  color: #4a3a32;
}

.review-score-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(44px, 11vw, 52px);
  margin-top: clamp(16px, 4.5vw, 22px);
  padding:
    0
    clamp(22px, 6vw, 30px);
  color: #ffffff;
  border-radius: 999px;
  font-size: clamp(1.3rem, 3.7vw, 1.5rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .04em;
  text-decoration: none;
}

.review-score-card--google a {
  background:
    linear-gradient(
      135deg,
      #4285f4 0%,
      #1a73e8 100%
    );
  box-shadow:
    0 8px 18px rgba(66, 133, 244, .24);
}

.review-score-card--official a {
  background:
    linear-gradient(
      135deg,
      #b8122b 0%,
      #8f1023 100%
    );
  box-shadow:
    0 8px 18px rgba(184, 18, 43, .23);
}
.review-voice-list {
  display: grid;
  gap: clamp(14px, 4vw, 20px);
}

.review-voice {
  padding:
    clamp(18px, 5vw, 24px)
    clamp(16px, 4.5vw, 22px);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(138, 106, 47, .18);
  border-radius: clamp(16px, 4.5vw, 22px);
  box-shadow:
    0 8px 18px rgba(105, 54, 14, .08);
}

.review-voice:first-child {
  padding:
    clamp(24px, 6.5vw, 34px)
    clamp(18px, 5vw, 26px);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .92) 0%,
      rgba(255, 247, 226, .86) 100%
    );
  border:
    1px
    solid
    rgba(184, 143, 66, .34);
  box-shadow:
    0 14px 30px rgba(105, 54, 14, .13);
}

.review-voice:first-child h3 {
  font-size: clamp(1.8rem, 5vw, 2.25rem);
}

.review-voice:first-child p {
  font-size: clamp(1.35rem, 3.7vw, 1.5rem);
  line-height: 1.85;
}

.review-star {
  display: inline-block;
  margin-bottom: clamp(6px, 2vw, 9px);
  color: #d99516;
  font-size: clamp(1.25rem, 3.6vw, 1.55rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, .9),
    0 4px 10px rgba(217, 149, 22, .18);
}

.review-voice h3 {
  margin:
    0
    0
    clamp(8px, 2.5vw, 12px);
  color: #3b2418;
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 4.4vw, 1.95rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: .03em;
}

.review-voice p {
  margin: 0;
  color: #5d4634;
  font-size: clamp(1.25rem, 3.5vw, 1.42rem);
  line-height: 1.75;
  letter-spacing: .02em;
  text-align: left;
}

.review-meta {
  display: block;
  margin-top: clamp(10px, 3vw, 14px);
  color: #8a6a2f;
  font-size: clamp(1.1rem, 3vw, 1.25rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .04em;
  text-align: right;
}

.review-note {
  width: min(90%, 680px);
  margin:
    clamp(14px, 4vw, 22px)
    auto
    0;
  color: var(--color-muted);
  font-size: clamp(1.1rem, 3vw, 1.25rem);
  line-height: 1.7;
  letter-spacing: .03em;
  text-align: left;
}



/* =========================
   選ばれる理由・安心材料
========================= */

.features {
  padding:
    clamp(56px, 13vw, 88px)
    0
    clamp(68px, 15vw, 104px);
  background: transparent;
}

.features__inner {
  width: min(90%, 720px);
  margin: 0 auto;
}

.features__heading {
  margin-bottom: clamp(36px, 9vw, 52px);
  text-align: center;
}

.features__label {
  display: inline-block;
  margin-bottom: clamp(8px, 2.4vw, 12px);
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  line-height: 1.2;
  letter-spacing: .18em;
}

.features__heading h2 {
  margin: 0 0 clamp(14px, 4vw, 20px);
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6vw, 2.8rem);
  line-height: 1.45;
  letter-spacing: .04em;
}

.features__title-nowrap {
  white-space: nowrap;
}

.features__heading p {
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(1.35rem, 3.7vw, 1.5rem);
  line-height: 1.8;
  letter-spacing: .03em;
  text-align: left;
}

.features__list {
  display: grid;
  gap: clamp(52px, 13vw, 82px);
}

.features__item {
  position: relative;
  background: transparent;
}

.features__item:nth-child(even) {
  padding:
    clamp(26px, 7vw, 42px)
    0;
}

.features__item:nth-child(even)::before {
  content: "";
  position: absolute;
  inset:
    0
    calc(50% - 50vw);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .62) 0%,
      rgba(248, 244, 236, .76) 100%
    );
  border-top:
    1px
    solid
    rgba(138, 106, 47, .12);
  border-bottom:
    1px
    solid
    rgba(138, 106, 47, .12);
  z-index: -1;
}

.features__image {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #eee9df;
  border-radius: 0;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, .12);
}

.features__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features__body {
  width: min(90%, 720px);
  margin:
    clamp(18px, 5vw, 26px)
    auto
    0;
  padding:
    0
    clamp(2px, 1vw, 6px);
}

.features__body h3 {
  margin: 0 0 clamp(10px, 3vw, 14px);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: clamp(1.85rem, 5vw, 2.2rem);
  line-height: 1.45;
  letter-spacing: .04em;
}

.features__body p {
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(1.35rem, 3.7vw, 1.5rem);
  line-height: 1.8;
  letter-spacing: .03em;
  text-align: left;
}

.features__badge {
  display: inline-block;
  margin-top: clamp(14px, 4vw, 18px);
  padding:
    clamp(5px, 1.5vw, 7px)
    clamp(12px, 3.5vw, 16px);
  color: #8a5f12;
  background: rgba(194, 150, 61, .12);
  border: 1px solid rgba(194, 150, 61, .28);
  border-radius: 999px;
  font-size: clamp(1.15rem, 3.2vw, 1.3rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .04em;
}

.features__line-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(44px, 11vw, 50px);
  margin-top: clamp(16px, 4.5vw, 22px);
  padding:
    0
    clamp(20px, 5.5vw, 28px);
  color: #ffffff;
  background: #06c755;
  border-radius: 999px;
  font-size: clamp(1.35rem, 3.7vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .03em;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(6, 199, 85, .22);
}




/* =========================
   workstyle 職業・対象者の対応範囲
========================= */
.workstyle {
  margin: 0 auto;
  padding:
    clamp(64px, 15vw, 96px)
    0
    clamp(72px, 16vw, 104px);
  background: transparent;
}

.workstyle__inner {
  width: min(90%, 760px);
  margin: 0 auto;
}

.workstyle__heading {
  margin-bottom: clamp(28px, 7vw, 44px);
  text-align: center;
}

.workstyle__label {
  display: inline-block;
  margin-bottom: clamp(10px, 2.8vw, 14px);
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  line-height: 1.2;
  letter-spacing: .14em;
}

.workstyle__title {
  margin:
    0
    0
    clamp(16px, 4.5vw, 24px);
  color: var(--color-text);
  font-size: clamp(2.2rem, 6vw, 2.9rem);
  line-height: 1.5;
  letter-spacing: .06em;
}

.workstyle__title-small {
  display: inline-block;
  font-size: .9em;
  letter-spacing: .04em;
}

.workstyle__heading p {
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(1.4rem, 3.8vw, 1.6rem);
  line-height: 1.7;
  letter-spacing: .01em;
  text-align: left;
}

.workstyle__cards {
  display: grid;
  gap: 0;
  margin:
    clamp(30px, 8vw, 48px)
    0
    clamp(26px, 7vw, 40px);
  border-top:
    1px
    solid
    rgba(138, 106, 47, .22);
}

.workstyle-card {
  position: relative;
  padding:
    clamp(24px, 6.5vw, 34px)
    0;
  background: transparent;
  border: 0;
  border-bottom:
    1px
    solid
    rgba(138, 106, 47, .22);
  border-radius: 0;
  box-shadow: none;
}

.workstyle-card h3 {
  margin:
    0
    0
    clamp(8px, 2.5vw, 12px);
  color: #3a3028;
  font-size: clamp(1.8rem, 4.9vw, 2.2rem);
  line-height: 1.55;
  letter-spacing: .05em;
}

.workstyle-card p {
  margin: 0;
  color: #5f574d;
  font-size: clamp(1.35rem, 3.7vw, 1.5rem);
  line-height: 1.7;
  letter-spacing: .01em;
  text-align: left;
}

.workstyle__note {
  margin-bottom: clamp(24px, 6vw, 36px);
  padding:
    clamp(18px, 5vw, 26px)
    clamp(18px, 5vw, 26px);
  background:
    linear-gradient(
      135deg,
      rgba(116, 38, 38, .14) 0%,
      rgba(255, 248, 242, .96) 100%
    );
  border-left: 5px solid #8b3a3a;
  border-radius: 0 var(--radius-s) var(--radius-s) 0;
}

.workstyle__note p {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.3rem, 3.7vw, 1.45rem);
  line-height: 1.7;
  letter-spacing: 0;
  text-align: left;
}

.workstyle__links {
  padding:
    clamp(22px, 6vw, 32px)
    0
    0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.workstyle__links p {
  margin:
    0
    0
    clamp(14px, 4vw, 20px);
  color: #5f574d;
  font-size: clamp(1.3rem, 3.6vw, 1.5rem);
  line-height: 1.7;
  letter-spacing: .03em;
  text-align: left;
}

.workstyle__link-list {
  display: flex;
  flex-wrap: wrap;
  gap:
    clamp(8px, 2.5vw, 12px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.workstyle__link-list-item--wide {
  grid-column: auto;
}

.workstyle__link-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding:
    clamp(9px, 2.8vw, 12px)
    clamp(14px, 4vw, 18px);
  color: #5a2b2b;
  background: rgba(255, 255, 255, .68);
  border:
    1px
    solid
    rgba(138, 106, 47, .24);
  border-radius: 999px;
  box-shadow: none;
  font-size: clamp(1.2rem, 3.4vw, 1.4rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .02em;
  text-align: center;
  text-decoration: none;
}

.workstyle__more {
  margin-top: clamp(22px, 6vw, 34px);
  text-align: center;
}

.workstyle__more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding:
    0
    clamp(22px, 6vw, 34px);
  color: var(--color-white);
  background: var(--color-accent);
  border-radius: 999px;
  font-size: clamp(1.35rem, 3.7vw, 1.55rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .05em;
  text-decoration: none;
  box-shadow:
    0 10px 22px rgba(122, 86, 30, .18);
}



/* =========================
   アイテム情報
========================= */

.products-detail {
  margin-top: 0;
  padding:
    clamp(64px, 15vw, 96px)
    0
    clamp(72px, 16vw, 104px);
  background-color: #fff;
  color: var(--color-text);
}
.products-detail__heading {
  width: min(88%, 760px);
  margin:
    0
    auto
    clamp(32px, 9vw, 52px);
  text-align: center;
}

.products-detail__heading h2 {
  margin:
    0
    0
    clamp(18px, 5vw, 28px);
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6vw, 2.9rem);
  line-height: 1.5;
  letter-spacing: .04em;
  text-align: center;
}

.products-detail__heading p {
  width: min(100%, 34em);
  margin: 0 auto;
  color: var(--color-muted);
  font-size: clamp(1.35rem, 3.7vw, 1.5rem);
  line-height: 1.8;
  letter-spacing: .03em;
  text-align: left;
}

.products-detail img {
  width: 100%;
  height: auto;
}



/* =========================
   詳細アコーディオン見出し
========================= */

.products-detail .details {
  width: min(90%, 680px);
  margin:
    0
    auto
    clamp(8px, 2.25vw, 13px);
  padding: 0;
}

.products-detail .details-summary {
  position: relative;
  display: block;
}

.products-detail .details-summary .btn {
  position: absolute;
  top: 10%;
  right: 2%;
  width: 18px;
  height: 18px;
  transform-origin: center center;
  transition: transform .35s ease;
}

.products-detail .details-summary .btn::before,
.products-detail .details-summary .btn::after {
  transition: opacity .25s ease;
}

.products-detail .details-summary .btn::after {
  content: "";
  background-color: #fff;
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
}

.products-detail .details-summary .btn::before {
  content: "";
  background-color: #fff;
  border-radius: 10px;
  width: 4px;
  height: 18px;
  position: absolute;
  top: 0;
  left: 7px;
}

.products-detail .details[open] .details-summary .btn {
  transform: rotate(-180deg);
}

.products-detail .details[open] .details-summary .btn::before {
  opacity: 0;
}

.products-detail .details[open] .details-summary .btn::after {
  opacity: 1;
}



/* =========================
   閉じるボタン
========================= */

.products-detail .close-btn {
  display: block;
  margin:
    clamp(-16px, -3vw, -8px)
    auto
    clamp(28px, 7vw, 52px);
  padding:
    clamp(10px, 2.5vw, 18px)
    clamp(24px, 6vw, 42px);
  background: var(--color-red);
  color: #fff;
  font-size: var(--fz-m);
  text-align: center;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

/* =========================
   詳細内 共通テーブル
========================= */

.products-detail .details-content {
  overflow-x: auto;
}

.products-detail .js-details-content {
  overflow-anchor: none;
}

.products-detail .details-content p {
  width: min(100%, 32em);
  margin:
    clamp(14px, 3.5vw, 26px)
    auto;
  font-size: var(--fz-s);
  line-height: 1.7;
  text-align: left;
}

.products-detail .details-content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 1.4rem;
  background: #fff;
  box-shadow: var(--shadow-card);
  table-layout: fixed;
}

.products-detail .details-content th,
.products-detail .details-content td {
  border: 1px solid #d7d7d7;
  padding: 12px 10px;
  vertical-align: middle;
  line-height: 1.6;
}

.products-detail .details-content th {
  width: 30%;
  background: #f5f5f5;
  font-weight: 700;
  text-align: center;
  white-space: normal;
}

.products-detail .details-content td {
  background: #fff;
}

.products-detail .details-content td + td,
.products-detail .details-content th + td {
  text-align: center;
}

.products-detail .details-content td br,
.products-detail .details-content th br {
  line-height: 1.8;
}

/* =========================
   楯タイプ
========================= */

.products-detail .plaque {
  width: min(90%, 680px);
  margin:
    0
    auto
    clamp(56px, 12vw, 104px);
}

.products-detail .plaque > img {
  display: block;
  margin-top: clamp(12px, 1.5vw, 22px);
}

.products-detail .plaque h3 {
  font-size: var(--fz-l);
  text-align: center;
  margin:
    clamp(14px, 3.5vw, 26px)
    auto;
  padding:
    clamp(10px, 2.5vw, 18px);
  background-color: #faebd7;
  color: #752100;
}

.products-detail .plaque p {
  font-size: var(--fz-s);
  text-align: left;
  line-height: 1.6;
  margin:
    clamp(14px, 3.5vw, 26px)
    auto;
}

.products-detail .plaque table {
  width: 100%;
  border-collapse: collapse;
  margin:
    0
    auto
    clamp(36px, 8vw, 72px);
}

.products-detail .plaque th,
.products-detail .plaque td {
  text-align: center;
  font-size: var(--fz-s);
  border: 1px solid rgba(120,90,40,.18);
  padding: 12px;
}

.products-detail .plaque th {
  background-color: #ffefd5;
  color: #333300;
  font-weight: normal;
}

.products-detail .plaque td {
  padding: 10px;
}

/* =========================
   スタンドタイプ
========================= */

.products-detail .stand {
  width: min(90%, 680px);
  margin:
    0
    auto
    clamp(56px, 12vw, 104px);
}

.products-detail .stand > img {
  display: block;
  margin-top: clamp(12px, 1.5vw, 22px);
}

.products-detail .stand h3 {
  font-size: var(--fz-l);
  text-align: center;
  margin:
    clamp(14px, 3.5vw, 26px)
    auto;
  padding:
    clamp(10px, 2.5vw, 18px);
  background-color: #faebd7;
  color: #752100;
}

.products-detail .stand p {
  font-size: var(--fz-s);
  text-align: left;
  line-height: 1.6;
  margin:
    clamp(14px, 3.5vw, 26px)
    auto;
}

.products-detail .stand table {
  width: 100%;
  border-collapse: collapse;
  margin:
    0
    auto
    clamp(36px, 8vw, 72px);
}

.products-detail .stand th,
.products-detail .stand td {
  text-align: center;
  font-size: var(--fz-s);
  border: 1px solid rgba(120,90,40,.18);
  padding: 11px;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

.products-detail .stand td.table-small {
  font-size: .74em;
}

.products-detail .stand th {
  width: 30%;
  background-color: #ffefd5;
  color: #333300;
  font-weight: normal;
}

.products-detail .stand td {
  padding: 10px;
}

/* =========================
   アートパネルタイプ
========================= */

.products-detail .art_panel {
  width: min(90%, 680px);
  margin:
    0
    auto
    clamp(56px, 12vw, 104px);
}

.products-detail .art_panel > img {
  display: block;
  margin-top: clamp(12px, 1.5vw, 22px);
}

.products-detail .art_panel h3 {
  font-size: var(--fz-l);
  text-align: center;
  margin:
    clamp(14px, 3.5vw, 26px)
    auto;
  padding:
    clamp(10px, 2.5vw, 18px);
  background-color: #faebd7;
  color: #752100;
}

.products-detail .art_panel p {
  font-size: var(--fz-s);
  text-align: left;
  line-height: 1.6;
  margin:
    clamp(14px, 3.5vw, 26px)
    auto;
}

.products-detail .art_panel > table {
  width: 100%;
  border-collapse: collapse;
  margin:
    0
    auto
    clamp(36px, 8vw, 72px);
}

.products-detail .art_panel th,
.products-detail .art_panel td {
  text-align: center;
  font-size: var(--fz-s);
  border: 1px solid rgba(120,90,40,.18);
  padding: 12px;
}

.products-detail .art_panel th {
  background-color: #ffefd5;
  color: #333300;
  font-weight: normal;
}

.products-detail .art_panel td {
  padding: 10px;
}

.products-detail .art_panel_easel {
  margin:
    clamp(28px, 7vw, 52px)
    auto
    clamp(44px, 10vw, 80px);
}

.products-detail .art_panel_easel img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: clamp(22px, 5vw, 40px);
}

.products-detail .art_panel_easel table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}

.products-detail .art_panel_easel th,
.products-detail .art_panel_easel td {
  text-align: center;
  font-size: var(--fz-s);
  border: 1px solid rgba(120,90,40,.18);
  padding: 12px;
}

.products-detail .art_panel_easel th {
  background-color: #ffefd5;
  color: #333300;
  font-weight: normal;
}

.products-detail .art_panel_easel td {
  padding: 10px;
}

/* =========================
   レザータイプ
========================= */

.products-detail .leather {
  width: min(90%, 680px);
  margin:
    0
    auto
    clamp(56px, 12vw, 104px);
}

.products-detail .leather > img {
  display: block;
  margin-top: clamp(12px, 1.5vw, 22px);
}

.products-detail .leather h3 {
  font-size: var(--fz-l);
  text-align: center;
  margin:
    clamp(14px, 3.5vw, 26px)
    auto;
  padding:
    clamp(10px, 2.5vw, 18px);
  background-color: #faebd7;
  color: #752100;
}

.products-detail .leather p {
  font-size: var(--fz-s);
  text-align: left;
  line-height: 1.6;
  margin:
    clamp(14px, 3.5vw, 26px)
    auto;
}

.products-detail .leather table {
  width: 100%;
  border-collapse: collapse;
  margin:
    0
    auto
    clamp(36px, 8vw, 72px);
}

.products-detail .leather th,
.products-detail .leather td {
  text-align: center;
  font-size: var(--fz-s);
  border: 1px solid rgba(120,90,40,.18);
  padding: 12px;
}

.products-detail .leather th {
  background-color: #ffefd5;
  color: #333300;
  font-weight: normal;
}

.products-detail .leather td {
  padding: 10px;
}

/* =========================
   額タイプ
========================= */

.products-detail .frame {
  width: min(90%, 680px);
  margin: 0 auto 0;
}

.products-detail .frame > img {
  display: block;
  margin-top: clamp(12px, 1.5vw, 22px);
}

.products-detail .frame h3 {
  font-size: var(--fz-l);
  text-align: center;
  margin:
    clamp(14px, 3.5vw, 26px)
    auto;
  padding:
    clamp(10px, 2.5vw, 18px);
  background-color: #faebd7;
  color: #752100;
}

.products-detail .frame p {
  font-size: var(--fz-s);
  text-align: left;
  line-height: 1.6;
  margin:
    clamp(14px, 3.5vw, 26px)
    auto;
}

.products-detail .frame > table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  margin:
    0
    auto
    clamp(36px, 8vw, 72px);
}

.products-detail .frame th,
.products-detail .frame td {
  text-align: center;
  font-size: var(--fz-s);
  border: 1px solid rgba(120,90,40,.18);
  padding: 10px;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

.products-detail .frame td.table-small {
  font-size: .75em;
}

.products-detail .frame th.table-small {
  font-size: .80em;
}

.products-detail .frame th {
  width: 25%;
  background-color: #ffefd5;
  color: #333300;
  font-weight: normal;
}

.products-detail .frame td {
  padding: 10px;
}

.products-detail .frame_stand {
  margin:
    clamp(28px, 7vw, 52px)
    auto
    clamp(44px, 10vw, 80px);
}

.products-detail .frame_stand img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: clamp(22px, 5vw, 40px);
}

.products-detail .frame_stand table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}

.products-detail .frame_stand th,
.products-detail .frame_stand td {
  text-align: center;
  font-size: var(--fz-s);
  border: 1px solid rgba(120,90,40,.18);
  padding: 10px;
}

.products-detail .frame_stand th {
  background-color: #ffefd5;
  color: #333300;
  font-weight: normal;
}

.products-detail .frame_stand td {
  padding: 10px;
}

/* =========================
   商品仕様 共通上書き
========================= */

.products-detail .plaque,
.products-detail .stand,
.products-detail .art_panel,
.products-detail .leather,
.products-detail .frame {
  width: min(94%, 760px);
  margin-right: auto;
  margin-left: auto;
}

.products-detail .plaque h3,
.products-detail .stand h3,
.products-detail .art_panel h3,
.products-detail .leather h3,
.products-detail .frame h3 {
  font-size: var(--fz-m);
  font-weight: 700;
  border-radius: var(--radius-s);
}

.products-detail .plaque table,
.products-detail .stand table,
.products-detail .art_panel table,
.products-detail .art_panel_easel table,
.products-detail .leather table,
.products-detail .frame table,
.products-detail .frame_stand table {
  background: #fffdf8;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(120, 90, 40, .2);
  border-radius: 12px;
  overflow: hidden;
}

.products-detail .plaque th,
.products-detail .plaque td,
.products-detail .stand th,
.products-detail .stand td,
.products-detail .art_panel th,
.products-detail .art_panel td,
.products-detail .art_panel_easel th,
.products-detail .art_panel_easel td,
.products-detail .leather th,
.products-detail .leather td,
.products-detail .frame th,
.products-detail .frame td,
.products-detail .frame_stand th,
.products-detail .frame_stand td {
  border: none;
  border-bottom: 1px solid rgba(120, 90, 40, .14);
  color: #3a3028;
}

.products-detail .plaque th,
.products-detail .stand th,
.products-detail .art_panel th,
.products-detail .art_panel_easel th,
.products-detail .leather th,
.products-detail .frame th,
.products-detail .frame_stand th {
  background: #f4ead9;
  color: #3b260f;
  font-weight: 600;
}



/* =========================
   QRコード動画
========================= */

.qrcode-m.movie-qr {
  position: relative;
  margin:
    0
    auto;
  padding:
    clamp(64px, 15vw, 96px)
    0
    clamp(68px, 16vw, 104px);
  overflow: hidden;
  color: var(--color-text);
  background:
    radial-gradient(
      circle at 14% 12%,
      rgba(138, 106, 47, .10) 0,
      rgba(138, 106, 47, 0) 34%
    ),
    radial-gradient(
      circle at 92% 30%,
      rgba(78, 143, 83, .10) 0,
      rgba(78, 143, 83, 0) 32%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8f6f2 100%
    );
}

.qrcode-m.movie-qr::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(138, 106, 47, .035) 0,
      rgba(138, 106, 47, .035) 1px,
      transparent 1px,
      transparent 12px
    );
  opacity: .45;
  pointer-events: none;
}

.movie-qr__heading,
.movie-qr__block,
.movie-qr__note {
  position: relative;
  z-index: 1;
  width: min(88%, 760px);
  margin-right: auto;
  margin-left: auto;
}

.movie-qr__heading {
  margin-bottom: clamp(34px, 9vw, 56px);
  text-align: center;
}

.movie-qr__heading .section-heading__en {
  color: var(--color-red);
}

.movie-qr__heading h2 {
  margin:
    0
    0
    clamp(18px, 5vw, 28px);
  color: #2f4028;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6vw, 2.9rem);
  line-height: 1.55;
  letter-spacing: .05em;
  text-align: center;
}

.movie-qr__heading p {
  margin: 0 auto;
  color: #5d4634;
  font-size: clamp(1.35rem, 3.7vw, 1.55rem);
  line-height: 1.6;
  letter-spacing: .03em;
  text-align: left;
}

.qrcode-top-image {
  width: calc(100% + 6vw);
  max-width: none;
  margin:
    clamp(28px, 7vw, 48px)
    -3vw
    0;
  transform: none;
}

.qrcode-top-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: clamp(14px, 4vw, 22px);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, .18);
}

.movie-qr__block {
  margin-bottom: clamp(34px, 9vw, 58px);
  padding:
    clamp(24px, 6.5vw, 34px)
    clamp(16px, 4.8vw, 24px);
  background: rgba(255, 255, 255, .72);
  border:
    1px
    solid
    rgba(138, 106, 47, .18);
  border-radius:
    clamp(24px, 6vw, 34px)
    clamp(10px, 3vw, 16px)
    clamp(24px, 6vw, 34px)
    clamp(10px, 3vw, 16px);
  box-shadow:
    0 12px 28px rgba(105, 54, 14, .08);
}

.movie-qr__block h3 {
  margin:
    0
    auto
    clamp(14px, 4vw, 22px);
  color: #3f4b35;
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .04em;
  text-align: center;
}

.movie-qr__block p {
  width: min(100%, 34em);
  margin:
    0
    auto
    clamp(22px, 6vw, 36px);
  color: #5d4634;
  font-size: clamp(1.35rem, 3.7vw, 1.55rem);
  line-height: 1.85;
  letter-spacing: .03em;
  text-align: left;
}

.movie-qr__block img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border:
    4px
    solid
    rgba(255, 255, 255, .9);
  border-radius: clamp(18px, 5vw, 26px);
  box-shadow:
    0 14px 30px rgba(105, 54, 14, .18);
}

.movie-app-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(10px, 3vw, 16px);
  margin:
    clamp(22px, 6vw, 36px)
    auto
    0;
  padding: 0;
}

.movie-app-list li {
  list-style: none;
}

.movie-app-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  min-width: clamp(112px, 29vw, 170px);
  min-height: clamp(46px, 11vw, 54px);
  padding:
    clamp(9px, 2.6vw, 13px)
    clamp(18px, 5vw, 26px);
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      #8a6a2f 0%,
      #5f4721 100%
    );
  border:
    1px
    solid
    rgba(255, 255, 255, .32);
  border-radius: 999px;
  box-shadow:
    0 8px 18px rgba(95, 71, 33, .18);
  font-size: clamp(1.25rem, 3.5vw, 1.5rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .04em;
  text-decoration: none;
}

.movie-app-link::before {
  content: "▶";
  color: #fff1a8;
  font-size: .85em;
}

.movie-qr__note {
  margin-top: clamp(4px, 2vw, 10px);
  padding:
    clamp(16px, 4.5vw, 22px)
    clamp(16px, 4.5vw, 22px);
  background: rgba(255, 255, 255, .72);
  border:
    1px
    solid
    rgba(217, 149, 22, .28);
  border-radius: var(--radius-s);
}

.movie-qr__note p {
  margin: 0;
  color: #6a5a49;
  font-size: clamp(1.1rem, 3vw, 1.25rem);
  line-height: 1.75;
  letter-spacing: .03em;
  text-align: left;
}


/* =========================
   11. FAQ
========================= */

.faq {
  position: relative;
  padding:
    clamp(64px, 15vw, 96px)
    var(--section-x)
    clamp(72px, 16vw, 104px);
  background:
    radial-gradient(
      circle at 16% 8%,
      rgba(138, 106, 47, .10) 0,
      rgba(138, 106, 47, 0) 32%
    ),
    linear-gradient(
      180deg,
      #f8f6f2 0%,
      #ffffff 100%
    );
}

.faq__head {
  width: min(90%, 760px);
  margin:
    0
    auto
    clamp(28px, 7vw, 44px);
  text-align: center;
}

.faq__label {
  margin:
    0
    0
    clamp(8px, 2.4vw, 12px);
  color: var(--color-red);
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  font-weight: 700;
  letter-spacing: .12em;
}

.faq__head h2 {
  margin:
    0
    0
    clamp(14px, 4vw, 22px);
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6.4vw, 3.2rem);
  line-height: 1.45;
  letter-spacing: .05em;
}

.faq__head p:last-child {
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(1.3rem, 3.6vw, 1.5rem);
  line-height: 1.9;
  letter-spacing: .03em;
  text-align: left;
}

.faq-list {
  width: min(90%, 760px);
  margin: 0 auto;
  display: grid;
  gap: clamp(10px, 3vw, 14px);
}

.faq-item {
  background: rgba(255, 255, 255, .86);
  border:
    1px
    solid
    rgba(138, 106, 47, .14);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, .045);
}

.faq-item summary {
  position: relative;
  padding:
    clamp(17px, 4.8vw, 22px)
    52px
    clamp(17px, 4.8vw, 22px)
    18px;
  color: #332a22;
  font-size: var(--fz-m);
  font-weight: 700;
  line-height: 1.6;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 16px;
  height: 2px;
  background: var(--color-red);
  transform: translateY(-50%);
  transition: transform .2s ease;
}

.faq-item summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(0);
}

.faq-item p {
  margin: 0;
  padding:
    0
    18px
    clamp(18px, 5vw, 24px);
  color: var(--color-muted);
  font-size: var(--fz-s);
  line-height: 1.85;
}



/* =========================
   12. Final CTA
========================= */
.final-cta {
  position: relative;
  overflow: hidden;
  padding:
    clamp(68px, 17vw, 104px)
    0
    clamp(64px, 16vw, 96px);
  background:
    radial-gradient(circle at 50% 0%, rgba(184, 143, 65, .18) 0%, rgba(184, 143, 65, 0) 42%),
    linear-gradient(180deg, #ffffff 0%, #fbf8f1 45%, #f3eee3 100%);
  color: var(--color-text);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(138, 106, 47, .08) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(315deg, rgba(148, 17, 38, .06) 0%, rgba(255, 255, 255, 0) 38%);
}

.final-cta::after {
  content: "";
  position: absolute;
  left: 50%;
  top: clamp(24px, 7vw, 40px);
  width: min(78%, 520px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(138, 106, 47, 0), rgba(138, 106, 47, .45), rgba(138, 106, 47, 0));
}

.final-cta .section-heading__en {
  color: var(--color-accent);
}

.final-cta h2 {
  color: var(--color-text);
}

.final-cta p {
  color: var(--color-muted);
}

.final-cta__head {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(30px, 8vw, 46px);
}

.final-cta__head p {
  width: min(88%, 680px);
  margin-inline: auto;
  color: var(--color-muted);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  width: min(90%, 760px);
  margin: 0 auto;
}

.cta-main {
  display: grid;
  gap: clamp(16px, 5vw, 24px);
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding:
    clamp(24px, 7vw, 36px)
    clamp(20px, 6vw, 30px);
  background: rgba(255, 255, 255, .94);
  border:
    1px
    solid
    rgba(138, 106, 47, .18);
  border-radius: clamp(22px, 6vw, 30px);
  color: var(--color-text);
  box-shadow:
    0 18px 42px rgba(54, 38, 18, .12);
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
}

.cta-card--line::before {
  background: #06c755;
}

.cta-card--rakuten::before {
  background: #bf0000;
}

.cta-card__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: clamp(1.1rem, 3vw, 1.25rem);
  font-weight: 700;
  letter-spacing: .04em;
}

.cta-card--line .cta-card__label {
  background: rgba(6, 199, 85, .1);
  color: #078f42;
}

.cta-card--rakuten .cta-card__label {
  background: rgba(191, 0, 0, .08);
  color: #bf0000;
}

.cta-card h3 {
  margin: 0 0 12px;
  color: var(--color-text);
  font-size: clamp(2rem, 5.6vw, 2.5rem);
  line-height: 1.45;
  letter-spacing: .04em;
}

.cta-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--fz-s);
  line-height: 1.8;
  letter-spacing: .03em;
  text-align: left;
}

.cta-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  margin-top: 22px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--color-white);
  font-size: var(--fz-m);
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
  text-decoration: none;
  box-shadow:
    0 12px 24px rgba(0, 0, 0, .16);
}

.cta-card--line a {
  background:
    linear-gradient(180deg, #10d866 0%, #06b84d 100%);
}

.cta-card--rakuten a {
  background:
    linear-gradient(180deg, #d20a0a 0%, #a90000 100%);
}

.cta-sub {
  margin-top: clamp(22px, 6vw, 34px);
  padding:
    clamp(22px, 6.5vw, 34px)
    clamp(18px, 5.5vw, 28px);
  background: rgba(255, 255, 255, .82);
  border:
    1px
    solid
    rgba(138, 106, 47, .2);
  border-radius: clamp(22px, 6vw, 30px);
  box-shadow:
    0 14px 34px rgba(54, 38, 18, .1);
}

.cta-sub__title {
  margin: 0 0 16px;
  color: var(--color-text);
  font-size: clamp(1.7rem, 4.8vw, 2.1rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .05em;
  text-align: center;
}

.cta-sub__links {
  display: grid;
  gap: 12px;
}

.cta-sub__links a {
  display: grid;
  gap: 3px;
  align-content: center;
  min-height: 58px;
  padding:
    10px
    18px;
  border:
    1px
    solid
    rgba(138, 106, 47, .26);
  border-radius: 999px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8f4ea 100%);
  color: var(--color-text);
  text-align: center;
  text-decoration: none;
  box-shadow:
    0 8px 18px rgba(54, 38, 18, .08);
}

.cta-sub__links span {
  display: block;
  font-size: var(--fz-s);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .04em;
}

.cta-sub__links small {
  display: block;
  color: var(--color-muted);
  font-size: clamp(1.1rem, 3vw, 1.25rem);
  line-height: 1.4;
  letter-spacing: .03em;
}

.cta-sub__note {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: clamp(1.2rem, 3.4vw, 1.35rem);
  line-height: 1.8;
  letter-spacing: .03em;
  text-align: left;
}




/* =========================
   13. Floating CTA
========================= */

.cta_btn {
  position: fixed;
  right: clamp(8px, 3vw, 14px);
  bottom: calc(clamp(10px, 3.5vw, 18px) + env(safe-area-inset-bottom));
  z-index: 900;
  width: clamp(118px, 34vw, 158px);
  transition:
    transform .18s ease,
    opacity .18s ease;
  animation: floatingCta 3.8s ease-in-out infinite;
}

@keyframes floatingCta {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0);
  }
}

.cta_btn img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .26));
}


/* =========================
   14. Footer
========================= */

.site-footer {
  padding:
    48px
    var(--section-x)
    36px;
  color: var(--color-white);
  background:
    linear-gradient(
      180deg,
      #0f1317 0%,
      #171b20 100%
    );
  text-align: center;
}

.site-footer__sns ul {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin:
    0
    0
    28px;
  padding: 0;
}

.site-footer__sns li {
  list-style: none;
}

.site-footer__sns a {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
}

.site-footer__sns img {
  display: block;
  width: 26px;
  height: auto;
}

.site-footer__nav ul {
  display: grid;
  gap: 10px;
  margin:
    0
    0
    28px;
  padding: 0;
}

.site-footer__nav li {
  list-style: none;
}

.site-footer__nav a {
  color: rgba(255, 255, 255, .82);
  font-size: var(--fz-s);
  line-height: 1.7;
  text-decoration: none;
}

.site-footer__copy {
  display: block;
  color: rgba(255, 255, 255, .55);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* =========================
   14. Utility
========================= */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

summary:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-beige);
  outline-offset: 3px;
}

#top-menu .menu-btn:focus,
#top-menu .menu-btn:focus-visible {
  outline: none;
}

/* =========================
   15. Scroll Animation
========================= */

.js-animate {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .75s ease,
    transform .75s ease;
  will-change: opacity, transform;
}

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

.js-animate-delay-1 {
  transition-delay: .08s;
}

.js-animate-delay-2 {
  transition-delay: .16s;
}

.js-animate-delay-3 {
  transition-delay: .24s;
}

.js-animate-delay-4 {
  transition-delay: .32s;
}

@media (prefers-reduced-motion: reduce) {
  .js-animate {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .js-image-reveal img {
    transform: none;
    transition: none;
    filter: none;
  }
    
  .js-label-motion {
    opacity: 1;
    transform: none;
    transition: none;
  }
   
  .hero-usecase span {
    opacity: 1;
    transform: none;
    animation: none;
  }
    
  .cta_btn {
    animation: none;
  }
    
  .collection__nav-hint span:first-child,
  .collection__nav-hint span:last-child,
  .basic-layout-slider__note span:first-child,
  .basic-layout-slider__note span:last-child {
    animation: none;
  }
    
  .story-flow::after {
    transform: none;
  }
    
  #top-intro-title span {
    opacity: 1;
    transform: none;
    animation: none;
  }
    
}

.js-image-reveal {
  overflow: hidden;
}

.js-image-reveal img {
  transform: scale(1.03);
  transition:
    transform 1s ease,
    filter 1s ease;
  filter: brightness(.97);
}

.js-image-reveal.is-visible img {
  transform: scale(1);
  filter: brightness(1);
}



/* =========================
   16. Tap Motion
========================= */

.collection__more-link,
.features__line-button,
.review-score-card a,
.workstyle__link-list a,
.movie-app-link,
.cta-card a,
.cta-sub__links a,
.close-btn,
.cta-scroll {
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    opacity .18s ease;
  -webkit-tap-highlight-color: transparent;
}

.collection__more-link:active,
.features__line-button:active,
.review-score-card a:active,
.workstyle__link-list a:active,
.movie-app-link:active,
.cta-card a:active,
.cta-sub__links a:active,
.close-btn:active,
.cta-scroll:active {
  transform: scale(.97);
  opacity: .9;
}

.cta_btn .cta-scroll {
  display: block;
  transition:
    transform .18s ease,
    opacity .18s ease;
}

.cta_btn .cta-scroll:active {
  transform: scale(.96);
  opacity: .9;
}



/* =========================
   17. Hero Motion
========================= */

.hero-usecase span {
  opacity: 0;
  transform: translateY(10px);
  animation:
    heroUsecaseIn .7s ease forwards;
}

.hero-usecase span:nth-child(1) {
  animation-delay: .35s;
}

.hero-usecase span:nth-child(2) {
  animation-delay: .48s;
}

.hero-usecase span:nth-child(3) {
  animation-delay: .61s;
}

@keyframes heroUsecaseIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



/* =========================
   18. Label Motion
========================= */

.js-label-motion {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity .65s ease,
    transform .65s ease,
    letter-spacing .65s ease;
  letter-spacing: .18em;
}

.js-label-motion.is-visible {
  opacity: 1;
  transform: translateY(0);
  letter-spacing: .18em;
}



/* =========================
   19. Slide Hint Motion
========================= */

.collection__nav-hint span:first-child,
.basic-layout-slider__note span:first-child {
  animation: slideHintLeft 1.8s ease-in-out infinite;
}

.collection__nav-hint span:last-child,
.basic-layout-slider__note span:last-child {
  animation: slideHintRight 1.8s ease-in-out infinite;
}

@keyframes slideHintLeft {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-4px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes slideHintRight {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(4px);
  }

  100% {
    transform: translateX(0);
  }
}


/* =========================
   20. Text Sequence Motion
========================= */

.js-text-sequence h1,
.js-text-sequence h2,
.js-text-sequence h3,
.js-text-sequence p {
  transition:
    opacity .72s ease,
    transform .72s ease;
}

.js-text-sequence h1,
.js-text-sequence h2,
.js-text-sequence h3 {
  opacity: 0;
  transform: translateY(16px);
}

.js-text-sequence p {
  opacity: 0;
  transform: translateY(20px);
  transition-delay: .14s;
}

.js-text-sequence.is-visible h1,
.js-text-sequence.is-visible h2,
.js-text-sequence.is-visible h3,
.js-text-sequence.is-visible p {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-text-sequence h1,
  .js-text-sequence h2,
  .js-text-sequence h3,
  .js-text-sequence p {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* =========================
   21. Card Direction Motion
========================= */

.js-card-from-left {
  transform: translateX(-18px) translateY(10px);
}

.js-card-from-right {
  transform: translateX(18px) translateY(10px);
}

.js-card-from-left.is-visible,
.js-card-from-right.is-visible {
  transform: translateX(0) translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-card-from-left,
  .js-card-from-right {
    transform: none;
  }
}


/* =========================
   22. Scroll Background Motion
========================= */

.story-flow {
  --story-bg-y: 0px;
}

.story-flow::after {
  content: "";
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(
      circle at 72% 18%,
      rgba(255, 255, 255, .34) 0,
      rgba(255, 255, 255, 0) 28%
    ),
    radial-gradient(
      circle at 24% 74%,
      rgba(138, 106, 47, .10) 0,
      rgba(138, 106, 47, 0) 32%
    );
  transform: translate3d(0, var(--story-bg-y), 0);
  pointer-events: none;
  z-index: 0;
}



/* =========================
   23. Hero Copy Motion
========================= */

#top-intro-title {
  overflow: hidden;
}

#top-intro-title span {
  opacity: 0;
  transform: translateY(14px);
  animation:
    heroCopyLineIn .8s ease forwards;
  animation-delay: .55s;
}

@keyframes heroCopyLineIn {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}