@charset "utf-8";

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

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

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

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

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

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

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

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

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

* {
  box-sizing: border-box;
}

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

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

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

li {
  list-style: none;
}

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

p {
  margin-bottom: 1.1em;
}

.fixedform-fireman-page {
  overflow: hidden;
}


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

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  border-bottom: 1px solid rgba(148, 17, 38, .16);
  background: rgba(255, 248, 238, .94);
  backdrop-filter: blur(16px);
}

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

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

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

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

.global-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #241b17;
  font-size: 1.5rem;
  font-weight: 800;
}

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

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

.global-nav__fixedform {
  position: relative;
  padding:
    .62em
    2.35em
    .62em
    1.15em;
  color: #fff8e9;
  border: 1px solid rgba(201, 159, 82, .72);
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      #302c27 0%,
      #171513 100%
    );
  box-shadow:
    0 8px 18px rgba(25, 21, 17, .22),
    inset 0 1px 0 rgba(255, 245, 221, .12);
  opacity: 1;
  transition:
    color .25s ease,
    border-color .25s ease,
    background .25s ease,
    box-shadow .25s ease,
    transform .25s ease;
}

.global-nav .global-nav__fixedform:hover {
  color: #241d15;
  border-color: #f2d79f;
  background:
    linear-gradient(
      180deg,
      #e0bd78 0%,
      #b9893d 100%
    );
  box-shadow:
    0 12px 24px rgba(101, 73, 31, .28),
    inset 0 1px 0 rgba(255, 248, 226, .42);
  opacity: 1;
  transform: translateY(-2px);
}

.global-nav__fixedform::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: 1.05em;
  color: #d6a954;
  font-size: 1.25em;
  line-height: 1;
  transform: translateY(-52%);
  transition:
    color .25s ease,
    transform .25s ease;
}

.global-nav .global-nav__fixedform:hover::after {
  color: #241d15;
  transform:
    translate(3px, -52%);
}



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

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

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



/* =========================
   パンくずリスト
========================= */

.breadcrumb {
  padding:
    clamp(10px, 1vw, 16px)
    0;
  background: #fff8ee;
  border-bottom:
    1px
    solid
    rgba(148, 17, 38, .10);
  font-size: clamp(1.2rem, .9vw, 1.4rem);
}

.breadcrumb .section-inner {
  width: min(100% - 80px, 1400px);
  margin: 0 auto;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap:
    4px
    8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  color: #6a3a2a;
  font-size: clamp(1.2rem, .9vw, 1.4rem);
  line-height: 1.6;
  letter-spacing: .03em;
}

.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin-left: 8px;
  color: rgba(179, 71, 27, .72);
}

.breadcrumb a {
  color: #241b17;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #941126;
}



/* =========================
   04. Fixed Form Common
========================= */

.section-heading {
  width: min(88%, 820px);
  margin:
    0
    auto
    clamp(38px, 3.8vw, 58px);
  text-align: center;
}

.section-heading__en {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--color-red);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .18em;
}

.section-heading h1,
.section-heading h2 {
  margin:
    0
    0
    clamp(22px, 2.2vw, 30px);
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: clamp(3rem, 2.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .05em;
}

.section-heading p {
  width: min(100%, 720px);
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 1.58rem;
  line-height: 2;
  text-align: left;
}

.fixedform-overview .section-heading h2 span {
  display: block;
}

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

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



/* =========================
   05. Fixed Form Intro
========================= */

.fixedform-intro {
  padding:
    clamp(82px, 7vw, 118px)
    5vw
    clamp(92px, 8vw, 132px);
  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(225, 154, 58, .20) 0,
      rgba(225, 154, 58, 0) 32%
    ),
    radial-gradient(
      circle at 88% 16%,
      rgba(178, 13, 30, .10) 0,
      rgba(178, 13, 30, 0) 30%
    ),
    linear-gradient(
      180deg,
      #fff8ed 0%,
      #f6eadc 62%,
      #ffffff 100%
    );
}

.fixedform-intro .section-heading {
  margin-bottom: clamp(42px, 4vw, 60px);
}

.fixedform-intro__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 30px);
  width: min(90%, 1180px);
  margin: 0 auto;
}

.fixedform-intro__points li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding:
    clamp(32px, 3vw, 44px)
    clamp(24px, 2.5vw, 36px);
  overflow: hidden;
  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: 22px;
  box-shadow:
    0 18px 38px rgba(71, 46, 23, .11),
    inset 0 1px 0 rgba(255, 255, 255, .95);
  text-align: center;
}

.fixedform-intro__points li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 5px;
  background:
    linear-gradient(
      90deg,
      rgba(157, 22, 34, 0) 0%,
      #9d1622 50%,
      rgba(157, 22, 34, 0) 100%
    );
}

.fixedform-intro__points strong {
  display: block;
  margin-bottom: 20px;
  color: #9d1622;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .05em;
}

.fixedform-intro__points span {
  display: block;
  width: 100%;
  padding-top: 18px;
  color: #64564b;
  border-top: 1px solid rgba(167, 120, 37, .25);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: .02em;
}



/* =========================
   06. Fixed Form Overview
========================= */

.fixedform-overview {
  padding:
    clamp(92px, 7.5vw, 132px)
    5vw
    clamp(104px, 8.5vw, 148px);
  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 {
  width: min(88%, 900px);
}

.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(3rem, 2.6vw, 4.2rem);
  line-height: 1.65;
  letter-spacing: .03em;
  text-align: center;
}

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

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

.fixedform-overview__image {
  overflow: hidden;
  width: min(82%, 820px);
  margin:
    0
    auto
    clamp(46px, 4vw, 64px);
  background: #fffdf8;
  border: 1px solid rgba(219, 170, 91, .42);
  border-radius: 24px;
  box-shadow:
    0 28px 58px rgba(0, 0, 0, .38);
}

.fixedform-overview__image img {
  display: block;
  width: 100%;
  height: auto;
}

.fixedform-overview__image figcaption {
  padding: 17px 20px 20px;
  color: #5d4b3c;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .08em;
  text-align: center;
}

.fixedform-overview__products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 2.5vw, 36px);
  width: min(90%, 1040px);
  margin: 0 auto;
}

.fixedform-product-card {
  position: relative;
  overflow: hidden;
  padding:
    clamp(34px, 3vw, 46px)
    clamp(30px, 2.8vw, 42px)
    clamp(30px, 2.5vw, 40px);
  background:
    linear-gradient(
      145deg,
      #fffdf8 0%,
      #f5ead7 100%
    );
  border: 1px solid rgba(203, 153, 71, .40);
  border-radius: 22px;
  box-shadow:
    0 20px 42px rgba(0, 0, 0, .24);
}

.fixedform-product-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  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: 48px;
  min-height: 30px;
  margin-bottom: 12px;
  padding: 4px 12px;
  color: #fff7e8;
  background: #8e1720;
  border-radius: 999px;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
}

.fixedform-product-card h3 {
  color: #30251e;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 2vw, 3rem);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.fixedform-product-card__price {
  margin:
    clamp(16px, 1.8vw, 24px)
    0
    clamp(22px, 2vw, 30px);
  color: #9e1421;
  font-size: clamp(3.2rem, 3vw, 4.2rem);
  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: 34% 1fr;
  border-bottom: 1px solid rgba(135, 99, 44, .20);
}

.fixedform-product-card__spec dt,
.fixedform-product-card__spec dd {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin: 0;
  padding: 14px 12px;
  color: #493a30;
  font-size: 1.45rem;
  line-height: 1.55;
}

.fixedform-product-card__spec dt {
  background: rgba(227, 207, 173, .45);
  font-weight: 800;
}

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

.fixedform-overview__shipping {
  width: min(90%, 1040px);
  margin:
    clamp(26px, 2.5vw, 36px)
    auto
    0;
  padding: 20px 28px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(215, 167, 88, .26);
  border-radius: 16px;
}

.fixedform-overview__shipping p {
  color: rgba(255, 255, 255, .78);
  font-size: 1.6rem;
  line-height: 1.75;
  text-align: center;
}

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



/* =========================
   07. Fixed Form Changeable
========================= */

.fixedform-changeable {
  padding:
    clamp(96px, 8vw, 140px)
    5vw
    clamp(104px, 8.5vw, 148px);
  background:
    radial-gradient(
      circle at 8% 10%,
      rgba(174, 27, 39, .09) 0,
      rgba(174, 27, 39, 0) 30%
    ),
    radial-gradient(
      circle at 92% 24%,
      rgba(211, 159, 73, .17) 0,
      rgba(211, 159, 73, 0) 32%
    ),
    linear-gradient(
      180deg,
      #fffaf1 0%,
      #f4e8d7 100%
    );
}

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

.fixedform-changeable .section-heading {
  width: min(100%, 820px);
}

.fixedform-changeable .section-heading p {
  text-align: center;
}

.fixedform-changeable__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 2.4vw, 34px);
  margin:
    0
    0
    clamp(38px, 4vw, 56px);
}

.fixedform-changeable__item {
  position: relative;
  min-width: 0;
  padding:
    clamp(34px, 3vw, 46px)
    clamp(30px, 2.7vw, 42px);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .98) 0%,
      rgba(255, 249, 239, .97) 100%
    );
  border: 1px solid rgba(154, 105, 35, .22);
  border-radius: 22px;
  box-shadow:
    0 18px 40px rgba(79, 49, 22, .11);
}

.fixedform-changeable__item:nth-child(3) {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns:
    minmax(0, .8fr)
    minmax(400px, 1.2fr);
  column-gap: clamp(36px, 4vw, 60px);
  align-items: center;
}

.fixedform-changeable__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 32px;
  margin-bottom: 18px;
  padding: 5px 14px;
  color: #fff9ed;
  background: #941722;
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .1em;
}

.fixedform-changeable__body h3 {
  margin-bottom: 16px;
  color: #33271f;
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 2vw, 3rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .04em;
}

.fixedform-changeable__body p {
  color: #65564b;
  font-size: 1.5rem;
  line-height: 1.9;
}

.fixedform-changeable__mark {
  grid-column: 2;
  grid-row: 1 / span 2;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(154, 105, 35, .18);
  border-radius: 18px;
}

.fixedform-changeable__mark img {
  display: block;
  width: 100%;
  height: auto;
}

.fixedform-changeable__basic {
  padding:
    clamp(34px, 3vw, 46px)
    clamp(34px, 3.5vw, 54px);
  background:
    linear-gradient(
      135deg,
      #2b201b 0%,
      #17110f 100%
    );
  border: 1px solid rgba(211, 160, 78, .34);
  border-radius: 24px;
  box-shadow:
    0 22px 48px rgba(63, 39, 18, .20);
}

.fixedform-changeable__basic h3 {
  margin-bottom: 26px;
  color: #f3d49e;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 2.2vw, 3.2rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .05em;
  text-align: center;
}

.fixedform-changeable__basic ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.fixedform-changeable__basic li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 15px 12px;
  color: #fffaf1;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(229, 189, 120, .24);
  border-radius: 12px;
  font-size: 1.48rem;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

.fixedform-changeable__basic p {
  margin-top: 22px;
  color: rgba(255, 255, 255, .72);
  font-size: 1.4rem;
  line-height: 1.7;
  text-align: center;
}

.fixedform-changeable__confirmation {
  margin:
    clamp(28px, 3vw, 40px)
    auto
    0;
  padding: 20px 26px;
  color: #4e3d31;
  background: #fffdf8;
  border: 1px solid rgba(157, 108, 40, .24);
  border-radius: 14px;
  font-size: 1.48rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.fixedform-changeable__rules {
  position: relative;
  margin-top: clamp(32px, 3.5vw, 46px);
  padding:
    clamp(34px, 3vw, 44px)
    clamp(34px, 3.5vw, 52px);
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(148, 23, 34, .24);
  border-radius: 20px;
}

.fixedform-changeable__rules-label {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 7px 20px;
  color: #fff;
  background: #941722;
  border-radius: 0 0 12px 12px;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .08em;
  transform: translateX(-50%);
}

.fixedform-changeable__rules p {
  margin:
    12px
    auto
    24px;
  color: #66564b;
  font-size: 1.45rem;
  line-height: 1.9;
}

.fixedform-changeable__rules a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 430px);
  min-height: 58px;
  margin: 0 auto;
  padding: 14px 28px;
  color: #fff;
  background:
    linear-gradient(
      135deg,
      #9f1723 0%,
      #741019 100%
    );
  border-radius: 999px;
  box-shadow:
    0 12px 24px rgba(116, 16, 25, .22);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.fixedform-changeable__rules a:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 30px rgba(116, 16, 25, .28);
}



/* =========================
   08. Fixed Form Flow
========================= */

.fixedform-flow {
  padding:
    clamp(92px, 7.5vw, 132px)
    5vw
    clamp(102px, 8vw, 144px);
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(197, 139, 47, .16) 0,
      rgba(197, 139, 47, 0) 28%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f5eee4 100%
    );
}

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

.fixedform-flow .section-heading {
  width: min(100%, 820px);
}

.fixedform-flow__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2.5vw, 36px);
}

.fixedform-flow__item {
  position: relative;
  min-width: 0;
  padding:
    clamp(36px, 3vw, 48px)
    clamp(26px, 2.5vw, 38px)
    clamp(32px, 2.8vw, 42px);
  background:
    linear-gradient(
      145deg,
      #fffdf8 0%,
      #f4e8d6 100%
    );
  border: 1px solid rgba(159, 111, 39, .24);
  border-radius: 22px;
  box-shadow:
    0 18px 38px rgba(70, 45, 22, .10);
}

.fixedform-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(clamp(24px, 2.5vw, 36px) / -2);
  z-index: 2;
  width: 18px;
  height: 18px;
  border-top: 3px solid #a77a32;
  border-right: 3px solid #a77a32;
  transform:
    translate(50%, -50%)
    rotate(45deg);
}

.fixedform-flow__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin:
    0
    auto
    24px;
  color: #fff8eb;
  background:
    linear-gradient(
      145deg,
      #a11a25 0%,
      #721018 100%
    );
  border-radius: 50%;
  box-shadow:
    0 12px 24px rgba(114, 16, 24, .22);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
}

.fixedform-flow__body h3 {
  min-height: 68px;
  margin-bottom: 18px;
  color: #342820;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 1.8vw, 2.7rem);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .03em;
  text-align: center;
}

.fixedform-flow__body p {
  color: #65564b;
  font-size: 1.45rem;
  line-height: 1.85;
  text-align: left;
}



/* =========================
   09. FAQ
========================= */

.faq {
  position: relative;
  overflow: hidden;
  padding:
    clamp(96px, 8vw, 140px)
    5vw
    clamp(104px, 8.5vw, 148px);
  background:
    radial-gradient(
      circle at 90% 12%,
      rgba(178, 13, 30, .09) 0,
      rgba(178, 13, 30, 0) 30%
    ),
    radial-gradient(
      circle at 10% 82%,
      rgba(197, 145, 61, .14) 0,
      rgba(197, 145, 61, 0) 32%
    ),
    linear-gradient(
      180deg,
      #fffaf4 0%,
      #f4e8d8 100%
    );
}

.faq__head {
  width: min(88%, 820px);
  margin:
    0
    auto
    clamp(42px, 4vw, 60px);
  text-align: center;
}

.faq__label {
  margin:
    0
    0
    14px;
  color: #b20d1e;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .16em;
}

.faq__head h2 {
  margin:
    0
    0
    24px;
  color: #2b211b;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 2.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .05em;
}

.faq__head p:last-child {
  width: min(100%, 720px);
  margin: 0 auto;
  color: #65564b;
  font-size: 1.55rem;
  line-height: 1.9;
  text-align: center;
}

.faq-list {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap:
    20px
    28px;
  align-items: start;
  width: min(92%, 1120px);
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  background: rgba(255, 255, 255, .94);
  border:
    1px
    solid
    rgba(138, 106, 47, .20);
  border-radius: 18px;
  box-shadow:
    0 12px 28px rgba(91, 57, 25, .08);
}

.faq-item summary {
  position: relative;
  padding:
    22px
    66px
    22px
    26px;
  color: #332820;
  background:
    linear-gradient(
      135deg,
      #fffdf8 0%,
      #f3e4cf 100%
    );
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.7;
  list-style: none;
  cursor: pointer;
  transition:
    color .25s ease,
    background .25s ease;
}

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

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

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

.faq-item[open] summary {
  color: #fff9ed;
  background:
    linear-gradient(
      135deg,
      #9f1723 0%,
      #711018 100%
    );
}

.faq-item[open] summary::before,
.faq-item[open] summary::after {
  background: #fff;
}

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

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

.faq-answer p {
  margin: 0;
  padding:
    24px
    28px
    28px;
  color: #65564b;
  font-size: 1.45rem;
  line-height: 1.9;
}

@media (hover: hover) {
  .faq-item:not([open]) summary:hover {
    color: #941722;
    background:
      linear-gradient(
        135deg,
        #ffffff 0%,
        #f0dcc0 100%
      );
  }
}



/* =========================
   10. Final CTA
========================= */

.final-cta {
  position: relative;
  overflow: hidden;
  padding:
    clamp(96px, 8vw, 140px)
    5vw
    clamp(104px, 8.5vw, 148px);
  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(179, 71, 27, .20) 0,
      rgba(179, 71, 27, 0) 34%
    ),
    radial-gradient(
      circle at 88% 78%,
      rgba(148, 17, 38, .12) 0,
      rgba(148, 17, 38, 0) 34%
    ),
    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(34px, 3vw, 48px);
  left: 50%;
  width: min(70%, 720px);
  height: 1px;
  background:
    linear-gradient(
      90deg,
      rgba(138, 106, 47, 0),
      rgba(138, 106, 47, .46),
      rgba(138, 106, 47, 0)
    );
  transform: translateX(-50%);
}

.final-cta__head {
  position: relative;
  z-index: 1;
  width: min(88%, 820px);
  margin:
    0
    auto
    clamp(42px, 4vw, 60px);
}

.final-cta .section-heading__en {
  color: #b3471b;
}

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

.final-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(0, .95fr);
  gap: clamp(26px, 2.8vw, 40px);
  align-items: stretch;
  width: min(92%, 1120px);
  margin: 0 auto;
}

.cta-card,
.cta-sub {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding:
    clamp(36px, 3vw, 48px)
    clamp(32px, 3vw, 46px);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(138, 106, 47, .20);
  border-radius: 24px;
  box-shadow:
    0 20px 46px rgba(54, 38, 18, .13);
}

.cta-card {
  display: flex;
  flex-direction: column;
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background:
    linear-gradient(
      90deg,
      #08a94b 0%,
      #06c755 50%,
      #08a94b 100%
    );
}

.cta-card__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 32px;
  margin-bottom: 18px;
  padding: 5px 16px;
  color: #078f42;
  background: rgba(6, 199, 85, .11);
  border-radius: 999px;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .05em;
}

.cta-card h3 {
  margin:
    0
    0
    16px;
  color: #30251e;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 2vw, 3.2rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .04em;
}

.cta-card p {
  margin:
    0
    0
    28px;
  color: #65564b;
  font-size: 1.48rem;
  line-height: 1.85;
}

.cta-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 62px;
  margin-top: auto;
  padding:
    14px
    26px;
  color: #ffffff;
  background:
    linear-gradient(
      180deg,
      #10d866 0%,
      #06b84d 100%
    );
  border-radius: 999px;
  box-shadow:
    0 13px 26px rgba(6, 163, 70, .24);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .04em;
  text-align: center;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    filter .25s ease;
}

.cta-card a:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
  box-shadow:
    0 17px 32px rgba(6, 163, 70, .30);
}

.cta-sub {
  display: flex;
  flex-direction: column;
}

.cta-sub::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background:
    linear-gradient(
      90deg,
      #8e1720 0%,
      #d09b43 50%,
      #8e1720 100%
    );
}

.cta-sub__title {
  margin:
    0
    0
    24px;
  color: #30251e;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 1.8vw, 2.8rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .04em;
  text-align: center;
}

.cta-sub__links {
  display: grid;
  gap: 18px;
  margin-top: auto;
}

.cta-sub__links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding:
    15px
    24px;
  color: #332820;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f6e7d1 100%
    );
  border: 1px solid rgba(148, 23, 34, .22);
  border-radius: 16px;
  box-shadow:
    0 10px 22px rgba(83, 51, 22, .09);
  text-align: center;
  transition:
    color .25s ease,
    border-color .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}

.cta-sub__links a:hover {
  color: #8f1520;
  border-color: rgba(148, 23, 34, .40);
  transform: translateY(-3px);
  box-shadow:
    0 15px 28px rgba(83, 51, 22, .14);
}

.cta-sub__links span {
  display: block;
  font-size: 1.48rem;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: .03em;
}

.cta-sub__links small {
  display: block;
  margin-top: 5px;
  color: #756459;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.45;
}


/* =========================
   11. Footer
========================= */

.footer__info {
  min-width: 0;
}

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

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

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

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

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

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

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

.footer__contact a {
  transition: color .2s ease;
}

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

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

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

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

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

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

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

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

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



/* =========================
   12. Floating Standard
========================= */

.floating-standard {
  position: fixed;
  right: 24px;
  bottom: 98px;
  z-index: calc(var(--z-floating) - 1);
  width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition:
    opacity .3s ease,
    visibility .3s ease,
    transform .3s ease;
  pointer-events: none;
}

body.is-standard-ready .floating-standard {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-standard a {
  display: block;
  transition:
    opacity .25s ease,
    transform .25s ease;
}

.floating-standard a:hover {
  opacity: .88;
  transform: translateY(-3px);
}

.floating-standard img {
  display: block;
  width: 200px;
  height: auto;
}



/* =========================
   13. Page Top
========================= */

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

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

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


/* =========================
   14. Utility
========================= */

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



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

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

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

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

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

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

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

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

  .js-reveal,
  .js-reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
    transition: none;
  }
}