@charset "utf-8";

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

  --color-bg: #1E1E1E;
  --color-white: #fff;
  --color-text: #1E1E1E;
  --color-muted: #5f5248;
  --color-border: rgba(30, 30, 30, .10);

  --color-red: #B11226;
  --color-red-dark: #760913;
  --color-orange: #B3471B;
  --color-cream: #F7F1E6;
  --color-cream-light: #FFF8EE;
  --color-beige: #B3471B;
  --color-beige-light: #FFF8EE;
  --color-dark: #1E1E1E;

  --color-accent: #B3471B;
  --color-gold: #B3471B;

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

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

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

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

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

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

* {
  box-sizing: border-box;
}

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

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

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

li {
  list-style: none;
}

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

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

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

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

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

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

.gtm-noscript {
  display: none;
  visibility: hidden;
}

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

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

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

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

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

#top-menu .top-menu-tel img,
#top-menu .top-menu-contact img,
#top-menu .top-menu-pc img {
  display: block;
  width: 45%;
  filter: brightness(0) invert(1);
  opacity: .82;
}

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

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

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

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

#top-menu .menu-btn .menu-btn-inner span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #e4ddd3;
  border-radius: 2px;
  transition:
    transform .3s ease,
    opacity .3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .35);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

body.is-past-hero:not(.is-sp-menu-open) #top-menu .top-menu-tel span,
body.is-past-hero:not(.is-sp-menu-open) #top-menu .top-menu-contact span,
body.is-past-hero:not(.is-sp-menu-open) #top-menu .top-menu-pc span,
body.is-past-hero:not(.is-sp-menu-open) #top-menu .menu-btn > span {
  color: var(--color-text);
  text-shadow: none;
}

body.is-past-hero:not(.is-sp-menu-open) #top-menu .menu-btn .menu-btn-inner span {
  background-color: #000;
  box-shadow: none;
}

body.is-past-hero:not(.is-sp-menu-open) #top-menu .top-menu-tel img,
body.is-past-hero:not(.is-sp-menu-open) #top-menu .top-menu-contact img,
body.is-past-hero:not(.is-sp-menu-open) #top-menu .top-menu-pc img {
  filter: none;
  opacity: 1;
}



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

.sp-menu {
  position: fixed;
  inset: 0;
  z-index: 850;
  display: none;
  overflow-y: auto;
  padding:
    clamp(70px, 18vw, 92px)
    var(--section-x)
    calc(clamp(82px, 22vw, 112px) + env(safe-area-inset-bottom));
  background:
    radial-gradient(
      circle at 18% 10%,
      rgba(178, 13, 30, .35) 0,
      rgba(178, 13, 30, 0) 32%
    ),
    linear-gradient(
      180deg,
      rgba(12, 9, 8, .94) 0%,
      rgba(34, 17, 13, .92) 100%
    );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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



/* =========================
   04. Hero
========================= */

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

.hero-image {
  position: relative;
  overflow: hidden;
  opacity: 1;
  background: #17120f;
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: center center;
}

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

.hero-usecase span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(32px, 8vw, 38px);
  padding:
    clamp(5px, 1.5vw, 7px)
    clamp(6px, 2vw, 10px);
  color: #2a1712;
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .03em;
  text-align: center;
  white-space: nowrap;
  border:
    1px
    solid
    rgba(179, 71, 27, .54);
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 248, 238, .94) 0%,
      rgba(255, 238, 218, .88) 100%
    );
  backdrop-filter: blur(4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .9),
    inset 0 -1px 0 rgba(179, 71, 27, .18),
    0 7px 18px rgba(0, 0, 0, .18);
}

/* オープニング中 */
.hero.is-opening .hero-image {
  opacity: 0;
}

.hero.is-opening .hero-usecase,
.hero.is-opening-done:not(.is-keywords-ready) .hero-usecase {
  opacity: 0;
  visibility: hidden;
}

.hero.is-opening.is-revealed .hero-image {
  animation:
    heroImageReveal
    1.85s
    cubic-bezier(.22, .61, .36, 1)
    forwards;
}

/* キーワード表示 */
.hero.is-keywords-ready .hero-usecase {
  visibility: visible;
  opacity: 1;
}

.hero.is-keywords-ready .hero-usecase span {
  opacity: 0;
  transform:
    translateY(10px)
    scale(.99);
  animation:
    heroKeywordReveal
    .9s
    cubic-bezier(.22, .61, .36, 1)
    forwards;
}

.hero.is-keywords-ready .hero-usecase span:nth-child(1) {
  animation-delay: .05s;
}

.hero.is-keywords-ready .hero-usecase span:nth-child(2) {
  animation-delay: .20s;
}

.hero.is-keywords-ready .hero-usecase span:nth-child(3) {
  animation-delay: .35s;
}

/* オープニング中 */
.hero.is-opening .hero-image {
  opacity: 0;
}

.hero.is-opening .hero-usecase,
.hero.is-opening-done:not(.is-keywords-ready) .hero-usecase {
  opacity: 0;
  visibility: hidden;
}

.hero.is-opening.is-revealed .hero-image {
  animation:
    heroImageReveal
    1.85s
    cubic-bezier(.22, .61, .36, 1)
    forwards;
}

/* キーワード表示 */
.hero.is-keywords-ready .hero-usecase {
  visibility: visible;
  opacity: 1;
}

.hero.is-keywords-ready .hero-usecase span {
  opacity: 0;
  transform:
    translateY(10px)
    scale(.99);
  animation:
    heroKeywordReveal
    .9s
    cubic-bezier(.22, .61, .36, 1)
    forwards;
}

.hero.is-keywords-ready .hero-usecase span:nth-child(1) {
  animation-delay: .05s;
}

.hero.is-keywords-ready .hero-usecase span:nth-child(2) {
  animation-delay: .20s;
}

.hero.is-keywords-ready .hero-usecase span:nth-child(3) {
  animation-delay: .35s;
}

/* オープニングレイヤー */
.hero-opening {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(179, 71, 27, .22) 0,
      rgba(179, 71, 27, 0) 36%
    ),
    radial-gradient(
      circle at 50% 58%,
      rgba(148, 17, 38, .18) 0,
      rgba(148, 17, 38, 0) 42%
    ),
    linear-gradient(
      180deg,
      #2a1712 0%,
      #120d0b 100%
    );
  pointer-events: none;
}

.hero-opening::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 238, 210, .12) 46%,
      rgba(255, 255, 255, 0) 60%
    );
  opacity: .24;
  transform: translateX(-120%);
  animation:
    heroOpeningShine
    5.1s
    ease-in-out
    forwards;
}

.hero-opening__text {
  position: absolute;
  margin: 0;
  color: #fff7e8;
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 10.4vw, 5.2rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .10em;
  text-align: center;
  text-shadow:
    0 3px 12px rgba(0, 0, 0, .64),
    0 0 14px rgba(255, 247, 232, .42),
    0 0 28px rgba(242, 180, 95, .34),
    0 0 52px rgba(179, 71, 27, .32),
    0 0 78px rgba(148, 17, 38, .24);
  opacity: 0;
  will-change: opacity;
  -webkit-font-smoothing: antialiased;
}

.hero-opening__text--one {
  animation:
    heroOpeningText
    3.1s
    ease-in-out
    .35s
    forwards;
}

.hero-opening__text--two {
  animation:
    heroOpeningText
    3.1s
    ease-in-out
    3.45s
    forwards;
}

.hero-opening__text--three {
  display: grid;
  gap: .16em;
  font-size: clamp(2.65rem, 8.4vw, 4.15rem);
  letter-spacing: .07em;
  animation:
    heroOpeningText
    3.45s
    ease-in-out
    6.55s
    forwards;
}

.hero-opening__text--three span {
  display: block;
}

.hero-opening__text--one,
.hero-opening__text--two {
  margin-left: .8em;
}

.hero.is-opening.is-revealed .hero-opening {
  animation:
    heroOpeningFadeOut
    .95s
    cubic-bezier(.22, .61, .36, 1)
    forwards;
}

.hero.is-opening-done .hero-opening {
  display: none;
}

.hero.is-opening-done .hero-image {
  opacity: 1;
}

.hero.is-opening-done.is-keywords-ready .hero-usecase {
  opacity: 1;
  visibility: visible;
}

/* keyframes */
@keyframes heroOpeningText {
  0% {
    opacity: 0;
  }

  26% {
    opacity: 1;
  }

  74% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes heroOpeningShine {
  0% {
    transform: translateX(-120%);
  }

  64% {
    transform: translateX(120%);
  }

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

@keyframes heroOpeningFadeOut {
  0% {
    opacity: 1;
    filter: blur(0);
  }

  100% {
    opacity: 0;
    filter: blur(8px);
    visibility: hidden;
  }
}

@keyframes heroImageReveal {
  0% {
    opacity: 0;
    transform: scale(1.035);
    filter:
      blur(10px)
      brightness(.78);
  }

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

@keyframes heroKeywordReveal {
  0% {
    opacity: 0;
    transform:
      translateY(10px)
      scale(.99);
    filter: blur(4px);
  }

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



/* =========================
   Breadcrumb
========================= */

.breadcrumb {
  padding:
    clamp(13px, 3.8vw, 18px)
    var(--section-x);
  background: #fff7ea;
  border-top: 1px solid rgba(167, 120, 37, .18);
  border-bottom: 1px solid rgba(167, 120, 37, .20);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 8px;
  width: min(92%, 760px);
  margin: 0 auto;
  padding: 0;
}

.breadcrumb li {
  color: #6a5b50;
  font-size: clamp(1.1rem, 3vw, 1.25rem);
  line-height: 1.5;
  letter-spacing: .03em;
}

.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin-left: 8px;
  color: rgba(167, 120, 37, .68);
}

.breadcrumb a {
  color: #4a3920;
  text-decoration: none;
}


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

.fireman-main {
  overflow: hidden;
}

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

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

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

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

.top-intro,
.collection,
.features,
.occasion,
.reviews,
.process,
.professions,
.faq {
  position: relative;
  padding:
    clamp(64px, 15vw, 96px)
    var(--section-x)
    clamp(72px, 16vw, 104px);
  background:
    radial-gradient(
      circle at 16% 8%,
      rgba(178, 13, 30, .10) 0,
      rgba(178, 13, 30, 0) 32%
    ),
    linear-gradient(
      180deg,
      #f7efe4 0%,
      #ffffff 100%
    );
}

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

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




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

.top-intro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(56px, 14vw, 96px);
  padding-bottom: clamp(24px, 7vw, 40px);
  background:
    radial-gradient(
      circle at 16% 10%,
      rgba(246, 179, 82, .24) 0,
      rgba(246, 179, 82, 0) 34%
    ),
    radial-gradient(
      circle at 86% 18%,
      rgba(246, 134, 87, .18) 0,
      rgba(246, 134, 87, 0) 32%
    ),
    linear-gradient(
      180deg,
      #fff7ea 0%,
      #f7eadb 56%,
      #ffffff 100%
    );
}

.top-intro::before {
  content: "";
  position: absolute;
  top: clamp(12px, 3vw, 22px);
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: min(92vw, 520px);
  height: 88%;
  background:
    url("../images/fireman/fireman-bg-top-intro-sp.webp")
    center center / contain
    no-repeat;
  opacity: .30;
  pointer-events: none;
}

.top-intro .section-heading__en {
  color: var(--color-red);
  text-shadow: none;
}

.top-intro h1 {
  color: var(--color-dark);
  text-shadow: none;
}

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

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

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

#top-intro-title .top-intro-title__line {
  display: block;
  max-width: 100%;
  font-size: clamp(2.25rem, 6.1vw, 3.25rem);
  line-height: 1.6;
  letter-spacing: .02em;
  white-space: normal;
}

#top-intro-title .top-intro-title__line--small {
  margin-top: clamp(3px, 1.2vw, 6px);
  font-size: clamp(1.9rem, 4.7vw, 2.66rem);
  line-height: 1.65;
  letter-spacing: .02em;
}

.explain {
  position: relative;
  overflow: hidden;
  padding:
    clamp(8px, 2vw, 16px)
    var(--section-x)
    var(--section-y);
  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(179, 71, 27, .22) 0,
      rgba(179, 71, 27, 0) 32%
    ),
    radial-gradient(
      circle at 12% 82%,
      rgba(177, 18, 38, .18) 0,
      rgba(177, 18, 38, 0) 34%
    ),
    linear-gradient(
      180deg,
      #FFF8EE 0%,
      #F7F1E6 100%
    );
}

.explain::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 248, 238, .76) 0%,
      rgba(247, 241, 230, .70) 46%,
      rgba(247, 241, 230, .86) 100%
    ),
    url("../images/fireman/fireman-bg-explain-sp.webp")
      center 90% / cover
      no-repeat;
  opacity: .72;
  pointer-events: none;
}

.explain > * {
  position: relative;
  z-index: 1;
}

.explain__image {
  width: min(94%, 680px);
  margin:
    clamp(24px, 6vw, 38px)
    auto
    clamp(32px, 9vw, 52px);
  overflow: hidden;
  border: 1px solid rgba(246, 179, 82, .32);
  border-radius:
    clamp(10px, 3vw, 16px)
    clamp(30px, 8vw, 44px)
    clamp(10px, 3vw, 16px)
    clamp(30px, 8vw, 44px);
  box-shadow: 0 18px 40px rgba(31, 33, 36, .16);
}

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

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

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

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

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

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

.explain__content p {
  color: #241b17;
  text-align: left;
}



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

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

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

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

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

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

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

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



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

.collection {
  position: relative;
  padding: var(--section-y) var(--section-x);
  background:
    radial-gradient(
      circle at 84% 8%,
      rgba(179, 71, 27, .26) 0,
      rgba(179, 71, 27, 0) 32%
    ),
    radial-gradient(
      circle at 10% 82%,
      rgba(179, 71, 27, .24) 0,
      rgba(179, 71, 27, 0) 34%
    ),
    linear-gradient(
      180deg,
      #F7F1E6 0%,
      #FFF8EE 34%,
      #ffffff 68%,
      #F7F1E6 100%
    );
}

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

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

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

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

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

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

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

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

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

.collection-card__num {
  display: inline-block;
  margin-bottom: clamp(8px, 2vw, 12px);
  color: var(--color-orange);
  font-family: var(--font-sans);
  font-size: clamp(1.3rem, 3.4vw, 1.6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .14em;
}

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

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

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

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

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

.collection__more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(80vw, 280px);
  min-height: clamp(50px, 13vw, 58px);
  padding:
    clamp(12px, 3vw, 16px)
    clamp(26px, 7vw, 36px);
  border: 1px solid rgba(179, 71, 27, .72);
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      #282120 0%,
      #1E1E1E 46%,
      #230b0e 100%
    );
  color: #C85A24;
  font-size: clamp(1.4rem, 3.6vw, 1.6rem);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: .10em;
  text-decoration: none;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, .55),
    0 0 10px rgba(200, 90, 36, .18);
  box-shadow:
    0 14px 28px rgba(30, 30, 30, .32),
    0 0 0 1px rgba(255, 255, 255, .07) inset;
}

.collection-card__price {
  display: inline-block;
  margin:
    clamp(4px, 1.4vw, 6px)
    0
    clamp(10px, 2.8vw, 14px);
  padding:
    clamp(7px, 2vw, 9px)
    clamp(12px, 3.4vw, 16px);
  color: #C85A24;
  background:
    linear-gradient(
      180deg,
      #282120 0%,
      #1E1E1E 48%,
      #230b0e 100%
    );
  border: 1px solid rgba(179, 71, 27, .62);
  border-radius: 999px;
  font-size: clamp(1.22rem, 3.25vw, 1.42rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .04em;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, .35),
    0 0 5px rgba(200, 90, 36, .10);
  box-shadow:
    0 8px 16px rgba(30, 30, 30, .18),
    0 0 0 1px rgba(255, 255, 255, .06) inset;
}



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

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

.layout-patterns {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding:
    clamp(64px, 14vw, 96px)
    0
    0;
  background:
    radial-gradient(
      circle at 14% 8%,
      rgba(178, 13, 30, .08) 0,
      rgba(178, 13, 30, 0) 32%
    ),
    radial-gradient(
      circle at 88% 24%,
      rgba(167, 120, 37, .10) 0,
      rgba(167, 120, 37, 0) 34%
    ),
    linear-gradient(
      180deg,
      #f6efe4 0%,
      #ffffff 42%,
      #f8f1e7 100%
    );
  border-top: 0;
  color: var(--color-text);
}

.layout-patterns::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(255, 248, 242, .88) 0%,
      rgba(255, 248, 242, .66) 28%,
      rgba(244, 224, 218, .54) 54%,
      rgba(255, 250, 244, .86) 100%
    ),
    url("../images/fireman/fireman-bg-layout-patterns-sp.webp")
      center center / cover
      no-repeat;
  opacity: 1;
  pointer-events: none;
}

.layout-patterns .section-heading__en {
  color: #b20d1e;
}

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

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



/* 基本レイアウト */

.basic-layout {
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 5vw, 28px);
  align-items: center;
  margin-bottom: clamp(40px, 10vw, 64px);
  padding:
    clamp(28px, 7vw, 44px)
    0;
}

.basic-layout__content {
  padding:
    clamp(22px, 6vw, 30px)
    clamp(18px, 5vw, 24px);
  background:
    linear-gradient(
      135deg,
      #282120 0%,
      #1E1E1E 48%,
      #230b0e 100%
    );
  border: 1px solid rgba(179, 71, 27, .58);
  border-left: 5px solid #B3471B;
  border-radius:
    clamp(16px, 4.5vw, 24px)
    clamp(8px, 2.5vw, 12px)
    clamp(16px, 4.5vw, 24px)
    clamp(8px, 2.5vw, 12px);
  box-shadow:
    0 16px 34px rgba(30, 30, 30, .24);
}

.basic-layout__label {
  display: inline-flex;
  align-items: center;
  margin-bottom: clamp(10px, 3vw, 14px);
  padding:
    clamp(5px, 1.4vw, 7px)
    clamp(10px, 3vw, 14px);
  color: #fff3e6;
  background: rgba(179, 71, 27, .22);
  border: 1px solid rgba(179, 71, 27, .42);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: clamp(1.08rem, 2.9vw, 1.26rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: .10em;
}

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

.basic-layout__list li {
  position: relative;
  padding:
    clamp(14px, 4vw, 20px)
    clamp(12px, 4vw, 18px);
  background: rgba(255, 248, 238, .92);
  border:
    1px
    solid
    rgba(179, 71, 27, .30);
  border-radius: var(--radius-s);
  color: var(--color-text);
  font-size: clamp(1.3rem, 3.5vw, 1.5rem);
  line-height: 1.5;
  letter-spacing: .04em;
}

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

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

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

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



/* タテ向き・ヨコ向き基本例 */

.basic-layout__examples {
  margin-top: clamp(10px, 3vw, 16px);
}

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

.basic-layout-examples__heading span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin:
    clamp(42px, 11vw, 64px)
    0
    clamp(16px, 4.5vw, 24px);
  padding:
    clamp(8px, 2.4vw, 11px)
    clamp(22px, 6vw, 32px);
  color: #fff3e6;
  font-family: var(--font-sans);
  font-size: clamp(1.65rem, 4.5vw, 2.05rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .10em;
  background:
    linear-gradient(
      180deg,
      #b20d1e 0%,
      #7b1b12 52%,
      #2a1712 100%
    );
  border:
    1px
    solid
    rgba(255, 213, 160, .42);
  border-radius: 999px;
  box-shadow:
    0 14px 28px rgba(118, 9, 19, .24),
    inset 0 1px 0 rgba(255, 255, 255, .20),
    inset 0 -1px 0 rgba(0, 0, 0, .22);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, .42);
}

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

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

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

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

.basic-layout-slide__image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(126, 42, 39, .34) 0,
      rgba(108, 31, 29, .28) 36%,
      rgba(84, 25, 22, .34) 70%,
      rgba(45, 22, 17, .48) 100%
    ),
    linear-gradient(
      135deg,
      #4a241d 0%,
      #6f2b25 50%,
      #2a1712 100%
    );
}

.basic-layout-slide__image img {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 12px 18px rgba(0, 0, 0, .28));
}

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

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

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

.basic-layout-slide__text span {
  display: inline-block;
  margin-bottom: 0;
  color: var(--color-orange);
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 3.1vw, 1.35rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .14em;
}

.basic-layout-slide__title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: clamp(1.95rem, 5.1vw, 2.5rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: .05em;
}

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

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


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

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

.layout-choice__title {
  display: block;
  width: min(92%, 620px);
  margin:
    0
    auto
    clamp(34px, 8vw, 50px);
  padding:
    clamp(10px, 3vw, 14px)
    clamp(14px, 4vw, 20px);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: clamp(1.65rem, 4.5vw, 2.05rem);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: .06em;
  text-align: center;
  background:
    linear-gradient(
      135deg,
      #b20d1e 0%,
      #7b1b12 52%,
      #2a1712 100%
    );
  border:
    1px
    solid
    rgba(255, 213, 160, .42);
  border-radius: 999px;
  box-shadow:
    0 12px 26px rgba(118, 9, 19, .22),
    inset 0 1px 0 rgba(255, 255, 255, .18);
}

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

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

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



/* 自由レイアウト */

.free-layout-section,
.rough-illust-section {
  position: relative;
  overflow: hidden;
}

.free-layout {
  position: relative;
  isolation: isolate;
  margin: 0;
  padding:
    clamp(56px, 14vw, 82px)
    0
    clamp(50px, 13vw, 74px);
  overflow: hidden;
  background:
    radial-gradient(
      circle at 80% 12%,
      rgba(178, 13, 30, .32) 0,
      rgba(178, 13, 30, 0) 30%
    ),
    linear-gradient(
      180deg,
      #120d0b 0%,
      #2b1512 48%,
      #0d0a09 100%
    );
}

.free-layout::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(18, 13, 11, .84) 0%,
      rgba(43, 21, 18, .44) 46%,
      rgba(13, 10, 9, .90) 100%
    ),
    url("../images/fireman/fireman-bg-free-layout-sp.webp")
      right center / cover
      no-repeat;
  opacity: .99;
  pointer-events: none;
}

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

.free-layout > * {
  position: relative;
  z-index: 1;
}

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

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

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

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

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

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

.free-layout-card {
  flex:
    0
    0
    min(82vw, 360px);
  overflow: hidden;
  background: #1a0f0d;
  border:
    1px
    solid
    rgba(215, 173, 93, .38);
  border-radius: clamp(18px, 5vw, 24px);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, .36);
  scroll-snap-align: start;
}

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

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

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

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

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

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

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


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

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

.rough-layout__content {
  position: relative;
  top: clamp(-30px, -7vw, -18px);
  margin-bottom: clamp(34px, 9vw, 52px);
  padding:
    clamp(20px, 5.5vw, 30px)
    clamp(18px, 5vw, 26px);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .90) 0%,
      rgba(249, 240, 224, .96) 100%
    );
  border-left: 4px solid rgba(178, 13, 30, .45);
  border-radius:
    0
    clamp(18px, 5vw, 26px)
    clamp(18px, 5vw, 26px)
    0;
  text-align: left;
}

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

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

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

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

.rough-layout-slider-wrap {
  overflow: visible;
  width: 100vw;
  margin:
    0
    calc(50% - 50vw);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.rough-layout-slider {
  width: 100%;
  overflow: visible;
}

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

.rough-layout-slider .splide__list {
  align-items: stretch;
}

.rough-layout-slider .splide__slide {
  width: clamp(250px, 74vw, 340px);
}

.rough-layout-slider .splide__pagination {
  position: static;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin:
    clamp(14px, 4vw, 20px)
    0
    0;
  padding: 0;
}

.rough-layout-slider .splide__pagination__page {
  width: 8px;
  height: 8px;
  margin: 0;
  background: rgba(178, 13, 30, .28);
  opacity: 1;
  transform: none;
}

.rough-layout-slider .splide__pagination__page.is-active {
  width: 22px;
  background: #b20d1e;
  border-radius: 999px;
  transform: none;
}

.rough-layout-slide {
  position: relative;
  overflow: hidden;
  height: 100%;
  margin: 0;
  background: #ffffff;
  border:
    1px
    solid
    rgba(179, 71, 27, .28);
  border-radius: clamp(18px, 5vw, 24px);
  box-shadow:
    0 16px 36px rgba(55, 13, 9, .16);
}

.rough-layout-slide__step {
  position: absolute;
  top: clamp(12px, 3.5vw, 16px);
  left: clamp(12px, 3.5vw, 16px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding:
    0
    clamp(12px, 3.4vw, 16px);
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      #b20d1e 0%,
      #760913 100%
    );
  border-radius: 999px;
  font-size: clamp(1rem, 2.8vw, 1.18rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  box-shadow:
    0 8px 16px rgba(118, 9, 19, .22);
}

.rough-layout-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  background: #f4eadc;
}

.rough-layout-slider-wrap.js-image-reveal img {
  transform: none;
  filter: none;
  transition: none;
}

.rough-layout-slide figcaption {
  display: grid;
  gap: clamp(5px, 1.6vw, 7px);
  padding:
    clamp(16px, 4.5vw, 22px)
    clamp(16px, 4.5vw, 22px)
    clamp(18px, 5vw, 24px);
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #fff4e8 100%
    );
}

.rough-layout-slide figcaption strong {
  color: #2b211b;
  font-size: clamp(1.55rem, 4.2vw, 1.9rem);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: .03em;
}

.rough-layout-slide figcaption span {
  color: var(--color-muted);
  font-size: clamp(1.2rem, 3.3vw, 1.38rem);
  line-height: 1.65;
  letter-spacing: .02em;
}

.rough-layout-slide__image {
  position: relative;
  display: block;
  overflow: hidden;
}

.rough-layout-slide--finish .rough-layout-slide__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, .28) 45%,
      rgba(255, 255, 255, 0) 62%
    );
  transform: translateX(-120%);
  animation:
    roughLayoutShine
    4.2s
    ease-in-out
    1.4s
    infinite;
  pointer-events: none;
}

@keyframes roughLayoutShine {
  0% {
    transform: translateX(-120%);
  }

  42% {
    transform: translateX(-120%);
  }

  72% {
    transform: translateX(130%);
  }

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

@media (prefers-reduced-motion: reduce) {
  .rough-layout-slide--finish .rough-layout-slide__image::after {
    animation: none;
  }
}

.rough-illust-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0;
  padding:
    clamp(54px, 13vw, 78px)
    0
    clamp(54px, 13vw, 78px);
}

.rough-illust-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(255, 250, 245, .80) 0%,
      rgba(248, 239, 227, .70) 46%,
      rgba(255, 250, 244, .90) 100%
    ),
    url("../images/fireman/fireman-bg-rough-illust-sp.webp")
      center center / cover
      no-repeat;
  opacity: .99;
  pointer-events: none;
}

.rough-illust-bg > * {
  position: relative;
  z-index: 1;
}



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

.illust-collection {
  width: min(90%, 720px);
  margin:
    clamp(58px, 14vw, 88px)
    auto
    0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

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

.illust-collection__lead {
  width: min(100%, 34em);
  margin:
    0
    auto
    clamp(24px, 6vw, 34px);
  color: var(--color-muted);
  font-size: clamp(1.35rem, 3.6vw, 1.55rem);
  line-height: 1.85;
  letter-spacing: .04em;
  text-align: left;
}

.illust-collection__list {
  display: grid;
  gap: clamp(18px, 5vw, 28px);
  width: 100%;
  margin: 0;
  padding: 0;
}

.illust-collection__list li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.illust-collection__list a {
  display: block;
  overflow: hidden;
  background: #ffffff;
  border:
    1px
    solid
    rgba(179, 71, 27, .20);
  border-radius: clamp(8px, 2.2vw, 12px);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, .12);
}

.illust-collection__list img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: clamp(8px, 2.2vw, 12px);
}

.illust-collection__button {
  position: relative;
  display: block;
  overflow: hidden;
  transform: translateY(0);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    opacity .22s ease;
}

.illust-collection__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  z-index: 2;
  width: 60%;
  height: 100%;
  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, .38) 50%,
      rgba(255, 255, 255, 0) 100%
    );
  transform: skewX(-18deg);
  animation:
    illustButtonShine
    3.8s
    ease-in-out
    infinite;
  pointer-events: none;
}

.illust-collection__button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: #e83929;
  border-radius:
    0
    0
    clamp(8px, 2.2vw, 12px)
    clamp(8px, 2.2vw, 12px);
}

.illust-collection__button:active {
  transform: scale(.97);
  opacity: .92;
}

@keyframes illustButtonShine {
  0% {
    left: -120%;
  }

  42% {
    left: -120%;
  }

  72% {
    left: 130%;
  }

  100% {
    left: 130%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .illust-collection__button::before {
    animation: none;
  }
}



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

.reviews {
  position: relative;
  overflow: hidden;
  padding:
    clamp(68px, 16vw, 104px)
    0;
  background:
    radial-gradient(
      circle at 12% 6%,
      rgba(178, 13, 30, .13) 0,
      rgba(178, 13, 30, 0) 32%
    ),
    radial-gradient(
      circle at 92% 38%,
      rgba(167, 120, 37, .13) 0,
      rgba(167, 120, 37, 0) 30%
    ),
    linear-gradient(
      180deg,
      #fff0d8 0%,
      #ffffff 100%
    );
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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

.features {
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  padding:
    clamp(56px, 13vw, 88px)
    0
    clamp(68px, 15vw, 104px);
  background: transparent;
}

.features::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(255, 244, 232, .88) 0%,
      rgba(246, 225, 206, .82) 48%,
      rgba(255, 248, 238, .94) 100%
    ),
    url("../images/fireman/fireman-bg-features-sp.webp")
      center center / cover
      no-repeat;
  opacity: .99;
  pointer-events: none;
}

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

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

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

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

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

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

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

.features__item {
  position: relative;
  z-index: 0;
  isolation: isolate;
  background: transparent;
}

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

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

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

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

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

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

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

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

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




/* =========================
   workstyle 職業・対象者の対応範囲
========================= */
.workstyle {
  position: relative;
  margin: 0 auto;
  padding:
    clamp(64px, 15vw, 96px)
    0
    clamp(72px, 16vw, 104px);
  background:
    linear-gradient(
      180deg,
      #fffaf2 0%,
      #f7efe4 100%
    );
}

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

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

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

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

.workstyle__title-main {
  font-size: .86em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.workstyle__link-list-item--wide a {
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      #b20d1e 0%,
      #760913 100%
    );
  border-color: rgba(178, 13, 30, .48);
  box-shadow:
    0 8px 18px rgba(118, 9, 19, .18);
}



/* =========================
   俺たちの絆 本紹介
========================= */

.unity {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding:
    clamp(66px, 16vw, 104px)
    0
    clamp(72px, 17vw, 110px);
  background:
    radial-gradient(
      circle at 18% 10%,
      rgba(255, 35, 31, .38) 0,
      rgba(255, 35, 31, 0) 34%
    ),
    radial-gradient(
      circle at 88% 34%,
      rgba(255, 202, 56, .16) 0,
      rgba(255, 202, 56, 0) 32%
    ),
    linear-gradient(
      180deg,
      #070707 0%,
      #1f0908 48%,
      #080808 100%
    );
  color: #fff;
}

.unity::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    repeating-linear-gradient(
      -12deg,
      rgba(255, 255, 255, .055) 0,
      rgba(255, 255, 255, .055) 1px,
      transparent 1px,
      transparent 11px
    );
  opacity: .42;
  pointer-events: none;
}

.unity::after {
  content: "TEAM MEMORIAL";
  position: absolute;
  left: 50%;
  top: clamp(58px, 14vw, 86px);
  z-index: -1;
  width: 100vw;
  color: rgba(255, 255, 255, .045);
  font-family: Arial, sans-serif;
  font-size: clamp(4.6rem, 14vw, 7.4rem);
  font-weight: 900;
  line-height: .9;
  letter-spacing: .02em;
  text-align: center;
  transform: translateX(-50%);
  pointer-events: none;
}

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

.unity__heading {
  margin-bottom: clamp(28px, 7vw, 42px);
  text-align: left;
}

.unity__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(14px, 4vw, 20px);
  padding:
    clamp(6px, 1.6vw, 8px)
    clamp(14px, 4vw, 18px);
  color: #fff;
  background: #e32b21;
  border-radius: 999px;
  font-size: clamp(1.08rem, 3vw, 1.26rem);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: .08em;
}

.unity__catch {
  margin:
    0
    0
    clamp(7px, 2vw, 10px);
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.38rem, 3.9vw, 1.64rem);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: .05em;
  text-align: left;
}

.unity h2 {
  margin:
    0
    0
    clamp(16px, 4.5vw, 24px);
  color: #fff;
  font-family: var(--font-sans);
  font-size: clamp(4.2rem, 14vw, 6.6rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: .04em;
  text-align: left;
  text-shadow:
    0 4px 0 rgba(0, 0, 0, .42),
    0 0 24px rgba(227, 43, 33, .36);
}

.unity__lead {
  width: min(100%, 34em);
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.35rem, 3.7vw, 1.55rem);
  line-height: 1.85;
  letter-spacing: .03em;
  text-align: left;
}

.unity__visual {
  overflow: hidden;
  width: calc(100% + 10vw);
  margin:
    0
    -5vw
    clamp(24px, 6.5vw, 38px);
  background: #111;
  border:
    1px
    solid
    rgba(255, 255, 255, .16);
  border-bottom:
    clamp(5px, 1.5vw, 7px)
    solid
    #e32b21;
  border-radius:
    clamp(8px, 2.5vw, 12px)
    clamp(30px, 8vw, 44px)
    clamp(8px, 2.5vw, 12px)
    clamp(30px, 8vw, 44px);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, .44);
}

.unity__visual a {
  display: block;
}

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

.unity__body {
  text-align: left;
}

.unity__scene-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(8px, 2.5vw, 12px);
  margin:
    0
    0
    clamp(22px, 6vw, 32px);
  padding: 0;
}

.unity__scene-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(42px, 11vw, 50px);
  padding:
    clamp(8px, 2.4vw, 12px)
    clamp(8px, 2.4vw, 12px);
  color: #fff;
  background:
    linear-gradient(
      135deg,
      rgba(227, 43, 33, .82) 0%,
      rgba(125, 15, 14, .84) 100%
    );
  border:
    1px
    solid
    rgba(255, 255, 255, .16);
  border-radius: clamp(8px, 2.5vw, 12px);
  font-size: clamp(1.18rem, 3.25vw, 1.36rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .03em;
  text-align: center;
}

.unity__link-note {
  width: min(100%, 34em);
  margin:
    0
    0
    clamp(14px, 4vw, 20px);
  color: rgba(255, 255, 255, .66);
  font-size: clamp(1.12rem, 3.1vw, 1.28rem);
  line-height: 1.7;
  letter-spacing: .03em;
  text-align: left;
}

.unity__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 360px);
  min-height: clamp(54px, 14vw, 64px);
  padding:
    0
    clamp(22px, 6vw, 34px);
  color: #111;
  background: #ffcf35;
  border:
    1px
    solid
    rgba(255, 255, 255, .42);
  border-radius: 999px;
  font-size: clamp(1.4rem, 3.9vw, 1.6rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .04em;
  text-align: center;
  text-decoration: none;
  box-shadow:
    0 14px 26px rgba(0, 0, 0, .32);
}


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

.products-detail {
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin-top: 0;
  padding:
    clamp(64px, 15vw, 96px)
    0
    clamp(72px, 16vw, 104px);
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7efe4 100%
    );
  color: var(--color-text);
}

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

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

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

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



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

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

.products-detail .details-summary {
  position: relative;
  display: block;
  cursor: pointer;
  list-style: none;
}

.products-detail .details-summary::-webkit-details-marker {
  display: none;
}

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

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

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

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

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

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

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



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

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



/* =========================
   詳細内 共通
========================= */

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

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

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

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



/* =========================
   商品仕様 最低限共通
========================= */

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

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

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



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

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

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

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

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

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

.products-detail .plaque th,
.products-detail .plaque td {
  padding: 12px;
  border: none;
  border-bottom:
    1px
    solid
    rgba(120, 90, 40, .14);
  color: #3a3028;
  font-size: var(--fz-s);
  line-height: 1.6;
  text-align: center;
  vertical-align: middle;
}

.products-detail .plaque th {
  width: 30%;
  background: #f4ead9;
  color: #3b260f;
  font-weight: 600;
}

.products-detail .plaque td {
  background: #fffdf8;
}

.products-detail .plaque tr:last-child th,
.products-detail .plaque tr:last-child td {
  border-bottom: none;
}



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

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

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

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

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

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

.products-detail .stand th,
.products-detail .stand td {
  padding: 11px;
  border: none;
  border-bottom:
    1px
    solid
    rgba(120, 90, 40, .14);
  color: #3a3028;
  font-size: var(--fz-s);
  line-height: 1.6;
  text-align: center;
  vertical-align: middle;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

.products-detail .stand th {
  width: 30%;
  background: #f4ead9;
  color: #3b260f;
  font-weight: 600;
}

.products-detail .stand td {
  background: #fffdf8;
}

.products-detail .stand td.table-small {
  font-size: 1.25rem;
  line-height: 1.55;
  letter-spacing: 0;
}

.products-detail .stand tr:last-child th,
.products-detail .stand tr:last-child td {
  border-bottom: none;
}



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

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

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

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

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

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

.products-detail .art_panel th,
.products-detail .art_panel td {
  padding: 12px;
  border: none;
  border-bottom:
    1px
    solid
    rgba(120, 90, 40, .14);
  color: #3a3028;
  font-size: var(--fz-s);
  line-height: 1.6;
  text-align: center;
  vertical-align: middle;
}

.products-detail .art_panel th {
  width: 30%;
  background: #f4ead9;
  color: #3b260f;
  font-weight: 600;
}

.products-detail .art_panel td {
  background: #fffdf8;
}

.products-detail .art_panel tr:last-child th,
.products-detail .art_panel tr:last-child td {
  border-bottom: none;
}



/* =========================
   アートパネル用イーゼル
========================= */

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

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

.products-detail .art_panel_easel table {
  width: 100%;
  margin: 0 auto;
  background: #fffdf8;
  border:
    1px
    solid
    rgba(120, 90, 40, .2);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  table-layout: fixed;
}

.products-detail .art_panel_easel th,
.products-detail .art_panel_easel td {
  padding: 12px;
  border: none;
  border-bottom:
    1px
    solid
    rgba(120, 90, 40, .14);
  color: #3a3028;
  font-size: var(--fz-s);
  line-height: 1.6;
  text-align: center;
  vertical-align: middle;
}

.products-detail .art_panel_easel th {
  width: 30%;
  background: #f4ead9;
  color: #3b260f;
  font-weight: 600;
}

.products-detail .art_panel_easel td {
  background: #fffdf8;
}

.products-detail .art_panel_easel tr:last-child th,
.products-detail .art_panel_easel tr:last-child td {
  border-bottom: none;
}



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

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

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

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

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

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

.products-detail .leather th,
.products-detail .leather td {
  padding: 12px;
  border: none;
  border-bottom:
    1px
    solid
    rgba(120, 90, 40, .14);
  color: #3a3028;
  font-size: var(--fz-s);
  line-height: 1.6;
  text-align: center;
  vertical-align: middle;
}

.products-detail .leather th {
  width: 30%;
  background: #f4ead9;
  color: #3b260f;
  font-weight: 600;
}

.products-detail .leather td {
  background: #fffdf8;
}

.products-detail .leather tr:last-child th,
.products-detail .leather tr:last-child td {
  border-bottom: none;
}



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

.products-detail .frame {
  margin: 0 auto;
}

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

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

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

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

.products-detail .frame th,
.products-detail .frame td {
  padding: 10px;
  border: none;
  border-bottom:
    1px
    solid
    rgba(120, 90, 40, .14);
  color: #3a3028;
  font-size: var(--fz-s);
  line-height: 1.6;
  text-align: center;
  vertical-align: middle;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

.products-detail .frame th {
  width: 25%;
  background: #f4ead9;
  color: #3b260f;
  font-weight: 600;
}

.products-detail .frame td {
  background: #fffdf8;
}

.products-detail .frame td.table-small {
  font-size: 1.18rem;
  line-height: 1.5;
  letter-spacing: 0;
}

.products-detail .frame th.table-small {
  font-size: 1.18rem;
  line-height: 1.5;
  letter-spacing: 0;
}

.products-detail .frame tr:last-child th,
.products-detail .frame tr:last-child td {
  border-bottom: none;
}



/* =========================
   額タイプ用 受け木
========================= */

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

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

.products-detail .frame_stand table {
  width: 100%;
  margin: 0 auto;
  background: #fffdf8;
  border:
    1px
    solid
    rgba(120, 90, 40, .2);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  table-layout: fixed;
}

.products-detail .frame_stand th,
.products-detail .frame_stand td {
  padding: 10px;
  border: none;
  border-bottom:
    1px
    solid
    rgba(120, 90, 40, .14);
  color: #3a3028;
  font-size: var(--fz-s);
  line-height: 1.6;
  text-align: center;
  vertical-align: middle;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

.products-detail .frame_stand th {
  width: 25%;
  background: #f4ead9;
  color: #3b260f;
  font-weight: 600;
}

.products-detail .frame_stand td {
  background: #fffdf8;
}

.products-detail .frame_stand tr:last-child th,
.products-detail .frame_stand tr:last-child td {
  border-bottom: none;
}



/* =========================
   お悩みサポート導線
========================= */

.support-links {
  position: relative;
  overflow: hidden;
  padding:
    clamp(46px, 11vw, 68px)
    0
    clamp(50px, 12vw, 72px);
  background:
    radial-gradient(
      circle at 92% 8%,
      rgba(179, 71, 27, .24),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      #fffaf2 0%,
      #f4eadc 100%
    );
}

.support-links::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  width: 90%;
  height: 1px;
  background: rgba(138, 106, 47, .18);
}

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

.support-links__heading {
  margin-bottom: clamp(20px, 5.5vw, 30px);
  text-align: left;
}

.support-links__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #b20d1e;
  font-size: clamp(1rem, 2.6vw, 1.15rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .14em;
}

.support-links__label::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}

.support-links h2 {
  margin:
    0
    0
    clamp(9px, 2.8vw, 13px);
  color: #251b17;
  font-family: var(--font-sans);
  font-size: clamp(1.9rem, 5.1vw, 2.35rem);
  font-weight: 900;
  line-height: 1.42;
  letter-spacing: .03em;
  text-align: left;
}

.support-links__heading p {
  margin: 0;
  color: #685a4e;
  font-size: clamp(1.22rem, 3.3vw, 1.38rem);
  line-height: 1.7;
  letter-spacing: .02em;
  text-align: left;
}

.support-links__list {
  display: grid;
  gap: clamp(12px, 3.4vw, 16px);
}

.support-links-card {
  position: relative;
  display: block;
  overflow: hidden;
  padding:
    clamp(17px, 4.6vw, 22px)
    clamp(50px, 13vw, 62px)
    clamp(17px, 4.6vw, 22px)
    clamp(18px, 4.8vw, 24px);
  color: inherit;
  border: 1px solid rgba(120, 84, 48, .14);
  border-radius: clamp(15px, 4.2vw, 22px);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .96) 0%,
      rgba(255, 255, 255, .78) 100%
    );
  box-shadow:
    0 12px 26px rgba(62, 42, 21, .08),
    inset 0 1px 0 rgba(255, 255, 255, .9);
}

.support-links-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 8px;
  background: #b20d1e;
}

.support-links-card::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: clamp(18px, 5vw, 24px);
  color: rgba(37, 27, 23, .42);
  font-size: clamp(2.4rem, 6.5vw, 3rem);
  font-weight: 900;
  line-height: 1;
  transform: translateY(-54%);
}

.support-links-card__tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: clamp(7px, 2vw, 9px);
  padding:
    4px
    11px;
  color: #fff;
  border-radius: 999px;
  font-size: clamp(1rem, 2.7vw, 1.13rem);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: .04em;
  background: #b20d1e;
}

.support-links-card h3 {
  margin:
    0
    0
    clamp(5px, 1.5vw, 7px);
  color: #251b17;
  font-family: var(--font-sans);
  font-size: clamp(1.58rem, 4.2vw, 1.9rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .02em;
}

.support-links-card p {
  width: min(100%, 19em);
  margin: 0;
  color: #6b5d51;
  font-size: clamp(1.16rem, 3.1vw, 1.3rem);
  line-height: 1.58;
  letter-spacing: .02em;
  text-align: left;
}

.support-links-card:nth-child(1)::before {
  background:
    linear-gradient(
      180deg,
      #8bdc2f 0%,
      #45a51c 100%
    );
}

.support-links-card:nth-child(1) .support-links-card__tag {
  background: #45a51c;
}

.support-links-card:nth-child(2)::before {
  background:
    linear-gradient(
      180deg,
      #c91414 0%,
      #821111 100%
    );
}

.support-links-card:nth-child(2) .support-links-card__tag {
  background: #b20d1e;
}

.support-links-card:nth-child(3)::before {
  background:
    linear-gradient(
      180deg,
      #1d6fa8 0%,
      #123f68 100%
    );
}

.support-links-card:nth-child(3) .support-links-card__tag {
  background: #1d6fa8;
}

.support-links-card--bouquet {
  padding-right: clamp(104px, 29vw, 132px);
}

.support-links-card--bouquet::after {
  content: none;
}

.support-links-card__logo {
  position: absolute;
  top: clamp(12px, 3.5vw, 16px);
  right: clamp(14px, 4vw, 20px);
  z-index: 2;
  width: clamp(112px, 33vw, 150px);
  height: auto;
}

/* =========================
   職場共有・PDF
========================= */

.share-pamphlet {
  position: relative;
  overflow: hidden;
  padding:
    clamp(32px, 8.5vw, 46px)
    0
    clamp(36px, 9vw, 52px);
  background:
    linear-gradient(
      180deg,
      #f7efe4 0%,
      #ffffff 100%
    );
}

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

.share-pamphlet__heading {
  margin-bottom: clamp(16px, 4.4vw, 22px);
  text-align: left;
}

.share-pamphlet__label {
  display: inline-block;
  margin-bottom: 6px;
  color: #b20d1e;
  font-size: clamp(1rem, 2.6vw, 1.15rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .14em;
}

.share-pamphlet h2 {
  margin:
    0
    0
    clamp(8px, 2.6vw, 12px);
  color: #2b211b;
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 4.8vw, 2.25rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: .03em;
  text-align: left;
}

.share-pamphlet__heading p {
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(1.22rem, 3.3vw, 1.38rem);
  line-height: 1.65;
  letter-spacing: .02em;
  text-align: left;
}

.share-pamphlet__list {
  display: grid;
  gap: clamp(9px, 2.6vw, 12px);
}

.share-pamphlet-card {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  padding:
    clamp(14px, 3.8vw, 18px)
    clamp(42px, 11vw, 52px)
    clamp(14px, 3.8vw, 18px)
    clamp(16px, 4.5vw, 22px);
  color: inherit;
  font: inherit;
  text-align: left;
  border: 0;
  border-radius: clamp(14px, 4vw, 20px);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  box-shadow:
    0 8px 20px rgba(54, 38, 18, .06);
}

.share-pamphlet-card::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: clamp(16px, 4.5vw, 22px);
  color: rgba(51, 42, 34, .42);
  font-size: clamp(2rem, 5.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
}

.share-pamphlet-card--copy {
  width: 100%;
  text-align: left;
  border:
    1px
    solid
    rgba(6, 199, 85, .22);
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #eefbf4 100%
    );
}

.share-pamphlet-card--pdf {
  border:
    1px
    solid
    rgba(178, 13, 30, .20);
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #fff6e8 100%
    );
}

.share-pamphlet-card__tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: clamp(5px, 1.6vw, 7px);
  padding:
    3px
    10px;
  border-radius: 999px;
  font-size: clamp(1rem, 2.7vw, 1.14rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .03em;
}

.share-pamphlet-card--copy .share-pamphlet-card__tag {
  color: #078f42;
  background: rgba(6, 199, 85, .10);
  border:
    1px
    solid
    rgba(6, 199, 85, .18);
}

.share-pamphlet-card--pdf .share-pamphlet-card__tag {
  color: #8a1b23;
  background: rgba(178, 13, 30, .08);
  border:
    1px
    solid
    rgba(178, 13, 30, .16);
}

.share-pamphlet-card h3 {
  margin: 0;
  color: #332a22;
  font-family: var(--font-sans);
  font-size: clamp(1.46rem, 3.8vw, 1.72rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .02em;
  white-space: nowrap;
}

.share-pamphlet-card p {
  margin:
    clamp(5px, 1.6vw, 7px)
    0
    0;
  color: var(--color-muted);
  font-size: clamp(1.12rem, 3vw, 1.26rem);
  line-height: 1.55;
  letter-spacing: .02em;
}

.share-pamphlet-card--copy.is-copied .share-pamphlet-card__tag {
  color: #ffffff;
  background: #06a94c;
  border-color: #06a94c;
}

.share-pamphlet-card--copy.is-copied h3::after {
  content: "完了";
  display: inline-flex;
  margin-left: .7em;
  padding:
    2px
    8px;
  color: #ffffff;
  font-size: .72em;
  font-weight: 800;
  line-height: 1.4;
  vertical-align: middle;
  background: #06a94c;
  border-radius: 999px;
}



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

.qrcode-m.movie-qr {
  position: relative;
  margin:
    0
    auto;
  padding:
    clamp(64px, 15vw, 96px)
    0
    clamp(68px, 16vw, 104px);
  overflow: hidden;
  color: var(--color-text);
  background:
    radial-gradient(
      circle at 14% 12%,
      rgba(179, 71, 27, .22) 0,
      rgba(179, 71, 27, 0) 34%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7efe4 100%
    );
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.movie-app-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  min-width: clamp(116px, 30vw, 172px);
  min-height: clamp(54px, 13vw, 64px);
  padding:
    clamp(8px, 2.4vw, 12px)
    clamp(16px, 4.5vw, 24px);
  color: #ffffff;
  border:
    1px
    solid
    rgba(255, 255, 255, .42);
  border-radius: 999px;
  box-shadow:
    0 10px 20px rgba(0, 0, 0, .14);
  font-size: clamp(1.25rem, 3.5vw, 1.5rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .03em;
  text-decoration: none;
}

.movie-app-link img {
  width: clamp(30px, 8vw, 40px);
  height: clamp(30px, 8vw, 40px);
  border: 0;
  border-radius: 10px;
  background: #ffffff;
  box-shadow:
    0 3px 8px rgba(0, 0, 0, .16);
}

.movie-app-link span {
  display: inline-block;
  line-height: 1.05;
}

.movie-app-link small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, .82);
  font-size: .72em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .03em;
}

.movie-app-link--inshot {
  background:
    linear-gradient(
      135deg,
      #ff4f9a 0%,
      #ff8a3d 100%
    );
}

.movie-app-link--capcut {
  background:
    linear-gradient(
      135deg,
      #111827 0%,
      #3b82f6 100%
    );
}

.movie-app-link--imovie {
  background:
    linear-gradient(
      135deg,
      #8b5cf6 0%,
      #ec4899 100%
    );
}

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

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


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

.faq {
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding:
    clamp(64px, 15vw, 96px)
    var(--section-x)
    clamp(72px, 16vw, 104px);
  background:
    linear-gradient(
      180deg,
      #f8f6f2 0%,
      #ffffff 100%
    );
}

.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(255, 250, 244, .82) 0%,
      rgba(246, 236, 222, .72) 48%,
      rgba(255, 255, 255, .94) 100%
    ),
    url("../images/fireman/fireman-bg-faq-sp.webp")
      center center / cover
      no-repeat;
  opacity: .95;
  pointer-events: none;
}

.faq > * {
  position: relative;
  z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

.faq-answer {
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #fbf8f1 0%,
      #f6efe2 100%
    );
  border-top:
    1px
    solid
    rgba(138, 106, 47, .14);
}

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



/* =========================
   退職後にご自身で作りたい方へ
========================= */

.retired-self {
  position: relative;
  overflow: hidden;
  padding:
    clamp(64px, 15vw, 96px)
    0
    clamp(68px, 16vw, 104px);
  background:
    radial-gradient(
      circle at 16% 10%,
      rgba(178, 13, 30, .10) 0,
      rgba(178, 13, 30, 0) 34%
    ),
    radial-gradient(
      circle at 90% 34%,
      rgba(167, 120, 37, .12) 0,
      rgba(167, 120, 37, 0) 32%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7efe4 100%
    );
}

.retired-self::before {
  content: none;
}

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

.retired-self__image {
  overflow: hidden;
  width: calc(100% + 10vw);
  margin:
    0
    -5vw
    clamp(28px, 7vw, 44px);
  background: #eee9df;
  border-radius:
    clamp(10px, 3vw, 16px)
    clamp(30px, 8vw, 44px)
    clamp(10px, 3vw, 16px)
    clamp(30px, 8vw, 44px);
  box-shadow:
    0 16px 36px rgba(55, 13, 9, .16);
}

.retired-self__image img {
  display: block;
  width: 100%;
  height: auto;
}

.retired-self__body {
  text-align: center;
}

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

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

.retired-self p {
  width: min(100%, 34em);
  margin:
    0
    auto
    clamp(14px, 4vw, 20px);
  color: var(--color-muted);
  font-size: clamp(1.35rem, 3.7vw, 1.55rem);
  line-height: 1.85;
  letter-spacing: .03em;
  text-align: left;
}

.retired-self p:last-child {
  margin-bottom: 0;
}



/* =========================
   12. Final CTA
========================= */

.final-cta {
  position: relative;
  overflow: hidden;
  padding:
    clamp(68px, 17vw, 104px)
    0
    clamp(64px, 16vw, 96px);
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(179, 71, 27, .26) 0%,
      rgba(179, 71, 27, 0) 42%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fff3df 45%,
      #efe2ce 100%
    );
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cta-card--rakuten .cta-card__label {
  color: #ffffff;
  background: #bf0000;
}

.cta-card__rakuten-campaign {
  margin:
    18px
    0
    0;
  padding:
    14px
    15px;
  border:
    2px
    solid
    #bf0000;
  border-radius: clamp(14px, 4vw, 18px);
  background: #ffe600;
}

.cta-card__rakuten-campaign strong {
  display: block;
  color: #bf0000;
  font-size: clamp(1.42rem, 3.8vw, 1.62rem);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: .03em;
}

.cta-card__rakuten-campaign p {
  margin:
    8px
    0
    0;
  color: #3a2100;
  font-size: clamp(1.26rem, 3.4vw, 1.4rem);
  font-weight: 900;
  line-height: 1.6;
}

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

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

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

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

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

.cta-sub {
  margin-top: clamp(22px, 6vw, 34px);
  padding:
    clamp(22px, 6.5vw, 34px)
    clamp(18px, 5.5vw, 28px);
  background: rgba(255, 255, 255, .84);
  border:
    1px
    solid
    rgba(180, 52, 44, .2);
  border-radius: clamp(22px, 6vw, 30px);
  box-shadow:
    0 14px 34px rgba(69, 18, 14, .1);
}

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

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

.cta-sub__links a {
  display: grid;
  gap: 3px;
  align-content: center;
  min-height: 58px;
  padding:
    10px
    18px;
  border:
    1px
    solid
    rgba(180, 52, 44, .28);
  border-radius: 999px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fff1ee 100%);
  color: var(--color-text);
  text-align: center;
  text-decoration: none;
  box-shadow:
    0 8px 18px rgba(69, 18, 14, .08);
}

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

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

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




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

.cta_btn {
  position: fixed;
  right: clamp(8px, 3vw, 14px);
  bottom: calc(clamp(10px, 3.5vw, 18px) + env(safe-area-inset-bottom));
  z-index: 900;
  width: clamp(118px, 34vw, 158px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform:
    translateY(18px)
    scale(.92);
  transition:
    opacity .28s ease,
    visibility .28s ease;
}

body.is-cta-ready .cta_btn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  animation:
    ctaPopIn
    .9s
    cubic-bezier(.22, .8, .32, 1)
    both;
}

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

body.is-cta-ready .cta_btn img {
  animation:
    floatingCta
    3.8s
    ease-in-out
    .9s
    infinite;
}

body.is-sp-menu-open .cta_btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  animation: none;
  transform:
    translateY(18px)
    scale(.92);
}

body.is-sp-menu-open .cta_btn img {
  animation: none;
}

@keyframes ctaPopIn {
  0% {
    opacity: 0;
    transform:
      translateY(18px)
      scale(.92);
  }

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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

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

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

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

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



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

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

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



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

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

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

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

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

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

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

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

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


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

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

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

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

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

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


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

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

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

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

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


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

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

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

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


/* =========================
   24. Reduced Motion
========================= */

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

  .js-animate,
  .js-animate.is-visible,
  .js-image-reveal,
  .js-image-reveal img,
  .js-label-motion,
  .js-label-motion.is-visible,
  .js-text-sequence h1,
  .js-text-sequence h2,
  .js-text-sequence h3,
  .js-text-sequence p,
  .js-card-from-left,
  .js-card-from-right,
  #top-intro-title span,
  .hero-usecase span,
  .cta_btn,
  .cta_btn img,
  .collection__nav-hint span:first-child,
  .collection__nav-hint span:last-child,
  .basic-layout-slider__note span:first-child,
  .basic-layout-slider__note span:last-child {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
  }

  .hero-opening {
    display: none !important;
  }
}
