@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-accent: #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-x: clamp(20px, 6vw, 36px);

  --radius-m: 18px;
}

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 {
  position: fixed;
  top: -3px;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 60px;
  background: transparent;
}

#top-menu .top-menu-tel,
#top-menu .top-menu-contact {
  display: flex;
  float: left;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 60px;
  background: transparent;
  outline: 0;
  box-shadow: none;
  transform: translateY(3px);
  -webkit-tap-highlight-color: transparent;
}

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

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

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

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

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

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

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

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

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

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

#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;
  right: 0;
  bottom: 8px;
  left: 0;
  display: block;
  width: 100%;
  color: #e4ddd3;
  font-size: var(--fz-xs);
  line-height: 1;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .35);
}

body.is-sp-menu-open #top-menu .top-menu-tel span,
body.is-sp-menu-open #top-menu .top-menu-contact span,
body.is-sp-menu-open #top-menu .menu-btn > span {
  color: #fff;
}

body.is-sp-menu-open #top-menu .top-menu-tel img,
body.is-sp-menu-open #top-menu .top-menu-contact img {
  opacity: 1;
}

body.is-sp-menu-open #top-menu .menu-btn-inner span {
  background: #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 .menu-btn > span {
  color: var(--color-text);
  text-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 {
  opacity: 1;
  filter: none;
}

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


/* =========================
   03. 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 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%
    );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

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

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

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

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

.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 {
  background: #17120f;
}


/* =========================
   05. 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;
}

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


/* =========================
   06. Common
========================= */

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

#about,
#layout,
#product,
#changeable,
#faq,
#navi-1 {
  scroll-margin-top: 18px;
}

.fixedform-intro,
.fixedform-overview,
.fixedform-changeable,
.fixedform-flow {
  position: relative;
  overflow: hidden;
}

.fixedform-intro .section-heading,
.fixedform-overview .section-heading,
.fixedform-changeable .section-heading,
.fixedform-flow .section-heading {
  width: min(88%, 720px);
}

.fixedform-intro .section-heading h1,
.fixedform-changeable .section-heading h2,
.fixedform-flow .section-heading h2 {
  font-size: clamp(2.25rem, 6.2vw, 3rem);
  line-height: 1.6;
  letter-spacing: .035em;
}

.fixedform-intro .section-heading p,
.fixedform-overview .section-heading p,
.fixedform-changeable .section-heading p {
  font-size: clamp(1.35rem, 3.7vw, 1.55rem);
  line-height: 1.85;
}



/* =========================
   07. 定型レイアウト導入
========================= */

.fixedform-intro {
  padding:
    clamp(58px, 14vw, 88px)
    var(--section-x)
    clamp(64px, 15vw, 94px);
  background:
    radial-gradient(
      circle at 14% 10%,
      rgba(225, 154, 58, .20) 0,
      rgba(225, 154, 58, 0) 34%
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(178, 13, 30, .10) 0,
      rgba(178, 13, 30, 0) 32%
    ),
    linear-gradient(
      180deg,
      #fff8ed 0%,
      #f6eadc 62%,
      #ffffff 100%
    );
}

.fixedform-intro .section-heading {
  margin-bottom: clamp(28px, 7vw, 40px);
}

.fixedform-intro__points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: min(90%, 620px);
  margin: 0 auto;
}

.fixedform-intro__points li {
  display: grid;
  grid-template-columns: 34% 1fr;
  align-items: center;
  min-height: 86px;
  padding: 16px 18px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .98) 0%,
      rgba(255, 248, 235, .96) 100%
    );
  border: 1px solid rgba(167, 120, 37, .22);
  border-radius: 16px;
  box-shadow:
    0 12px 28px rgba(71, 46, 23, .10),
    inset 0 1px 0 rgba(255, 255, 255, .95);
  text-align: left;
}

.fixedform-intro__points strong {
  display: block;
  margin: 0;
  padding-right: 12px;
  color: #9d1622;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .04em;
  text-align: center;
}

.fixedform-intro__points span {
  padding-left: 14px;
  color: #64564b;
  border-left: 1px solid rgba(167, 120, 37, .25);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: .015em;
}



/* =========================
   08. 完成見本・商品情報
========================= */

.fixedform-overview {
  padding:
    clamp(68px, 16vw, 104px)
    var(--section-x)
    clamp(72px, 17vw, 108px);
  background:
    radial-gradient(
      circle at 84% 8%,
      rgba(199, 139, 54, .18) 0,
      rgba(199, 139, 54, 0) 32%
    ),
    linear-gradient(
      180deg,
      #211714 0%,
      #130e0c 100%
    );
}

.fixedform-overview .section-heading__en {
  color: #d8a24e;
}

#fixedform-overview-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  color: #fff8ec;
  font-size: clamp(2.2rem, 6.8vw, 2.7rem);
  line-height: 1.7;
  letter-spacing: .01em;
  text-align: center;
}

#fixedform-overview-title span {
  white-space: nowrap;
}

.fixedform-overview .section-heading p {
  color: rgba(255, 255, 255, .76);
}

.fixedform-overview__image {
  overflow: hidden;
  width: min(100%, 560px);
  margin:
    0
    auto
    clamp(28px, 7vw, 42px);
  background: #fffdf8;
  border: 1px solid rgba(219, 170, 91, .42);
  border-radius: clamp(16px, 4.5vw, 24px);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, .34);
}

.fixedform-overview__image figcaption {
  padding:
    clamp(11px, 3vw, 15px)
    clamp(8px, 2vw, 12px)
    clamp(13px, 3.5vw, 17px);
  color: #5d4b3c;
  font-size: clamp(1.12rem, 3.1vw, 1.3rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .06em;
  text-align: center;
}

.fixedform-overview__products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: min(100%, 620px);
  margin: 0 auto;
}

.fixedform-product-card {
  position: relative;
  overflow: hidden;
  padding:
    18px
    14px
    16px;
  background:
    linear-gradient(
      145deg,
      #fffdf8 0%,
      #f5ead7 100%
    );
  border: 1px solid rgba(203, 153, 71, .40);
  border-radius: clamp(15px, 4vw, 22px);
  box-shadow:
    0 15px 32px rgba(0, 0, 0, .22);
}

.fixedform-product-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background:
    linear-gradient(
      90deg,
      #7d111b 0%,
      #d4a14c 50%,
      #7d111b 100%
    );
}

.fixedform-product-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(34px, 9vw, 42px);
  min-height: clamp(24px, 6.5vw, 29px);
  margin-bottom: 6px;
  padding: 3px 8px;
  color: #fff7e8;
  background: #8e1720;
  border-radius: 999px;
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
}

.fixedform-product-card h3 {
  color: #30251e;
  font-size: clamp(1.75rem, 4.8vw, 2.2rem);
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.fixedform-product-card__price {
  margin:
    8px
    -5px
    12px;
  color: #9e1421;
  font-size: clamp(2.25rem, 6.2vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.015em;
  text-align: center;
  white-space: nowrap;
}

.fixedform-product-card__price span {
  font-size: .4em;
  font-weight: 700;
  letter-spacing: 0;
}

.fixedform-product-card__spec {
  margin: 0;
  border-top: 1px solid rgba(135, 99, 44, .20);
}

.fixedform-product-card__spec div {
  display: grid;
  grid-template-columns: 36% 1fr;
  border-bottom: 1px solid rgba(135, 99, 44, .20);
}

.fixedform-product-card__spec dt,
.fixedform-product-card__spec dd {
  margin: 0;
  padding: 13px 10px;
  color: #493a30;
  font-size: 1.4rem;
  line-height: 1.55;
}

.fixedform-product-card__spec dt {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(227, 207, 173, .45);
  font-weight: 800;
}

.fixedform-product-card__spec dd {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .62);
  text-align: center;
  white-space: nowrap;
}

.fixedform-overview__shipping {
  width: min(100%, 620px);
  margin:
    clamp(18px, 5vw, 26px)
    auto
    0;
  padding:
    clamp(14px, 4vw, 19px)
    clamp(15px, 4.5vw, 22px);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(215, 167, 88, .26);
  border-radius: clamp(12px, 3.5vw, 17px);
}

.fixedform-overview__shipping p {
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.12rem, 3.1vw, 1.32rem);
  line-height: 1.7;
  text-align: center;
}

.fixedform-overview__shipping p:first-child {
  color: #f4d7a3;
  font-weight: 800;
}


/* =========================
   09. 決める3項目
========================= */

.fixedform-changeable {
  padding:
    clamp(68px, 16vw, 102px)
    0
    clamp(74px, 18vw, 112px);
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(178, 13, 30, .08) 0,
      rgba(178, 13, 30, 0) 32%
    ),
    linear-gradient(
      180deg,
      #fffaf3 0%,
      #f4eadc 100%
    );
}

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

.fixedform-changeable__list {
  display: grid;
  gap: clamp(11px, 3vw, 15px);
}

.fixedform-changeable__item {
  display: grid;
  grid-template-columns: clamp(43px, 12vw, 54px) minmax(0, 1fr);
  gap: clamp(13px, 4vw, 19px);
  align-items: start;
  padding:
    clamp(17px, 4.7vw, 23px)
    clamp(15px, 4.2vw, 21px);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(159, 111, 45, .17);
  border-radius: clamp(13px, 3.8vw, 19px);
  box-shadow:
    0 10px 24px rgba(77, 47, 20, .07);
}

.fixedform-changeable__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(43px, 12vw, 54px);
  height: clamp(43px, 12vw, 54px);
  color: #fff7eb;
  background:
    linear-gradient(
      145deg,
      #b11a27 0%,
      #711018 100%
    );
  border-radius: 50%;
  font-size: clamp(1.12rem, 3.2vw, 1.35rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .06em;
  box-shadow:
    0 7px 15px rgba(117, 16, 24, .20);
}

.fixedform-changeable__body {
  min-width: 0;
  padding-top: 2px;
}

.fixedform-changeable__body h3 {
  margin: 0 0 clamp(5px, 1.8vw, 8px);
  color: #30251f;
  font-size: clamp(1.65rem, 4.6vw, 2rem);
  font-weight: 800;
  line-height: 1.45;
}

.fixedform-changeable__body p {
  color: #66574c;
  font-size: clamp(1.2rem, 3.35vw, 1.4rem);
  line-height: 1.7;
}

.fixedform-changeable__mark {
  grid-column: 1 / -1;
  overflow: hidden;
  margin:
    clamp(13px, 3.7vw, 18px)
    calc(10px - clamp(15px, 4.2vw, 21px))
    0;
  background: #f5ede2;
  border: 1px solid rgba(130, 91, 40, .14);
  border-radius: clamp(10px, 3vw, 15px);
}

.fixedform-changeable__basic {
  margin-top: 20px;
  padding: 22px 18px;
  background: #fffdf9;
  border: 1px solid rgba(159, 111, 45, .2);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(77, 47, 20, .07);
}

.fixedform-changeable__basic h3 {
  margin: 0 0 16px;
  color: #30251f;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.fixedform-changeable__basic ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.fixedform-changeable__basic li {
  position: relative;
  padding: 12px 8px 12px 24px;
  color: #55463b;
  background: #f5ede2;
  border-radius: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
}

.fixedform-changeable__basic li::before {
  content: "●";
  position: absolute;
  top: 50%;
  left: 10px;
  color: #a97227;
  font-size: .7em;
  transform: translateY(-50%);
}

.fixedform-changeable__basic > p {
  margin-top: 15px;
  color: #6a594c;
  font-size: 1.25rem;
  line-height: 1.7;
  text-align: left;
}

.fixedform-changeable__confirmation {
  margin:
    clamp(18px, 5vw, 26px)
    0
    0;
  padding:
    clamp(14px, 4vw, 18px)
    clamp(15px, 4.5vw, 21px);
  color: #4d3b2f;
  background: #fffefb;
  border-left: 5px solid #bd852e;
  border-radius: 4px clamp(10px, 3vw, 14px) clamp(10px, 3vw, 14px) 4px;
  font-size: clamp(1.2rem, 3.4vw, 1.4rem);
  font-weight: 700;
  line-height: 1.7;
  text-align: left;
}

.fixedform-changeable__rules {
  margin-top: clamp(22px, 6vw, 32px);
  padding:
    clamp(23px, 6vw, 32px)
    clamp(18px, 5vw, 26px);
  background:
    linear-gradient(
      145deg,
      #281715 0%,
      #160f0d 100%
    );
  border: 1px solid rgba(190, 139, 57, .34);
  border-radius: clamp(16px, 4.5vw, 22px);
  box-shadow:
    0 16px 34px rgba(42, 24, 15, .18);
}

.fixedform-changeable__rules-label {
  display: inline-block;
  margin-bottom: clamp(11px, 3vw, 15px);
  padding:
    5px
    clamp(11px, 3.2vw, 15px);
  color: #2a1814;
  background: #e2b565;
  border-radius: 999px;
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: .08em;
}

.fixedform-changeable__rules p {
  margin-bottom: clamp(17px, 4.8vw, 23px);
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.28rem, 3.55vw, 1.46rem);
  line-height: 1.8;
  text-align: left;
}

.fixedform-changeable__rules a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(48px, 13vw, 56px);
  padding:
    clamp(11px, 3vw, 14px)
    clamp(14px, 4vw, 20px);
  color: #fff9ed;
  background:
    linear-gradient(
      180deg,
      #b51c29 0%,
      #81111a 100%
    );
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  font-size: clamp(1.25rem, 3.5vw, 1.45rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: .04em;
  text-align: center;
  box-shadow:
    0 10px 22px rgba(91, 10, 16, .28);
}


/* =========================
   10. 注文3ステップ
========================= */

.fixedform-flow {
  padding:
    clamp(62px, 15vw, 92px)
    0
    clamp(68px, 16vw, 100px);
  background:
    linear-gradient(
      180deg,
      #f1e6d7 0%,
      #fffaf3 100%
    );
}

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

.fixedform-flow .section-heading {
  margin-bottom: clamp(26px, 7vw, 38px);
}

.fixedform-flow .section-heading__en {
  color: #a76f20;
}

.fixedform-flow__list {
  display: grid;
  gap: clamp(10px, 3vw, 14px);
}

.fixedform-flow__item {
  display: grid;
  grid-template-columns: clamp(46px, 13vw, 58px) minmax(0, 1fr);
  gap: clamp(14px, 4vw, 20px);
  align-items: center;
  padding:
    clamp(16px, 4.5vw, 22px)
    clamp(16px, 4.5vw, 22px);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(157, 109, 42, .18);
  border-radius: clamp(13px, 3.8vw, 18px);
  box-shadow:
    0 9px 22px rgba(75, 45, 20, .07);
}

.fixedform-flow__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(46px, 13vw, 58px);
  height: clamp(46px, 13vw, 58px);
  color: #fff7e9;
  background: #a97227;
  border-radius: 50%;
  font-size: clamp(1.1rem, 3.1vw, 1.34rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .06em;
}

.fixedform-flow__body h3 {
  margin: 0 0 clamp(4px, 1.5vw, 7px);
  color: #342820;
  font-size: clamp(1.6rem, 4.5vw, 1.95rem);
  font-weight: 800;
  line-height: 1.4;
}

.fixedform-flow__body p {
  color: #695a4e;
  font-size: clamp(1.18rem, 3.3vw, 1.38rem);
  line-height: 1.65;
}



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

.faq {
  padding:
    clamp(64px, 15vw, 96px)
    var(--section-x)
    clamp(72px, 16vw, 104px);
  background:
    linear-gradient(
      180deg,
      #fffaf4 0%,
      #f6ecde 48%,
      #ffffff 100%
    );
}

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

.faq__label {
  margin:
    0
    0
    clamp(8px, 2.4vw, 12px);
  color: #b20d1e;
  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-size: clamp(2.4rem, 6.4vw, 3.2rem);
  line-height: 1.45;
  letter-spacing: .05em;
}

.faq__head p:last-child {
  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 {
  padding:
    clamp(18px, 5vw, 24px)
    18px
    clamp(20px, 5.5vw, 26px);
  font-size: var(--fz-s);
  line-height: 1.85;
}



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

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

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  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%
    );
  pointer-events: none;
}

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

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

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

.final-cta__head p {
  width: min(88%, 680px);
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

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

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

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

.cta-card__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 0 14px;
  color: #078f42;
  background: rgba(6, 199, 85, .10);
  border-radius: 999px;
  font-size: clamp(1.1rem, 3vw, 1.25rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .04em;
}

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

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

.cta-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  margin-top: 22px;
  padding:
    0
    22px;
  color: #ffffff;
  background:
    linear-gradient(
      180deg,
      #10d866 0%,
      #06b84d 100%
    );
  border-radius: 999px;
  font-size: var(--fz-m);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .04em;
  text-align: center;
  box-shadow:
    0 12px 24px rgba(6, 163, 70, .22);
}

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

.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;
  align-content: center;
  gap: 3px;
  min-height: 58px;
  padding:
    10px
    18px;
  color: var(--color-text);
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fff1ee 100%
    );
  border:
    1px
    solid
    rgba(180, 52, 44, .28);
  border-radius: 999px;
  text-align: center;
  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;
}



/* =========================
   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 {
  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;
}

.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 {
  width: 26px;
}

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

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

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



/* =========================
   15. Utility
========================= */

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

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



/* =========================
   16. 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;
}



/* =========================
   17. Tap Motion
========================= */

.cta-card a,
.cta-sub__links a,
.cta-scroll {
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    opacity .18s ease;
  -webkit-tap-highlight-color: transparent;
}

.cta-card a:active,
.cta-sub__links a:active,
.cta-scroll:active {
  transform: scale(.97);
  opacity: .9;
}

.cta_btn .cta-scroll {
  display: block;
}

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



/* =========================
   20. 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);
}



/* =========================
   21. Reduced Motion
========================= */

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

  .js-animate,
  .js-animate.is-visible,
  .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,
  .cta_btn,
  .cta_btn img {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
  }
}