@charset "utf-8";

/* =========================
   01. Base
========================= */

:root {
  --font-sans: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  --font-serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;

  --color-bg: #f6f1e8;
  --color-white: #ffffff;
  --color-text: #1d222a;
  --color-muted: #65707d;
  --color-dark: #11161b;
  --color-red: #941126;
  --color-red-light: #b8122b;
  --color-gold: #8a6a2f;
  --color-gold-2: #c7a45a;
  --color-border: rgba(7, 21, 37, .12);

  --shadow-card: 0 18px 44px rgba(7, 21, 37, .10);
  --shadow-deep: 0 28px 80px rgba(0, 0, 0, .24);

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

  --container: 1120px;
  --container-wide: 1240px;

  --z-header: 100;
  --z-floating: 1000;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-sans);
  font-size: 1.7rem;
  line-height: 1.85;
  letter-spacing: .03em;
}

* {
  box-sizing: border-box;
}

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

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

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

li {
  list-style: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p {
  margin-bottom: 1.1em;
}

.top-page {
  overflow: hidden;
}


/* =========================
   02. Header
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  border-bottom: 1px solid rgba(7, 21, 37, .10);
  background: rgba(246, 241, 232, .92);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 80px, 1400px);
  height: 90px;
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  transition:
    opacity .25s ease,
    transform .25s ease;
}

.site-logo:hover {
  opacity: .78;
  transform: translateY(-1px);
}

.site-logo img {
  width: 220px;
  height: auto;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--color-dark);
  font-size: 1.5rem;
  font-weight: 800;
}

.global-nav a {
  opacity: .84;
  transition:
    color .2s ease,
    opacity .2s ease;
}

.global-nav a:hover {
  color: var(--color-red);
  opacity: 1;
}


/* =========================
   03. Hero
========================= */

.hero {
  position: relative;
  overflow: hidden;
  background: #17120f;
}

.hero__image {
  position: relative;
  overflow: hidden;
  background: #17120f;
}

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

.hero-keywords {
  position: absolute;
  left: 50%;
  bottom: clamp(24px, 2.6vw, 42px);
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: clamp(24px, 2.4vw, 42px);
  width: auto;
  max-width: min(88%, 980px);
  transform: translateX(-50%);
}

.hero-keywords span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(42px, 3.2vw, 56px);
  padding:
    clamp(8px, .8vw, 12px)
    clamp(48px, 3.8vw, 72px);
  color: #3f2f18;
  font-size: clamp(1.48rem, 1.02vw, 1.76rem);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .04em;
  text-align: center;
  white-space: nowrap;
  border:
    1px
    solid
    rgba(166, 126, 54, .50);
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, .92) 0%,
      rgba(244, 238, 225, .86) 100%
    );
  backdrop-filter: blur(5px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .9),
    inset 0 -1px 0 rgba(166, 126, 54, .14),
    0 10px 24px rgba(0, 0, 0, .18);
}


/* =========================
   04. Top Intro
========================= */

.top-intro {
  position: relative;
  padding:
    clamp(64px, 5vw, 82px)
    0
    clamp(52px, 4.5vw, 72px);
  background:
    radial-gradient(
      circle at 16% 10%,
      rgba(138, 106, 47, .12) 0,
      rgba(138, 106, 47, 0) 30%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fbf8f2 100%
    );
}

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

.top-intro__en {
  margin:
    0
    0
    clamp(14px, 1.2vw, 18px);
  color: var(--color-red);
  font-size: clamp(1.25rem, .9vw, 1.45rem);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .18em;
}

#top-intro-title {
  margin:
    0
    0
    clamp(20px, 2vw, 28px);
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: clamp(3rem, 2.55vw, 4.2rem);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: .05em;
}

.top-intro__inner p:last-child {
  width: min(100%, 700px);
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 1.58rem;
  line-height: 1.9;
  letter-spacing: .04em;
  text-align: left;
}



/* =========================
   05. Explain
========================= */

.explain {
  padding:
    clamp(64px, 5.5vw, 82px)
    0;
  background:
    linear-gradient(
      180deg,
      #fbf8f2 0%,
      #f0e6d6 100%
    );
}

.explain__inner {
  display: grid;
  grid-template-columns:
    1fr
    .92fr;
  gap: clamp(34px, 3.4vw, 52px);
  align-items: center;
  width: min(92%, var(--container));
  margin: 0 auto;
}

.explain__image {
  margin: 0;
  overflow: hidden;
  border-radius:
    30px
    14px
    30px
    14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .14);
}

.explain__image img {
  width: 100%;
  height: auto;
}

.explain__content {
  max-width: 500px;
}

.explain__en {
  margin:
    0
    0
    14px;
  color: var(--color-red);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.explain h2 {
  margin:
    0
    0
    22px;
  font-family: var(--font-serif);
  font-size: clamp(2.55rem, 2.05vw, 3.6rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .04em;
}

.explain__content p:last-child {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.55rem;
  line-height: 1.9;
}

.gift-scene {
  position: relative;
  width: 100vw;
  margin:
    clamp(44px, 4vw, 58px)
    calc(50% - 50vw)
    0;
  overflow: hidden;
  cursor: grab;
}

.gift-scene.is-dragging {
  cursor: grabbing;
}

.gift-scene__track {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.4vw, 24px);
  width: max-content;
  will-change: transform;
}

.gift-scene__item {
  flex:
    0
    0
    clamp(360px, 30vw, 500px);
  overflow: hidden;
  border-radius: var(--radius-l);
  background: #eee9df;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, .14);
  user-select: none;
}

.gift-scene__item img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  pointer-events: none;
}

.gift-scene::before,
.gift-scene::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: clamp(80px, 10vw, 180px);
  height: 100%;
  pointer-events: none;
}

.gift-scene::before {
  left: 0;
  background:
    linear-gradient(
      90deg,
      #f0e6d6 0%,
      rgba(240, 230, 214, 0) 100%
    );
}

.gift-scene::after {
  right: 0;
  background:
    linear-gradient(
      270deg,
      #f0e6d6 0%,
      rgba(240, 230, 214, 0) 100%
    );
}




/* =========================
   06. Collection
========================= */

.collection {
  padding:
    clamp(64px, 5.5vw, 82px)
    0;
  background:
    linear-gradient(
      180deg,
      #f0e6d6 0%,
      #ffffff 26%,
      #ffffff 72%,
      #f7f3ea 100%
    );
}

.collection__head {
  width: min(88%, 840px);
  margin:
    0
    auto
    clamp(38px, 3.5vw, 56px);
  text-align: center;
}

.collection__en {
  margin:
    0
    0
    14px;
  color: var(--color-red);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.collection h2 {
  margin:
    0
    0
    24px;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 2.35vw, 4rem);
  line-height: 1.45;
  letter-spacing: .05em;
}

.collection__head p:last-child {
  width: min(100%, 720px);
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 1.55rem;
  line-height: 1.85;
  text-align: left;
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(16px, 1.4vw, 20px);
  width: min(92%, var(--container));
  margin: 0 auto;
}

.collection-card {
  grid-column: span 2;
  overflow: hidden;
  border: 1px solid rgba(138, 106, 47, .16);
  border-radius: var(--radius-l);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition:
    transform .22s ease,
    box-shadow .22s ease;
}

.collection-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.collection-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(7, 21, 37, .14);
}

.collection-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
  background: #f8f5ee;
}

.collection-card__body {
  padding: clamp(18px, 1.5vw, 24px);
}

.collection-card__num {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.collection-card h3 {
  margin:
    0
    0
    8px;
  color: var(--color-text);
  font-size: clamp(1.85rem, 1.25vw, 2.15rem);
  font-weight: 900;
  line-height: 1.45;
}

.collection-card__price {
  display: inline-block;
  margin-bottom: 12px;
  padding:
    4px
    12px;
  color: var(--color-gold);
  font-size: 1.35rem;
  font-weight: 800;
  border: 1px solid rgba(138, 106, 47, .28);
  border-radius: 999px;
  background: rgba(138, 106, 47, .08);
}

.collection-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.38rem;
  line-height: 1.75;
}

.collection__more {
  margin-top: clamp(34px, 3vw, 48px);
  text-align: center;
}

.collection__more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 52px;
  padding:
    0
    30px;
  color: var(--color-text);
  font-size: 1.45rem;
  font-weight: 800;
  border: 1px solid rgba(138, 106, 47, .42);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(7, 21, 37, .07);
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.collection__more a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(7, 21, 37, .10);
}



/* =========================
   07. Layout Patterns
========================= */

.layout-patterns {
  padding:
    clamp(64px, 5.5vw, 82px)
    0;
  background:
    linear-gradient(
      180deg,
      #f7f3ea 0%,
      #ffffff 42%,
      #f5f1e9 100%
    );
}

.layout-patterns__inner {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.layout-patterns__head {
  width: min(100%, 880px);
  margin:
    0
    auto
    clamp(38px, 3.6vw, 56px);
  text-align: center;
}

.layout-patterns__en {
  margin:
    0
    0
    14px;
  color: var(--color-red);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.layout-patterns h2 {
  margin:
    0
    0
    24px;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 2.35vw, 4rem);
  line-height: 1.45;
  letter-spacing: .05em;
}

.layout-patterns__head p:last-child {
  width: min(100%, 720px);
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 1.55rem;
  line-height: 1.85;
}

.basic-layout {
  display: grid;
  grid-template-columns:
    .76fr
    1.24fr;
  gap: clamp(24px, 2.6vw, 38px);
  align-items: center;
  margin-bottom: clamp(46px, 4.5vw, 64px);
}

.basic-layout__content {
  padding: clamp(24px, 2.2vw, 34px);
  border: 1px solid rgba(138, 106, 47, .18);
  border-radius:
    34px
    14px
    34px
    14px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .88) 0%,
      rgba(248, 244, 236, .94) 100%
    );
  box-shadow: var(--shadow-card);
}

.basic-layout__label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.basic-layout__list {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.basic-layout__list li {
  padding:
    15px
    18px;
  border: 1px solid rgba(138, 106, 47, .14);
  border-radius: var(--radius-s);
  background: rgba(255, 255, 255, .76);
}

.basic-layout__list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-text);
  font-size: 1.62rem;
}

.basic-layout__list span {
  display: block;
  color: var(--color-muted);
  font-size: 1.4rem;
  line-height: 1.7;
}

.basic-layout__content p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.45rem;
  line-height: 1.8;
}

.basic-layout__examples {
  display: grid;
  grid-template-columns:
    .82fr
    1.18fr;
  gap: clamp(18px, 1.8vw, 28px);
  align-items: stretch;
}

.basic-layout-card {
  overflow: hidden;
  border: 1px solid rgba(138, 106, 47, .18);
  border-radius: var(--radius-l);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.basic-layout-card__image {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  padding: 20px;
  background:
    linear-gradient(
      135deg,
      #ebe6dc 0%,
      #f7f3ea 100%
    );
}

.basic-layout-card__image img {
  width: auto;
  max-height: 100%;
  object-fit: contain;
}

.basic-layout-card:nth-child(2) .basic-layout-card__image img {
  width: 94%;
  max-width: 94%;
  max-height: 94%;
  object-fit: contain;
}

.basic-layout-card__text {
  padding:
    18px
    22px
    22px;
  text-align: center;
}

.basic-layout-card__text span {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.basic-layout-card h3 {
  margin:
    0
    0
    10px;
  font-family: var(--font-serif);
  font-size: 2.1rem;
}

.layout-choice {
  display: grid;
  grid-template-columns:
    .95fr
    1.05fr;
  gap: clamp(24px, 2.6vw, 38px);
  align-items: center;
  margin-bottom: clamp(52px, 4.8vw, 70px);
}

.layout-choice__content span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.layout-choice__content h3 {
  margin:
    0
    0
    20px;
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 1.8vw, 3.1rem);
  line-height: 1.5;
}

.layout-choice__content p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.5rem;
  line-height: 1.85;
}

.layout-choice__image {
  overflow: hidden;
  border-radius:
    16px
    36px
    16px
    36px;
  box-shadow: var(--shadow-card);
}

.free-layout {
  width: 100vw;
  margin:
    0
    calc(50% - 50vw)
    clamp(54px, 5vw, 76px);
  padding:
    clamp(66px, 6vw, 88px)
    0;
  color: #ffffff;
  background:
    linear-gradient(
      180deg,
      #1b1713 0%,
      #2a2119 50%,
      #120f0d 100%
    );
}

.free-layout__head {
  width: min(92%, var(--container));
  margin:
    0
    auto
    clamp(34px, 3.4vw, 48px);
  text-align: left;
}

.free-layout__head p {
  margin:
    0
    0
    12px;
  color: #c7a45a;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .18em;
}

.free-layout__head h3 {
  margin:
    0
    0
    12px;
  color: #ffffff;
  font-size: clamp(2.2rem, 1.75vw, 3rem);
  line-height: 1.45;
}

.free-layout__head span {
  display: block;
  color: #f3ead7;
  font-family: var(--font-serif);
  font-size: clamp(2.7rem, 2.35vw, 4rem);
  line-height: 1.45;
  letter-spacing: .06em;
}

.free-layout__grid {
  display: grid;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  gap:
    clamp(20px, 2vw, 30px)
    clamp(18px, 1.8vw, 26px);
  width: min(92%, 1240px);
  margin: 0 auto;
  align-items: start;
}

.free-layout-card:nth-child(1) {
  grid-column: 1 / 5;
}

.free-layout-card:nth-child(2) {
  grid-column: 5 / 11;
  margin-top: clamp(18px, 1.8vw, 28px);
}

.free-layout-card:nth-child(3) {
  grid-column: 11 / 15;
  margin-top: clamp(6px, .8vw, 16px);
}

.free-layout-card:nth-child(4) {
  grid-column: 1 / 6;
  margin-top: clamp(-8px, -.8vw, -4px);
}

.free-layout-card:nth-child(5) {
  grid-column: 6 / 10;
  margin-top: clamp(18px, 1.8vw, 28px);
}

.free-layout-card:nth-child(6) {
  grid-column: 10 / 15;
  margin-top: clamp(6px, .8vw, 18px);
}

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

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

.free-layout-card img {
  border-radius:
    var(--radius-l)
    var(--radius-l)
    0
    0;
}

.free-layout-card__body {
  padding:
    clamp(16px, 1.4vw, 21px)
    clamp(16px, 1.5vw, 22px)
    clamp(18px, 1.6vw, 24px);
  border-radius:
    0
    0
    var(--radius-l)
    var(--radius-l);
  background:
    linear-gradient(
      180deg,
      rgba(33, 27, 22, .96) 0%,
      #17120f 100%
    );
}

.free-layout-card__body > span {
  display: block;
  margin-bottom: 10px;
  color: #c7a45a;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.free-layout-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap:
    8px
    8px;
  margin: 0;
}

.free-layout-card__tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding:
    4px
    10px;
  color: #f3ead7;
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .04em;
  border:
    1px
    solid
    rgba(199, 164, 90, .34);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
}

.free-layout-zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.free-layout-zoom img {
  transition:
    transform .35s ease,
    filter .35s ease;
}

.free-layout-zoom:hover img {
  transform: scale(1.035);
  filter: brightness(1.05);
}

.free-layout-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding:
    clamp(28px, 4vw, 64px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity .25s ease,
    visibility .25s ease;
}

.free-layout-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.free-layout-modal__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, .78);
  cursor: zoom-out;
}

.free-layout-modal__content {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(92vw, 1180px);
  max-height: 88vh;
}

.free-layout-modal__image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 88vh;
  border-radius: var(--radius-l);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, .55);
}

.free-layout-modal__close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #ffffff;
  font-size: 3rem;
  line-height: 1;
  border:
    1px
    solid
    rgba(255, 255, 255, .26);
  border-radius: 999px;
  background: rgba(20, 20, 20, .92);
  cursor: pointer;
}

body.is-free-layout-modal-open {
  overflow: hidden;
}

.rough-layout {
  width: min(92%, var(--container));
  margin:
    clamp(48px, 4.5vw, 66px)
    auto
    0;
  padding: clamp(24px, 2.4vw, 36px);
  border:
    1px
    solid
    rgba(138, 106, 47, .20);
  border-radius:
    36px
    14px
    36px
    14px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .92) 0%,
      rgba(248, 244, 236, .96) 100%
    );
  box-shadow: var(--shadow-card);
}

.rough-layout__text {
  width: min(100%, 780px);
  margin:
    0
    auto
    clamp(24px, 2.5vw, 34px);
  text-align: center;
}

.rough-layout__text span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.rough-layout__text h3 {
  margin:
    0
    0
    20px;
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 1.9vw, 3.2rem);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .04em;
}

.rough-layout__text p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.5rem;
  line-height: 1.85;
  text-align: left;
}

.rough-layout__image {
  overflow: hidden;
  border-radius:
    16px
    34px
    16px
    34px;
  background: #efe8da;
  box-shadow:
    0 18px 46px rgba(7, 21, 37, .14);
}

.rough-layout__image img {
  display: block;
  width: 100%;
  height: auto;
}



/* =========================
   08. Reviews
========================= */

.reviews {
  padding:
    clamp(64px, 5.5vw, 82px)
    0;
  background:
    radial-gradient(
      circle at 14% 6%,
      rgba(184, 143, 66, .16) 0,
      rgba(184, 143, 66, 0) 32%
    ),
    linear-gradient(
      180deg,
      #fff8e8 0%,
      #ffffff 42%,
      #f8f6f2 100%
    );
}

.reviews__inner {
  width: min(88%, var(--container));
  margin: 0 auto;
}

.reviews__head {
  width: min(100%, 780px);
  margin:
    0
    auto
    clamp(38px, 3.5vw, 56px);
  text-align: center;
}

.reviews__en {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin:
    0
    0
    14px;
  padding:
    6px
    18px;
  color: #ffffff;
  background: var(--color-red-light);
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.reviews h2 {
  margin:
    0
    0
    22px;
  color: #3b2418;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 2.35vw, 4rem);
  line-height: 1.45;
  letter-spacing: .05em;
}

.reviews__head p:last-child {
  margin: 0;
  color: #5d4634;
  font-size: 1.55rem;
  line-height: 1.85;
  text-align: left;
}

.review-score {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 440px));
  justify-content: center;
  gap: clamp(22px, 2vw, 32px);
  margin-bottom: clamp(38px, 3.8vw, 56px);
}

.review-score-card {
  display: block;
  padding: clamp(26px, 2.4vw, 38px);
  border: 2px solid rgba(184, 18, 43, .24);
  border-radius: var(--radius-l);
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #fff4d9 100%
    );
  box-shadow:
    0 18px 38px rgba(105, 54, 14, .16),
    inset 0 1px 0 rgba(255, 255, 255, .95);
  text-align: center;
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.review-score-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(105, 54, 14, .20);
}

.review-score-card span {
  display: inline-block;
  margin-bottom: 12px;
  padding:
    6px
    16px;
  color: #ffffff;
  background: #7a3a22;
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: 800;
}

.review-score-card strong {
  display: block;
  margin-bottom: 10px;
  color: #d99516;
  font-size: clamp(3.6rem, 3.2vw, 5rem);
  line-height: 1;
}

.review-score-card p {
  margin: 0;
  color: #5d4634;
  font-size: 1.45rem;
  line-height: 1.7;
}

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

.review-score-card--google::before {
  content: "Google";
  position: absolute;
  top: 18px;
  left: 20px;
  color: #4285f4;
  font-family:
    Arial,
    sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.review-score-card--google::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 22px;
  width: 54px;
  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 {
  position: relative;
  overflow: hidden;
  border:
    2px
    solid
    rgba(184, 18, 43, .26);
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #fff6f4 48%,
      #fffaf0 100%
    );
}

.review-score-card--official::before {
  content: "Official Review";
  position: absolute;
  top: 18px;
  left: 20px;
  color: var(--color-red);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: .08em;
}

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

.review-score-card--official span {
  margin-top: 28px;
  color: var(--color-red);
  background: rgba(184, 18, 43, .09);
}

.review-score-card--official strong {
  color: #d99516;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, .08);
}

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

.review-score-card--google span {
  margin-top: 28px;
  color: #1a73e8;
  background: rgba(66, 133, 244, .10);
}

.review-score-card--google strong {
  color: #fbbc05;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, .08);
}

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

.review-voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.4vw, 22px);
}

.review-voice-card {
  padding: clamp(24px, 2.2vw, 34px);
  border: 1px solid rgba(138, 106, 47, .18);
  border-radius: var(--radius-l);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 28px rgba(105, 54, 14, .08);
}

.review-star {
  display: inline-block;
  margin-bottom: 12px;
  color: #d99516;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.review-voice-card h3 {
  margin:
    0
    0
    14px;
  color: #3b2418;
  font-size: clamp(1.85rem, 1.4vw, 2.25rem);
  line-height: 1.5;
}

.review-voice-card p {
  margin:
    0
    0
    18px;
  color: #5d4634;
  font-size: 1.42rem;
  line-height: 1.78;
}

.review-voice-card small {
  display: block;
  color: var(--color-gold);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: right;
}

.reviews__note {
  width: min(100%, 760px);
  margin:
    26px
    0
    0
    auto;
  color: var(--color-muted);
  font-size: 1.25rem;
  line-height: 1.7;
  text-align: right;
}



/* =========================
   09. Features
========================= */

.features {
  padding:
    clamp(64px, 5.5vw, 82px)
    0;
  background: #ffffff;
}

.features__inner {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.features__head {
  width: min(100%, 820px);
  margin:
    0
    auto
    clamp(38px, 3.5vw, 56px);
  text-align: center;
}

.features__en {
  margin:
    0
    0
    14px;
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .18em;
}

.features h2 {
  margin:
    0
    0
    22px;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 2.35vw, 4rem);
  line-height: 1.45;
}

.features__head p:last-child {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.55rem;
  line-height: 1.85;
  text-align: left;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 1.8vw, 28px);
}

.features-card {
  overflow: hidden;
  border: 1px solid rgba(7, 21, 37, .10);
  border-radius: var(--radius-l);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition:
    transform .22s ease,
    box-shadow .22s ease;
}

.features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(7, 21, 37, .14);
}

.features-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.features-card__body {
  padding: clamp(20px, 1.7vw, 28px);
}

.features-card__body span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color-red);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.features-card h3 {
  margin:
    0
    0
    14px;
  font-size: clamp(1.9rem, 1.35vw, 2.25rem);
  line-height: 1.5;
}

.features-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.42rem;
  line-height: 1.78;
}

.features-card img.features__img-contain {
  width: 100%;
  aspect-ratio: 1200 / 760;
  object-fit: contain;
  background: #f8f5ee;
}




/* =========================
   10. Workstyle
========================= */

.workstyle {
  padding:
    clamp(64px, 5.5vw, 82px)
    0;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7f3ea 100%
    );
}

.workstyle__inner {
  width: min(88%, var(--container));
  margin: 0 auto;
}

.workstyle__head {
  width: min(100%, 820px);
  margin:
    0
    auto
    clamp(38px, 3.5vw, 56px);
  text-align: center;
}

.workstyle__en {
  margin:
    0
    0
    14px;
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.workstyle h2 {
  margin:
    0
    0
    22px;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 2.35vw, 4rem);
  line-height: 1.45;
}

.workstyle__head p:last-child {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.55rem;
  line-height: 1.85;
  text-align: left;
}

.workstyle__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.4vw, 22px);
  margin-bottom: clamp(30px, 3vw, 44px);
}

.workstyle-card {
  padding: clamp(26px, 2.4vw, 36px);
  border: 1px solid rgba(138, 106, 47, .18);
  border-radius: var(--radius-l);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow-card);
}

.workstyle-card h3 {
  margin:
    0
    0
    14px;
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 1.35vw, 2.25rem);
  line-height: 1.5;
}

.workstyle-card p {
  margin: 0;
  color: #5f574d;
  font-size: 1.42rem;
  line-height: 1.78;
}

.workstyle__note {
  width: min(100%, 820px);
  margin:
    0
    auto
    clamp(34px, 3.4vw, 52px);
  padding:
    clamp(18px, 1.8vw, 24px)
    clamp(22px, 2.2vw, 30px);
  background: rgba(255, 255, 255, .68);
  border:
    1px
    solid
    rgba(138, 106, 47, .16);
  border-radius: var(--radius-m);
  text-align: center;
}

.workstyle__note p {
  margin: 0;
  color: #5f574d;
  font-size: 1.48rem;
  line-height: 1.8;
}

.workstyle__links {
  padding:
    clamp(28px, 2.6vw, 40px);
  border-left: 5px solid #8b3a3a;
  border-radius:
    0
    var(--radius-m)
    var(--radius-m)
    0;
  background:
    linear-gradient(
      135deg,
      rgba(116, 38, 38, .12) 0%,
      rgba(255, 248, 242, .96) 100%
    );
}

.workstyle__links p {
  margin:
    0
    0
    18px;
  color: var(--color-text);
  font-size: 1.5rem;
  line-height: 1.8;
}

.workstyle__links ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px, 1vw, 18px);
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workstyle__links li {
  min-width: 0;
}

.workstyle__links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  width: 100%;
  padding:
    10px
    12px;
  color: #5a2b2b;
  border: 1px solid rgba(138, 106, 47, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transition:
    transform .2s ease,
    background .2s ease;
}

.workstyle__links li a:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

.workstyle__more {
  margin-top: clamp(24px, 2.6vw, 38px);
  text-align: center;
}

.workstyle__more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding:
    0
    clamp(28px, 3vw, 44px);
  color: #ffffff;
  background: #8b3a3a;
  border:
    1px
    solid
    rgba(139, 58, 58, .28);
  border-radius: 999px;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .04em;
  text-align: center;
  text-decoration: none;
  box-shadow:
    0 12px 26px rgba(90, 43, 43, .18);
  transition:
    transform .2s ease,
    background .2s ease;
}

.workstyle__more a:hover {
  transform: translateY(-2px);
  background: #742626;
}




/* =========================
   11. Products Detail
========================= */

.products-detail {
  padding:
    clamp(64px, 5.5vw, 82px)
    0;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8f5ee 100%
    );
}

.products-detail__inner {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.products-detail__head {
  width: min(100%, 840px);
  margin:
    0
    auto
    clamp(38px, 3.5vw, 56px);
  text-align: center;
}

.products-detail__en {
  margin:
    0
    0
    14px;
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .18em;
}

.products-detail h2 {
  margin:
    0
    0
    22px;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 2.35vw, 4rem);
  line-height: 1.45;
}

.products-detail__head p:last-child {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.55rem;
  line-height: 1.85;
  text-align: left;
}

/* 商品カード */

.products-detail__cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(16px, 1.4vw, 22px);
  width: min(100%, var(--container));
  margin:
    0
    auto
    clamp(42px, 4vw, 58px);
}

.product-info-card {
  grid-column: span 2;
  overflow: hidden;
  border: 1px solid rgba(138, 106, 47, .2);
  border-radius: var(--radius-l);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.product-info-card:nth-child(4) {
  grid-column:
    2
    / span 2;
}

.product-info-card:nth-child(5) {
  grid-column:
    4
    / span 2;
}

.product-info-card__image {
  padding: 0;
  background:
    linear-gradient(
      180deg,
      #fbf8f1 0%,
      #f1eadc 100%
    );
}

.product-info-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.product-info-card__body {
  padding:
    clamp(18px, 1.6vw, 24px);
}

.product-info-card__label {
  margin:
    0
    0
    8px;
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.product-info-card h3 {
  margin:
    0
    0
    12px;
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 1.35vw, 2.25rem);
  line-height: 1.4;
}

.product-info-card__body p:not(.product-info-card__label) {
  min-height: 5em;
  margin:
    0
    0
    18px;
  color: var(--color-muted);
  font-size: 1.38rem;
  line-height: 1.75;
}

.product-info-card span {
  display: block;
  padding-top: 12px;
  border-top: 1px solid rgba(138, 106, 47, .18);
  color: #8b3a3a;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.4;
}

/* 価格表 */

.products-table-block {
  margin-top: clamp(34px, 3.5vw, 48px);
}

.products-table-block h3,
.products-option-table-block h3 {
  margin:
    0
    0
    34px;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 1.55vw, 2.6rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: .04em;
  text-align: center;
}

.products-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(138, 106, 47, .22);
  border-radius: var(--radius-m);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.products-table {
  width: 100%;
  min-width: 1100px;
  border-collapse: collapse;
}

.products-table th,
.products-table td {
  padding:
    13px
    11px;
  border: 1px solid rgba(138, 106, 47, .16);
  color: var(--color-text);
  font-size: 1.24rem;
  line-height: 1.6;
  text-align: center;
  vertical-align: middle;
}

.products-table thead th {
  background: #2f251b;
  color: #ffffff;
  font-weight: 800;
  white-space: nowrap;
}

.products-table tbody th {
  width: 120px;
  background: #f1e5d0;
  color: #3a3028;
  font-weight: 900;
}

.products-table tbody tr:nth-child(even) td {
  background: #fbf8f1;
}

.products-table td.products-table__price {
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* オプション */

.products-option-table-block {
  width: min(100%, 980px);
  margin:
    clamp(36px, 3.5vw, 50px)
    auto
    0;
  padding: clamp(22px, 2.2vw, 32px);
  border: 1px solid rgba(138, 106, 47, .2);
  border-radius: var(--radius-l);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .92) 0%,
      rgba(248, 245, 238, .96) 100%
    );
}

.products-option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 1.8vw, 28px);
  width: min(100%, 820px);
  margin: 0 auto;
  align-items: start;
}

.products-option-item {
  min-width: 0;
}

.products-option-item__image {
  overflow: hidden;
  width: min(100%, 300px);
  margin:
    0
    auto
    14px;
  border-radius: 12px;
  background: #f6f0e4;
}

.products-option-item__image img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: contain;
}

.products-option-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid rgba(138, 106, 47, .22);
  border-radius: var(--radius-s);
  background: #ffffff;
}

.products-option-table th,
.products-option-table td {
  padding:
    11px
    12px;
  border: 1px solid rgba(138, 106, 47, .16);
  color: var(--color-text);
  font-size: 1.24rem;
  line-height: 1.55;
  text-align: center;
  vertical-align: middle;
}

.products-option-table th {
  width: 108px;
  background: #f1e5d0;
  color: #3a3028;
  font-weight: 900;
}

.products-option-table--wide th {
  width: 98px;
}

.products-option-note {
  margin:
    16px
    0
    0;
  color: var(--color-muted);
  font-size: 1.25rem;
  line-height: 1.7;
  text-align: right;
}



/* =========================
   12. QR Movie
========================= */

.movie-qr {
  padding:
    clamp(64px, 5.5vw, 82px)
    0;
  background:
    linear-gradient(
      135deg,
      #1d1712 0%,
      #3a2b1d 50%,
      #f6f0e4 50%,
      #ffffff 100%
    );
}

.movie-qr__inner {
  display: grid;
  grid-template-columns:
    1.18fr
    .82fr;
  gap: clamp(28px, 2.8vw, 42px);
  align-items: center;
  width: min(92%, var(--container));
  margin: 0 auto;
}

.movie-qr__image {
  overflow: hidden;
  border-radius: var(--radius-l);
  background: #f6f0e4;
  box-shadow:
    0 28px 68px rgba(7, 21, 37, .26);
}

.movie-qr__image img {
  display: block;
  width: 100%;
  height: auto;
}

.movie-qr__content {
  padding: clamp(24px, 2.3vw, 36px);
  border: 1px solid rgba(138, 106, 47, .22);
  border-radius: var(--radius-l);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-card);
}

.movie-qr__en {
  margin:
    0
    0
    14px;
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .18em;
}

.movie-qr h2 {
  margin:
    0
    0
    24px;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 2.35vw, 4rem);
  line-height: 1.45;
}

.movie-qr__content > p:not(.movie-qr__en) {
  margin: 0;
  color: var(--color-text);
  font-size: 1.48rem;
  line-height: 1.82;
}

.movie-app-guide {
  width: min(92%, var(--container));
  margin:
    clamp(34px, 3.4vw, 48px)
    auto
    0;
  padding: clamp(24px, 2.4vw, 36px);
  border: 1px solid rgba(138, 106, 47, .2);
  border-radius: var(--radius-l);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .94) 0%,
      rgba(248, 245, 238, .96) 100%
    );
  box-shadow: var(--shadow-card);
}

.movie-app-guide__head {
  width: min(100%, 820px);
  margin:
    0
    auto
    clamp(24px, 2.4vw, 34px);
  text-align: center;
}

.movie-app-guide__label {
  margin:
    0
    0
    10px;
  color: #8b3a3a;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.movie-app-guide h3 {
  margin:
    0
    0
    14px;
  font-family: var(--font-sans);
  font-size: clamp(1.85rem, 1.35vw, 2.3rem);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: .03em;
}

.movie-app-guide__head p:last-child {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.42rem;
  line-height: 1.8;
  text-align: left;
}

.movie-app-guide__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.4vw, 22px);
}

.movie-app-card {
  display: grid;
  grid-template-columns:
    64px
    1fr;
  gap: 15px;
  align-items: start;
  padding: clamp(18px, 1.7vw, 24px);
  border: 1px solid rgba(138, 106, 47, .18);
  border-radius: var(--radius-m);
  background: #ffffff;
}

.movie-app-card__icon {
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 14px;
  background: #f6f0e4;
  box-shadow:
    0 10px 22px rgba(7, 21, 37, .12);
}

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

.movie-app-card h4 {
  margin:
    0
    0
    10px;
  color: #5a2b2b;
  font-size: clamp(1.65rem, 1.15vw, 2rem);
  font-weight: 900;
  line-height: 1.45;
}

.movie-app-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.38rem;
  line-height: 1.72;
}

.movie-qr__note {
  width: min(92%, var(--container));
  margin:
    clamp(22px, 2.2vw, 32px)
    auto
    0;
  color: rgba(95, 87, 77, .82);
  font-size: 1.18rem;
  line-height: 1.8;
  text-align: right;
}



/* =========================
   13. FAQ
========================= */

.faq {
  padding:
    clamp(64px, 5.5vw, 82px)
    0;
  background:
    linear-gradient(
      180deg,
      #f8f6f2 0%,
      #ffffff 100%
    );
}

.faq__inner {
  width: min(88%, var(--container));
  margin: 0 auto;
}

.faq__head {
  width: min(100%, 800px);
  margin:
    0
    auto
    clamp(38px, 3.5vw, 56px);
  text-align: center;
}

.faq__en {
  margin:
    0
    0
    14px;
  color: var(--color-red);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.faq h2 {
  margin:
    0
    0
    22px;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 2.35vw, 4rem);
  line-height: 1.45;
}

.faq__head p:last-child {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.55rem;
  line-height: 1.85;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap:
    20px
    28px;
  align-items: start;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(7, 21, 37, .10);
  border-radius: var(--radius-m);
  background: rgba(255, 255, 255, .90);
  box-shadow: 0 12px 28px rgba(7, 21, 37, .07);
}

.faq-item summary {
  position: relative;
  cursor: pointer;
  padding:
    22px
    58px
    22px
    26px;
  color: var(--color-dark);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.7;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--color-dark);
  font-size: 2rem;
  line-height: 1;
  border-radius: 999px;
  background: rgba(7, 21, 37, .06);
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
  background: rgba(201, 162, 74, .22);
}

.faq-answer p {
  margin: 0;
  padding:
    0
    28px
    26px;
  color: var(--color-muted);
  font-size: 1.45rem;
  line-height: 1.9;
}



/* =========================
   14. Final CTA
========================= */

.final-cta {
  padding:
    clamp(64px, 5.5vw, 82px)
    0;
  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%
    );
}

.final-cta__inner {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.final-cta__head {
  width: min(100%, 900px);
  margin:
    0
    auto
    clamp(38px, 3.5vw, 56px);
  text-align: center;
}

.final-cta__en {
  margin:
    0
    0
    14px;
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .18em;
}

.final-cta h2 {
  margin:
    0
    0
    22px;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 2.35vw, 4rem);
  line-height: 1.45;
}

.final-cta__head p:last-child {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.55rem;
  line-height: 1.85;
}

.final-cta__main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 1.8vw, 26px);
  align-items: stretch;
}

.order-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.2vw, 34px);
  border: 1px solid rgba(138, 106, 47, .18);
  border-radius: var(--radius-l);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 42px rgba(54, 38, 18, .12);
}

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

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

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

.order-card--rakuten {
  border: 2px solid #bf0000;
  background: #ffffff;
}

.order-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  margin-bottom: 16px;
  padding:
    0
    14px;
  border-radius: 999px;
  font-size: 1.25rem;
  font-weight: 800;
}

.order-card--line span {
  color: #078f42;
  background: rgba(6, 199, 85, .10);
}

.order-card--rakuten span {
  color: #ffffff;
  background: #bf0000;
}

.order-card h3 {
  margin:
    0
    0
    16px;
  font-size: clamp(2.1rem, 1.55vw, 2.55rem);
  line-height: 1.45;
}

.order-card p {
  margin:
    0
    0
    20px;
  color: var(--color-muted);
  font-size: 1.42rem;
  line-height: 1.78;
}

.order-card--rakuten a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 280px;
  min-height: 54px;
  margin-top: auto;
  padding:
    0
    30px;
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 900;
  border: 2px solid #bf0000;
  border-radius: 999px;
  background: #bf0000;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .16);
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.order-card--rakuten a:hover {
  transform: translateY(-2px);
  background: #a80000;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .18);
}

.order-card__qr {
  width: 160px;
  margin:
    0
    auto
    20px;
  padding: 12px;
  border: 1px solid rgba(6, 199, 85, .18);
  border-radius: var(--radius-m);
  background: #ffffff;
}

.order-card__qr img {
  display: block;
  width: 100%;
  height: auto;
}

.order-card--line p.order-card__qr-note {
  margin:
    0
    0
    14px;
  color: var(--color-muted);
  font-size: 1.3rem;
  line-height: 1.65;
  text-align: center;
}

.order-card__line-id {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0;
  padding:
    10px
    14px;
  border: 1px solid rgba(6, 199, 85, .32);
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      rgba(6, 199, 85, .12) 0%,
      rgba(255, 255, 255, .94) 100%
    );
  color: #113c22;
  line-height: 1.3;
}

.order-card__line-id strong {
  color: #113c22;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.order-card__rakuten-campaign {
  margin:
    2px
    0
    18px;
  padding:
    15px
    18px;
  border: 2px solid #bf0000;
  border-radius: var(--radius-m);
  background: #ffe600;
}

.order-card__rakuten-campaign strong {
  display: block;
  color: #bf0000;
  font-size: 1.62rem;
  font-weight: 900;
  line-height: 1.55;
}

.order-card__rakuten-campaign p {
  margin:
    8px
    0
    0;
  color: #3a2100;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.6;
}

.order-card__benefits {
  display: grid;
  gap: 8px;
  margin:
    0
    0
    20px;
  padding: 0;
  list-style: none;
}

.order-card__benefits li {
  position: relative;
  padding:
    10px
    13px
    10px
    36px;
  border: 2px solid #bf0000;
  border-radius: 999px;
  background: #ffffff;
  color: #bf0000;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.45;
}

.order-card__benefits li::before {
  content: "●";
  position: absolute;
  top: 50%;
  left: 17px;
  color: #ffe600;
  font-size: 1.1rem;
  text-shadow:
    0 0 0 #bf0000,
    1px 0 0 #bf0000,
    -1px 0 0 #bf0000,
    0 1px 0 #bf0000,
    0 -1px 0 #bf0000;
  transform: translateY(-50%);
}

.final-cta__sub {
  width: min(100%, 880px);
  margin:
    clamp(28px, 3vw, 42px)
    auto
    0;
  padding: clamp(24px, 2.2vw, 34px);
  border: 1px solid rgba(138, 106, 47, .20);
  border-radius: var(--radius-l);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 34px rgba(54, 38, 18, .10);
  text-align: center;
}

.final-cta__sub h3 {
  margin:
    0
    0
    18px;
  font-size: 1.95rem;
}

.final-cta__sub ul {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}

.final-cta__sub a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding:
    0
    22px;
  border: 1px solid rgba(138, 106, 47, .26);
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8f4ea 100%
    );
  color: var(--color-text);
  font-size: 1.38rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(54, 38, 18, .08);
}

.final-cta__sub p {
  width: min(100%, 680px);
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: left;
}



/* =========================
   15. Footer
========================= */

.footer {
  padding:
    clamp(64px, 7vw, 92px)
    0
    clamp(28px, 3vw, 40px);
  color: #ffffff;
  background:
    linear-gradient(
      180deg,
      #0f1317 0%,
      #171b20 100%
    );
}

.footer__inner {
  display: grid;
  grid-template-columns:
    1.1fr
    .9fr;
  gap: clamp(36px, 3vw, 56px);
  width: min(88%, var(--container));
  margin: 0 auto;
}

.footer__logo-link {
  display: inline-block;
  color: inherit;
  transition:
    opacity .3s ease,
    transform .3s ease,
    text-shadow .3s ease;
}

.footer__logo-link:hover {
  opacity: .72;
  transform: translateY(-2px);
  text-shadow:
    0 0 8px rgba(255, 255, 255, .18),
    0 0 18px rgba(255, 255, 255, .14);
}

.footer__logo {
  margin-bottom: 24px;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 2vw, 3.2rem);
  line-height: 1.6;
  letter-spacing: .08em;
}

.footer__lead {
  max-width: 520px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .72);
  font-size: 1.5rem;
  line-height: 2;
}

.footer__contact p {
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 1.45rem;
  line-height: 2;
}

.footer__nav-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer__sns {
  display: flex;
  gap: 18px;
  margin-bottom: 34px;
}

.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);
  transition:
    transform .2s ease,
    background .2s ease;
}

.footer__sns a:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-2px);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap:
    14px
    18px;
  max-width: 460px;
}

.footer__nav a {
  color: rgba(255, 255, 255, .78);
  font-size: 1.4rem;
  transition: color .2s ease;
}

.footer__nav a:hover {
  color: #ffffff;
}

.footer__copy {
  display: block;
  margin-top: 64px;
  color: rgba(255, 255, 255, .42);
  font-size: 1.2rem;
  letter-spacing: .06em;
  text-align: center;
}


/* =========================
   16. Page Top
========================= */

.page-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: var(--z-floating);
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--color-dark);
  font-size: 2rem;
  font-weight: 900;
  border: 1px solid rgba(7, 21, 37, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(7, 21, 37, .12);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity .25s ease,
    visibility .25s ease,
    transform .25s ease;
}

.page-top.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-top:hover {
  transform: translateY(-3px);
}


/* =========================
   17. Utility
========================= */

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



/* =========================
   18. Animation
========================= */

.js-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity .8s ease,
    transform .8s ease;
  will-change:
    opacity,
    transform;
}

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

.js-reveal--slow {
  transition-duration: 1s;
}

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

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js-reveal,
  .js-reveal.is-visible,
  .hero__image img,
  .hero-keywords span {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
    transition: none;
  }
}


/* =========================
   19. Hover Effects
========================= */

.collection-card,
.basic-layout-card,
.review-voice-card,
.features-card,
.workstyle-card,
.product-info-card,
.movie-app-card,
.order-card,
.final-cta__sub {
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease,
    background .28s ease;
}

.collection-card:hover,
.basic-layout-card:hover,
.review-voice-card:hover,
.features-card:hover,
.workstyle-card:hover,
.product-info-card:hover,
.movie-app-card:hover,
.order-card:hover,
.final-cta__sub:hover {
  transform: translateY(-4px);
  border-color: rgba(138, 106, 47, .34);
  box-shadow:
    0 24px 58px rgba(7, 21, 37, .14);
}

.features-card img,
.product-info-card__image img,
.movie-qr__image img {
  transition:
    transform .45s ease,
    filter .45s ease;
}

.features-card:hover img,
.product-info-card:hover .product-info-card__image img,
.movie-qr__image:hover img {
  transform: scale(1.035);
  filter:
    brightness(1.03)
    contrast(1.02);
}

.collection__more a,
.workstyle__links a,
.final-cta__sub a {
  position: relative;
  overflow: hidden;
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    border-color .24s ease,
    background .24s ease,
    color .24s ease;
}

.collection__more a:hover,
.workstyle__links a:hover,
.final-cta__sub a:hover {
  transform: translateY(-3px);
  border-color: rgba(138, 106, 47, .52);
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f3ead7 100%
    );
  box-shadow:
    0 16px 34px rgba(54, 38, 18, .13);
}

.order-card--rakuten a:hover {
  transform: translateY(-3px);
  background: #a80000;
  box-shadow:
    0 18px 36px rgba(191, 0, 0, .26);
}

.order-card__qr,
.order-card__line-id {
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;
}

.order-card--line:hover .order-card__qr,
.order-card--line:hover .order-card__line-id {
  transform: translateY(-2px);
  border-color: rgba(6, 199, 85, .42);
  box-shadow:
    0 12px 26px rgba(6, 199, 85, .12);
}

.review-score-card {
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease,
    filter .28s ease;
}

.review-score-card:hover {
  transform: translateY(-5px);
  filter:
    brightness(1.02)
    contrast(1.02);
  box-shadow:
    0 26px 58px rgba(105, 54, 14, .22);
}

.review-score-card--google:hover {
  border-color: rgba(66, 133, 244, .52);
}

.review-score-card--official:hover {
  border-color: rgba(184, 18, 43, .42);
}


/* =========================
   20. First View Animation
========================= */

.hero__image img {
  opacity: 0;
  transform: scale(1.035);
  filter:
    blur(8px)
    brightness(.88);
  animation:
    heroImageFade 1.35s ease forwards;
}

.hero-keywords span {
  opacity: 0;
  transform: translateY(18px);
  animation:
    heroKeywordFade .75s ease forwards;
}

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

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

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

@keyframes heroImageFade {
  from {
    opacity: 0;
    transform: scale(1.035);
    filter:
      blur(8px)
      brightness(.88);
  }

  to {
    opacity: 1;
    transform: scale(1);
    filter:
      blur(0)
      brightness(1);
  }
}

@keyframes heroKeywordFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}