@charset "utf-8";

/* =========================================================
   01. 変数・デザイントークン
========================================================= */

:root {
  --font-sans: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "游ゴシック Medium", "Noto Sans JP", sans-serif;
  --font-serif: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "heisei-mincho-std", "source-han-serif-japanese", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;

  --color-text: #111;
  --color-sub: #444;
  --color-muted: #666;
  --color-bg: #fff;
  --color-bg-soft: #f5f6f8;
  --color-bg-warm: #f8f5f0;
  --color-navy: #0b1f3a;
  --color-brown: #752100;
  --color-red: #a52a2a;
  --color-line: #00b900;
  --color-rakuten: #bf0000;

  --fz-xs: clamp(1.1rem, 2.8vw, 1.3rem);
  --fz-s: clamp(1.2rem, 3.2vw, 1.5rem);
  --fz-m: clamp(1.4rem, 3.5vw, 1.75rem);
  --fz-l: clamp(1.7rem, 4.4vw, 2.25rem);
  --fz-xl: clamp(2.1rem, 5.1vw, 2.8rem);
  --fz-xxl: clamp(2.3rem, 5.6vw, 3.1rem);

  --lh-tight: 1.45;
  --lh-base: 1.7;
  --lh-loose: 1.9;

  --radius-s: 10px;
  --radius-m: 14px;
  --radius-l: 18px;
  --radius-xl: 22px;
  --radius-pill: 999px;

  --shadow-soft: 0 4px 14px rgba(0,0,0,.06);
  --shadow-card: 0 6px 16px rgba(0,0,0,.07);
  --shadow-float: 0 8px 22px rgba(0,0,0,.10);

  --section-gap-xs: clamp(20px, 5vw, 36px);
  --section-gap-s: clamp(32px, 7vw, 56px);
  --section-gap-m: clamp(48px, 10vw, 84px);
  --section-gap-l: clamp(64px, 13vw, 112px);
  --section-gap-xl: clamp(80px, 16vw, 136px);

  --content-px: clamp(20px, 5vw, 40px);
  --heading-gap: clamp(18px, 4.5vw, 36px);
  --text-gap: clamp(14px, 3.5vw, 28px);
  --card-gap: clamp(18px, 5vw, 36px);
}



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

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

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

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

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.4;
}

h1 {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 0;
}

h2 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 20px;
}

p {
  font-size: 1.3rem;
  line-height: 1.6;
}

header {
  width: 100%;
  overflow: hidden;
  height: auto;
  margin: 0 auto;
}

section {
  padding: 0;
}



/* =========================
   03-1. 上部固定メニュー
========================= */

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

#top-menu .top-menu-tel,
#top-menu .top-menu-contact,
#top-menu .top-menu-pc {
  float: left;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 66px;
  height: 60px;
  background: transparent;
  border-right: none;
  text-decoration: none;
  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%;
}

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

#top-menu .menu-btn {
  position: relative;
  float: right;
  width: 56px;
  height: 60px;
  padding: 0;
  color: var(--color-text);
  background: transparent;
  border: none;
  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 {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 25px;
  height: 22px;
  transform: translateX(-50%);
}

#top-menu .menu-btn .menu-btn-inner span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 2px;
  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 .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;
  right: 0;
  bottom: 8px;
  left: 0;
  display: block;
  width: 100%;
  font-size: var(--fz-xs);
  line-height: 1;
  text-align: center;
}

#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"]) .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 {
  filter: brightness(0) invert(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;
}


/* =========================
   03-2. スマホ開閉メニュー
========================= */

.sp-menu {
  position: fixed;
  inset: 0;
  z-index: 850;
  display: none;
  overflow-y: auto;
  padding:
    clamp(96px, 24vw, 126px)
    var(--content-px)
    calc(clamp(82px, 22vw, 112px) + env(safe-area-inset-bottom));
  background:
    linear-gradient(
      180deg,
      rgba(18, 16, 14, .82) 0%,
      rgba(33, 28, 23, .78) 100%
    );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-sans);
}

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

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

.sp-menu ul.sp-menu-first {
  display: grid;
  gap: clamp(22px, 6.2vw, 32px);
  margin: 0;
  padding: 0;
}

.sp-menu ul.sp-menu-first > li {
  margin: 0;
  padding: 0;
  overflow: visible;
}

.sp-menu ul.sp-menu-first > li > a {
  display: block;
  padding: 0;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(1.72rem, 4.85vw, 2rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .12em;
  text-align: center;
  text-decoration: none;
}

.sp-menu ul.sp-menu-first > li > a:active {
  opacity: .62;
}



/* =========================
   ファーストビュー
========================= */

#main-slider img {
  width: 100%;
  height: auto;
  display: block;
}



/* =========================
   main・導入
========================= */

.inner {
  padding-top: 0;
}

.inner img {
  margin-bottom: 0;
  padding: 0;
}



/* =========================
   パンくずリスト
========================= */
.breadcrumb {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
}

.breadcrumb ol {
  list-style: none;
  margin:
    clamp(8px, 2vw, 16px)
    0
    clamp(8px, 2vw, 16px)
    var(--content-px);
  padding: 0;
}

.breadcrumb ol li {
  display: inline;
}

.breadcrumb ol li::after {
  content: ">";
  padding-left:
    clamp(6px, 1.5vw, 12px);
}

.breadcrumb ol li:last-child::after {
  content: none;
}



/* =========================
   h1大見出し＋リード文
========================= */

main h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: bolder;
  font-family: var(--font-serif);
  color: var(--color-text);
  line-height: 1.5;
  letter-spacing: -.03em;
  text-wrap: pretty;
  padding: 0 var(--content-px);
  margin:
    clamp(34px, 8vw, 70px)
    auto
    clamp(10px, 2.5vw, 18px);
}

.lead {
  width: min(90%, 42em);
  margin:
    0
    auto
    clamp(28px, 7vw, 56px);
  font-size: clamp(1.55rem, 3.9vw, 2rem);
  font-weight: bolder;
  font-family: var(--font-serif);
  line-height: 1.9;
  text-align: center;
}


/* =========================
   共通上書き：見出し・主要本文
========================= */

main h1,
.popular_ranking h2,
.reviews-m h2,
.feature-m h2,
.item_specifications h2,
.popular_layouts h2,
#illust h2,
.qrcode-m h2,
.faq h2,
.support-info > h2,
.final-cta h2,
.purchase_info-m h2 {
  font-family: var(--font-serif);
  font-size: var(--fz-xl);
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: .04em;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
  padding:
  0
  clamp(16px, 4vw, 32px);
}

.lead,
.popular_layouts_top p,
.item_specifications p,
.qrcode-m_1 p,
.qrcode-m_2 p,
.support-info-lead,
.final-cta p,
.purchase-lead {
  font-size: var(--fz-m);
  line-height: var(--lh-loose);
}



/* ==================
   栄光のあゆみとは
=================== */

.explain-m {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.explain-m img {
  display: block;
  width: 100%;
  height: auto;
}

.explain-m__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding:
    clamp(32px, 7vw, 56px)
    clamp(24px, 6vw, 42px);
  color: #fff;
  text-align: center;
}

.explain-m__content h2 {
  margin: 0 0 clamp(22px, 5vw, 40px);
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 5.2vw, 2.9rem);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .04em;
}

.explain-m__content p {
  margin: 0 auto;
  color: rgba(255,255,255,.94);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3.8vw, 1.9rem);
  line-height: 2;
  letter-spacing: .03em;
  text-align: center;
}



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

.popular_ranking {
  margin-top: 0;
  padding-top: var(--section-gap-m);
  background-color: #FFFFFF;
  color: var(--color-text);
}

.popular_ranking h2 {
  font-size: var(--fz-xl);
  line-height: 1.6;
  font-weight: bolder;
  font-family: var(--font-serif);
  margin:
    0
    auto
    var(--heading-gap);
}

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



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

.reviews-m {
  margin-top: 0;
  padding:
    var(--section-gap-l)
    var(--content-px)
    var(--section-gap-l);
  background: #fff;
  color: var(--color-text);
}

.reviews-m h2 {
  margin:
    0
    auto
    var(--heading-gap);
  font-size: clamp(2.1rem, 5.2vw, 3rem);
  line-height: 1.6;
  font-weight: bolder;
  font-family: var(--font-serif);
}



/* =========================
   レビュー導入
========================= */

.reviews-hero {
  position: relative;
  margin:
    0
    auto
    var(--card-gap);
  overflow: hidden;
  border-radius: 10px;
}

.reviews-hero img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(.70);
}

.reviews-hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family:var(--font-serif);
  color: #fff;
  text-align: center;
}

.reviews-subtitle {
  font-size: var(--fz-xl);
  letter-spacing: .25em;
  margin-bottom:
    clamp(8px, 2vw, 14px);
  opacity: .9;
}

.reviews-hero-text p {
  font-size: var(--fz-xxl);
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: .08em;
}



/* =========================
レビューカード
========================= */

.review-voice-list {
  display: flex;
  flex-direction: column;
  gap: var(--card-gap);
  margin-bottom: var(--text-gap);
}

.review-voice {
  background: #fff;
  border-radius: var(--radius-xl);
  padding:
    clamp(30px, 8vw, 58px)
    clamp(28px, 8vw, 64px);
  box-shadow: var(--shadow-card);
}

.review-star {
  display: inline-block;
  margin:
    0
    auto
    clamp(18px, 5vw, 34px);
  color: #DAA520;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  letter-spacing: .15em;
  font-weight: bold;
}

.review-voice h3 {
  margin-bottom: var(--text-gap);
  font-size: clamp(1.65rem, 4.2vw, 2.15rem);
  line-height: 1.6;
  font-weight: 700;
  color: #222222;
}

.review-voice p {
  margin-bottom: var(--text-gap);
  font-size: clamp(1.4rem, 3.6vw, 1.85rem);
  line-height: 1.7;
  color: #444;
}

.review-author {
  display: block;
  font-size: var(--fz-s);
  color: #555555;
  letter-spacing: .04em;
}



/* =========================
部隊別アクセント
========================= */

.review-voice.ground {
  border-top: 10px solid #6b8e23;
}

.review-voice.marine {
  border-top: 10px solid #000080;
}

.review-voice.air {
  border-top: 10px solid #87ceeb;
}

.reviews-note {
  font-size: var(--fz-xs);
  color: #333333;
  text-align: right;
  margin-bottom: var(--section-gap-s);
}

/* =========================
  Google・公式レビューカード
========================= */

.review-card {
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: clamp(22px, 6vw, 44px);
  margin-bottom: var(--card-gap);
  box-shadow: var(--shadow-soft);
}

.review-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-head h3 {
  font-size: clamp(1.4rem, 3.5vw, 1.75rem);
}

.review-image-link {
  display: block;
  text-align: center;
}

.rating {
  font-size: var(--fz-xxl);
  color: #8a6a2f;
  font-weight: bold;
}

.review-meta {
  margin-top: var(--text-gap);
  font-size: var(--fz-s);
  color: #333333;
}

.review-btn {
  display: inline-block;
  margin-top: var(--text-gap);
  padding:
    clamp(12px, 3vw, 18px)
    clamp(20px, 5vw, 34px);
  background: #111;
  color: #fff;
  border-radius: 6px;
  font-size: var(--fz-xs);
  -webkit-tap-highlight-color: transparent;
}

.review-btn:active {
  transform: translateY(1px);
  opacity: .9;
}




/* =========================
   軽CTA：レビュー後
========================= */

.middle-cta {
  padding:
    var(--section-gap-l)
    var(--content-px);
  background: var(--color-bg-soft);
  text-align: center;
}

.middle-cta h2 {
  margin-bottom: var(--heading-gap);
  font-size: clamp(2.2rem, 5.8vw, 3.2rem);
  line-height: 1.5;
  letter-spacing: .06em;
}

.middle-cta p {
  width: min(100%, 34em);
  margin:
    0
    auto
    var(--heading-gap);
  font-size: clamp(1.5rem, 3.9vw, 2rem);
  line-height: 1.9;
}

.middle-cta-buttons {
  display: grid;
  gap: var(--card-gap);
}

.middle-cta-buttons a {
  display: block;
  padding:
    clamp(16px, 4vw, 24px)
    clamp(18px, 4vw, 28px);
  border-radius: 999px;
  color: #fff;
  font-size: clamp(1.7rem, 4.4vw, 2.3rem);
  font-weight: 700;
  line-height: 2;
  text-align: center;
  text-decoration: none;
  box-shadow: var(--shadow-card);
  -webkit-tap-highlight-color: transparent;
}

.middle-cta-buttons a:active {
  transform: translateY(1px);
  opacity: .9;
}

.middle-cta-line {
  background: var(--color-line);
}

.middle-cta-rakuten {
  background: var(--color-rakuten);
}



/* ===============
   できること
================= */

.feature-m {
  padding:
    var(--section-gap-l)
    0
    0;
  background: #fff;
  color: var(--color-text);
}

.feature-m h2 {
  margin:
    0
    auto
    var(--heading-gap);
  padding: 0 clamp(20px, 4vw, 36px);
  font-family: var(--font-serif);
  font-size: var(--fz-xl);
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
  letter-spacing: .04em;
}

.feature-card {
  position: relative;
  overflow: hidden;
  margin:
    0
    auto
    clamp(10px, 2.5vw, 18px);
  background: #fff;
}

.feature-card:last-child {
  margin-bottom: 0;
}

.feature-card img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.feature-card__content {
  position: absolute;
  top: 73%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  padding:
    0
    clamp(28px, 7vw, 54px);
  text-align: center;
}

.feature-card__content h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(60px, 14vw, 96px);
  margin: 0 0 clamp(2px, 0.5vw, 3.5px);
  color: #fff;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.45;
  text-wrap: balance;
}

.feature-card__content p {
  width: min(100%, 28em);
  margin: 0 auto;
  color: rgba(255,255,255,.92);
  font-family: var(--font-sans);
  font-size: clamp(1.48rem, 3.9vw, 2rem);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: .03em;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

.feature-card__content a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: .25em;
}



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

.item_specifications {
  margin-top: 0;
  padding-top: var(--section-gap-l);
  background-color: #FFFFFF;
  color: var(--color-text);
}

.item_specifications h2 {
  font-size: var(--fz-xl);
  line-height: 1.6;
  font-weight: bolder;
  font-family: var(--font-serif);
  margin-bottom: clamp(12px, 3vw, 22px);
}

.item_specifications p {
  font-size: var(--fz-m);
  text-align: center;
  margin:
    0
    auto
    var(--text-gap);
}

.item_specifications img {
  width:100%;
}



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

.details-summary {
  position: relative;
  display: block;
}

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

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

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

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

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

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

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



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

.close-btn {
  display: block;
  margin:
    calc(var(--text-gap) * -0.35)
    auto
    var(--section-gap-s);
  padding:
    clamp(10px, 3vw, 18px)
    clamp(24px, 6vw, 42px);
  background: var(--color-red);
  color: #fff;
  font-size: var(--fz-m);
  text-align: center;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}



/* =========================
   details内容
========================= */

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



/* =========================
   商品仕様 各タイプ共通
========================= */

.plaque,
.stand,
.art_panel,
.leather,
.frame {
  width: min(90%, 680px);
  margin:
    0
    auto
    var(--section-gap-l);
}

.frame {
  margin-bottom: 0;
}

.plaque > img,
.stand > img,
.art_panel > img,
.leather > img,
.frame > img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: clamp(12px, 1.5vw, 22px);
}

.plaque h3,
.stand h3,
.art_panel h3,
.leather h3,
.frame h3 {
  margin:
    var(--text-gap)
    auto;
  padding: clamp(10px, 3vw, 18px);
  color: #752100;
  background-color: #faebd7;
  border-radius: var(--radius-s);
  font-size: var(--fz-l);
  font-weight: 700;
  line-height: var(--lh-tight);
  text-align: center;
}

.plaque p,
.stand p,
.art_panel p,
.leather p,
.frame p {
  margin:
    var(--text-gap)
    auto;
  font-size: var(--fz-s);
  line-height: 1.4;
  text-align: left;
}

/* =========================
   商品仕様 テーブル共通
========================= */

.plaque table,
.stand table,
.art_panel table,
.art_panel_easel table,
.leather table,
.frame table,
.frame_stand table {
  width: 100%;
  margin:
    0
    auto
    var(--section-gap-s);
  background: #fffdf8;
  border:
    1px
    solid
    rgba(120, 90, 40, .2);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  table-layout: fixed;
}

.art_panel > table,
.frame > table {
  margin:
    0
    auto
    var(--text-gap);
}

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

.plaque th,
.stand th,
.art_panel th,
.art_panel_easel th,
.leather th,
.frame th,
.frame_stand th {
  color: #3b260f;
  background: #f4ead9;
  font-weight: 600;
}

.plaque th,
.stand th,
.art_panel th,
.leather th {
  width: 30%;
}

.frame th,
.frame_stand th {
  width: 25%;
}

.stand td.table-small {
  font-size: .74em;
}

.frame td.table-small {
  font-size: .75em;
}

.frame th.table-small {
  font-size: .8em;
}




/* =========================
   商品仕様 付属品
========================= */

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

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



/* =========================
   かっこいいレイアウト
========================= */

.popular_layouts {
  margin: 0 auto;
  padding:
    var(--section-gap-l)
    0
    0;
  color: var(--color-text);
}

.popular_layouts h2 {
  font-size: var(--fz-xl);
  line-height: 1.6;
  font-weight: bolder;
  font-family: var(--font-serif);
  margin-bottom: var(--heading-gap);
}

.popular_layouts_top p {
  width: min(94%, 36em);
  margin: auto;
  background-color: #a52a2a;
  padding:
    clamp(18px, 5vw, 34px)
    clamp(24px, 7vw, 48px);
  border-radius: 30px;
  font-size: var(--fz-m);
  color: #FFFFFF;
}


/* =========================
   陸上自衛隊
========================= */

.case_ground {
  margin:
    var(--section-gap-s)
    auto
    var(--section-gap-xl);
}

.case_ground h3 {
  font-size: var(--fz-xl);
  font-weight: bolder;
  text-align: center;
  margin:
    var(--section-gap-s)
    auto;
}

.ttl_center-ground {
  font-weight: bold;
  padding-bottom: clamp(16px, 4vw, 30px);
  text-align: center;
  position: relative;
}

.ttl_center-ground::before, .ttl_center-ground::after {
  content: '';
  position: absolute;
  margin:auto;
  left: 0;
  bottom: 0;
  width: 16%;
  background-color: #e3e3e3;
  height: 35%;
  right: 16%; 
}

.ttl_center-ground::before { 
  background-color:#6b8e23;
  left:20%;
  width:28%;
}

/* =========================
   海上自衛隊
========================= */

.case_marine {
  margin:
    var(--section-gap-s)
    auto
    var(--section-gap-xl);
}

.case_marine h3 {
  font-size: var(--fz-xl);
  font-weight: bolder;
  text-align: center;
  margin:
    var(--section-gap-s)
    auto;
}

.ttl_center-marine {
  font-weight: bold;
  padding-bottom: clamp(16px, 4vw, 30px);
  text-align: center;
  position: relative;
}

.ttl_center-marine::before, .ttl_center-marine::after {
  content: '';
  position: absolute;
  margin:auto;
  left: 0;
  bottom: 0;
  width: 16%;
  background-color: #e3e3e3;
  height: 35%;
  right: 16%; 
}

.ttl_center-marine::before { 
  background-color:#000080;
  left:20%;
  width:28%;
}

/* =========================
   航空自衛隊
========================= */

.case_air {
  margin:
    var(--section-gap-s)
    auto
    var(--section-gap-l);
}

.case_air h3 {
  font-size: var(--fz-xl);
  font-weight: bolder;
  text-align: center;
  margin:
    var(--section-gap-s)
    auto;
}

.ttl_center-air {
  font-weight: bold;
  padding-bottom: clamp(16px, 4vw, 30px);
  text-align: center;
  position: relative;
}

.ttl_center-air::before, .ttl_center-air::after {
  content: '';
  position: absolute;
  margin:auto;
  left: 0;
  bottom: 0;
  width: 16%;
  background-color: #e3e3e3;
  height: 35%;
  right: 16%; 
}

.ttl_center-air::before { 
  background-color:#87ceeb;
  left:20%;
  width:28%;
}


/* =========================
   レイアウト用スライダー
========================= */

.splide {
  width: 100%;
}

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

.popular_layouts .splide__arrow {
  width: 4.5rem;
  height: 4.5rem;
  background: var(--color-navy);
  border-radius: 50%;
  opacity: 0.95;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.popular_layouts .splide__arrow svg {
  fill: #cfd6e4;
  width: 1.6rem;
  height: 1.6rem;
}

.popular_layouts .splide__arrow--prev {
  left: 0.5rem;
}

.popular_layouts .splide__arrow--next {
  right: 0.5rem;
}



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

#illust {
  margin:
    0
    auto
    var(--section-gap-l);
}

#illust h2 {
  font-size: var(--fz-xl);
  font-weight: bolder;
  font-family: var(--font-serif);
  line-height: 1.4;
  margin-bottom: var(--heading-gap);
}

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

#illust p {
  margin-top: 0;
  font-size: var(--fz-xs);
  text-align: right;
}



/* =========================
   人気のレイアウトパターン
========================= */

.layout-patterns {
  padding:
    var(--section-gap-l)
    var(--content-px);
  background: var(--color-bg-soft);
}

.layout-patterns h2 {
  margin-bottom: var(--text-gap);
  text-align: center;
  font-size: clamp(2.2rem, 6vw, 3rem);
  line-height: 1.4;
}

.layout-patterns-lead {
  margin:
    0
    auto
    var(--section-gap-s);
  max-width: 680px;
  text-align: center;
  font-size: clamp(1.4rem, 3.8vw, 1.7rem);
  line-height: 1.9;
}

.layout-patterns-list {
  display: flex;
  flex-direction: column;
  gap: var(--card-gap);
}

.layout-patterns-item {
  overflow: hidden;
  background: #fff;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-card);
}

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

.layout-patterns-text {
  padding: clamp(22px, 6vw, 44px);
}

.layout-patterns-text span {
  display: inline-block;
  margin-bottom:
  clamp(10px, 2.5vw, 18px);
  padding: .4em .9em;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  letter-spacing: .08em;
}

.layout-patterns-text h3 {
  margin-bottom: var(--text-gap);
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  line-height: 1.4;
}

.layout-patterns-text p {
  width: min(100%, 32em);
  margin: 0 auto;
  font-size: clamp(1.4rem, 3.8vw, 1.7rem);
  line-height: 1.8;
  text-align: left;
}



/* =========================
   手書き → 完成
========================= */

.layout-sketch {
  margin-top: var(--section-gap-s);
  padding: clamp(22px, 6vw, 44px);
  background: #fff;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-card);
}

.layout-sketch h3 {
  margin-bottom: var(--text-gap);
  text-align: center;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  line-height: 1.5;
}

.layout-sketch-images {
  display: flex;
  gap: clamp(14px, 4vw, 28px);
  margin-bottom: var(--text-gap);
}

.layout-sketch-images div {
  width: 48%;
}

.layout-sketch-images img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.layout-sketch-images p {
  margin-top:
  clamp(10px, 2.5vw, 18px);
  text-align: center;
  font-size: clamp(1.2rem, 3.4vw, 1.5rem);
  font-weight: 700;
}

.layout-sketch-lead {
  width: min(100%, 32em);
  margin: 0 auto;
  text-align: left;
}



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

.qrcode-m {
  margin:
    0
    auto
    var(--section-gap-l);
  padding:
    var(--section-gap-l)
    var(--content-px);
  color: #ffffff;
  background-image: url('../images/qrcode_force-m_bg.webp');
}

.qrcode-m h2 {
  font-size: var(--fz-xl);
  line-height: 1.6;
  font-weight: bolder;
  font-family: var(--font-serif);
  margin-bottom: var(--heading-gap);
}

.qrcode-m_1 {
  margin:
    0
    auto
    var(--section-gap-s);
}

.qrcode-m_1 h3 {
  font-size: var(--fz-l);
  text-align: center;
  margin:
    0
    auto
    var(--heading-gap);
}

.qrcode-m_1 p {
  width: min(90%, 32em);
  margin:
    var(--text-gap)
    auto
    var(--section-gap-s);
  font-size: var(--fz-m);
  line-height: 1.8;
  text-align: left;
}

.qrcode-m_1 img {
  display: block;
  margin: 0 auto;
  border-radius: 20px;
}

.qrcode-m_2 {
  margin:
    0
    auto
    var(--section-gap-s);
}

.qrcode-m_2 h3 {
  font-size: var(--fz-l);
  text-align: center;
  margin:
    0
    auto
    var(--heading-gap);
}

.qrcode-m_2 p {
  width: min(90%, 32em);
  margin:
    var(--text-gap)
    auto
    var(--section-gap-s);
  font-size: var(--fz-m);
  line-height: 1.8;
  text-align: left;
}

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

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

.movie-app-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  min-width: clamp(120px, 30vw, 180px);
  min-height: clamp(50px, 12vw, 68px);
  padding:
    clamp(12px, 2.8vw, 16px)
    clamp(20px, 5vw, 30px);
  color: #ffffff;
  font-size: clamp(1.3rem, 3.5vw, 1.7rem);
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      #1c2f49 0%,
      #091321 100%
    );
  box-shadow:
    0 10px 28px rgba(7, 21, 37, .18);
}

.movie-app-link::before {
  content: "▶";
  color: #d4b06a;
  font-size: .9em;
}

.qrcode-m_3 p {
  font-size: var(--fz-xs);
  text-align: right;
}



/* =========================
   FAQ セクション（外側は%）
========================= */

.faq {
  margin: 0;
  padding:
    var(--section-gap-l)
    var(--content-px);
}


.faq h2 {
  font-size: var(--fz-xl);
  font-weight: bolder;
  font-family: var(--font-serif);
  margin:
    0
    auto
    var(--heading-gap);
  line-height: 1.6;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-radius: 14px;
  margin-bottom: clamp(8px, 2vw, 14px);
  overflow: hidden;
  background: #fffdf8;
  backdrop-filter: none;
  border: 1px solid rgba(0,0,0,0.08);
}

.faq-item[open] {
  background: #f8f3ea;
}

/* =========================
   FAQ質問部
========================= */

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:
    clamp(18px, 5vw, 32px)
    clamp(52px, 13vw, 76px)
    clamp(18px, 5vw, 32px)
    clamp(18px, 5vw, 32px);
  font-size: var(--fz-m);
  font-weight: 500;
  line-height: var(--lh-base);
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

/* デフォルト三角削除 */
.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:active {
  background: rgba(0,0,0,0.04);
}



/* =========================
   ＋ / −（Apple風丸ボタン）
========================= */

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: clamp(12px, 3vw, 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2vw;
  height: 2.2vw;
  min-width: 22px;
  min-height: 22px;
  padding-bottom: .08em;
  color: #333;
  background: rgba(0,0,0,0.05);
  border-radius: 50%;
  font-size: var(--fz-s);
  line-height: 0;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}



/* =========================
   FAQ回答部
========================= */

.faq-item p {
  width: min(100%, 34em);
  margin: 0 auto;
  padding: clamp(18px, 5vw, 32px);
  color: #222;
  font-size: var(--fz-s);
  line-height: var(--lh-base);
  text-align: left;
}

.faq-item[open] summary {
  color: #111;
}



/* =========================
   ご検討中の方へ
========================= */

.support-info {
  padding:
    var(--section-gap-l)
    var(--content-px);
  background: var(--color-bg-soft);
}

.support-info > h2 {
  margin-bottom: var(--heading-gap);
  font-size: clamp(2.2rem, 6vw, 3rem);
  line-height: 1.45;
  text-align: center;
  letter-spacing: .08em;
}

.support-info-lead {
  width: min(95%, 32em);
  margin:
    0
    auto
    var(--heading-gap);
  font-size: clamp(1.4rem, 3.8vw, 1.8rem);
  line-height: 1.8;
  text-align: left;
}


/* =========================
   共通カード
========================= */

.support-info .pamphlet,
.support-info .problems-m {
  padding:
    var(--section-gap-s)
    var(--content-px);
  margin-bottom: var(--heading-gap);
  background: #fffdf8;
  border: 1px solid rgba(120, 90, 40, .16);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-card);
}

.support-info .pamphlet h3,
.support-info .problems-m h3 {
  margin-bottom: clamp(18px, 4.5vw, 34px);
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  line-height: 1.5;
  text-align: center;
  letter-spacing: .06em;
  color: #2b2118;
  font-family: var(--font-sans);
}

/* =========================
   簡易パンフレット
========================= */

.pamphlet_img img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: var(--heading-gap);
  border-radius: 12px;
}

.pamphlet_img p {
  width: min(100%, 32em);
  margin:
    0
    auto
    var(--heading-gap);
  font-size: clamp(1.3rem, 3.6vw, 1.7rem);
  line-height: 1.8;
  text-align: left;
}

.pamphlet_dl {
  text-align: center;
}

.pamphlet_dl img {
  width: 80%;
  max-width: 600px;
  height: auto;
}

/* =========================
   こんなお悩み事も解決します
========================= */

.problems-m ul {
  display: grid;
  gap: var(--card-gap);
  margin-bottom: var(--heading-gap);
}

.problems-m li img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.problems-m p {
  margin:
    var(--section-gap-s)
    auto
    0;
  font-size: clamp(1.3rem, 3.6vw, 1.7rem);
  line-height: 1.8;
  text-align: center;
  color: #4a4038;
}



/* =========================
   他職種対応・簡易案内
========================= */

.other-works-simple {
  width: min(90%, 900px);
  margin:
    clamp(40px, 8vw, 72px)
    auto;
  padding:
    clamp(36px, 7vw, 64px)
    clamp(20px, 5vw, 48px);
  background: #f7f5ef;
  border:
    1px
    solid
    rgba(0, 0, 0, .08);
  border-radius: 14px;
}

.other-works-simple h2 {
  margin-bottom:
    clamp(18px, 4vw, 34px);
  color: #1f1f1f;
  font-family: var(--font-serif);
  font-size:
    clamp(2rem, 5vw, 3rem);
  line-height: 1.6;
  letter-spacing: .06em;
}

.other-works-simple p {
  margin: 0;
  color: #333333;
  font-size:
    clamp(1.4rem, 3.6vw, 1.8rem);
  line-height: 2;
  letter-spacing: .04em;
  text-align: left;
}



/* =========================
   本CTA：申込み直前
========================= */

.final-cta {
  padding:
    var(--section-gap-l)
    var(--content-px);
  background: linear-gradient(180deg, #fff 0%, #f5f6f8 100%);
  text-align: center;
}

.final-cta h2 {
  margin-bottom: var(--heading-gap);
  font-size: clamp(2.1rem, 5.8vw, 2.9rem);
  line-height: 1.55;
  letter-spacing: .06em;
}

.final-cta ul {
  display: grid;
  gap: var(--card-gap);
  margin-bottom: var(--heading-gap);
}

.final-cta li {
  padding: .95em;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  font-size: clamp(1.4rem, 3.8vw, 1.8rem);
  font-weight: 700;
}

.final-cta p {
  font-size: clamp(1.4rem, 3.8vw, 1.8rem);
  line-height: 1.9;
}


/* =========================
   申し込み方法
========================= */

.purchase_info-m {
  padding:
    var(--section-gap-l)
    var(--content-px);
  background: #f8f5ef;
}

.purchase_info-m h2 {
  margin-bottom: var(--heading-gap);
  font-size: clamp(2.4rem, 6.4vw, 3.2rem);
  line-height: 1.45;
  text-align: center;
  letter-spacing: .08em;
}

.purchase-lead {
  margin-bottom: var(--heading-gap);
  font-size: clamp(1.5rem, 4vw, 1.9rem);
  line-height: 1.8;
  text-align: center;
}

.purchase-main {
  display: grid;
  gap: var(--card-gap);
}

.purchase-card {
  padding:
    var(--section-gap-s)
    var(--content-px);
  background: #fffdf8;
  border: 1px solid rgba(120, 90, 40, .18);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-card);
}

.purchase-card h3 {
  margin-bottom: var(--heading-gap);
  font-size: clamp(2.3rem, 6.2vw, 3.2rem);
  line-height: 1.45;
  text-align: center;
}

.purchase-card p {
  margin-bottom: var(--heading-gap);
  font-size: clamp(1.4rem, 3.8vw, 1.8rem);
  line-height: 1.8;
  text-align: center;
}

.purchase-label {
  display: block;
  width: fit-content;
  margin:
    0
    auto
    var(--text-gap);
  padding: .45em 1.2em;
  border-radius: 999px;
  background: var(--color-line);
  color: #fff;
  font-size: clamp(1.2rem, 3.2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: .08em;
}

.rakuten-label {
  background: var(--color-rakuten);
}



/* =========================
   申込みボタン
========================= */

.purchase-btn {
  display: block;
  padding: 1.1em .8em;
  border-radius: 999px;
  color: #fff;
  font-size: clamp(1.6rem, 4.6vw, 2.2rem);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0,0,0,.18);
  -webkit-tap-highlight-color: transparent;
}

.line-btn {
  background: var(--color-line);
}

.rakuten-btn {
  background: var(--color-rakuten);
}

.purchase-note {
  margin:
    var(--text-gap)
    0
    0;
  color: #555;
  font-size: clamp(1.2rem, 3.2vw, 1.5rem);
}

/* =========================
   その他のお申込み方法
========================= */

.purchase-sub {
  margin-top: var(--section-gap-m);
  padding:
    var(--section-gap-s)
    var(--content-px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,.07);
}

.purchase-sub h3 {
  margin-bottom: var(--heading-gap);
  font-size: clamp(1.7rem, 4.8vw, 2.2rem);
  text-align: center;
}

.purchase-sub ul {
  display: grid;
  gap: var(--card-gap);
}

.purchase-sub a {
  display: block;
  padding: 1em;
  border-radius: 12px;
  background: #f0f1f3;
  color: #111;
  font-size: clamp(1.4rem, 3.8vw, 1.8rem);
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}




/* =========================
   俺たちの絆
========================= */

.unity {
  margin:
    var(--section-gap-m)
    auto
    var(--section-gap-xl);
  color: var(--color-text);
}

.unity h2 {
  font-size: var(--fz-xl);
  line-height: 1.6;
  font-weight: bolder;
  font-family: var(--font-serif);
  margin-bottom: var(--text-gap);
}

.unity p {
  font-size: var(--fz-m);
  text-align: center;
  margin-bottom: var(--text-gap);
}


/* =========================
   元自衛官の方へ
========================= */

.myself {
  margin:
    0
    auto
    var(--section-gap-l);
  color: var(--color-text);
}

.myself h2 {
  font-size: var(--fz-xl);
  font-weight: bolder;
  font-family: var(--font-serif);
  margin-bottom: var(--text-gap);
}

.myself img {
  display: block;
  margin: 0 auto;
}

.myself p {
  width: min(87.5%, 32em);
  margin:
    var(--text-gap)
    auto
    0;
  font-size: var(--fz-s);
  line-height: 1.8;
  text-align: left;
}



/* =========================
   お申込み固定ボタン
========================= */

.cta_btn {
  position: fixed;
  bottom: 2.5%;
  left: 2.5%;
  width: 45vw;
  padding: 0;
  margin: 0;
  z-index: 9999;
  opacity: .92;
  backdrop-filter: blur(8px);
  aspect-ratio: 200 / 90;
}

.cta_btn a {
  display: block;
}

.cta_btn img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}



/* =========================
   俺たちの絆 固定ボタン
========================= */

.unity_btn {
  position: fixed;
  bottom: 2.5%;
  right: 2.5%;
  width: 45vw;
  padding: 0;
  margin: 0;
  z-index: 9999;
  opacity: 0.9;
}

.unity_btn a {
  display: block;
}

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



/* =========================
   アンカー位置調整
========================= */

#navi-1 {
  scroll-margin-top: 70px;
}



/* =========================
   フッター
========================= */

.site-footer {
  padding:
    48px
    clamp(20px, 6vw, 48px)
    36px;
  color: var(--color-white);
  background:
    linear-gradient(
      180deg,
      #0f1317 0%,
      #171b20 100%
    );
  text-align: center;
  font-family: var(--font-sans);
}

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

.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;
  list-style: none;
}

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



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

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

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

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

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

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

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

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



/* =========================
   アクセシビリティ
========================= */

summary:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid #8a6a2f;
  outline-offset: 3px;
}
