@charset "utf-8";

/* =========================
   01. リセット・基本設定
========================= */

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

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

* {
  box-sizing: border-box;
}

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

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

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

li {
  list-style: none;
}

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

p {
  margin-bottom: 1.1em;
}


/* =========================
   02. 変数
========================= */

:root {
  --color-bg: #f6f1e8;
  --color-white: #ffffff;
  --color-text: #1d222a;
  --color-muted: #65707d;
  --color-navy: #11161b;
  --color-navy-2: #0c233d;
  --color-enji: #5f1b22;
  --color-gold: #a88a4a;
  --color-gold-soft: #d9ccb0;
  --color-line: rgba(7, 21, 37, .13);

  --shadow-card: 0 20px 50px rgba(7, 21, 37, .13);
  --shadow-deep: 0 32px 90px rgba(0, 0, 0, .28);

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-m: 18px;
    
  --space-xs: clamp(8px, .6vw, 12px);
  --space-s: clamp(12px, 1vw, 18px);
  --space-m: clamp(18px, 1.5vw, 28px);
  --space-l: clamp(28px, 2vw, 40px);
  --space-xl: clamp(40px, 4vw, 72px);

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

  --fz-xs: 1.3rem;
  --fz-s: 1.5rem;
  --fz-m: 1.7rem;
  --fz-l: clamp(2.7rem, 2.4vw, 4rem);
  --fz-xl: clamp(4.6rem, 5.3vw, 8.2rem);

  --font-gothic: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  --font-mincho: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --font-sans: var(--font-gothic);
  --font-serif: var(--font-mincho);
  --color-main: var(--color-navy);
    
  --z-base: 1;
  --z-header: 100;
  --z-overlay: 500;
  --z-modal: 1000;
  --z-floating: 1100;
}


/* =========================
   03. 共通レイアウト
========================= */

.section-inner {
  width: min(92%, var(--container));
  margin-inline: auto;
}

.section-inner--narrow {
  width: min(100% - 48px, var(--container-narrow));
}

.section-inner--wide {
  width: min(92%, var(--container-wide));
}

.features,
.layouts,
.process,
.movie,
.lineup,
.prepare,
.support-info,
.line-guide,
.reviews,
.faq,
.other-works,
.contact {
  padding:
    var(--space-xl)
    0;
}

.section-white {
  background: #fdfbf7;
}

.section-soft {
  background:
    linear-gradient(
      180deg,
      #f7f1e6 0%,
      #ebe0cd 100%
    );
}

.section-quiet {
  background:
    linear-gradient(
      180deg,
      #f8f5ef 0%,
      #fdfbf7 100%
    );
}

.section-dark {
  color: #ffffff;
  background-image:
    url("../images/black-metal.webp"),
    radial-gradient(
      circle at 82% 12%,
      rgba(201, 162, 74, .16),
      transparent 24%
    ),
    radial-gradient(
      circle at 18% 88%,
      rgba(120, 31, 43, .18),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #11161b 0%,
      #1b2026 52%,
      #100b0c 100%
    );
  background-size:
    cover,
    auto,
    auto,
    auto;
  background-position:
    center,
    center,
    center,
    center;
  background-blend-mode:
    soft-light,
    normal,
    normal,
    normal;
}

.section-line {
  background:
    linear-gradient(
      135deg,
      #f2f7f2 0%,
      #f8f5ef 48%,
      #edf5ee 100%
    );
}


/* =========================
   04. 共通見出し・テキスト
========================= */

.mincho {
  font-family: var(--font-mincho);
  font-weight: 600;
  letter-spacing: .08em;
}

.eyebrow {
  margin:
    0
    0
    var(--space-m);
  color: #8a6a2f;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .18em;
}

.section-heading {
  max-width: 780px;
  margin-bottom: var(--space-xl);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

h2 {
  margin-bottom: 24px;
  font-size: var(--fz-l);
  line-height: 1.35;
}

h3 {
  margin-bottom: 12px;
  font-size: 2.1rem;
  line-height: 1.5;
}

h4 {
  margin-bottom: 10px;
  font-size: 1.7rem;
}

.section-heading p:last-child,
.feature-card p,
.layout-card p,
.product-card p,
.prepare-card li,
.faq-item p,
.other-works p,
.reviews p {
  color: var(--color-muted);
}

.section-dark .section-heading p:last-child,
.section-dark p {
  color: rgba(255, 255, 255, .78);
}


/* =========================
   05. 共通ボタン・カード・画像枠
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(180px, 14vw, 240px);
  min-height: clamp(54px, 4vw, 64px);
  padding:
    clamp(12px, 1vw, 16px)
    clamp(22px, 1.8vw, 32px);
  border-radius: 999px;
  font-size: clamp(1.4rem, .95vw, 1.6rem);
  font-weight: 700;
  letter-spacing: .04em;
  transition:
    transform .2s ease,
    background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #08111d;
  background:
    linear-gradient(
      135deg,
      #d4b06a 0%,
      #f0d9a0 100%
    );
  box-shadow:
    0 10px 30px rgba(212, 176, 106, .28);
}

.btn-outline {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(8px);
}

.feature-card,
.layout-card,
.product-card,
.prepare-card,
.review-box,
.line-guide__card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.layout-card,
.product-card {
  padding: clamp(14px, 1.2vw, 18px);
}

.image-placeholder {
  display: grid;
  place-items: center;
  min-height: 250px;
  color: rgba(7, 21, 37, .55);
  font-weight: 900;
  border: 1px dashed rgba(7, 21, 37, .25);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .95),
      rgba(239, 225, 186, .46)
    );
}

.layouts .image-placeholder,
.process .image-placeholder {
  min-height: auto;
  padding: 0;
  border: 0;
  background: none;
}

.section-dark .image-placeholder {
  color: rgba(255, 255, 255, .72);
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .08);
  box-shadow: var(--shadow-deep);
}

.image-placeholder--hero {
  min-height: 100%;
  border: 0;
  border-radius: 0;
  background: none;
}

.image-placeholder--movie {
  min-height: 380px;
}

.image-placeholder--qr {
  min-height: 210px;
  border-radius: 22px;
}

.layout-card .image-placeholder,
.product-card .image-placeholder {
  margin-bottom: 20px;
}

.product-card .image-placeholder {
  min-height: 210px;
}


/* =========================
   06. ヘッダー・ナビ
========================= */

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

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 80px, 1400px);
  height: 90px;
  margin-inline: 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 {
  display: block;
  width: 220px;
  height: auto;
}



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

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

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


/* =========================
   07. ヒーロー
========================= */

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: #ffffff;
  background: #101419;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img,
.hero__bg picture,
.hero__bg .image-placeholder {
  width: 100%;
  height: 100%;
}

.hero__bg img {
  object-fit: cover;
  object-position: 62% center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(12, 14, 16, .96) 0%,
      rgba(22, 15, 14, .84) 30%,
      rgba(22, 15, 14, .48) 55%,
      rgba(22, 15, 14, .14) 76%,
      rgba(22, 15, 14, 0) 100%
    );
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    url("../images/hero-texture.webp")
    center / cover
    no-repeat;
  opacity: .12;
  mix-blend-mode: soft-light;
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns:
    minmax(540px, 46%)
    1fr;
  align-items: center;
  width: 100%;
  min-height: 92vh;
  padding-top: clamp(72px, 7vh, 120px);
  padding-right: clamp(32px, 4vw, 80px);
  padding-bottom: clamp(80px, 8vh, 130px);
  padding-left: clamp(48px, 8vw, 180px);
}

.hero__content {
  width: 100%;
  max-width: clamp(560px, 39vw, 760px);
}

.hero_sub_title {
  margin:
    0
    0
    clamp(18px, 2vh, 28px)
    0;
  color: #d4b06a;
  font-family: var(--font-mincho);
  font-size: clamp(1.5rem, 1.15vw, 2rem);
  font-weight: 700;
  letter-spacing: .16em;
}

.hero__title {
  margin:
    0
    0
    clamp(24px, 3vh, 40px)
    0;
  font-family: var(--font-mincho);
  font-size: clamp(3rem, 3.15vw, 5.3rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .02em;
}

.hero__title-right {
  display: inline-block;
  width: 100%;
  padding-right: .4em;
  text-align: right;
}

.hero__lead {
  max-width: clamp(520px, 36vw, 640px);
  margin: 0;
  color: rgba(230, 224, 214, .88);
  font-family: var(--font-mincho);
  font-size: clamp(1.7rem, 1.25vw, 2.4rem);
  line-height: 2;
  letter-spacing: .04em;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 1.2vw, 20px);
  margin-top: clamp(28px, 4vh, 48px);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 1vw, 14px);
  margin-top: clamp(24px, 3vh, 36px);
  padding: 0;
}

.hero__badges li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding:
    clamp(8px, .8vw, 10px)
    clamp(12px, 1vw, 16px);
  color: rgba(255, 255, 255, .92);
  font-size: clamp(1.2rem, .8vw, 1.3rem);
  font-weight: 600;
  letter-spacing: .04em;
  border: 1px solid rgba(210, 198, 170, .14);
  border-radius: 999px;
  background: rgba(210, 198, 170, .08);
  backdrop-filter: blur(10px);
}


/* =========================
   08. パンくず
========================= */

.breadcrumb {
  padding:
    clamp(9px, 1vw, 14px)
    0;
  font-size: clamp(1.45rem, 1vw, 1.56rem);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.breadcrumb li + li::before {
  content: ">";
  margin-right: 10px;
}


/* =========================
   09. イントロ
========================= */

.intro {
  padding: 110px 0;
}

.intro__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 72px;
  align-items: center;
}

.intro__content {
  max-width: 520px;
}

.intro__body {
  font-size: 1.9rem;
}

.intro__photo {
  position: relative;
  margin: 0;
}

.intro__photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.intro__photo::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      135deg,
      var(--color-enji),
      var(--color-gold)
    );
  opacity: .22;
}

.intro__photo figcaption {
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 1.4rem;
  text-align: right;
}


/* =========================
   10. 人気ランキング
========================= */

.popular-ranking {
  padding:
    clamp(84px, 8vw, 110px)
    0;
  overflow: hidden;
}

.ranking-slider {
  width: 100%;
  overflow: hidden;
  margin-top: clamp(18px, 1.8vw, 28px);
  cursor: grab;
}

.ranking-slider.is-dragging {
  cursor: grabbing;
}

.ranking-track {
  display: flex;
  gap: clamp(20px, 2vw, 28px);
  width: max-content;
  will-change: transform;
  user-select: none;
}

.ranking-card {
  flex: 0 0 auto;
  width: clamp(260px, 20vw, 320px);
  padding: clamp(16px, 1.4vw, 18px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.ranking-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 8px);
  user-select: none;
  -webkit-user-drag: none;
}

.ranking-card h3 {
  margin:
    clamp(16px, 1.5vw, 18px)
    0
    clamp(6px, .7vw, 8px);
  color: var(--color-navy);
  font-size: clamp(1.8rem, 1.3vw, 2rem);
  font-weight: 900;
}

.ranking-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(1.4rem, .95vw, 1.5rem);
  line-height: 1.7;
}


/* =========================
   11. 選ばれる理由
========================= */

.features {
  position: relative;
  overflow: hidden;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-m);
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: var(--space-m);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background:
    linear-gradient(
      180deg,
      var(--color-enji),
      var(--color-gold)
    );
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(7, 21, 37, .12);
}

.feature-card__image {
  overflow: visible;
}

.feature-card__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: initial;
  transition: transform .45s ease;
}

.feature-card:hover .feature-card__image img {
  transform: translateY(-6px);
}

.feature-card__content {
  padding: 30px;
}

.feature-card__num {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--color-enji);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.feature-card h3 {
  margin-bottom: var(--space-s);
  color: var(--color-navy);
  font-size: 2.3rem;
  line-height: 1.5;
}

.feature-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.6rem;
  line-height: 1.95;
}


/* =========================
   12. 人気レイアウト構成
========================= */

.layout-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.6vw, 24px);
}

.layout-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 8px);
}


/* =========================
   13. かっこいいレイアウト見本
========================= */

.cool-layouts {
  position: relative;
  overflow: hidden;
  padding:
    clamp(84px, 8vw, 110px)
    0;
}

.cool-layouts-group {
  width: min(92%, 1180px);
  margin:
    clamp(42px, 4vw, 60px)
    auto
    0;
}

.cool-layouts-group:first-of-type {
  margin-top: 0;
}

.cool-layouts-group h3 {
  position: relative;
  width: fit-content;
  margin:
    0
    0
    clamp(22px, 2vw, 30px)
    clamp(44px, 3.2vw, 58px);
  padding:
    0
    0
    10px
    12px;
  color: #ffffff;
  font-size: clamp(2.6rem, 2vw, 3.4rem);
  line-height: 1.4;
  letter-spacing: .08em;
}

.cool-layouts-group h3::before {
  content: "";
  position: absolute;
  top: .2em;
  left: -10px;
  width: 6px;
  height: 1.2em;
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      #d4b06a 0%,
      #8f6a2e 100%
    );
  box-shadow:
    0 0 12px rgba(212, 176, 106, .28);
}

.cool-layouts-group h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      rgba(212, 176, 106, .75) 0%,
      rgba(212, 176, 106, 0) 100%
    );
}

.cool-layouts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-m);
}

.cool-layout-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .06);
  box-shadow: var(--shadow-deep);
}

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

.cool-layout-card p {
  margin: 0;
  padding:
    clamp(14px, 1.3vw, 20px)
    clamp(16px, 1.5vw, 22px);
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.4rem, .95vw, 1.55rem);
  font-weight: 900;
  text-align: center;
}

.cool-layout-zoom {
  display: block;
  width: 100%;
  padding: 0;
  color: inherit;
  border: 0;
  background: none;
  cursor: zoom-in;
}

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

.cool-layout-zoom span {
  display: block;
  padding:
    clamp(28px, 2.4vw, 40px)
    clamp(16px, 1.5vw, 22px);
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.4rem, .95vw, 1.55rem);
  font-weight: 900;
  text-align: center;
}

.layout-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: none;
  place-items: center;
  padding: clamp(32px, 4vw, 64px);
  background: rgba(0, 0, 0, .82);
}

.layout-modal.is-open {
  display: grid;
}

.layout-modal__image {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
}

.layout-modal__close {
  position: fixed;
  top: clamp(20px, 2vw, 34px);
  right: clamp(24px, 2.5vw, 42px);
  width: clamp(44px, 3.5vw, 56px);
  height: clamp(44px, 3.5vw, 56px);
  color: #ffffff;
  font-size: clamp(2.4rem, 2vw, 3.2rem);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  cursor: pointer;
}


/* =========================
   14. イラスト素材集
========================= */

.material-assets {
  padding:
    clamp(84px, 8vw, 110px)
    0;
  background: #faf7f1;
}

.material-assets-slider {
  overflow: hidden;
  margin:
    clamp(36px, 3.5vw, 52px)
    0
    clamp(42px, 4vw, 58px);
  cursor: grab;
}

.material-assets-slider.is-dragging {
  cursor: grabbing;
}

.material-assets-slider__track {
  display: flex;
  gap: clamp(18px, 1.8vw, 26px);
  width: max-content;
  will-change: transform;
  user-select: none;
}

.material-assets-slider img {
  display: block;
  width: clamp(150px, 12vw, 220px);
  height: clamp(150px, 12vw, 220px);
  object-fit: cover;
  border: 1px solid rgba(7, 21, 37, .08);
  border-radius: clamp(16px, 1.2vw, 22px);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(7, 21, 37, .08);
  user-select: none;
  -webkit-user-drag: none;
}

.material-assets__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.6vw, 24px);
}

.material-assets__card {
  position: relative;
  display: block;
  padding: clamp(20px, 1.8vw, 28px);
  border: 1px solid rgba(7, 21, 37, .12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fbf7ef 100%
    );
  box-shadow: var(--shadow-card);
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.material-assets__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(7, 21, 37, .11);
}

.material-assets__card--ground {
  border-top: 4px solid #5f7d4e;
}

.material-assets__card--sea {
  border-top: 4px solid #4a6f96;
}

.material-assets__card--air {
  border-top: 4px solid #6f8ea8;
}

.material-assets__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  color: var(--color-navy);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: .08em;
  border-radius: 999px;
  background: rgba(7, 21, 37, .08);
}

.material-assets__card span {
  display: block;
  margin-bottom: clamp(8px, .8vw, 12px);
  color: var(--color-enji);
  font-size: clamp(1.35rem, .95vw, 1.55rem);
  font-weight: 900;
  letter-spacing: .08em;
}

.material-assets__card strong {
  display: block;
  margin-bottom: clamp(12px, 1.2vw, 18px);
  color: var(--color-navy);
  font-size: clamp(2rem, 1.5vw, 2.6rem);
  line-height: 1.4;
}

.material-assets__card p {
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(1.4rem, 1vw, 1.6rem);
  line-height: 1.8;
}

.material-assets__note {
  margin:
    clamp(24px, 2.4vw, 34px)
    0
    0;
  color: var(--color-muted);
  font-size: clamp(1.3rem, .9vw, 1.45rem);
  line-height: 1.8;
  text-align: center;
}


/* =========================
   15. 手書き下書きから完成
========================= */

.process__visuals {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto
    minmax(0, 1fr);
  align-items: center;
  width: min(100%, 1120px);
  gap: clamp(12px, 1.8vw, 22px);
  margin:
    clamp(36px, 5vw, 64px)
    auto
    0;
}

.process__item {
  position: relative;
}

.process__item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
}

.process__label {
  margin-bottom: var(--space-s);
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 1.6vw, 2.4rem);
  font-weight: 700;
  letter-spacing: .08em;
  text-align: center;
}

.process__arrow {
  color: var(--color-gold);
  font-size: clamp(3.2rem, 4vw, 5.2rem);
  font-weight: 900;
}


/* =========================
   16. ご用意いただくもの
========================= */

.prepare {
  background:
    linear-gradient(
      180deg,
      #f6f1e8 0%,
      #efe6d6 100%
    );
}

.prepare-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 28px);
  margin-top: clamp(36px, 5vw, 64px);
}

.prepare-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding:
    clamp(28px, 2.8vw, 40px)
    clamp(22px, 2.2vw, 30px);
  border: 1px solid rgba(180, 160, 110, .18);
  border-top: 3px solid rgba(166, 133, 72, .72);
  border-radius: var(--radius-m);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, .98) 0%,
      rgba(248, 246, 241, .96) 100%
    );
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.prepare-card::before {
  content: attr(data-label);
  position: absolute;
  top: 14px;
  right: 16px;
  color: rgba(166, 133, 72, .22);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.prepare-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(166, 133, 72, .12);
  border-radius: 50%;
}

.prepare-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(18px, 1.8vw, 24px);
  color: var(--color-main);
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 1.5vw, 2.2rem);
  line-height: 1.5;
}

.prepare-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.prepare-card li {
  position: relative;
  padding-left: 1.2em;
  color: var(--color-text);
  font-size: var(--fz-s);
  line-height: 1.8;
}

.prepare-card li::before {
  content: "";
  position: absolute;
  top: .75em;
  left: 0;
  width: .45em;
  height: .45em;
  border-radius: 50%;
  background: var(--color-gold);
}

.prepare-card--note {
  border-color: rgba(157, 122, 62, .32);
  background:
    linear-gradient(
      180deg,
      rgba(250, 248, 242, .98) 0%,
      rgba(241, 237, 226, .96) 100%
    );
}

.prepare-card--note h3 {
  color: var(--color-gold);
}


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

.movie__inner {
  display: grid;
  gap: clamp(48px, 5vw, 72px);
}

.movie__grid {
  display: grid;
  align-items: center;
}

.movie__grid--main {
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(48px, 5vw, 72px);
}

.movie__grid--sub {
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(36px, 4vw, 56px);
  padding-top: clamp(34px, 4vw, 56px);
  border-top: 1px solid rgba(7, 21, 37, .12);
}

.movie__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.movie__image--sub img {
  border-radius: var(--radius-md);
}

.movie-note {
  margin:
    clamp(18px, 1.8vw, 26px)
    0
    0;
  color: var(--color-muted);
  font-size: clamp(1.35rem, .9vw, 1.5rem);
  line-height: 1.8;
}

.movie-app-guide h3 {
  margin-bottom: clamp(8px, .8vw, 12px);
  color: var(--color-navy);
  font-size: clamp(1.8rem, 1.3vw, 2.2rem);
  line-height: 1.5;
}

.movie-app-guide > p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: clamp(1.45rem, 1vw, 1.6rem);
  line-height: 1.85;
}

.movie-app-table {
  width: 100%;
  margin:
    clamp(22px, 2.4vw, 32px)
    0
    0;
  overflow: hidden;
  border: 1px solid rgba(7, 21, 37, .12);
  border-radius: clamp(16px, 1.4vw, 20px);
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fbf7ef 100%
    );
  box-shadow: 0 18px 40px rgba(7, 21, 37, .08);
}

.movie-app-row {
  display: grid;
  grid-template-columns:
    clamp(120px, 10vw, 150px)
    1fr;
  align-items: stretch;
  min-height: clamp(68px, 5vw, 82px);
  border-bottom: 1px solid rgba(7, 21, 37, .09);
}

.movie-app-row:last-child {
  border-bottom: 0;
}

.movie-app-name {
  display: flex;
  align-items: center;
  justify-content: center;
  padding:
    clamp(16px, 1.4vw, 22px)
    clamp(18px, 1.6vw, 24px);
  color: var(--color-navy);
  font-size: clamp(1.5rem, 1vw, 1.7rem);
  font-weight: 900;
  letter-spacing: .06em;
  background:
    linear-gradient(
      135deg,
      rgba(201, 162, 74, .18),
      rgba(201, 162, 74, .06)
    );
}

.movie-app-name-inner {
  display: flex;
  align-items: center;
}

.movie-app-name img {
  display: block;
  flex: 0 0 auto;
  width: clamp(34px, 2.3vw, 40px);
  height: clamp(34px, 2.3vw, 40px);
  margin-right: clamp(10px, .9vw, 14px);
  border-radius: clamp(8px, .7vw, 12px);
  object-fit: contain;
}

.movie-app-desc {
  display: flex;
  align-items: center;
  padding:
    clamp(16px, 1.4vw, 22px)
    clamp(20px, 1.8vw, 28px);
  color: var(--color-muted);
  font-size: clamp(1.4rem, .95vw, 1.55rem);
  line-height: 1.8;
}

.movie__image-card {
  width: min(92%, 760px);
  margin-inline: auto;
  padding: clamp(26px, 2.6vw, 38px);
  border: 1px solid rgba(7, 21, 37, .12);
  border-radius: clamp(18px, 1.6vw, 24px);
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fbf7ef 100%
    );
  box-shadow: 0 18px 40px rgba(7, 21, 37, .08);
}

.movie__image-label {
  margin:
    0
    0
    clamp(10px, 1vw, 14px);
  color: var(--color-enji);
  font-size: clamp(1.6rem, 1.2vw, 2.1rem);
  font-weight: 900;
  letter-spacing: .12em;
}

.movie__image-card img {
  display: block;
  width: 88%;
  height: auto;
  margin-inline: auto;
  border-radius: 0;
}

.movie__image-caption {
  margin:
    clamp(12px, 1.2vw, 16px)
    0
    0;
  color: var(--color-muted);
  font-size: clamp(1.3rem, .9vw, 1.45rem);
  line-height: 1.8;
  text-align: center;
}


/* =========================
   18. 商品ラインナップ
========================= */

.lineup-cards {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(16px, 1.4vw, 22px);
}

.lineup-card {
  grid-column: span 2;
  padding: clamp(14px, 1.2vw, 20px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.lineup-card--premium:nth-of-type(4) {
  grid-column: 2 / span 2;
}

.lineup-card--premium:nth-of-type(5) {
  grid-column: 4 / span 2;
}

.lineup-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 10px);
}

.lineup-card h3 {
  margin:
    clamp(16px, 1.5vw, 22px)
    0
    clamp(8px, .8vw, 12px);
  color: var(--color-navy);
  font-size: clamp(1.9rem, 1.35vw, 2.3rem);
  font-weight: 900;
}

.lineup-card p {
  margin:
    0
    0
    clamp(12px, 1.2vw, 18px);
  color: var(--color-muted);
  font-size: clamp(1.4rem, .95vw, 1.55rem);
  line-height: 1.8;
}

.lineup-card span {
  display: block;
  color: var(--color-enji);
  font-size: clamp(1.5rem, 1vw, 1.7rem);
  font-weight: 900;
}

.lineup-option-images {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 1.8vw, 28px);
  margin-top: clamp(28px, 3vw, 42px);
}

.lineup-option-images figure {
  width: min(26%, 260px);
  margin: 0;
}

.lineup-option-images img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: clamp(12px, 1vw, 18px);
  box-shadow: 0 10px 24px rgba(7, 21, 37, .08);
}

.lineup-option-images figcaption {
  margin-top: clamp(8px, .8vw, 12px);
  color: var(--color-muted);
  font-size: clamp(1.2rem, .8vw, 1.35rem);
  text-align: center;
}

.lineup-price {
  text-align: right;
  font-variant-numeric: tabular-nums;
}


/* =========================
   19. 表
========================= */

.lineup-table-wrap,
.lineup-option-table-wrap {
  overflow: hidden;
  border: 1px solid rgba(7, 21, 37, .12);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.lineup-table-wrap {
  margin-top: clamp(48px, 4.5vw, 72px);
}

.lineup-option-table-wrap {
  margin-top: clamp(24px, 2.5vw, 36px);
}

.lineup-table,
.lineup-option-table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: auto;
}

.lineup-table thead,
.lineup-option-table thead,
.lineup-table thead tr,
.lineup-option-table thead tr {
  background: var(--color-navy);
}

.lineup-table th,
.lineup-table td,
.lineup-option-table th,
.lineup-option-table td {
  padding:
    clamp(12px, 1vw, 18px)
    clamp(8px, .8vw, 14px);
  font-size: clamp(1.25rem, .9vw, 1.45rem);
  line-height: 2.4;
  vertical-align: middle;
  border-right: 1px solid rgba(7, 21, 37, .08);
  border-bottom: 1px solid rgba(7, 21, 37, .1);
}

.lineup-table thead th,
.lineup-option-table thead th {
  color: #ffffff;
  background: var(--color-navy);
  font-weight: 900;
  text-align: center;
}

.lineup-table tbody th,
.lineup-option-table tbody th {
  color: var(--color-navy);
  font-weight: 900;
  white-space: nowrap;
  background:
    linear-gradient(
      135deg,
      rgba(201, 162, 74, .18),
      rgba(201, 162, 74, .06)
    );
}

.lineup-table td,
.lineup-option-table td {
  color: var(--color-muted);
  background: #ffffff;
}

.lineup-table tr:last-child th,
.lineup-table tr:last-child td,
.lineup-option-table tr:last-child th,
.lineup-option-table tr:last-child td {
  border-bottom: 0;
}

.lineup-table th:last-child,
.lineup-table td:last-child,
.lineup-option-table th:last-child,
.lineup-option-table td:last-child {
  border-right: 0;
}

.lineup-table td br,
.lineup-option-table td br {
  display: block;
  content: "";
  margin-top: clamp(8px, .8vw, 12px);
}


/* =========================
   20. 検討補助
========================= */

.support-info__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2vw, 32px);
  margin-top: clamp(44px, 4vw, 64px);
}

.support-info .section-inner {
  width: min(88%, 1080px);
}

.support-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 500px;
  margin-inline: auto;
  padding: clamp(24px, 2vw, 34px);
  border: 1px solid rgba(7, 21, 37, .1);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #faf7f1 100%
    );
  box-shadow: var(--shadow-card);
}

.support-card__content {
  margin-bottom: clamp(28px, 2.4vw, 40px);
}

.support-card__label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  color: var(--color-navy);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .08em;
  border-radius: 999px;
  background: rgba(7, 21, 37, .06);
}

.support-card h3 {
  margin-bottom: clamp(18px, 1.5vw, 24px);
  color: var(--color-navy);
  font-size: clamp(2.4rem, 2vw, 3.2rem);
  line-height: 1.5;
}

.support-card p {
  color: var(--color-muted);
  font-size: clamp(1.45rem, 1vw, 1.65rem);
  line-height: 1.9;
}

.support-card__image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(7, 21, 37, .08);
  border-radius: calc(var(--radius-lg) - 10px);
}

.support-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: clamp(26px, 2vw, 34px);
  padding:
    0
    clamp(26px, 2vw, 34px);
  color: #ffffff;
  font-size: clamp(1.4rem, 1vw, 1.55rem);
  font-weight: 700;
  border-radius: 999px;
  background: var(--color-navy);
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.support-card__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(7, 21, 37, .16);
}

.support-problems {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.4vw, 22px);
}

.support-problem {
  display: block;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 8px);
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.support-problem img {
  display: block;
  width: 100%;
  height: auto;
}

.support-problem:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}


/* =========================
   21. LINE相談
========================= */

.line-guide .section-inner {
  width: min(88%, 1080px);
}

.line-guide__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 3vw, 44px);
  align-items: center;
}

.line-guide__visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: clamp(20px, 1.8vw, 28px);
  box-shadow: 0 20px 50px rgba(6, 24, 15, .12);
}

.line-guide__content .eyebrow {
  color: #06c755;
}

.line-guide__content h2 {
  margin-bottom: clamp(20px, 2vw, 30px);
  color: #173326;
  font-family: var(--font-sans);
  font-size: clamp(3.2rem, 3vw, 5rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .03em;
}

.line-guide__content > p {
  color: #33443b;
  font-size: var(--fz-m);
  line-height: 1.9;
}

.line-guide__list {
  display: grid;
  gap: 12px;
  margin-top: clamp(24px, 2.5vw, 34px);
}

.line-guide__list li {
  position: relative;
  padding:
    14px
    18px
    14px
    44px;
  color: #173326;
  font-size: var(--fz-s);
  font-weight: 700;
  line-height: 1.7;
  border: 1px solid rgba(6, 199, 85, .22);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(6, 199, 85, .08);
}

.line-guide__list li::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 18px;
  color: #06c755;
  font-weight: 900;
  transform: translateY(-50%);
}

.line-guide__methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2vw, 28px);
  margin-top: clamp(34px, 3.5vw, 48px);
}

.line-guide__method {
  padding: clamp(22px, 2vw, 30px);
  border: 1px solid rgba(6, 199, 85, .18);
  border-radius: clamp(18px, 1.5vw, 24px);
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(6, 24, 15, .08);
}

.line-guide__method h3 {
  margin-bottom: 16px;
  color: #173326;
  font-size: clamp(1.7rem, 1.2vw, 2rem);
  font-weight: 900;
}

.line-guide__qr img {
  display: block;
  width: min(100%, 220px);
  height: auto;
  margin-inline: auto;
}

.line-guide__method p,
.line-guide__id small {
  color: #52645b;
  font-size: clamp(1.3rem, .9vw, 1.45rem);
  line-height: 1.8;
}

.line-guide__id {
  display: grid;
  gap: 10px;
}

.line-guide__id span {
  color: #047a36;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.line-guide__id strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding:
    12px
    20px;
  color: #173326;
  font-size: clamp(2.2rem, 2vw, 3rem);
  font-weight: 900;
  letter-spacing: .04em;
  border: 1px solid rgba(6, 199, 85, .22);
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      rgba(6, 199, 85, .12),
      rgba(6, 199, 85, .04)
    );
  box-shadow: 0 8px 20px rgba(6, 199, 85, .08);
}


/* =========================
   22. レビュー
========================= */

.reviews .section-inner {
  width: min(88%, 1080px);
}

.review-voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.6vw, 24px);
  margin-top: clamp(48px, 4vw, 68px);
}

.review-voice-card {
  padding: clamp(22px, 2vw, 32px);
  border: 1px solid rgba(7, 21, 37, .08);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #faf7f1 100%
    );
  box-shadow: var(--shadow-card);
}

.review-voice-card--ground {
  border-top: 4px solid #667c58;
}

.review-voice-card--sea {
  border-top: 4px solid #58708a;
}

.review-voice-card--air {
  border-top: 4px solid #6c87a6;
}

.review-star {
  display: block;
  margin-bottom: clamp(16px, 1.2vw, 20px);
  color: #c9a24a;
  font-size: clamp(1.7rem, 1.2vw, 2rem);
  letter-spacing: .08em;
}

.review-voice-card h3 {
  margin-bottom: clamp(18px, 1.4vw, 24px);
  color: var(--color-navy);
  font-size: clamp(2rem, 1.5vw, 2.5rem);
  line-height: 1.6;
}

.review-voice-card p {
  color: var(--color-muted);
  font-size: clamp(1.45rem, 1vw, 1.6rem);
  line-height: 1.95;
}

.review-author {
  display: block;
  margin-top: clamp(24px, 2vw, 34px);
  color: var(--color-navy);
  font-size: clamp(1.3rem, .9vw, 1.45rem);
  font-weight: 700;
}

.reviews-note {
  margin-top: clamp(26px, 2vw, 34px);
  color: var(--color-muted);
  font-size: clamp(1.2rem, .85vw, 1.35rem);
  text-align: center;
}

.review-score-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 460px));
  justify-content: center;
  gap: var(--space-m);
  width: min(100%, 1000px);
  margin:
    clamp(52px, 4.5vw, 76px)
    auto
    0;
}

.review-score-card {
  display: block;
  width: min(100%, 520px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(7, 21, 37, .08);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.review-score-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .08);
}

.review-score-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(24px, 2vw, 34px);
}

.review-score-label {
  color: var(--color-muted);
  font-size: clamp(1.2rem, .85vw, 1.35rem);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.review-score-head strong {
  color: var(--color-navy);
  font-size: clamp(2.2rem, 1.6vw, 3rem);
  line-height: 1;
}

.review-score-card img {
  display: block;
  width: min(72%, 420px);
  height: auto;
  margin:
    0 auto
    clamp(18px, 1.5vw, 26px);
  border-radius: calc(var(--radius-md) - 4px);
}

.review-score-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(22px, 1.8vw, 30px);
  color: var(--color-navy);
  font-size: clamp(1.4rem, 1vw, 1.6rem);
  font-weight: 700;
}

.review-score-meta small {
  color: var(--color-muted);
  font-size: clamp(1.15rem, .8vw, 1.3rem);
  font-weight: 400;
}


/* =========================
   23. FAQ
========================= */

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap:
    clamp(18px, 1.6vw, 26px)
    clamp(24px, 2vw, 34px);
  align-items: start;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(7, 21, 37, .1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 14px 34px rgba(7, 21, 37, .08);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.faq-item[open] {
  background: #ffffff;
  box-shadow: 0 22px 48px rgba(7, 21, 37, .12);
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-item summary {
  position: relative;
  cursor: pointer;
  padding:
    clamp(18px, 1.5vw, 24px)
    clamp(44px, 3vw, 56px)
    clamp(18px, 1.5vw, 24px)
    clamp(20px, 1.6vw, 28px);
  color: var(--color-navy);
  font-size: clamp(1.45rem, 1vw, 1.65rem);
  font-weight: 900;
  line-height: 1.7;
  list-style: none;
}

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

.faq-item summary::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-right: 12px;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 900;
  border-radius: 999px;
  background: var(--color-navy);
}

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

.faq-item[open] summary::after {
  content: "−";
  background: rgba(201, 162, 74, .22);
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}

.faq-answer p {
  margin: 0;
  padding:
    0
    clamp(24px, 2vw, 34px)
    clamp(26px, 2vw, 34px)
    clamp(66px, 5vw, 82px);
  color: var(--color-muted);
  font-size: clamp(1.35rem, .95vw, 1.5rem);
  line-height: 1.9;
}

.faq-note {
  margin:
    clamp(34px, 3vw, 48px)
    0
    0;
  color: var(--color-muted);
  font-size: clamp(1.35rem, .95vw, 1.5rem);
  text-align: center;
}


/* =========================
   24. 他職種案内
========================= */

.other-works {
  background:
    linear-gradient(
      180deg,
      #f7f4ee 0%,
      #f2eee7 100%
    );
}

.other-works__grid {
  display: grid;
  grid-template-columns:
    .95fr
    1.05fr;
  gap: 58px;
  align-items: center;
}

.other-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.other-links a {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 18px;
  overflow: hidden;
  color: var(--color-navy);
  font-weight: 900;
  letter-spacing: .04em;
  border: 1px solid rgba(7, 21, 37, .08);
  border-radius: var(--radius-md);
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8f6f2 100%
    );
  box-shadow: var(--shadow-card);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    color .25s ease;
}

.other-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(201, 162, 74, .10) 0%,
      rgba(201, 162, 74, 0) 55%
    );
  opacity: 0;
  transition: opacity .25s ease;
}

.other-links a:hover {
  color: var(--color-enji);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .08);
}

.other-links a:hover::before {
  opacity: 1;
}


/* =========================
   25. 最終CTA
========================= */

.contact .section-inner {
  width: min(88%, 1080px);
}

.section-cta {
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f5f6f8 100%
    );
}

.section-cta .contact__heading h2 {
  color: var(--color-text);
  font-family: var(--font-gothic);
  font-weight: 900;
  letter-spacing: .04em;
}

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

.section-cta .contact__points li {
  color: var(--color-navy);
  border: 1px solid rgba(7, 21, 37, .14);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(7, 21, 37, .07);
}

.section-cta .contact-card {
  border: 1px solid rgba(7, 21, 37, .12);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.section-cta .contact-card h3 {
  color: var(--color-navy);
}

.section-cta .contact-card p {
  color: var(--color-muted);
}

.section-cta .contact-card__label {
  color: var(--color-navy);
  background: rgba(168, 138, 74, .16);
}

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

.section-cta .contact-card__note {
  color: var(--color-muted) !important;
}

.section-cta .contact__sub {
  border: 1px solid rgba(7, 21, 37, .12);
  background: rgba(255, 255, 255, .72);
}

.section-cta .contact__sub h3 {
  color: var(--color-navy);
}

.section-cta .contact__sub a {
  color: var(--color-navy);
  border: 1px solid rgba(7, 21, 37, .16);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(7, 21, 37, .06);
}

.contact {
  text-align: center;
}

.contact__heading {
  margin-bottom: clamp(34px, 3vw, 48px);
}

.contact__points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.2vw, 18px);
  margin:
    0
    0
    clamp(44px, 4vw, 64px);
  padding: 0;
}

.contact__points li {
  display: grid;
  place-items: center;
  min-height: clamp(58px, 4vw, 72px);
  padding: clamp(12px, 1vw, 16px);
  color: #ffffff;
  font-size: clamp(1.3rem, .9vw, 1.45rem);
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
}

.contact__main {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 1.8vw, 30px);
}

.contact-card {
  position: relative;
  padding: clamp(24px, 2vw, 36px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .08);
  box-shadow: var(--shadow-deep);
}

.contact-card__label {
  display: inline-block;
  margin-bottom: clamp(18px, 1.5vw, 24px);
  padding: 7px 14px;
  color: #f0d9a0;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: .08em;
  border-radius: 999px;
  background: rgba(212, 176, 106, .22);
}

.contact-card__label--rakuten {
  color: #ffffff;
  background: rgba(255, 255, 255, .12);
}

.contact-card h3 {
  margin-bottom: clamp(18px, 1.5vw, 24px);
  color: #ffffff;
  font-size: clamp(2.4rem, 2vw, 3.2rem);
  line-height: 1.5;
}

.contact-card p {
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.45rem, 1vw, 1.6rem);
  line-height: 1.9;
}

.contact-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 320px);
  min-height: clamp(58px, 4vw, 68px);
  margin-top: clamp(24px, 2vw, 34px);
  padding:
    0
    clamp(26px, 2.2vw, 38px);
  font-size: clamp(1.45rem, 1vw, 1.65rem);
  font-weight: 900;
  border-radius: 999px;
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.contact-card__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(7, 21, 37, .16);
}

.contact-card__button--line {
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      #06c755 0%,
      #3ee27b 100%
    );
}

.contact-card__button--rakuten {
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      #bf0000 0%,
      #e43a3a 100%
    );
}

.contact-card__note {
  margin:
    clamp(18px, 1.5vw, 24px)
    0
    0;
  color: rgba(255, 255, 255, .66) !important;
  font-size: clamp(1.25rem, .85vw, 1.4rem) !important;
}

.contact__sub {
  width: min(100%, 820px);
  margin:
    clamp(42px, 4vw, 64px)
    auto
    0;
  padding: clamp(26px, 2.4vw, 36px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .06);
}

.contact__sub h3 {
  margin-bottom: clamp(18px, 1.5vw, 24px);
  color: #ffffff;
  font-size: clamp(1.8rem, 1.3vw, 2.2rem);
}

.contact__sub ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 1.4vw, 22px);
  margin: 0;
  padding: 0;
}

.contact__sub a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding:
    0
    22px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.3rem, .9vw, 1.45rem);
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  transition:
    background .2s ease,
    transform .2s ease;
}

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


/* =========================
   26. 追加案内
========================= */

.after-contents .section-inner {
  width: min(88%, 1080px);
}

.after-contents {
  padding:
    clamp(84px, 8vw, 118px)
    0;
  background:
    linear-gradient(
      180deg,
      #f7f3eb 0%,
      #efe5d7 100%
    );
}

.after-contents__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2vw, 32px);
}

.after-card {
  overflow: hidden;
  border: 1px solid rgba(7, 21, 37, .08);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8f6f2 100%
    );
  box-shadow: var(--shadow-card);
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.after-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, .08);
}

.after-card__image {
  overflow: hidden;
}

.after-card__image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .5s ease;
}

.after-card:hover .after-card__image img {
  transform: scale(1.03);
}

.after-card__content {
  padding: clamp(22px, 2vw, 32px);
}

.after-card__content h2 {
  margin-bottom: clamp(18px, 1.5vw, 24px);
  color: var(--color-navy);
  font-size: clamp(2.6rem, 2vw, 3.4rem);
  line-height: 1.5;
}

.after-card__content p {
  color: var(--color-muted);
  font-size: clamp(1.45rem, 1vw, 1.6rem);
  line-height: 1.95;
}

.after-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: clamp(26px, 2vw, 34px);
  padding:
    0
    clamp(26px, 2vw, 34px);
  color: #ffffff;
  font-size: clamp(1.35rem, .95vw, 1.5rem);
  font-weight: 900;
  border-radius: 999px;
  background: var(--color-navy);
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.after-card__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(7, 21, 37, .16);
}

.image-credit {
  width: min(90%, 1200px);
  margin:
    clamp(24px, 4vw, 40px)
    auto
    0;
  text-align: right;
  font-size: clamp(1.1rem, .7vw, 1.3rem);
  line-height: 1.7;
  letter-spacing: .04em;
  color: rgba(0, 0, 0, .42);
}


/* =========================
   28. フッター
========================= */

.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;
}



/* =========================
   スクロールアニメーション
========================= */

.js-scroll-fade {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity .85s ease,
    transform .85s ease;
  will-change: opacity, transform;
}

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

.js-scroll-fade-delay {
  transition-delay: .14s;
}

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

  .js-scroll-fade-delay {
    transition-delay: 0s;
  }
}

.js-fv-fade {
  opacity: 0;
  transform: translateY(12px);
  animation: fvFadeIn .95s ease forwards;
}

@keyframes fvFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

@media (prefers-reduced-motion: reduce) {
  .js-fv-fade {
    opacity: 1;
    transform: none;
    animation: none;
  }
}



/* =========================
   28. トップに戻る
========================= */

.page-top {
  position: fixed;
  right: clamp(20px, 2vw, 32px);
  bottom: clamp(20px, 2vw, 32px);
  z-index: var(--z-floating);
  display: grid;
  place-items: center;
  width: clamp(46px, 3.5vw, 54px);
  height: clamp(46px, 3.5vw, 54px);
  color: var(--color-navy);
  font-size: 2rem;
  font-weight: 900;
  border: 1px solid rgba(7, 21, 37, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  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);
}
