@charset "UTF-8";
/**
 * SALAMORE for Business - 共通スタイル
 * 配置場所: /assets/css/btob_style.css
 * 依存: /assets/css/btoc_style.css のCSS変数とリセットを継承する想定で、
 *       本ファイルは追加・上書きのみを定義する
 *
 * 設計方針:
 *  - BtoCトンマナ（ネイビー基調・Cormorant + Noto Serif JP）を踏襲
 *  - BtoB差別化はカラー濃度（より深いミッドナイト）と真鍮系アクセントで表現
 *  - 業種別LP（restaurant/salon/gym/...）でも共通利用できる横展開可能なクラス
 */

/* ===== BtoB専用カラー拡張 ===== */
:root {
  --salamore-navy-deep: #08233E;        /* BtoBの基準色：BtoCより深いミッドナイト */
  --salamore-navy: #133A5F;             /* BtoBサブカラー */
  --salamore-brass: #B89968;            /* 真鍮系アクセント（控えめに使用） */
  --salamore-brass-soft: #D4BC92;       /* 真鍮ライト */
  --btob-section-pale: #F4F7FA;         /* BtoB用ペール背景（btoc-pale より少し冷たい） */
  --btob-card-shadow: 0 1px 3px rgba(8, 35, 62, 0.04), 0 8px 24px rgba(8, 35, 62, 0.04);
}

/* ===== BtoBページのbody調整 ===== */
body.is-btob .header-cta-mobile,
body.is-btob .nav-cta {
  background: var(--salamore-navy-deep);
}
body.is-btob .nav-cta:hover,
body.is-btob .header-cta-mobile:hover {
  background: var(--salamore-navy);
}
body.is-btob .logo {
  color: var(--salamore-navy-deep);
}
body.is-btob .nav a:hover {
  color: var(--salamore-navy);
}

/* ===== BtoB Hero ===== */
.btob-hero {
  padding: 9rem 2.5rem 5rem;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 5rem;
  align-items: center;
  min-height: 88vh;
}
.btob-hero-eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  letter-spacing: 0.5em;
  color: var(--salamore-brass);
  margin-bottom: 1.8rem;
  text-transform: uppercase;
  font-style: italic;
}
.btob-hero-eyebrow::before {
  content: "—  ";
  color: var(--salamore-brass);
  letter-spacing: 0;
}
.btob-hero-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--salamore-navy-deep);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.btob-hero-brand-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  letter-spacing: 0.45em;
  color: var(--salamore-brass);
  margin-bottom: 2.4rem;
  font-style: italic;
  text-transform: uppercase;
}
.btob-hero-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.9rem, 3.3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 2rem;
}
.btob-hero-lead {
  font-size: 0.95rem;
  line-height: 2.1;
  color: var(--ink-soft);
  margin-bottom: 2.8rem;
  max-width: 42ch;
}
.btob-hero-meta {
  display: flex;
  gap: 2.4rem;
  align-items: baseline;
  margin-bottom: 2.8rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.btob-hero-meta-item {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.15em;
}
.btob-hero-meta-item .label {
  display: block;
  font-size: 0.65rem;
  color: var(--ink-mute);
  letter-spacing: 0.3em;
  margin-bottom: 0.4rem;
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
}
.btob-hero-meta-item .value {
  font-size: 1.4rem;
  color: var(--salamore-navy-deep);
  font-weight: 400;
  font-family: "Cormorant Garamond", serif;
}
.btob-hero-cta-row {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}
.btob-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  background: var(--salamore-navy-deep);
  color: #fff;
  padding: 1.3rem 2.6rem;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.4s ease;
}
.btob-hero-cta:hover {
  background: var(--salamore-navy);
  transform: translateY(-2px);
}
.btob-hero-cta::after { content: "→"; transition: transform 0.3s ease; }
.btob-hero-cta:hover::after { transform: translateX(4px); }
.btob-hero-cta-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--salamore-navy-deep);
  text-decoration: none;
  padding: 1.2rem 2rem;
  border: 1px solid var(--salamore-navy-deep);
  border-radius: 999px;
  transition: all 0.4s ease;
}
.btob-hero-cta-sub:hover {
  background: var(--salamore-navy-deep);
  color: #fff;
}

.btob-hero-photo {
  border-radius: 4px;
  overflow: hidden;
  background: var(--photo-placeholder);
}
.btob-hero-photo img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 860px) {
  .btob-hero {
    grid-template-columns: 1fr;
    padding: 7rem 1.4rem 4rem;
    gap: 3rem;
    min-height: auto;
  }
  .btob-hero-photo { order: -1; }
  .btob-hero-cta-row { width: 100%; }
  .btob-hero-cta, .btob-hero-cta-sub { flex: 1; justify-content: center; min-width: 0; }
  .btob-hero-meta { gap: 1.2rem; flex-wrap: wrap; }
  .btob-hero-meta-item .value { font-size: 1.2rem; }
}

/* ===== Trust Bar ===== */
.btob-trust {
  background: var(--btob-section-pale);
  margin: 0;
  max-width: none;
  padding: 0;
}
.btob-trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: start;
}
.btob-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.4rem 0;
}
.btob-trust-item:not(:last-child) {
  border-right: 1px solid var(--line);
  padding-right: 2rem;
}
.btob-trust-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--salamore-navy);
  margin-top: 0.2rem;
}
.btob-trust-text {
  display: block;
}
.btob-trust-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 0.4rem;
}
.btob-trust-jp {
  font-family: "Noto Serif JP", serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--salamore-navy-deep);
  line-height: 1.6;
}

@media (max-width: 860px) {
  .btob-trust-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem 1.4rem;
  }
  .btob-trust-item:not(:last-child) {
    border-right: none;
    padding-right: 0;
  }
  .btob-trust-item:nth-child(odd) {
    border-right: 1px solid var(--line);
    padding-right: 1rem;
  }
}

/* ===== Industry Selector【ハブの心臓部】 ===== */
.btob-industries {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7rem 2.5rem;
}
.btob-industry-group {
  margin-top: 4rem;
}
.btob-industry-group + .btob-industry-group {
  margin-top: 5rem;
  padding-top: 5rem;
  border-top: 1px solid var(--line);
}
.btob-industry-group-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 3rem;
}
.btob-industry-group-label::before,
.btob-industry-group-label::after {
  content: "";
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: var(--line);
}
.btob-industry-group-label-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  color: var(--salamore-navy-deep);
  text-transform: uppercase;
  font-style: italic;
}
.btob-industry-group-label-text .jp {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  margin-left: 0.8rem;
}
.btob-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.btob-industry-grid.is-night {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin: 0 auto;
}
.btob-industry-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
}
.btob-industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--btob-card-shadow);
  border-color: var(--salamore-navy);
}
.btob-industry-card-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--photo-placeholder);
}
.btob-industry-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.btob-industry-card:hover .btob-industry-card-photo img {
  transform: scale(1.04);
}
.btob-industry-card-body {
  padding: 1.8rem 1.8rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.btob-industry-card-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--salamore-brass);
  margin-bottom: 0.5rem;
  font-style: italic;
}
.btob-industry-card-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.btob-industry-card-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--salamore-navy-deep);
  margin-bottom: 0.8rem;
  line-height: 1.5;
}
.btob-industry-card-desc {
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
  flex: 1;
}
.btob-industry-card-link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--salamore-navy);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btob-industry-card-link::after {
  content: "→";
  transition: transform 0.3s ease;
}
.btob-industry-card:hover .btob-industry-card-link::after {
  transform: translateX(4px);
}

/* ナイト系カードは少しトーンを変える */
.btob-industry-card.is-night {
  background: linear-gradient(180deg, #fff 0%, #FBFAF7 100%);
}
.btob-industry-card.is-night .btob-industry-card-num {
  color: var(--salamore-brass);
}
.btob-industry-card.is-night .btob-industry-card-title {
  color: var(--salamore-navy-deep);
}

/* 12番目「その他の業種」用のカード（DAYグリッドを揃えるためのCTAカード） */
.btob-industry-card.is-other {
  background: linear-gradient(180deg, var(--salamore-blue-pale) 0%, #fff 100%);
  border-style: dashed;
  border-color: var(--salamore-navy);
}
.btob-industry-card.is-other:hover {
  background: linear-gradient(180deg, var(--salamore-blue-light) 0%, #fff 100%);
}
.btob-industry-card-photo.is-other-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.btob-industry-card-other-mark {
  width: 64px;
  height: 64px;
  color: var(--salamore-navy);
  opacity: 0.5;
}
.btob-industry-card-other-mark svg {
  width: 100%;
  height: 100%;
}
.btob-industry-card.is-other .btob-industry-card-num {
  color: var(--salamore-navy);
}
.btob-industry-card.is-other .btob-industry-card-link {
  color: var(--salamore-navy-deep);
  font-weight: 500;
}
.btob-industry-night-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.82rem;
  line-height: 2;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .btob-industry-grid { grid-template-columns: repeat(2, 1fr); }
  .btob-industry-grid.is-night { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .btob-industries { padding: 5rem 1.4rem; }
  .btob-industry-grid,
  .btob-industry-grid.is-night {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .btob-industry-group + .btob-industry-group {
    margin-top: 4rem;
    padding-top: 4rem;
  }
  .btob-industry-group-label::before,
  .btob-industry-group-label::after { max-width: 40px; }
}

/* ===== Why for Business (3つの理由) ===== */
.btob-why {
  background: var(--btob-section-pale);
  max-width: none;
  margin: 0;
  padding: 0;
}
.btob-why-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7rem 2.5rem;
}
.btob-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}
.btob-why-item {
  text-align: center;
}
.btob-why-photo {
  margin-bottom: 2.2rem;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--photo-placeholder);
}
.btob-why-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.btob-why-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  color: var(--salamore-navy);
  margin-bottom: 0.8rem;
}
.btob-why-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 1rem;
}
.btob-why-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--salamore-navy-deep);
  margin-bottom: 1.4rem;
  line-height: 1.6;
}
.btob-why-desc {
  font-size: 0.92rem;
  line-height: 2;
  color: var(--ink-soft);
  max-width: 32ch;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .btob-why-inner { padding: 5rem 1.4rem; }
  .btob-why-grid { grid-template-columns: 1fr; gap: 4rem; }
}

/* ===== Spec Section (dl/dt/dd 構造化) ===== */
.btob-spec {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7rem 2.5rem;
}
.btob-spec-wrap {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.btob-spec-photo {
  border-radius: 4px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--photo-placeholder);
  margin-top: 4rem;
}
.btob-spec-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.btob-spec-table {
  border-top: 1px solid var(--salamore-navy-deep);
}
.btob-spec-row {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.btob-spec-row .key {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.btob-spec-row .key-jp {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--salamore-navy-deep);
  margin-top: 0.3rem;
}
.btob-spec-row .val {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.7;
}
.btob-spec-row .val-en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-top: 0.3rem;
  font-style: italic;
}
.btob-spec-note {
  margin-top: 2.5rem;
  font-size: 0.78rem;
  line-height: 1.9;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
}

@media (max-width: 860px) {
  .btob-spec { padding: 5rem 1.4rem; }
  .btob-spec-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .btob-spec-photo { margin-top: 0; margin-left: auto; margin-right: auto; }
  .btob-spec-row { grid-template-columns: 11rem 1fr; gap: 1rem; padding: 1.2rem 0; }
}

/* ===== Use Cases (業種横断の使用場所) ===== */
.btob-cases {
  background: var(--salamore-blue-pale);
  max-width: none;
  margin: 0;
  padding: 0;
}
.btob-cases-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7rem 2.5rem;
}
.btob-cases-lead {
  max-width: 640px;
  margin: 0 auto 4rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 2.1;
  color: var(--ink-soft);
}
.btob-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.btob-case {
  background: #fff;
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}
.btob-case:hover {
  border-color: var(--salamore-navy);
  transform: translateY(-2px);
}
.btob-case-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 1.2rem;
  color: var(--salamore-navy);
}
.btob-case-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.btob-case-title {
  font-family: "Noto Serif JP", serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--salamore-navy-deep);
  margin-bottom: 0.8rem;
  line-height: 1.5;
}
.btob-case-desc {
  font-size: 0.78rem;
  line-height: 1.9;
  color: var(--ink-soft);
}

@media (max-width: 860px) {
  .btob-cases-inner { padding: 5rem 1.4rem; }
  .btob-cases-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

/* ===== BtoB Plan ===== */
.btob-plan {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7rem 2.5rem;
}
.btob-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.btob-plan-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
}
.btob-plan-card.is-recommend {
  border-color: var(--salamore-navy-deep);
  border-width: 2px;
  background: linear-gradient(180deg, #fff 0%, var(--salamore-blue-pale) 100%);
}
.btob-plan-recommend-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--salamore-navy-deep);
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  padding: 0.4rem 1.4rem;
  border-radius: 999px;
  text-transform: uppercase;
  font-style: italic;
  white-space: nowrap;
}
.btob-plan-card-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  color: var(--salamore-brass);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  font-style: italic;
}
.btob-plan-card-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--salamore-navy-deep);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.btob-plan-card-volume {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--ink-mute);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.btob-plan-card-price-row {
  margin-bottom: 0.5rem;
}
.btob-plan-card-price-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 0.4rem;
}
.btob-plan-card-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--salamore-navy-deep);
  letter-spacing: 0.02em;
}
.btob-plan-card-price-unit {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-left: 0.3rem;
  letter-spacing: 0.05em;
}
.btob-plan-card-recurring {
  font-size: 0.78rem;
  color: var(--ink-mute);
  margin-bottom: 1.6rem;
  letter-spacing: 0.05em;
}
.btob-plan-card-features {
  list-style: none;
  padding: 1.4rem 0;
  margin: 0 0 1.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex: 1;
}
.btob-plan-card-features li {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.9;
  padding: 0.3rem 0;
  letter-spacing: 0.05em;
}
.btob-plan-card-features li::before {
  content: "—";
  color: var(--salamore-brass);
  margin-right: 0.6rem;
}
.btob-plan-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  background: transparent;
  color: var(--salamore-navy-deep);
  padding: 0.9rem 1.4rem;
  text-decoration: none;
  border: 1px solid var(--salamore-navy-deep);
  border-radius: 999px;
  transition: all 0.3s ease;
}
.btob-plan-card.is-recommend .btob-plan-card-cta {
  background: var(--salamore-navy-deep);
  color: #fff;
}
.btob-plan-card-cta:hover {
  background: var(--salamore-navy-deep);
  color: #fff;
}
.btob-plan-card.is-recommend .btob-plan-card-cta:hover {
  background: var(--salamore-navy);
}
.btob-plan-card-cta::after { content: "→"; }
.btob-plan-foot {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.82rem;
  line-height: 2;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
}

@media (max-width: 860px) {
  .btob-plan { padding: 5rem 1.4rem; }
  .btob-plan-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .btob-plan-card.is-recommend { margin-top: 1rem; }
}

/* ===== Delivery (定期配送) ===== */
.btob-delivery {
  background: var(--btob-section-pale);
  max-width: none;
  margin: 0;
  padding: 0;
}
.btob-delivery-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.btob-delivery-text .section-label,
.btob-delivery-text .section-title,
.btob-delivery-text .section-en {
  text-align: left;
}
.btob-delivery-text .section-en {
  margin-bottom: 2.5rem;
}
.btob-delivery-lead {
  font-size: 0.95rem;
  line-height: 2.1;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  max-width: 38ch;
}
.btob-delivery-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.btob-delivery-features li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}
.btob-delivery-features li:last-child { border-bottom: none; }
.btob-delivery-features-icon {
  width: 28px;
  height: 28px;
  color: var(--salamore-navy);
  margin-top: 0.2rem;
}
.btob-delivery-features-title {
  font-family: "Noto Serif JP", serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--salamore-navy-deep);
  margin-bottom: 0.4rem;
}
.btob-delivery-features-desc {
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--ink-soft);
}
.btob-delivery-photo {
  border-radius: 4px;
  overflow: hidden;
  background: var(--photo-placeholder);
}
.btob-delivery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 860px) {
  .btob-delivery-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 1.4rem;
  }
  .btob-delivery-photo { order: -1; }
}

/* ===== Voices for Business ===== */
.btob-voices {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7rem 2.5rem;
}
.btob-voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.btob-voice-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  position: relative;
}
.btob-voice-card-eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: var(--salamore-brass);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 1rem;
}
.btob-voice-card-industry {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.btob-voice-card-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--salamore-navy-deep);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}
.btob-voice-card-body {
  font-size: 0.85rem;
  line-height: 2;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
}
.btob-voice-card-meta {
  font-size: 0.75rem;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  line-height: 1.7;
}
.btob-voices-placeholder-note {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.82rem;
  line-height: 2;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
}

@media (max-width: 860px) {
  .btob-voices { padding: 5rem 1.4rem; }
  .btob-voices-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ===== BtoB FAQ (BtoCのfaqスタイルを継承) ===== */
.btob-faq { max-width: 880px; }

/* ===== Company ===== */
.btob-company {
  background: var(--btob-section-pale);
  max-width: none;
  margin: 0;
  padding: 0;
}
.btob-company-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 7rem 2.5rem;
}
.btob-company-table {
  margin-top: 4rem;
  border-top: 1px solid var(--salamore-navy-deep);
}
.btob-company-row {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.btob-company-row .key {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
}
.btob-company-row .val {
  font-family: "Noto Serif JP", serif;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  line-height: 1.8;
}
.btob-company-row .val a {
  color: var(--salamore-navy);
  text-decoration: none;
}
.btob-company-row .val a:hover {
  text-decoration: underline;
}

@media (max-width: 860px) {
  .btob-company-inner { padding: 5rem 1.4rem; }
  .btob-company-row { grid-template-columns: 8rem 1fr; gap: 1rem; }
}

/* ===== BtoB Final CTA (デュアル) ===== */
.btob-cta-final {
  text-align: center;
  background: var(--salamore-navy-deep);
  color: #fff;
  max-width: none;
  margin: 0;
}
.btob-cta-final-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 7rem 2.5rem;
}
.btob-cta-final .section-label { color: var(--salamore-brass-soft); }
.btob-cta-final-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #fff;
}
.btob-cta-final-text {
  max-width: 540px;
  margin: 0 auto 4rem;
  font-size: 0.95rem;
  line-height: 2.1;
  color: rgba(255,255,255,0.75);
}
.btob-cta-final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}
.btob-cta-final-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 2.4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.4rem;
}
.btob-cta-final-item-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--salamore-brass-soft);
  text-transform: uppercase;
  font-style: italic;
}
.btob-cta-final-item-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: #fff;
}
.btob-cta-final-item-desc {
  font-size: 0.82rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.7);
}
.btob-cta-final-item-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  background: #fff;
  color: var(--salamore-navy-deep);
  padding: 1rem 1.6rem;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.4s ease;
}
.btob-cta-final-item-btn:hover {
  background: var(--salamore-brass-soft);
  transform: translateY(-2px);
}
.btob-cta-final-item-btn::after { content: "→"; }
.btob-cta-final-item.is-secondary .btob-cta-final-item-btn {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.btob-cta-final-item.is-secondary .btob-cta-final-item-btn:hover {
  background: #fff;
  color: var(--salamore-navy-deep);
}

@media (max-width: 600px) {
  .btob-cta-final-inner { padding: 5rem 1.4rem; }
  .btob-cta-final-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ===== BtoB専用：見出しの色調整 ===== */
.btob-page .section-label {
  color: var(--salamore-brass);
}
.btob-page .section-title {
  color: var(--salamore-navy-deep);
}

/* ===== BtoB専用：footerリンク色 ===== */
body.is-btob .footer {
  background: var(--salamore-navy-deep);
}

/* ===== モバイル微調整 ===== */
@media (max-width: 600px) {
  /* BtoB全般のbrの扱いはBtoCのモバイル調整セクションに準拠 */
  .btob-hero-title br,
  .btob-hero-lead br,
  .btob-cta-final-title br,
  .btob-cta-final-text br,
  .btob-industry-card-title br,
  .btob-why-title br,
  .btob-delivery-features-title br {
    display: none;
  }
}

/* ===== Skip link & focus共通 (BtoCと共通だが念のため) ===== */
.btob-page .skip-to-main {
  position: absolute;
  left: -10000px;
  top: 1rem;
  background: var(--salamore-navy-deep);
  color: #fff;
  padding: 0.6rem 1rem;
  text-decoration: none;
  z-index: 1000;
  border-radius: 4px;
}
.btob-page .skip-to-main:focus { left: 1rem; }

/* ============================================================
 *  Industry-specific LP styles
 *  (各業種別ページで使用される追加スタイル)
 * ============================================================ */

/* ===== Breadcrumb ===== */
.industry-breadcrumb {
  background: var(--btob-section-pale);
  border-bottom: 1px solid var(--line);
  margin: 0;
  max-width: none;
  padding: 0;
}
.industry-breadcrumb-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5.5rem 2.5rem 1rem;
}
.industry-breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin: 0;
  padding: 0;
}
.industry-breadcrumb a {
  color: var(--ink-mute);
  text-decoration: none;
  transition: color 0.3s ease;
}
.industry-breadcrumb a:hover { color: var(--salamore-navy); }
.industry-breadcrumb li[aria-current="page"] {
  color: var(--salamore-navy-deep);
  font-weight: 500;
}
.industry-breadcrumb .sep {
  color: var(--ink-mute);
  opacity: 0.5;
}

@media (max-width: 600px) {
  .industry-breadcrumb-inner { padding: 5rem 1.4rem 0.8rem; }
  .industry-breadcrumb ol { font-size: 0.7rem; gap: 0.4rem; }
}

/* ===== Industry Hero ===== */
.industry-hero {
  padding: 5rem 2.5rem 5rem;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 5rem;
  align-items: center;
  min-height: 70vh;
}
.industry-hero-eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  letter-spacing: 0.5em;
  color: var(--salamore-brass);
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-style: italic;
}
.industry-hero-eyebrow::before {
  content: "—  ";
  color: var(--salamore-brass);
  letter-spacing: 0;
}
.industry-hero-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  color: var(--ink-mute);
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-style: italic;
}
.industry-hero-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: var(--salamore-navy-deep);
  margin-bottom: 2rem;
}
.industry-hero-lead {
  font-size: 0.95rem;
  line-height: 2.1;
  color: var(--ink-soft);
  margin-bottom: 2.8rem;
  max-width: 42ch;
}

@media (max-width: 860px) {
  .industry-hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.4rem 4rem;
    gap: 2.5rem;
    min-height: auto;
  }
  .industry-hero .btob-hero-photo { order: -1; }
}

/* ===== Industry Troubles (4つの課題) ===== */
.industry-troubles {
  background: var(--salamore-blue-pale);
  max-width: none;
  margin: 0;
  padding: 0;
}
.industry-troubles-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7rem 2.5rem;
}
.industry-troubles-lead {
  max-width: 640px;
  margin: 0 auto 4rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 2.1;
  color: var(--ink-soft);
}
.industry-troubles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.industry-trouble-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2rem 1.6rem;
  position: relative;
}
.industry-trouble-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--salamore-brass);
  opacity: 0.6;
  border-radius: 4px 4px 0 0;
}
.industry-trouble-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  color: var(--salamore-brass);
  margin-bottom: 0.6rem;
  font-style: italic;
}
.industry-trouble-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 0.6rem;
}
.industry-trouble-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--salamore-navy-deep);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.industry-trouble-desc {
  font-size: 0.82rem;
  line-height: 1.9;
  color: var(--ink-soft);
}

@media (max-width: 1024px) {
  .industry-troubles-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 600px) {
  .industry-troubles-inner { padding: 5rem 1.4rem; }
  .industry-troubles-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ===== Industry Use Cases (使用シーン) ===== */
.industry-use-cases {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7rem 2.5rem;
}
.industry-use-cases-lead {
  max-width: 640px;
  margin: 0 auto 4rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 2.1;
  color: var(--ink-soft);
}
.industry-use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.industry-use-case-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2.4rem 1.8rem;
  text-align: center;
  transition: all 0.3s ease;
}
.industry-use-case-card:hover {
  border-color: var(--salamore-navy);
  transform: translateY(-2px);
  box-shadow: var(--btob-card-shadow);
}
.industry-use-case-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 1.4rem;
  color: var(--salamore-navy);
}
.industry-use-case-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 0.6rem;
}
.industry-use-case-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--salamore-navy-deep);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.industry-use-case-desc {
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--ink-soft);
}

@media (max-width: 860px) {
  .industry-use-cases { padding: 5rem 1.4rem; }
  .industry-use-cases-grid { grid-template-columns: 1fr; gap: 1.2rem; }
}

/* ===== Industry Plan Recommend Box (業種推奨) ===== */
.industry-plan {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7rem 2.5rem;
}
.industry-plan-recommend {
  max-width: 720px;
  margin: 4rem auto 4rem;
  background: linear-gradient(180deg, var(--salamore-navy-deep) 0%, #133A5F 100%);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: center;
  color: #fff;
  position: relative;
}
.industry-plan-recommend::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid var(--salamore-navy-deep);
}
.industry-plan-recommend-eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  color: var(--salamore-brass-soft);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 1rem;
}
.industry-plan-recommend-set {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 0.4rem;
  line-height: 1;
}
.industry-plan-recommend-unit {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}
.industry-plan-recommend-desc {
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .industry-plan { padding: 5rem 1.4rem; }
  .industry-plan-recommend { padding: 2rem 1.4rem; margin: 3rem auto; }
  .industry-plan-recommend-set { font-size: 2rem; }
}

/* ===== Other Industries Bar (他業種への横遷移) ===== */
.industry-others {
  background: var(--btob-section-pale);
  max-width: none;
  margin: 0;
  padding: 0;
}
.industry-others-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2.5rem;
}
.industry-others-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.industry-others-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.6rem 1rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 130px;
}
.industry-others-card:hover {
  border-color: var(--salamore-navy);
  transform: translateY(-2px);
  box-shadow: var(--btob-card-shadow);
}
.industry-others-card-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--salamore-brass);
  font-style: italic;
  margin: 0;
}
.industry-others-card-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-style: italic;
  margin: 0;
}
.industry-others-card-title {
  font-family: "Noto Serif JP", serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--salamore-navy-deep);
  margin: 0;
  line-height: 1.4;
}
.industry-others-foot {
  text-align: center;
  margin-top: 3rem;
}
.industry-others-all-link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--salamore-navy-deep);
  text-decoration: none;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--salamore-navy-deep);
  transition: all 0.3s ease;
}
.industry-others-all-link:hover {
  color: var(--salamore-navy);
  border-bottom-color: var(--salamore-navy);
}

@media (max-width: 1024px) {
  .industry-others-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .industry-others-inner { padding: 4rem 1.4rem; }
  .industry-others-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .industry-others-card { min-height: 100px; padding: 1rem 0.6rem; }
  .industry-others-card-title { font-size: 0.82rem; }
}

/* ===== モバイル微調整：業種ページの<br>処理 ===== */
@media (max-width: 600px) {
  .industry-hero-title br,
  .industry-hero-lead br,
  .industry-troubles-lead br,
  .industry-use-cases-lead br,
  .industry-trouble-title br,
  .industry-use-case-title br {
    display: none;
  }
}/* ========================================
   CONTACT BANNER (BtoB LP用)
   btob/assets/css/style.css の末尾に追加してください
   ======================================== */

/* ナビ項目の折り返し防止（保険） */
.header-nav a {
  white-space: nowrap;
}

.contact-banner {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 5.5rem 1.4rem;
  background: #0d1f3a; /* 深ネイビー */
  color: #fff;
  text-align: center;
}
.contact-banner-inner {
  max-width: 760px;
  margin: 0 auto;
}
.contact-banner-eyebrow {
  display: inline-block;
  margin: 0 0 1.3rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}
.contact-banner-title {
  margin: 0 0 1.4rem;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #fff;
}
.contact-banner-lead {
  margin: 0 0 2.4rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.92rem;
  line-height: 2;
  color: rgba(255,255,255,0.85);
}
.contact-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2.4rem;
  background: #fff;
  color: #0d1f3a;
  border-radius: 999px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}
.contact-banner-btn .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.contact-banner-btn:hover .arrow {
  transform: translateX(4px);
}
.contact-banner-note {
  margin: 1.5rem 0 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .contact-banner {
    padding: 3.8rem 1.2rem;
  }
  .contact-banner-title {
    font-size: 1.3rem;
  }
  .contact-banner-lead {
    font-size: 0.85rem;
  }
  .contact-banner-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.4rem;
    font-size: 0.88rem;
  }
}

/* ========================================
   AMAZON CTA (Amazon単品購入への誘導)
   ======================================== */

/* ----- 静的セクション (フッター直前) ----- */
.amazon-cta-section {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 4.5rem 1.4rem;
  background: #FFFAF3;
  text-align: center;
  border-top: 1px solid #F5EBDC;
  border-bottom: 1px solid #F5EBDC;
}
.amazon-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}
.amazon-cta-eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  color: #C9762B;
  text-transform: uppercase;
}
.amazon-cta-title {
  margin: 0 0 1rem;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #1a2540;
}
.amazon-cta-lead {
  margin: 0 0 2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.92rem;
  line-height: 2;
  color: #4a5a78;
}
.amazon-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.05rem 2.4rem;
  background: linear-gradient(135deg, #FF9900, #FFB04D);
  color: #1a1a1a;
  border-radius: 999px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(255, 153, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.amazon-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(255, 153, 0, 0.42);
}
.amazon-cta-btn .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.amazon-cta-btn:hover .arrow {
  transform: translateX(3px);
}
.amazon-cta-note {
  margin: 1.4rem 0 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  color: #8a95a8;
  line-height: 1.8;
}

/* ----- フローティング (右下追従・フッター近くで表示) ----- */
.amazon-floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 95;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.amazon-floating-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.amazon-floating-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  background: linear-gradient(135deg, #FF9900, #FFB04D);
  color: #1a1a1a;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18), 0 0 0 1px rgba(255, 153, 0, 0.3);
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.amazon-floating-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25), 0 0 0 1px rgba(255, 153, 0, 0.5);
}
.amazon-floating-cta a .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.amazon-floating-cta a:hover .arrow {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .amazon-cta-section {
    padding: 3rem 1.2rem;
  }
  .amazon-cta-title {
    font-size: 1.2rem;
  }
  .amazon-cta-lead {
    font-size: 0.85rem;
  }
  .amazon-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.4rem;
  }
  .amazon-floating-cta {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
  .amazon-floating-cta a {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0.95rem 1.4rem;
    font-size: 0.85rem;
  }
}
