/*
Theme Name: Phonelife Care
Theme URI: https://phonelife.jp/
Author: phonelife
Author URI: https://phonelife.jp/
Description: 札幌のパソコン修理専門店「フォンライフ」公式サイトテーマ。ケアサポート風の親しみやすいデザイン＋マスコット「フォン太」。
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: phonelife-care
Tags: one-page, custom-colors, custom-logo, responsive-layout
*/

/* =========================================================
   phonelife LP — 北海道ケアサポート風
   Friendly, warm, with mascot フォン太
   ========================================================= */

:root {
  --c-sky: #4fc3f7;
  --c-sky-light: #b3e5fc;
  --c-sky-soft: #e1f5fe;
  --c-navy: #2c3e50;
  --c-navy-soft: #4a6fa5;
  --c-yellow: #ffd27a;
  --c-orange: #ff9a3d;
  --c-orange-deep: #ff7a00;
  --c-coral: #ff8a65;
  --c-pink: #ffb3b3;
  --c-green: #81c784;
  --c-mint: #a5e3c6;
  --c-purple: #ba8ef0;
  --c-teal: #4dd0c1;
  --c-red: #ef6c6c;
  --c-bg: #fefcf7;
  --c-bg-alt: #fff8e7;
  --c-surface: #ffffff;
  --c-text: #2c3e50;
  --c-text-soft: #5a6c80;
  --c-text-mute: #8aa0b8;
  --c-line: #e6eef7;
  --shadow-soft: 0 10px 30px rgba(79, 195, 247, 0.15);
  --shadow-card: 0 6px 20px rgba(44, 62, 80, 0.08);
  --shadow-lift: 0 16px 40px rgba(44, 62, 80, 0.12);
  --radius: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --ease: cubic-bezier(.34,1.56,.64,1);
  --ease-out: cubic-bezier(.22,.61,.36,1);
  --dur: .5s;
  --header-h: 84px;
  --font-body: "M PLUS Rounded 1c", "Kosugi Maru", "Hiragino Maru Gothic ProN", sans-serif;
  --font-display: "M PLUS Rounded 1c", "Kosugi Maru", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  letter-spacing: .03em;
}

img, svg, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease-out), opacity .3s var(--ease-out); }
a:hover { color: var(--c-orange); }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: .04em;
  color: var(--c-navy);
}
p { margin: 0; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}
.container-narrow { max-width: 860px; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 2px solid transparent;
  transition: background .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 10px rgba(79, 195, 247, 0.12);
  border-bottom-color: var(--c-sky-soft);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 32px);
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mascot {
  width: 54px; height: 56px;
  flex-shrink: 0;
  display: grid; place-items: center;
  filter: drop-shadow(0 3px 6px rgba(79,195,247,.3));
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-ja {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--c-navy);
  letter-spacing: .06em;
}
.brand-en {
  font-size: 10.5px;
  color: var(--c-text-mute);
  letter-spacing: .1em;
  font-weight: 500;
}

.nav { margin-left: auto; }
.nav ul { display: flex; gap: clamp(10px, 1.8vw, 22px); }
.nav a {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
  padding: 10px 4px;
  position: relative;
  letter-spacing: .04em;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 4px;
  width: 0; height: 3px;
  background: var(--c-orange);
  border-radius: 3px;
  transform: translateX(-50%);
  transition: width .3s var(--ease);
}
.nav a:hover { color: var(--c-orange); }
.nav a:hover::after { width: 70%; }

.header-tel {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--c-orange) 0%, var(--c-orange-deep) 100%);
  color: #fff;
  line-height: 1.3;
  box-shadow: 0 6px 14px rgba(255, 122, 0, 0.32);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.header-tel:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 122, 0, 0.42);
}
.header-tel span { font-size: 11px; letter-spacing: .1em; opacity: .95; }
.header-tel strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .04em;
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--c-sky-soft);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
  z-index: 110;
  cursor: pointer;
  border: none;
}
.nav-toggle span {
  width: 22px; height: 2.5px;
  background: var(--c-navy);
  border-radius: 3px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 50px);
  padding-bottom: 120px;
  min-height: 90vh;
  overflow: visible;
  background:
    linear-gradient(180deg, #cdefff 0%, #e6f7ff 60%, #fff8e7 100%);
}
.hero-sky { position: absolute; inset: 0; pointer-events: none; }
.sun-deco {
  position: absolute;
  top: 100px; right: 8%;
  animation: sunspin 20s linear infinite;
  filter: drop-shadow(0 4px 10px rgba(255, 154, 61, 0.3));
}
@keyframes sunspin {
  to { transform: rotate(360deg); }
}
.cloud-deco {
  position: absolute;
  animation: cloudfloat 12s ease-in-out infinite;
  opacity: .85;
}
.cloud-1 { top: 120px; left: 4%; animation-delay: 0s; }
.cloud-2 { top: 220px; right: 30%; animation-delay: 2s; }
.cloud-3 { bottom: 160px; left: 30%; animation-delay: 4s; opacity: .7; }
@keyframes cloudfloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-15px) translateX(10px); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 520px;
}

.hero-tag {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 999px;
  background: #fff;
  color: var(--c-navy);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--c-yellow);
}
.hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: .02em;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-title-sub {
  font-size: .7em;
  color: var(--c-navy-soft);
  font-weight: 700;
}
.hero-title-main {
  color: var(--c-navy);
  font-weight: 900;
  background: linear-gradient(180deg, var(--c-navy) 58%, #0277bd 58%);
  padding: 0 6px;
  background-size: 100% 120%;
  background-position: 0 0;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
  position: relative;
}
.hero-title-main::after {
  content: '';
  position: absolute;
  left: 6px; right: 6px;
  bottom: 6px;
  height: 14px;
  background: var(--c-yellow);
  z-index: -1;
  border-radius: 4px;
  opacity: .6;
}
.hero-tagline {
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 22px;
  line-height: 1.55;
  letter-spacing: .01em;
}
.hero-tagline strong {
  color: var(--c-orange-deep);
  font-weight: 900;
}
.hero-lead {
  font-size: 17px;
  line-height: 2.1;
  color: var(--c-text);
  margin-bottom: 30px;
}
.hero-lead strong {
  color: var(--c-orange-deep);
  font-weight: 900;
  font-size: 1.08em;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--c-navy);
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-card);
}
.badge-icon {
  width: 16px; height: 16px;
  color: var(--c-orange);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .04em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease-out);
  white-space: nowrap;
}
.btn-lg { padding: 20px 40px; font-size: 20px; }
.btn-icon { font-size: 1.1em; line-height: 1; flex-shrink: 0; }
.btn-text { display: inline-block; line-height: 1.35; }
.btn-arrow { transition: transform .3s var(--ease); font-weight: 900; }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn-primary {
  background: linear-gradient(135deg, var(--c-orange) 0%, var(--c-orange-deep) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 122, 0, 0.35);
  border: 3px solid #fff;
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(255, 122, 0, 0.45);
}
.btn-secondary {
  background: #fff;
  color: var(--c-navy);
  border: 3px solid var(--c-sky);
  box-shadow: var(--shadow-card);
}
.btn-secondary:hover {
  color: var(--c-sky);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(79, 195, 247, 0.3);
}
.btn-mail {
  background: linear-gradient(135deg, var(--c-sky) 0%, #0277bd 100%) !important;
  color: #fff !important;
  border: 4px solid #0277bd !important;
  box-shadow:
    inset 0 0 0 3px #fff,
    0 10px 24px rgba(2, 119, 189, 0.45),
    0 0 0 2px rgba(2, 119, 189, 0.3) !important;
  padding: 16px 32px !important;
}
.btn-mail:hover {
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow:
    inset 0 0 0 3px #fff,
    0 16px 32px rgba(2, 119, 189, 0.55),
    0 0 0 2px rgba(2, 119, 189, 0.45) !important;
}

/* Hero CTA: 電話ボタン2段スタック */
.btn-tel-stack, .btn-mail-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  gap: 2px;
}
.btn-tel-main { font-size: 1em; font-weight: 900; }
.btn-tel-sub {
  font-size: .72em;
  font-weight: 700;
  letter-spacing: .08em;
  opacity: .92;
}
.btn-mail-main { font-size: 1em; font-weight: 900; }
.btn-mail-sub {
  font-size: .72em;
  font-weight: 700;
  letter-spacing: .04em;
  opacity: .92;
}

/* Hero CTA 補助リンク（サービスを見る） */
.hero-subactions {
  margin-bottom: 26px;
}
.hero-link-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-navy);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px dashed var(--c-sky);
  padding-bottom: 2px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.hero-link-secondary:hover {
  color: var(--c-orange-deep);
  border-bottom-color: var(--c-orange);
}
.hero-link-secondary .btn-arrow {
  transition: transform .25s var(--ease);
}
.hero-link-secondary:hover .btn-arrow {
  transform: translateX(4px);
}

/* Hero mascot */
.hero-mascot {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  padding: 20px clamp(80px, 10vw, 140px) 20px 20px;
  overflow: visible;
}
.mascot-main {
  width: min(300px, 100%);
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(44, 62, 80, 0.18));
  animation: mascotBob 3.5s ease-in-out infinite;
  overflow: visible !important;
  transform-origin: center;
}
.mascot-main svg,
.mascot-main * { overflow: visible; }
@keyframes mascotBob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}
.phonta-arm {
  transform-origin: 208px 95px;
  animation: wave 2.2s ease-in-out infinite;
}
@keyframes wave {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(10deg); }
}

.speech-bubble {
  position: absolute;
  top: 0; left: 0;
  max-width: 200px;
  background: #fff;
  border: 3px solid var(--c-sky);
  border-radius: 24px;
  padding: 16px 22px;
  box-shadow: var(--shadow-card);
  animation: bubblePop 3s ease-in-out infinite;
  z-index: 2;
}
.speech-bubble::before {
  content: '';
  position: absolute;
  right: -14px; bottom: 28px;
  width: 24px; height: 24px;
  background: #fff;
  border: 3px solid var(--c-sky);
  border-left: 0; border-top: 0;
  border-radius: 0 0 8px 0;
  transform: rotate(-35deg);
}
.speech-bubble p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-navy);
  font-weight: 700;
}
.speech-bubble strong {
  color: var(--c-orange-deep);
  font-size: 1.05em;
}
@keyframes bubblePop {
  0%, 100% { transform: scale(1) rotate(-2deg); }
  50% { transform: scale(1.03) rotate(1deg); }
}

/* ---------- マスコット横の「歌を聴く」ボタン ---------- */
.mascot-song-btn {
  position: absolute;
  right: clamp(10px, 3vw, 30px);
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 12px 14px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--c-orange) 0%, var(--c-orange-deep) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: .04em;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(255,122,0,.45);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  z-index: 4;
  animation: songPulse 2.2s ease-in-out infinite;
}
.mascot-song-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 30px rgba(255,122,0,.55);
}
.mascot-song-btn:active { transform: translateY(0) scale(.97); }
@keyframes songPulse {
  0%, 100% { box-shadow: 0 10px 22px rgba(255,122,0,.45), 0 0 0 0 rgba(255,122,0,.55); }
  50%      { box-shadow: 0 10px 22px rgba(255,122,0,.45), 0 0 0 12px rgba(255,122,0,0); }
}
.mascot-song-icon {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  background: #fff;
  color: var(--c-orange-deep);
  border-radius: 50%;
  font-size: 18px;
  position: relative;
}
.mascot-song-icon .icon-pause { display: none; }
.mascot-song-btn.is-playing .icon-mic { display: none; }
.mascot-song-btn.is-playing .icon-pause { display: inline; }

.mascot-song-label .label-pause { display: none; }
.mascot-song-btn.is-playing .label-play { display: none; }
.mascot-song-btn.is-playing .label-pause { display: inline; }

/* 再生中に出る音波アニメ */
.mascot-song-waves {
  position: absolute;
  top: -14px; right: -10px;
  display: none;
  gap: 2px;
  align-items: flex-end;
  height: 18px;
  padding: 3px 6px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,.15);
}
.mascot-song-waves span {
  display: block;
  width: 3px;
  background: var(--c-orange);
  border-radius: 2px;
  animation: songWave 0.9s ease-in-out infinite;
}
.mascot-song-waves span:nth-child(1) { height: 60%; animation-delay: 0s; }
.mascot-song-waves span:nth-child(2) { height: 100%; animation-delay: .15s; }
.mascot-song-waves span:nth-child(3) { height: 70%; animation-delay: .3s; }
.mascot-song-waves span:nth-child(4) { height: 90%; animation-delay: .45s; }
@keyframes songWave {
  0%, 100% { transform: scaleY(.4); }
  50%      { transform: scaleY(1); }
}
.mascot-song-btn.is-playing .mascot-song-waves { display: inline-flex; }

/* 再生中はフォン太が踊る（bobをリズミカルな dance に切替） */
.hero-mascot.is-singing .mascot-main {
  animation: mascotDance 0.6s ease-in-out infinite;
}
@keyframes mascotDance {
  0%, 100% { transform: translateY(0) rotate(-4deg) scale(1); }
  25%      { transform: translateY(-8px) rotate(4deg) scale(1.02); }
  50%      { transform: translateY(0) rotate(-2deg) scale(1); }
  75%      { transform: translateY(-4px) rotate(6deg) scale(1.03); }
}
.hero-mascot.is-singing .phonta-arm {
  animation: waveFast 0.55s ease-in-out infinite;
}
@keyframes waveFast {
  0%, 100% { transform: rotate(-15deg); }
  50%      { transform: rotate(25deg); }
}

@media (max-width: 720px) {
  .mascot-song-btn {
    position: static;
    margin: 16px auto 0;
    display: inline-flex;
  }
}

.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* =========================================================
   Section base
   ========================================================= */
.section {
  padding: clamp(70px, 10vw, 120px) 0;
  position: relative;
}
.section-head {
  margin-bottom: clamp(40px, 6vw, 70px);
}
.section-head-center { text-align: center; }

.eyebrow {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 999px;
  background: var(--c-bg-alt);
  color: var(--c-orange-deep);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .2em;
  margin-bottom: 20px;
  border: 2px dashed var(--c-yellow);
}
.section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.5;
  color: var(--c-navy);
  letter-spacing: .03em;
}
.section-title strong {
  color: var(--c-orange-deep);
  font-weight: 900;
  position: relative;
  display: inline-block;
}
.section-title strong::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 10px;
  background: var(--c-yellow);
  opacity: .55;
  z-index: -1;
  border-radius: 4px;
}
.section-lead {
  font-size: 15px;
  color: var(--c-text-soft);
  line-height: 2;
  margin-top: 18px;
}

/* =========================================================
   Greeting
   ========================================================= */
.section-greeting { background: var(--c-bg); }
.greeting-body {
  font-size: 16px;
  line-height: 2.3;
  color: var(--c-text);
  background: #fff;
  padding: clamp(30px, 5vw, 50px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 3px solid var(--c-sky-soft);
  position: relative;
}
.greeting-body::before {
  content: '';
  position: absolute;
  top: -12px; left: 40px;
  width: 24px; height: 24px;
  background: var(--c-yellow);
  border-radius: 50%;
  box-shadow: 40px 0 0 var(--c-coral), 80px 0 0 var(--c-sky);
}
.greeting-body p { margin-bottom: 18px; }
.greeting-body p:last-child { margin-bottom: 0; }
.greeting-body strong { color: var(--c-orange-deep); font-weight: 800; }

.greeting-sign {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}
.mini-mascot {
  width: 64px; height: 64px;
  filter: drop-shadow(0 4px 8px rgba(79,195,247,.3));
}
.greeting-sign > div {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
  text-align: right;
}
.sign-label { font-size: 12px; color: var(--c-text-mute); font-weight: 700; }
.sign-name { font-size: 17px; font-weight: 800; color: var(--c-navy); }

/* =========================================================
   Strengths
   ========================================================= */
.section-strengths {
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-alt) 100%);
  position: relative;
  overflow: hidden;
}
.section-strengths::before {
  content: '';
  position: absolute;
  top: 60px; right: -40px;
  width: 180px; height: 180px;
  background: var(--c-sky-soft);
  border-radius: 50%;
  opacity: .4;
  z-index: 0;
}
.section-strengths::after {
  content: '';
  position: absolute;
  bottom: 80px; left: -60px;
  width: 220px; height: 220px;
  background: var(--c-bg-alt);
  border-radius: 50%;
  opacity: .8;
  z-index: 0;
}
.section-strengths > .container {
  position: relative;
  z-index: 1;
}
.strengths-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 2vw, 24px);
}
.strength-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 22px 26px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 3px solid transparent;
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.strength-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: var(--shadow-lift);
  border-color: var(--c-yellow);
}
.strength-num {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-sky) 0%, var(--c-sky-light) 100%);
  box-shadow: 0 8px 18px rgba(79, 195, 247, 0.4);
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  font-family: var(--font-display);
  border: 3px solid #fff;
}
.strength-num span { line-height: 1; }
.strength-card:nth-child(2) .strength-num { background: linear-gradient(135deg, var(--c-orange) 0%, var(--c-coral) 100%); box-shadow: 0 8px 18px rgba(255, 122, 0, 0.4); }
.strength-card:nth-child(3) .strength-num { background: linear-gradient(135deg, var(--c-green) 0%, var(--c-mint) 100%); box-shadow: 0 8px 18px rgba(129, 199, 132, 0.4); }
.strength-card:nth-child(4) .strength-num { background: linear-gradient(135deg, var(--c-purple) 0%, #d4b3ff 100%); box-shadow: 0 8px 18px rgba(186, 142, 240, 0.4); }
.strength-card:nth-child(5) .strength-num { background: linear-gradient(135deg, var(--c-coral) 0%, #ffb3b3 100%); box-shadow: 0 8px 18px rgba(255, 138, 101, 0.4); }

.strength-card h3 {
  font-size: 16px;
  color: var(--c-navy);
  margin-bottom: 12px;
  line-height: 1.55;
}
.strength-card h3 em {
  font-style: normal;
  color: var(--c-orange-deep);
  font-size: 1.1em;
  font-weight: 900;
  background: linear-gradient(transparent 60%, var(--c-yellow) 60%);
  padding: 0 2px;
}
.strength-card p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--c-text-soft);
}

/* =========================================================
   Services
   ========================================================= */
.section-services { background: var(--c-bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.svc-card {
  padding: 32px 26px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--c-sky-soft);
  opacity: .5;
  transition: transform .5s var(--ease);
}
.svc-card:hover { transform: translateY(-6px) rotate(-.5deg); box-shadow: var(--shadow-lift); }
.svc-card:hover::before { transform: scale(1.3); }
.svc-blue::before { background: rgba(79, 195, 247, .25); }
.svc-orange { border-color: rgba(255, 154, 61, 0.3); }
.svc-orange::before { background: rgba(255, 154, 61, .22); }
.svc-green { border-color: rgba(129, 199, 132, 0.3); }
.svc-green::before { background: rgba(129, 199, 132, .22); }
.svc-pink { border-color: rgba(255, 138, 101, 0.3); }
.svc-pink::before { background: rgba(255, 138, 101, .22); }
.svc-purple { border-color: rgba(186, 142, 240, 0.3); }
.svc-purple::before { background: rgba(186, 142, 240, .22); }
.svc-yellow { border-color: rgba(255, 210, 122, 0.55); }
.svc-yellow::before { background: rgba(255, 210, 122, .35); }
.svc-teal { border-color: rgba(77, 208, 193, 0.35); }
.svc-teal::before { background: rgba(77, 208, 193, .22); }
.svc-red { border-color: rgba(239, 108, 108, 0.3); }
.svc-red::before { background: rgba(239, 108, 108, .2); }

.svc-icon {
  font-size: 44px;
  margin-bottom: 10px;
  line-height: 1;
  position: relative;
}
.svc-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
}
.svc-card p {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--c-text-soft);
  position: relative;
}

/* =========================================================
   Price
   ========================================================= */
.section-price {
  background: linear-gradient(180deg, var(--c-bg-alt) 0%, #fff3d1 100%);
  position: relative;
  overflow: hidden;
}
.price-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.price-mascot {
  width: 220px;
  height: 240px;
  filter: drop-shadow(0 12px 24px rgba(44, 62, 80, 0.15));
  animation: mascotBob 4s ease-in-out infinite;
}
.price-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 54px);
  text-align: center;
  box-shadow: var(--shadow-lift);
  border: 4px dashed var(--c-yellow);
  position: relative;
}
.price-ribbon {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--c-orange) 0%, var(--c-orange-deep) 100%);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  padding: 8px 28px;
  border-radius: 999px;
  letter-spacing: .12em;
  box-shadow: 0 6px 14px rgba(255, 122, 0, 0.4);
}
.price-pre {
  font-size: 14px;
  color: var(--c-text-soft);
  font-weight: 700;
  margin-bottom: 20px;
}
.price-big {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}
.price-yen {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--c-orange-deep);
  font-weight: 900;
  line-height: 1;
}
.price-num {
  font-size: clamp(72px, 11vw, 140px);
  font-weight: 900;
  line-height: .9;
  color: var(--c-navy);
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-sky) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -.02em;
}
.price-unit {
  font-size: clamp(14px, 1.6vw, 18px);
  color: var(--c-text-soft);
  font-weight: 700;
}
.price-post {
  font-size: 15px;
  color: var(--c-navy);
  font-weight: 700;
  margin-bottom: 26px;
}
.price-list {
  text-align: left;
  border-top: 2px dashed var(--c-sky-soft);
  padding-top: 24px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 4px;
  border-bottom: 1px dashed var(--c-line);
  gap: 20px;
  min-width: 0;
}
.price-row:last-of-type { border-bottom: 0; }
.price-item {
  flex: 1;
  min-width: 0;
  font-size: 14.5px;
  color: var(--c-text);
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.price-item-sub {
  font-size: 12px;
  color: var(--c-text-mute);
  font-weight: 500;
  letter-spacing: .02em;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.price-val {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 17px;
  color: var(--c-orange-deep);
  white-space: nowrap;
}
.price-footnote {
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--c-bg);
  border-radius: 10px;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--c-text-soft);
  font-weight: 600;
  text-align: left;
}

.biz-banner {
  max-width: 1180px;
  margin: 80px auto 0;
  background: linear-gradient(135deg, #fff4de 0%, #ffe4b8 100%);
  border: 5px solid var(--c-orange);
  border-radius: var(--radius-lg);
  padding: clamp(56px, 7vw, 88px) clamp(28px, 5vw, 72px);
  text-align: center;
  box-shadow: var(--shadow-lift);
  position: relative;
  overflow: hidden;
}
.biz-banner::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255, 210, 122, .55) 0%, rgba(255, 210, 122, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}
.biz-banner::after {
  content: "";
  position: absolute;
  bottom: -70px; left: -70px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255, 180, 80, .35) 0%, rgba(255, 180, 80, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}
.biz-banner-inner {
  position: relative;
  z-index: 1;
}
.biz-ribbon {
  display: inline-block;
  background: linear-gradient(135deg, var(--c-orange) 0%, var(--c-orange-deep) 100%);
  color: #fff;
  font-weight: 900;
  font-size: clamp(16px, 1.9vw, 22px);
  padding: 14px 44px;
  border-radius: 999px;
  letter-spacing: .16em;
  box-shadow: 0 10px 22px rgba(255, 122, 0, 0.45);
  margin-bottom: 28px;
}
.biz-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  color: var(--c-navy);
  line-height: 1.45;
  margin-bottom: 22px;
  letter-spacing: .02em;
}
.biz-title strong {
  color: var(--c-orange-deep);
}
.biz-lead {
  font-size: clamp(15px, 1.6vw, 19px);
  color: var(--c-text-soft);
  line-height: 1.95;
  max-width: 860px;
  margin: 0 auto 28px;
  font-weight: 600;
}
.biz-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
  max-width: 980px;
  margin: 32px auto 36px;
}
.biz-feature {
  background: #fff;
  border: 3px solid var(--c-orange);
  border-radius: var(--radius);
  padding: 22px 18px 20px;
  box-shadow: 0 8px 18px rgba(255, 122, 0, 0.12);
}
.biz-feature-ico {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 10px;
}
.biz-feature h4 {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--c-orange-deep);
  font-weight: 900;
  margin-bottom: 6px;
}
.biz-feature p {
  font-size: 13px;
  color: var(--c-text-soft);
  line-height: 1.75;
  font-weight: 600;
}
.biz-note {
  display: inline-block;
  margin: 0 auto 30px;
  padding: 14px 26px;
  background: #fff;
  border: 2px dashed var(--c-orange);
  border-radius: var(--radius);
  font-size: clamp(13px, 1.3vw, 15px);
  color: var(--c-text-soft);
  line-height: 1.85;
  font-weight: 700;
  max-width: 760px;
}
.biz-note strong {
  color: var(--c-orange-deep);
}
.biz-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}
@media (max-width: 720px) {
  .biz-features { grid-template-columns: 1fr; }
}

/* =========================================================
   Flow
   ========================================================= */
.section-flow {
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}
.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.5vw, 30px);
  counter-reset: step;
  position: relative;
}
.flow-list::before {
  content: '';
  position: absolute;
  top: 42px; left: 12%; right: 12%;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--c-sky-light) 0, var(--c-sky-light) 10px, transparent 10px, transparent 18px);
  z-index: 0;
}
.flow-step {
  position: relative; z-index: 1;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 22px 26px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 3px solid var(--c-sky-soft);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.flow-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--c-sky);
}
.flow-num {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-orange) 0%, var(--c-orange-deep) 100%);
  color: #fff;
  display: grid; place-items: center;
  margin: -52px auto 18px;
  font-size: 28px;
  font-weight: 900;
  font-family: var(--font-display);
  box-shadow: 0 10px 20px rgba(255, 122, 0, 0.35);
  border: 5px solid #fff;
}
.flow-step h3 {
  font-size: 17px;
  color: var(--c-navy);
  margin-bottom: 10px;
}
.flow-step p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--c-text-soft);
}
.flow-tel {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--c-orange) 0%, var(--c-orange-deep) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
  text-decoration: none;
  border: 2px solid #fff;
  box-shadow: 0 6px 14px rgba(255, 122, 0, 0.35);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.flow-tel:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(255, 122, 0, 0.45);
  color: #fff;
}

/* =========================================================
   FAQ
   ========================================================= */
.section-faq {
  background: linear-gradient(180deg, var(--c-bg) 0%, #e6f7ff 100%);
}
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 3px solid var(--c-sky-soft);
  overflow: hidden;
  transition: border-color .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.faq-item[open] { border-color: var(--c-orange); box-shadow: var(--shadow-card); }
.faq-item summary {
  list-style: none;
  padding: 20px 56px 20px 66px;
  font-weight: 800;
  color: var(--c-navy);
  cursor: pointer;
  position: relative;
  font-size: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: 'Q';
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--c-orange) 0%, var(--c-orange-deep) 100%);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 16px; font-weight: 900;
  box-shadow: 0 4px 10px rgba(255, 122, 0, 0.3);
}
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: var(--c-sky);
  font-weight: 900;
  line-height: 1;
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { content: '−'; color: var(--c-orange); }

.faq-body {
  padding: 8px 24px 24px 24px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: flex-start;
}
.faq-phonta {
  width: 72px; height: 78px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 8px rgba(44,62,80,.12));
}
.faq-phonta svg { width: 100%; height: 100%; }
.faq-body p {
  background: var(--c-bg-alt);
  padding: 16px 20px;
  border-radius: 16px;
  color: var(--c-text);
  font-size: 14.5px;
  line-height: 1.95;
  font-weight: 500;
  position: relative;
}
.faq-body p::before {
  content: '';
  position: absolute;
  top: 18px; left: -8px;
  width: 12px; height: 12px;
  background: var(--c-bg-alt);
  transform: rotate(45deg);
  border-radius: 2px;
}

/* =========================================================
   Company
   ========================================================= */
.section-company { background: var(--c-bg); }
.company-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 5vw, 50px);
}
.company-info {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 3px solid var(--c-sky-soft);
}
.info-list { display: flex; flex-direction: column; }
.info-list > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 14px 6px;
  border-bottom: 2px dashed var(--c-sky-soft);
  align-items: baseline;
}
.info-list > div:last-child { border-bottom: 0; }
.info-list dt {
  font-size: 14px;
  font-weight: 800;
  color: var(--c-orange-deep);
  letter-spacing: .06em;
}
.info-list dd {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--c-text);
}
.info-list a { color: var(--c-navy); font-weight: 800; border-bottom: 2px solid var(--c-yellow); padding-bottom: 2px; }
.info-list a:hover { color: var(--c-orange-deep); border-color: var(--c-orange); }

.company-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  border: 3px solid var(--c-sky-soft);
  box-shadow: var(--shadow-card);
}
.company-map iframe { width: 100%; height: 100%; min-height: 460px; border: 0; }

/* =========================================================
   Theme song (おまけカード)
   ========================================================= */
.section-theme-song {
  padding: 60px 0;
  background: var(--c-bg);
}
.theme-song-card {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  gap: clamp(16px, 3vw, 28px);
  align-items: center;
  padding: clamp(24px, 4vw, 36px);
  background: #fff;
  border: 3px dashed var(--c-sky);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.theme-song-card::before {
  content: '♪';
  position: absolute;
  top: -18px; left: 24px;
  background: var(--c-sky);
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 4px 10px rgba(79,195,247,.4);
  animation: noteFloat 2.4s ease-in-out infinite;
}
@keyframes noteFloat {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50%      { transform: translateY(-4px) rotate(8deg); }
}
.theme-song-icon {
  flex-shrink: 0;
  line-height: 1;
  width: clamp(140px, 22vw, 200px);
}
.singer-wrap { position: relative; display: block; line-height: 0; }
.singer-img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.12));
}
/* 2枚のフォンコを重ねる：bは絶対配置で最初は非表示 */
.phonko-frame-a { position: relative; }
.phonko-frame-b {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
/* 再生中：1.2秒間隔でA/Bを交互にパッと切替（パラパラ漫画・のんびり） */
.singer-wrap.is-playing .phonko-frame-a {
  animation: phonko-flicker-a 1.2s steps(2, jump-none) infinite;
}
.singer-wrap.is-playing .phonko-frame-b {
  animation: phonko-flicker-b 1.2s steps(2, jump-none) infinite;
}
@keyframes phonko-flicker-a {
  from { opacity: 1; } to { opacity: 0; }
}
@keyframes phonko-flicker-b {
  from { opacity: 0; } to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .singer-wrap.is-playing .phonko-frame-a,
  .singer-wrap.is-playing .phonko-frame-b { animation: none; }
  .singer-wrap.is-playing .phonko-frame-b { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .singer-wrap.is-playing .singer-img { animation: none; }
}
@media (max-width: 560px) {
  .theme-song-icon { width: 160px; margin: 0 auto; }
}
.theme-song-body { flex: 1; min-width: 0; }
.theme-song-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--c-orange);
  background: #fff3e0;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.theme-song-title {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 900;
  color: var(--c-navy);
  margin-bottom: 4px;
  letter-spacing: .02em;
}
.theme-song-desc {
  font-size: 13px;
  color: var(--c-text-mute);
  line-height: 1.7;
  margin-bottom: 14px;
}
.theme-song-audio {
  width: 100%;
  max-width: 420px;
  height: 40px;
}
@media (max-width: 560px) {
  .theme-song-card { flex-direction: column; text-align: center; }
  .theme-song-audio { max-width: 100%; }
}

/* =========================================================
   Contact form
   ========================================================= */
.section-contact {
  background: linear-gradient(180deg, var(--c-bg-alt) 0%, var(--c-bg) 100%);
}
.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-card);
  border: 2px solid var(--c-sky-soft);
}
.contact-hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-row {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-row label {
  font-weight: 800;
  color: var(--c-navy);
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.form-row .req {
  background: var(--c-orange-deep);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: .08em;
}
.form-row .opt {
  background: var(--c-sky-soft);
  color: var(--c-navy-soft);
  font-size: 11px;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: .08em;
}
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--c-line);
  border-radius: 12px;
  background: #fafdff;
  font: inherit;
  color: var(--c-text);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--c-sky);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(79, 195, 247, 0.2);
}
.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
}
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-row-split > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #fafdff;
  border: 2px solid var(--c-line);
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  color: var(--c-text);
  font-size: 14px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.form-radio:hover {
  border-color: var(--c-sky);
  background: #fff;
}
.form-radio input[type="radio"] {
  accent-color: var(--c-sky);
  margin: 0;
}
.form-radio:has(input:checked) {
  border-color: var(--c-sky);
  background: var(--c-sky-soft);
}
.contact-note {
  font-size: 12.5px;
  color: var(--c-text-mute);
  margin: 4px 0 22px;
}
.contact-submit {
  text-align: center;
  margin-top: 8px;
}
.contact-flash {
  max-width: 860px;
  margin: 0 auto 24px;
  padding: 18px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1.8;
}
.contact-flash-ok {
  background: #e8f8ef;
  border: 2px solid var(--c-green);
  color: #256a3c;
}
.contact-flash-ng {
  background: #fff0f0;
  border: 2px solid var(--c-red);
  color: #9a3636;
}
@media (max-width: 720px) {
  .form-row-split { grid-template-columns: 1fr; gap: 18px; }
}

/* =========================================================
   CTA
   ========================================================= */
.section-cta {
  padding: 0;
  background: var(--c-bg);
}
.cta-inner {
  background: linear-gradient(135deg, #cdefff 0%, #fff8e7 100%);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 70px) clamp(28px, 5vw, 60px);
  margin: 0 auto clamp(50px, 8vw, 90px);
  max-width: 1100px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 4vw, 50px);
  align-items: center;
  border: 4px solid var(--c-sky);
  box-shadow: var(--shadow-lift);
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: var(--c-yellow);
  border-radius: 50%;
  opacity: .4;
}
.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  background: var(--c-sky-light);
  border-radius: 50%;
  opacity: .5;
}
.cta-mascot {
  width: 200px;
  height: 220px;
  filter: drop-shadow(0 12px 24px rgba(44, 62, 80, 0.18));
  animation: mascotBob 3.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
.cta-text {
  position: relative;
  z-index: 1;
}
.cta-text h2 {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 900;
  color: var(--c-navy);
  margin-bottom: 14px;
  line-height: 1.5;
}
.cta-text > p {
  font-size: 15px;
  color: var(--c-text);
  margin-bottom: 22px;
  font-weight: 700;
}
.cta-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cta-hours {
  margin-top: 14px;
  font-size: 13px !important;
  color: var(--c-text-soft) !important;
  font-weight: 700;
}

/* =========================================================
   もったいない、をカタチに（フッター直前の控えめ告知）
   ========================================================= */
.section-mottainai {
  background: #fbf6ee;
  padding: clamp(48px, 8vw, 80px) 0;
  border-top: 1px dashed rgba(44, 62, 80, 0.15);
  border-bottom: 1px dashed rgba(44, 62, 80, 0.15);
}
.mottainai-inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  color: #4a5560;
  font-size: clamp(13px, 1.6vw, 14.5px);
  line-height: 2.0;
  letter-spacing: 0.02em;
}
.mottainai-inner p {
  margin: 0 0 1.4em;
}
.mottainai-inner p:last-child { margin-bottom: 0; }
.mottainai-eyebrow {
  font-size: clamp(11px, 1.4vw, 13px);
  letter-spacing: 0.18em;
  color: #8a9099;
  margin-bottom: 2em !important;
  font-weight: 500;
}
.mottainai-sign {
  margin-top: 2em !important;
  color: #2c3e50;
  font-weight: 500;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--c-navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 70px 0 24px;
  font-size: 13.5px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background:
    repeating-linear-gradient(90deg,
      var(--c-orange) 0, var(--c-orange) 40px,
      var(--c-yellow) 40px, var(--c-yellow) 80px,
      var(--c-sky) 80px, var(--c-sky) 120px,
      var(--c-coral) 120px, var(--c-coral) 160px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1fr 1fr;
  gap: clamp(26px, 4vw, 46px);
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-mascot { width: 80px; height: 84px; flex-shrink: 0; }
.footer-brand > div { display: flex; flex-direction: column; gap: 2px; }
.site-footer .brand-ja { color: #fff; font-size: 20px; font-weight: 900; }
.site-footer .brand-en { color: var(--c-yellow); font-size: 11px; letter-spacing: .15em; }
.footer-brand p { color: rgba(255, 255, 255, 0.65); font-size: 12.5px; margin-top: 8px; line-height: 1.7; }

.site-footer h4 {
  color: var(--c-yellow);
  font-size: 13px;
  letter-spacing: .25em;
  margin-bottom: 16px;
  font-weight: 800;
}
.footer-info address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
}
.footer-info a { color: var(--c-yellow); font-weight: 800; }
.footer-info a:hover { color: #fff; }

.footer-nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a {
  color: rgba(255, 255, 255, 0.75);
  padding-left: 14px;
  position: relative;
  font-weight: 700;
}
.footer-nav a::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--c-orange);
}
.footer-nav a:hover { color: var(--c-yellow); }

.footer-hours p { color: rgba(255, 255, 255, 0.75); line-height: 1.9; font-weight: 500; }

/* =========================================================
   Page template (固定ページ用)
   ========================================================= */
.page-main {
  padding: calc(var(--header-h) + 40px) 0 60px;
  background: var(--c-bg);
  min-height: 60vh;
}
.page-article {
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow-card);
  border: 2px solid var(--c-sky-soft);
}
.page-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  color: var(--c-navy);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 3px dashed var(--c-yellow);
}
.page-body {
  font-size: 15px;
  line-height: 2;
  color: var(--c-text);
}
.page-body p { margin-bottom: 1.2em; }
.page-body h2, .page-body h3 {
  font-weight: 800;
  color: var(--c-navy);
  margin: 1.6em 0 .6em;
}
.page-body strong { color: var(--c-orange-deep); font-weight: 800; }
.page-body a { color: var(--c-sky); text-decoration: underline; }
.page-back-link {
  margin-top: 30px;
  text-align: center;
}
.page-back-link a {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 999px;
  background: #fff;
  color: var(--c-navy);
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--c-sky-soft);
  text-decoration: none;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.page-back-link a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(79, 195, 247, 0.18);
  border-color: var(--c-sky);
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}
.back-to-top {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  font-size: 13px;
}
.back-to-top:hover { color: var(--c-yellow); }

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  white-space: nowrap;
}
.footer-legal a:hover {
  color: var(--c-yellow);
  text-decoration: underline;
}

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px) {
  .strengths-list { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-list { grid-template-columns: repeat(2, 1fr); }
  .flow-list::before { display: none; }
  .company-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; gap: 20px; }
  .hero-mascot { order: -1; }
  .speech-bubble { top: 10px; left: auto; right: 10px; }
  .mascot-main { max-width: 260px; }
  .price-wrap { grid-template-columns: 1fr; text-align: center; }
  .price-mascot { margin: 0 auto; width: 180px; height: 200px; }
}

@media (max-width: 720px) {
  :root { --header-h: 68px; }
  /* backdrop-filter creates a containing block that traps position:fixed descendants.
     On mobile we drop it so .nav.is-open can span the full viewport. */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.97);
  }
  .nav, .header-tel { display: none; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav.is-open {
    display: block !important;
    position: fixed;
    top: var(--header-h); left: 0; right: 0; bottom: 0;
    margin: 0;
    background: #fff;
    padding: 20px 24px 40px;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    z-index: 105;
    max-width: none;
    width: auto;
  }
  .nav.is-open ul { flex-direction: column; gap: 4px; display: flex; }
  .nav.is-open li { width: 100%; }
  .nav.is-open a {
    display: block;
    padding: 16px 8px;
    font-size: 16px;
    font-weight: 800;
    color: var(--c-navy);
    border-bottom: 2px dashed var(--c-sky-soft);
    width: 100%;
  }
  .btn-lg {
    font-size: 16px;
    padding: 16px 22px;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }
  .biz-cta-group .btn { width: 100%; max-width: 360px; justify-content: center; }
  .biz-cta-group .btn-text { flex: 1; }
  .cta-btn-group .btn { width: 100%; max-width: 360px; justify-content: center; }
  .hero { padding-bottom: 90px; }
  .hero-title { font-size: 30px; }
  .strengths-list { grid-template-columns: 1fr; gap: 18px; }
  .services-grid { grid-template-columns: 1fr; }
  .flow-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; text-align: center; padding: 30px 22px; }
  .cta-mascot { margin: 0 auto; width: 150px; height: 160px; }
  .info-list > div { grid-template-columns: 1fr; gap: 4px; padding: 14px 4px; }
  .faq-item summary { padding: 18px 50px 18px 60px; font-size: 14.5px; }
  .faq-item summary::before { left: 14px; width: 32px; height: 32px; font-size: 14px; }
  .faq-body { grid-template-columns: 60px 1fr; gap: 12px; padding: 0 16px 20px; }
  .faq-phonta { width: 60px; height: 64px; }
  .sun-deco { width: 60px; height: 60px; right: 5%; top: 90px; }
  .cloud-deco { opacity: .6; }
  .speech-bubble {
    max-width: 150px;
    padding: 12px 16px;
    top: 0; right: 0; left: auto;
  }
  .speech-bubble p { font-size: 12px; }
}

/* =========================================================
   在庫紹介 /reuse/ — 一覧
   ========================================================= */
.reuse-archive { background: #fef8f3; min-height: 60vh; }

.reuse-archive-head {
  background: linear-gradient(180deg, #fff8e7 0%, #fef8f3 100%);
  padding: clamp(40px, 6vw, 70px) 20px clamp(30px, 4vw, 50px);
  text-align: center;
  border-bottom: 2px dashed #ffd27a;
}
.reuse-eyebrow {
  font-size: clamp(11px, 1.4vw, 13px);
  letter-spacing: 0.18em;
  color: #8a9099;
  margin: 0 0 8px;
}
.reuse-title {
  font-size: clamp(24px, 4vw, 36px);
  color: #2c3e50;
  margin: 0 0 14px;
  font-weight: 900;
}
.reuse-lead {
  color: #555;
  line-height: 1.9;
  margin: 0;
  font-size: clamp(13px, 1.6vw, 15px);
}

.reuse-list-section { padding: 40px 0 60px; }

/* ====== 在庫一覧「◯月◯日 午前9時現在」スタンプ ====== */
.reuse-asof-stamp {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 10px auto 18px;
  padding: 12px 22px 10px;
  background: linear-gradient(180deg, #fff 0%, #fff8ee 100%);
  border: 2.5px solid #ff9a3d;
  border-radius: 14px;
  color: #8a4b00;
  box-shadow: 0 4px 14px rgba(255,154,61,.25), inset 0 0 0 3px #fff;
  position: relative;
  transform: rotate(-1.2deg);
}
.reuse-asof-stamp::before,
.reuse-asof-stamp::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px dashed #ff9a3d;
  border-radius: 50%;
  opacity: .35;
}
.reuse-asof-stamp::before { top: -8px; left: -8px; }
.reuse-asof-stamp::after  { bottom: -8px; right: -8px; }

.reuse-asof-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 10px 2px 8px;
  background: #ff3e3e;
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(255,62,62,.35);
}
.reuse-asof-livetext { line-height: 1; }
.reuse-asof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,.85);
  animation: phonelifeAsofPulse 1.6s ease-out infinite;
}
@keyframes phonelifeAsofPulse {
  0%   { box-shadow: 0 0 0 0   rgba(255,255,255,.85); opacity: 1; }
  70%  { box-shadow: 0 0 0 8px rgba(255,255,255,0);   opacity: .5; }
  100% { box-shadow: 0 0 0 0   rgba(255,255,255,0);   opacity: 1; }
}

.reuse-asof-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.reuse-asof-date {
  font-size: clamp(16px, 2.4vw, 19px);
  font-weight: 900;
  color: #b34a00;
  letter-spacing: .02em;
  line-height: 1.3;
}
.reuse-asof-sub {
  font-size: 13px;
  font-weight: 700;
  color: #8a4b00;
}
.reuse-asof-note {
  display: inline-block;
  margin-top: 2px;
  padding: 2px 10px;
  background: #fff8e7;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  color: #6a4a0e;
  letter-spacing: .02em;
}
.reuse-asof-note::before { content: "👨‍🔧 "; }

@media (max-width: 480px) {
  .reuse-asof-stamp { padding: 10px 16px 8px; }
  .reuse-asof-date  { font-size: 15px; }
  .reuse-asof-sub   { font-size: 12px; }
  .reuse-asof-note  { font-size: 11px; }
}

/* ====== 在庫一覧 上部の「フォン太のお約束」バナー ====== */
.reuse-promise {
  position: relative;
  margin: 0 0 28px;
  padding: 22px 22px 18px;
  background: linear-gradient(180deg, #fffdf5 0%, #fff8e1 100%);
  border: 2.5px dashed #ffb968;
  border-radius: 18px;
  box-shadow: 0 6px 16px rgba(255,154,61,.12);
}
.reuse-promise-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 14px;
}
.reuse-promise-mark {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff9a3d 0%, #ff7e1a 100%);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: .02em;
  box-shadow: 0 4px 10px rgba(255,154,61,.4), inset 0 -3px 0 rgba(0,0,0,.08);
  transform: rotate(-6deg);
}
.reuse-promise-head h2 {
  margin: 6px 0 0;
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 800;
  color: #4a2e00;
  line-height: 1.5;
}
.reuse-promise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.reuse-promise-list li {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  background: #fff;
  border: 1.5px solid #ffd7a3;
  border-radius: 12px;
}
.reuse-promise-list .rp-ico {
  font-size: 26px;
  line-height: 1;
  flex-shrink: 0;
}
.reuse-promise-list .rp-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.reuse-promise-list .rp-body strong {
  font-size: 14px;
  font-weight: 800;
  color: #3a2a00;
  line-height: 1.4;
}
.reuse-promise-list .rp-body small {
  font-size: 12px;
  font-weight: 500;
  color: #6a5a3a;
  line-height: 1.55;
}
.reuse-promise-list .rp-note {
  display: inline-block;
  margin-top: 6px;
  font-size: 11.5px;
  color: #8a4b00;
  background: #fff8e7;
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px dashed #ffb968;
}
.reuse-promise-list .rp-way {
  display: block;
  margin: 6px 0;
  padding: 8px 10px;
  background: #fffaf2;
  border-left: 3px solid #ffb968;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.65;
  color: #5a4a2a;
}
.reuse-promise-list .rp-way b {
  display: inline-block;
  color: #b34a00;
  font-weight: 800;
  margin-right: 4px;
}
.reuse-promise-list .rp-way em {
  font-style: normal;
  font-weight: 800;
  color: #d35a00;
  background: #fff;
  padding: 0 4px;
  border-radius: 4px;
}
.reuse-promise-note {
  margin: 14px 0 0;
  font-size: 12.5px;
  color: #8a4b00;
  text-align: center;
  font-weight: 600;
}

/* 全員サービス：有線マウス */
.reuse-mouse-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 14px 0 0;
  padding: 14px 18px;
  background: linear-gradient(135deg, #e8f7fd 0%, #d5edf8 100%);
  border: 2px solid #4fc3f7;
  border-radius: 14px;
  color: #1d4a66;
  box-shadow: 0 3px 10px rgba(79,195,247,.18);
}
.reuse-mouse-banner .rmb-ico {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 0 rgba(0,0,0,.08));
}
.reuse-mouse-banner .rmb-body {
  font-size: 13.5px;
  line-height: 1.6;
}
.reuse-mouse-banner .rmb-body strong {
  display: inline-block;
  color: #d35a00;
  font-weight: 900;
  font-size: 15px;
}
@media (max-width: 480px) {
  .reuse-mouse-banner { padding: 12px 14px; gap: 10px; }
  .reuse-mouse-banner .rmb-ico { font-size: 26px; }
  .reuse-mouse-banner .rmb-body { font-size: 12.5px; }
}

/* カード上の付属品チップ */
.reuse-card-accessories {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
}
.reuse-card-accessories li {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px 3px 6px;
  background: #fff8e7;
  border: 1px solid #ffd7a3;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: #8a4b00;
  line-height: 1.3;
}
.reuse-card-accessories .ac-ico {
  font-size: 13px;
  line-height: 1;
}

/* 詳細ページの付属品リスト */
.reuse-accessory-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
.reuse-accessory-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fff8e7;
  border: 1.5px solid #ffd7a3;
  border-radius: 10px;
}
.reuse-accessory-list .ac-ico {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}
.reuse-accessory-list .ac-label {
  font-weight: 700;
  color: #5a3a0a;
  font-size: 14px;
}
.reuse-accessory-note {
  margin: 0;
  padding: 12px 14px;
  background: linear-gradient(135deg, #e8f7fd 0%, #d5edf8 100%);
  border: 1.5px solid #4fc3f7;
  border-radius: 10px;
  color: #1d4a66;
  font-size: 13px;
  line-height: 1.7;
}
.reuse-accessory-note strong {
  color: #d35a00;
  font-weight: 900;
}

/* ====== 「保証券をお持ちの方はこちら」リンク ====== */
.reuse-warranty-card-link {
  margin: 14px 0 0;
}
.reuse-warranty-card-link a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #fff 0%, #fff8e7 100%);
  border: 2px solid #ffb968;
  border-radius: 12px;
  color: #5a3a0a;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.reuse-warranty-card-link a:hover {
  transform: translateY(-2px);
  background: #fff3d8;
  box-shadow: 0 4px 12px rgba(255,154,61,.25);
}
.reuse-warranty-card-link .rwcl-ico {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.reuse-warranty-card-link .rwcl-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.reuse-warranty-card-link .rwcl-body strong {
  font-size: 14px;
  font-weight: 800;
  color: #b34a00;
}
.reuse-warranty-card-link .rwcl-body small {
  font-size: 12px;
  color: #8a4b00;
  font-weight: 500;
}
.reuse-warranty-card-link .rwcl-arrow {
  font-size: 22px;
  font-weight: 700;
  color: #ff9a3d;
}

/* ====== 保証規定の折りたたみ ====== */
.reuse-warranty {
  margin: 14px 0 0;
  background: #fff;
  border: 1.5px solid #ffd7a3;
  border-radius: 12px;
  overflow: hidden;
}
.reuse-warranty > summary {
  display: block;
  padding: 12px 16px;
  background: #fff8e7;
  color: #8a4b00;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: background .15s;
}
.reuse-warranty > summary::-webkit-details-marker { display: none; }
.reuse-warranty > summary::after {
  content: "▼";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #c07000;
  transition: transform .2s;
}
.reuse-warranty[open] > summary::after { transform: translateY(-50%) rotate(180deg); }
.reuse-warranty > summary:hover { background: #fff1d0; }
.reuse-warranty-body {
  padding: 14px 18px 16px;
  font-size: 13px;
  line-height: 1.75;
  color: #4a3a1a;
}
.reuse-warranty-body p { margin: 10px 0 6px; font-weight: 700; }
.reuse-warranty-body p:first-child { margin-top: 2px; }
.reuse-warranty-body ul {
  margin: 0 0 12px;
  padding-left: 22px;
  list-style: disc;
}
.reuse-warranty-body li { margin: 4px 0; }
.reuse-warranty-body .rw-eg {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: #7a6a4a;
  font-weight: 500;
}
.reuse-warranty-body .rw-note {
  margin: -4px 0 12px;
  padding: 6px 10px;
  background: #f6f6f6;
  border-radius: 6px;
  color: #555;
  font-size: 12px;
  font-weight: 500;
}
.reuse-warranty-body .rw-foot {
  margin: 16px 0 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, #fffaef 0%, #fff3d8 100%);
  border-left: 4px solid #ff9a3d;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #5a3a0a;
  line-height: 1.85;
}
.reuse-warranty-body .rw-foot strong {
  display: inline-block;
  margin: 2px 0;
  color: #b34a00;
  font-weight: 800;
}
@media (max-width: 480px) {
  .reuse-warranty > summary { padding: 10px 14px; font-size: 12.5px; }
  .reuse-warranty-body     { padding: 12px 14px 14px; font-size: 12.5px; }
}
@media (max-width: 720px) {
  .reuse-promise { padding: 18px 16px 14px; }
  .reuse-promise-head { gap: 10px; }
  .reuse-promise-mark { width: 64px; height: 64px; font-size: 11px; }
  .reuse-promise-list { grid-template-columns: 1fr; gap: 8px; }
}

/* ====== 在庫絞り込みタブ（カード型） ====== */
.reuse-filter-lead {
  margin: 0 0 10px;
  font-size: 13px;
  color: #6a4a0e;
  font-weight: 700;
  letter-spacing: .04em;
}
.reuse-filter-lead::before { content: "🔍 "; }

.reuse-filter-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 28px;
  padding: 14px;
  background: linear-gradient(180deg, #f6fbff 0%, #eef7fd 100%);
  border: 2px dashed #b9e1f7;
  border-radius: 18px;
}
.reuse-filter-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 8px 12px;
  background: #fff;
  color: #2a5d7d;
  border: 2px solid #d8ecf7;
  border-radius: 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  line-height: 1.3;
  transition: transform .15s, background .15s, color .15s, border-color .15s, box-shadow .15s;
}
.reuse-filter-btn:hover {
  background: #f3faff;
  border-color: #8fcfee;
  transform: translateY(-2px);
}
.reuse-filter-btn .rf-ico {
  font-size: 26px;
  line-height: 1;
  display: block;
  filter: drop-shadow(0 2px 0 rgba(0,0,0,.04));
}
.reuse-filter-btn .rf-label {
  font-size: 14px;
  font-weight: 800;
}
.reuse-filter-btn .rf-sub {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 500;
  color: #7a93a3;
  letter-spacing: .02em;
}
.reuse-filter-btn.is-active {
  background: linear-gradient(180deg, #5fcdfa 0%, #4fc3f7 100%);
  color: #fff;
  border-color: #2da9e0;
  box-shadow: 0 6px 14px rgba(79,195,247,.35), inset 0 -2px 0 rgba(0,0,0,.05);
  transform: translateY(-1px);
}
.reuse-filter-btn.is-active .rf-sub { color: rgba(255,255,255,.85); }
.reuse-filter-btn.is-active .rf-ico { transform: scale(1.08); transition: transform .2s; }

.reuse-filter-empty {
  margin: 16px 0;
  padding: 16px;
  background: #fff8ec;
  border: 1.5px dashed #ffb968;
  border-radius: 12px;
  color: #8a4b00;
  text-align: center;
}

/* ====== 🛡 保証券チェックページ /warranty/ ====== */
.warranty-page { padding: 0 0 60px; }
.warranty-head {
  background: linear-gradient(180deg, #fff8e7 0%, #fef8f3 100%);
  text-align: center;
  padding: clamp(40px, 6vw, 70px) 20px clamp(30px, 4vw, 50px);
  border-bottom: 2px dashed #ffd27a;
  margin-bottom: 30px;
}
.warranty-eyebrow {
  color: #ff9a3d;
  font-weight: 700;
  font-size: clamp(13px, 1.6vw, 15px);
  letter-spacing: .12em;
  margin: 0 0 4px;
}
.warranty-title {
  font-size: clamp(26px, 4vw, 36px);
  color: #b34a00;
  margin: 0 0 16px;
  font-weight: 900;
}
.warranty-lead {
  color: #6a4a0e;
  font-size: clamp(13px, 1.6vw, 15px);
  line-height: 1.8;
}
.warranty-lead code {
  background: #fff;
  border: 1px solid #ffb968;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  color: #b34a00;
  font-size: 13px;
}

.warranty-form-wrap { max-width: 540px; margin: 0 auto; }
.warranty-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  background: #fff;
  border: 2px solid #ffb968;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(255,154,61,.15);
}
.warranty-form-label {
  font-weight: 700;
  color: #6a4a0e;
  font-size: 14px;
}
.warranty-input-group {
  display: flex;
  align-items: stretch;
  border: 2px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
  background: #fff;
}
.warranty-input-group:focus-within {
  border-color: #ff9a3d;
  box-shadow: 0 0 0 3px rgba(255,154,61,.2);
}
.warranty-input-prefix {
  display: flex;
  align-items: center;
  padding: 0 14px 0 18px;
  background: #fff8e7;
  color: #b34a00;
  font-family: "Courier New", monospace;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .08em;
  border-right: 2px dashed #ffb968;
  flex-shrink: 0;
}
.warranty-form input[type="text"] {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  font-size: 22px;
  font-family: "Courier New", monospace;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: none;
  background: transparent;
  color: #b34a00;
  font-weight: 700;
  outline: none;
}
.warranty-form input[type="text"]::placeholder {
  color: #ccc;
  letter-spacing: .15em;
}
.warranty-input-hint {
  margin: 8px 0 0;
  font-size: 12px;
  color: #6a4a0e;
  text-align: left;
}
.warranty-input-hint strong { color: #b34a00; }
@media (max-width: 480px) {
  .warranty-input-prefix { padding: 0 10px 0 14px; font-size: 18px; }
  .warranty-form input[type="text"] { font-size: 18px; padding: 12px 14px; }
}
.warranty-submit { width: 100%; justify-content: center; }
.warranty-error {
  margin: 14px 0 0;
  padding: 12px 14px;
  background: #fff3d8;
  border-left: 4px solid #ff9a3d;
  border-radius: 6px;
  color: #8a3a00;
  font-weight: 600;
}

/* === 保証券情報の表示 === */
.warranty-info {
  background: #fff;
  border: 2px solid #ffb968;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(255,154,61,.15);
}
.warranty-info-head {
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1.5px dashed #ffd7a3;
  margin-bottom: 16px;
}
.warranty-info-num {
  display: inline-block;
  padding: 4px 12px;
  background: #fff8e7;
  color: #b34a00;
  font-family: "Courier New", monospace;
  font-weight: 700;
  letter-spacing: .08em;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 8px;
}
.warranty-info-head h2 {
  margin: 0;
  font-size: 24px;
  color: #b34a00;
  font-weight: 800;
}
.warranty-info-detail {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px 16px;
  margin: 0;
  font-size: 14px;
}
.warranty-info-detail dt { color: #6a4a0e; font-weight: 700; padding: 6px 0; }
.warranty-info-detail dd { margin: 0; padding: 6px 0; color: #1a1a1a; font-weight: 600; }
.warranty-info-detail dd strong { color: #b34a00; }
.warranty-state {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.warranty-state-ok      { background: #d4f5e0; color: #1d7a3f; }
.warranty-state-warn    { background: #fff3d8; color: #c95a00; }
.warranty-state-expired { background: #eee; color: #666; }

/* === 故障項目チェック === */
.warranty-checker {
  background: #f7fbff;
  border: 2px solid #b9e1f7;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}
.warranty-checker h3 {
  margin: 0 0 16px;
  font-size: 18px;
  color: #1d4a66;
}
.warranty-symptom-form {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
}
.warranty-symptom-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #fff;
  border: 1.5px solid #d8ecf7;
  border-radius: 10px;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.warranty-symptom-item:hover { background: #f0f8fd; border-color: #8fcfee; }
.warranty-symptom-item input[type="checkbox"] { flex-shrink: 0; }
.warranty-symptom-item .ws-ico { font-size: 20px; line-height: 1; }
.warranty-symptom-item .ws-label { font-size: 13px; font-weight: 600; color: #2a5d7d; }

.warranty-result { margin-top: 20px; }
.warranty-result-box {
  padding: 18px 20px;
  border-radius: 12px;
  border: 2px solid;
}
.warranty-result-box h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
}
.warranty-result-box p { margin: 6px 0; line-height: 1.7; }
.warranty-result-covered {
  background: linear-gradient(180deg, #e8f9ee 0%, #d4f5e0 100%);
  border-color: #2dbf6c;
  color: #1a4a2a;
}
.warranty-result-covered h4 { color: #1d7a3f; }
.warranty-result-covered strong { color: #1d7a3f; }
.warranty-result-gray {
  background: linear-gradient(180deg, #fffaef 0%, #fff3d8 100%);
  border-color: #ff9a3d;
  color: #5a3a0a;
}
.warranty-result-gray h4 { color: #b34a00; }
.warranty-result-gray strong { color: #b34a00; }
.warranty-result-expired {
  background: #f0f0f0;
  border-color: #999;
  color: #444;
}
.warranty-result-expired h4 { color: #666; }
.warranty-result-note {
  margin-top: 10px;
  padding: 8px 10px;
  background: rgba(255,255,255,.5);
  border-radius: 6px;
  font-size: 12px;
}

.warranty-contact {
  background: #fff8e7;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}
.warranty-contact p { margin: 0 0 16px; color: #6a4a0e; font-weight: 600; }
.warranty-contact-hours { margin: 14px 0 0; font-size: 12px; color: #8a4b00; }

/* ====== 在庫由来の問い合わせ：機種バッジ ====== */
.pl-stock-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  margin: 0 0 22px;
  background: linear-gradient(180deg, #fff7e0 0%, #fff1d0 100%);
  border: 2px dashed #ffb968;
  border-radius: 14px;
  box-shadow: 0 3px 10px rgba(255,154,61,.12);
}
.pl-stock-badge-ico {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}
.pl-stock-badge-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.pl-stock-badge-body small {
  font-size: 12px;
  color: #8a4b00;
  font-weight: 700;
  letter-spacing: .04em;
}
.pl-stock-badge-body strong {
  font-size: 16px;
  color: #3a2a00;
  font-weight: 800;
  line-height: 1.4;
  word-break: break-word;
}
.pl-stock-badge-price {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 8px;
  background: #fff;
  color: #d35a00;
  border: 1.5px solid #ffb968;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  align-self: flex-start;
}
@media (max-width: 480px) {
  .pl-stock-badge { padding: 12px 14px; gap: 10px; }
  .pl-stock-badge-ico { font-size: 26px; }
  .pl-stock-badge-body strong { font-size: 14px; }
}

@media (max-width: 720px) {
  .reuse-filter-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 10px;
    gap: 8px;
  }
  .reuse-filter-btn { padding: 12px 6px 10px; }
  .reuse-filter-btn .rf-ico   { font-size: 22px; }
  .reuse-filter-btn .rf-label { font-size: 13px; }
  .reuse-filter-btn .rf-sub   { font-size: 10px; }
}
@media (max-width: 380px) {
  .reuse-filter-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.reuse-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 24px;
}
.reuse-card {
  display: block;
  background: #fff;
  border: 2px solid #f0e7d8;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.reuse-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  border-color: #4fc3f7;
}
.reuse-card-photo {
  aspect-ratio: 4 / 3;
  background: #f5f5f5;
  overflow: hidden;
  position: relative;
}
.reuse-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.reuse-card-noimg {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  font-size: 48px; color: #ccc;
  background: #f5f5f5;
}
.reuse-card-body { padding: 16px 18px 18px; }
.reuse-card-title {
  font-size: 16px;
  line-height: 1.45;
  margin: 0 0 10px;
  color: #2c3e50;
  font-weight: 700;
}
.reuse-card-title .rc-maker {
  display: inline-block;
  background: #4fc3f7;
  color: #fff;
  padding: 1px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  vertical-align: middle;
  margin-right: 4px;
}
.reuse-card-title small {
  font-size: 12px;
  color: #888;
  font-weight: 400;
}

.reuse-card-spec {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 12px;
  font-size: 12.5px;
  color: #555;
}
.reuse-card-spec li {
  display: flex;
  gap: 6px;
  align-items: baseline;
}
.reuse-card-spec li span {
  color: #999;
  font-size: 11px;
  flex-shrink: 0;
}
.reuse-card-spec li.is-gpu {
  grid-column: 1 / -1;
  padding: 4px 8px;
  background: linear-gradient(180deg, #fff4e6 0%, #ffe9cf 100%);
  border: 1.5px dashed #ff9a3d;
  border-radius: 8px;
  color: #8a3a00;
  font-weight: 700;
}
.reuse-card-spec li.is-gpu span {
  color: #d35a00;
  font-weight: 800;
}
.reuse-card-spec li.is-gpu::before {
  content: "🎮";
  margin-right: 2px;
}

.reuse-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
}
.reuse-card-features li {
  aspect-ratio: 1;
  display: grid; place-items: center;
  font-size: 15px;
  background: #fff8e7;
  border-radius: 6px;
  transition: opacity .15s;
}
.reuse-card-features li.off {
  background: #f5f5f5;
  filter: grayscale(1);
  opacity: 0.3;
}

.reuse-card-price {
  margin: 8px 0 0;
  font-size: 13px;
  color: #555;
  padding-top: 10px;
  border-top: 1px dashed #ffd27a;
}
.reuse-card-price strong {
  color: #ff9a3d;
  font-size: 17px;
  margin-left: 6px;
}

.reuse-empty {
  background: #fff;
  border: 2px dashed #ddd;
  padding: 50px 24px;
  text-align: center;
  border-radius: 14px;
  color: #888;
  line-height: 2;
}
.reuse-empty p { margin: 0; }

.reuse-archive-cta {
  background: #fff8e7;
  padding: 44px 16px 50px;
  text-align: center;
  border-top: 2px dashed #ffd27a;
}
.reuse-archive-cta p {
  margin: 0 0 16px;
  color: #555;
}
.reuse-archive-cta-hours {
  font-size: 12px;
  color: #999;
  margin-top: 10px !important;
}

/* =========================================================
   在庫詳細 /reuse/[post-name]/
   ========================================================= */
.reuse-single { background: #fef8f3; padding: 30px 0 60px; }

.reuse-back { margin: 0 0 16px; }
.reuse-back a {
  display: inline-block;
  color: #4a5560;
  text-decoration: none;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background .15s;
}
.reuse-back a:hover { background: rgba(79, 195, 247, 0.12); color: #29a5d9; }
.reuse-back-bottom { margin-top: 30px; }

.reuse-single-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
  margin: 16px 0 36px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border: 2px solid #f0e7d8;
}
@media (max-width: 720px) {
  .reuse-single-head { grid-template-columns: 1fr; padding: 18px; }
}

.reuse-single-photo {
  background: #f5f5f5;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.reuse-single-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.reuse-single-info h1 {
  font-size: clamp(20px, 3vw, 28px);
  color: #2c3e50;
  margin: 0 0 14px;
  line-height: 1.4;
  font-weight: 900;
}
.reuse-single-info h1 .rs-maker {
  display: inline-block;
  background: #4fc3f7;
  color: #fff;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 13px;
  vertical-align: middle;
  margin-right: 6px;
}
.reuse-single-info h1 small {
  font-size: 14px;
  color: #888;
  font-weight: 400;
  display: block;
  margin-top: 4px;
}
.reuse-single-cond { color: #666; font-size: 14px; margin: 6px 0 12px; }
.reuse-single-cond strong { color: #2c3e50; }

.reuse-single-price {
  background: #fff8e7;
  border: 2px dashed #ff9a3d;
  border-radius: 12px;
  padding: 14px 18px;
  margin: 14px 0 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.reuse-single-price > span { color: #666; font-size: 13px; }
.reuse-single-price strong {
  color: #ff9a3d;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 900;
}

.reuse-single-cta-btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.reuse-single-cta-btn .btn-text small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 2px;
}
.reuse-single-cta-note {
  margin: 10px 0 0;
  padding: 8px 10px;
  background: #fff8ec;
  border-left: 3px solid #ffb968;
  border-radius: 6px;
  color: #6a4a0e;
  font-size: 12px;
  line-height: 1.6;
}

.reuse-section {
  background: #fff;
  border: 2px solid #f0e7d8;
  border-radius: 16px;
  padding: 22px 24px;
  margin: 0 0 22px;
}
.reuse-section-title {
  font-size: 17px;
  color: #2c3e50;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px dashed #ffd27a;
  font-weight: 800;
}

.reuse-feature-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 8px;
}
.reuse-feature-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #fff8e7;
  border-radius: 10px;
  border: 1.5px solid #ffd27a;
  transition: all .15s;
}
.reuse-feature-grid li.off {
  background: #fafafa;
  border-color: #e5e5e5;
  color: #b0b0b0;
}
.reuse-feature-grid li.off .ico { filter: grayscale(1); opacity: 0.4; }
.reuse-feature-grid li .ico { font-size: 22px; flex-shrink: 0; }
.reuse-feature-grid li .label { flex: 1; font-size: 13.5px; font-weight: 500; }
.reuse-feature-grid li .badge {
  font-weight: 900;
  font-size: 16px;
  color: #4caf50;
  flex-shrink: 0;
}
.reuse-feature-grid li.off .badge { color: #ccc; }

.reuse-spec-table {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 10px 18px;
  margin: 0;
}
.reuse-spec-table dt {
  font-weight: 700;
  color: #999;
  font-size: 13px;
  padding-top: 1px;
}
.reuse-spec-table dd {
  margin: 0;
  color: #2c3e50;
  font-size: 14.5px;
  font-weight: 500;
}

.reuse-maintenance {
  line-height: 1.9;
  color: #444;
  white-space: pre-line;
}
.reuse-maintenance p { margin: 0; }

.reuse-desc-body { line-height: 1.9; color: #444; }
.reuse-desc-body p { margin: 0 0 1em; }

.reuse-single-cta {
  background: #fff8e7;
  padding: 32px 20px 36px;
  text-align: center;
  border-radius: 16px;
  border: 2px dashed #ffd27a;
  margin: 30px 0 0;
}
.reuse-single-cta p {
  margin: 0 0 18px;
  color: #555;
  line-height: 1.8;
}

/* もったいないセクション下の「在庫を見る」リンク */
.mottainai-link { margin-top: 2.2em !important; }
.mottainai-link a {
  display: inline-block;
  padding: 10px 24px 11px;
  border: 1px solid #b7c2d0;
  border-radius: 999px;
  color: #4a5560;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: all .2s;
  background: #fff;
}
.mottainai-link a:hover {
  background: #4a5560;
  color: #fff;
  border-color: #4a5560;
}
