@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Noto+Serif+JP:wght@600;700&family=Zen+Maru+Gothic:wght@700;900&display=swap');

:root {
  --color-primary: #0d3b66;
  --color-primary-dark: #082a49;
  --color-accent: #f2a71b;
  --color-accent-deep: #e08a0c;
  /* デザイン画と同じ書体（明朝＝キャッチコピー、丸ゴシック＝吹き出し） */
  --font-mincho: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', 'YuMincho', serif;
  --font-maru: 'Zen Maru Gothic', 'Hiragino Maru Gothic ProN', 'Noto Sans JP', sans-serif;
  /* トップの夕景から採取した色（見出し帯・CTAなどの演出用） */
  --dusk-deep: #0b2445;
  --dusk-mid: #15406f;
  --dusk-violet: #4b4a76;
  --dusk-amber: #b0702c;
  --glow-gold: #f7c45a;
  --cream: #fdf7ec;
  --cream-edge: #f2e6d2;
  --shadow-warm: 0 14px 34px rgba(120, 80, 30, 0.13);
  --color-text: #2b2b2b;
  --color-text-light: #6b6b6b;
  --color-bg: #ffffff;
  --color-bg-soft: #f5f7fa;
  --color-border: #e3e7ec;
  --max-width: 1120px;
  --header-height: 96px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Yu Gothic', sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  /* 「ホームトップ画面」のヘッダーと同じ 白→空色 のグラデーション */
  background: linear-gradient(90deg,
    #fcfcfc 0%,
    #fbfcfd 20%,
    #f6f8fc 25%,
    #e8eff9 33%,
    #dae6f8 42%,
    #cddef6 50%,
    #bdd5f3 58%,
    #b0ccef 67%,
    #a3c4ed 75%,
    #98bdeb 83%,
    #85b1e8 92%,
    #7fade6 100%);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.3;
}

.logo .logo-mark {
  height: 44px;
  width: auto;
  flex: 0 0 auto;
}

.logo .logo-name {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.logo .logo-corp {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-primary);
  letter-spacing: 0.04em;
}

.logo .logo-main {
  font-size: 25px;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.global-nav ul {
  display: flex;
  gap: 8px;
  align-items: center;
}

.global-nav a {
  display: inline-block;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.global-nav a:hover,
.global-nav a.is-current {
  color: var(--color-primary);
  background: var(--color-bg-soft);
}

/* 英字ラベルはスマホのメニュー内でのみ表示 */
.global-nav .nav-en {
  display: none;
}

.global-nav .btn-contact {
  background: var(--color-primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.global-nav .btn-contact:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

.btn-contact .cta-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.btn-contact .cta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.btn-contact .cta-text small {
  font-size: 10.5px;
  font-weight: 400;
  opacity: 0.85;
  letter-spacing: 0.01em;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  position: relative;
  cursor: pointer;
  z-index: 1100;
}

.nav-toggle span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--color-primary);
  transition: 0.3s;
}

.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 25px; }

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  margin-top: var(--header-height);
  padding: 0;                 /* section の上下パディングを打ち消す */
  position: relative;
  color: var(--color-primary);
  overflow: hidden;
  /* 夕景のグラデーション（「ホームトップ画面」の色を採取して再現／スマホ用） */
  background: linear-gradient(180deg,
    #9cbdeb 0%,
    #cdd3eb 13%,
    #dfb8aa 25%,
    #fef0e0 34%,
    #f9d684 45%,
    #fded9f 51%,
    #fee673 58%,
    #cfa33d 65%,
    #9a6128 73%,
    #6b4520 85%,
    #3c373d 100%);
}

/* PC：デザイン画をそのまま使用 */
.hero-art {
  display: block;
  width: 100%;
  height: auto;
}

/* スマホ用のデザイン画（PCでは隠す） */
.hero-art-sp {
  display: none;
  width: 100%;
  height: auto;
}

/* PCではHTML版は隠す（DOMには残すのでSEO・読み上げには効く） */
.hero .hero-inner {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 72px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-width: 0;
  width: 100%;
}

.hero-copy {
  max-width: 660px;
  min-width: 0;
}

.hero-mascot {
  flex: 0 0 auto;
  align-self: flex-end;
  position: relative;
}

.hero-mascot img {
  width: 300px;
  height: auto;
  filter: drop-shadow(0 18px 26px rgba(60, 40, 10, 0.35));
}

/* 吹き出し（スマホ表示用。PCはデザイン画の吹き出しを使うため非表示） */
.hero-bubble {
  position: absolute;
  top: -18px;
  left: -96px;
  background: #fff;
  color: var(--color-primary);
  font-family: var(--font-maru);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  padding: 14px 20px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(60, 40, 10, 0.18);
  white-space: nowrap;
}

.hero-bubble strong {
  color: var(--color-accent-deep);
  font-size: 16px;
}

.hero-bubble::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: -13px;
  border: 8px solid transparent;
  border-top: 14px solid #fff;
  border-bottom: 0;
}

.hero h1 {
  font-family: var(--font-mincho);
  font-size: 62px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
  text-shadow: 0 2px 14px rgba(255, 255, 255, 0.5);
}

.hero h1 .accent {
  color: var(--color-accent-deep);
}

.hero-lead {
  font-family: var(--font-mincho);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 30px;
  letter-spacing: 0.06em;
}

.hero-lead .lead-name {
  font-size: 21px;
  margin-left: 10px;
}

/* 3つの強み */
.hero-points {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 11px;
}

.hero-points .point-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 稲妻など塗りで表現するパーツ（デザイン画のアイコンに合わせる） */
.hero-points .point-icon .icon-fill {
  fill: var(--color-primary);
  stroke: none;
}

.hero-points .point-text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.hero-points .point-title {
  font-size: 15.5px;
  font-weight: 900;
  color: var(--color-primary);
}

.hero-points .point-sub {
  font-size: 11.5px;
  color: #5a4a3a;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ヒーロー内のボタン（明るい背景用） */
.hero .btn-outline {
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.55);
}

.hero .btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(242, 167, 27, 0.35);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-outline-dark {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline-dark:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ===== Section common ===== */
section {
  padding: 96px 0;
}

/* 夕暮れの空気をうっすら含んだ背景 */
.section-alt {
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(247, 196, 90, 0.10) 0%, rgba(247, 196, 90, 0) 60%),
    var(--cream);
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  display: block;
  font-size: 13px;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-head h2 {
  text-wrap: balance;
  font-size: 30px;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 14px;
}

/* 見出しの下に、トップの「光の線」を思わせる細いライン */
.section-head h2::after {
  content: "";
  display: block;
  width: 68px;
  height: 2px;
  margin: 16px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg,
    rgba(247, 196, 90, 0) 0%,
    var(--glow-gold) 35%,
    var(--color-accent-deep) 65%,
    rgba(247, 196, 90, 0) 100%);
}


.section-head p {
  color: var(--color-text-light);
  max-width: 660px;
  margin: 0 auto;
}

/* ===== 代表挨拶 ===== */
.greeting {
  max-width: 720px;
  margin: 0 auto;
}

.greeting-lead {
  font-size: 23px;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 34px;
}

.greeting > p + p {
  margin-top: 20px;
}

.greeting > p {
  color: var(--color-text);
}

.greeting-sign {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--cream-edge);
  text-align: right;
  font-size: 14px;
  color: var(--color-text-light);
}

.greeting-sign strong {
  display: inline-block;
  margin-left: 12px;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--color-primary);
}

/* ===== Mascot / Character section ===== */
.mascot-flex {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 48px;
}

.mascot-image-wrap {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.mascot-image-wrap img {
  width: 100%;
  max-width: 280px;
  height: auto;
}

.mascot-profile {
  min-width: 0;
}

.mascot-profile h2 {
  text-wrap: balance;
  font-size: 26px;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.mascot-name {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.mascot-name .name-jp {
  font-size: 22px;
  font-weight: 900;
  color: var(--color-primary);
}

.mascot-name .name-en {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
}

.mascot-profile > p {
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.mascot-profile-list {
  display: grid;
  gap: 14px;
}

.mascot-profile-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
  font-size: 14.5px;
}

.mascot-profile-list dt {
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.mascot-profile-list dd {
  color: var(--color-text);
}

/* ===== Strengths / Cards ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--cream-edge);
  border-radius: 10px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(120, 80, 30, 0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: visible;
}

.card .mini-pose {
  position: absolute;
  top: -22px;
  right: -14px;
  width: 58px;
  height: auto;
  pointer-events: none;
}

.inline-pose {
  display: block;
  width: 72px;
  height: auto;
  margin: 0 auto 16px;
}

.heading-with-pose {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: nowrap;
}

.heading-with-pose h2 {
  text-wrap: balance;
  margin-bottom: 0;
  min-width: 0;
}

.heading-with-pose .heading-pose {
  width: 64px;
  height: auto;
  flex: 0 0 auto;
}

.heading-with-pose.align-start {
  justify-content: flex-start;
}

.heading-with-pose.image-right .heading-pose {
  order: 2;
}

.heading-with-pose.image-right h2 {
  order: 1;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-warm);
  border-color: rgba(247, 196, 90, 0.55);
}

.card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.card-icon svg {
  width: 30px;
  height: 30px;
}

.card h3 {
  font-size: 18px;
  color: var(--color-primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.card p {
  color: var(--color-text-light);
  font-size: 14.5px;
}

/* number badges on strengths */
.strength-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: block;
}

/* ===== Service list ===== */
.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* 奇数個で最後の1枚だけ余るときは横幅いっぱいに */
.service-list .service-item:nth-child(odd):last-child {
  grid-column: 1 / -1;
}

.service-item {
  display: flex;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 28px;
}

.service-item .num {
  font-size: 26px;
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
}

.service-item h3 {
  color: var(--color-primary);
  font-size: 17px;
  margin-bottom: 8px;
}

.service-item p {
  font-size: 14px;
  color: var(--color-text-light);
}

/* ===== About / company table ===== */
.about-flex {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 56px;
  align-items: center;
}

.about-flex > * {
  min-width: 0;
}

.about-flex .section-eyebrow {
  text-align: center;
}

.about-flex h2 {
  text-wrap: balance;
  font-size: 26px;
  color: var(--color-primary);
  margin-bottom: 20px;
  font-weight: 900;
  text-align: center;
}

.about-flex > div {
  text-align: center;
}

.about-flex p {
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}

.company-table th,
.company-table td {
  padding: 18px 24px;
  text-align: left;
  font-size: 14.5px;
  border-bottom: 1px solid var(--color-border);
}

.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: none;
}

.company-table th {
  width: 130px;
  background: var(--color-bg-soft);
  color: var(--color-primary);
  font-weight: 700;
}

/* ===== News ===== */
.news-list {
  border-top: 1px solid var(--color-border);
}

.news-item {
  display: flex;
  gap: 28px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-border);
}

.news-item time {
  flex: 0 0 auto;
  color: var(--color-text-light);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.news-tag {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 999px;
  padding: 3px 12px;
}

.news-item p {
  font-size: 14.5px;
}

/* ===== Customer voice ===== */
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.voice-card { background: #fff; border: 1px solid var(--cream-edge); border-radius: 10px; padding: 32px 28px; display: flex; flex-direction: column; box-shadow: 0 6px 18px rgba(120, 80, 30, 0.07); }
.voice-quote-mark { font-size: 40px; color: var(--color-accent); font-weight: 900; line-height: 1; margin-bottom: 8px; font-family: Georgia, 'Times New Roman', serif; }
.voice-text { color: var(--color-text); font-size: 14.5px; margin-bottom: 20px; flex: 1; }
.voice-meta { display: flex; justify-content: space-between; align-items: baseline; font-size: 13px; color: var(--color-text-light); border-top: 1px solid var(--color-border); padding-top: 14px; }
.voice-meta .voice-cat { color: var(--color-primary); font-weight: 700; }
.voice-note { font-size: 13px; color: var(--color-text-light); text-align: center; margin-top: 32px; }

/* ===== Works gallery ===== */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.work-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}

.work-thumb {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
}

.work-thumb svg {
  width: 44px;
  height: 44px;
}

.work-body {
  padding: 20px 22px;
}

.work-body .work-cat {
  font-size: 12px;
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}

.work-body h3 {
  font-size: 15.5px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.work-body p {
  font-size: 13.5px;
  color: var(--color-text-light);
}

/* ===== Flow (work process) ===== */
.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: flow;
}

.flow-item {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 32px 22px 26px;
  text-align: center;
}

.flow-item .mini-pose {
  position: absolute;
  top: -34px;
  right: -10px;
  width: auto;
  height: 81px;
  pointer-events: none;
}

.flow-item::before {
  counter-increment: flow;
  content: counter(flow);
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.flow-item h3 {
  margin-top: 10px;
  font-size: 15.5px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.flow-item p {
  font-size: 13.5px;
  color: var(--color-text-light);
}

/* ===== CTA band ===== */
.cta-band {
  position: relative;
  background:
    radial-gradient(80% 130% at 78% 108%, rgba(247, 196, 90, 0.5) 0%, rgba(176, 112, 44, 0.25) 34%, rgba(176, 112, 44, 0) 64%),
    linear-gradient(105deg, var(--dusk-deep) 0%, var(--dusk-mid) 50%, var(--dusk-violet) 80%, var(--dusk-amber) 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(247, 196, 90, 0) 0%,
    rgba(247, 196, 90, 0.7) 32%,
    var(--glow-gold) 62%,
    rgba(247, 196, 90, 0) 100%);
}

.cta-band .mini-pose {
  position: absolute;
  right: 28px;
  bottom: 0;
  width: 96px;
  height: auto;
  pointer-events: none;
}

.cta-band h2 {
  text-wrap: balance;
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

.cta-contacts {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== Contact form ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
}

.contact-wrap > * {
  min-width: 0;
}

.contact-info-card {
  background: var(--color-bg-soft);
  border-radius: 8px;
  padding: 36px 32px;
  height: fit-content;
}

.contact-info-card h3 {
  color: var(--color-primary);
  margin-bottom: 18px;
  font-size: 18px;
}

.contact-info-row {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-info-row .icon {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  flex: 0 0 auto;
  margin-top: 3px;
}

.contact-info-row .label {
  font-size: 12.5px;
  color: var(--color-text-light);
  margin-bottom: 2px;
}

.contact-info-row .value {
  font-size: 15.5px;
  font-weight: 700;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-group .required {
  color: #d64545;
  font-size: 11px;
  margin-left: 6px;
  border: 1px solid #d64545;
  border-radius: 3px;
  padding: 1px 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-note {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.form-submit {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: default;
}

/* 迷惑メール対策用のダミー欄（画面には表示しない） */
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* 送信完了ページ */
.thanks-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.thanks-box .thanks-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #e7f6ec;
  color: #1e7b3e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-box .thanks-icon svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thanks-box h2 {
  font-size: 26px;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.thanks-box p {
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.thanks-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.form-status {
  margin-top: 16px;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 4px;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  background: #e7f6ec;
  color: #1e7b3e;
}

/* ===== Page header (sub pages) ===== */
.page-header {
  position: relative;
  margin-top: var(--header-height);
  /* 日が沈んだ直後の空。右手に夕焼けの残光 */
  background:
    radial-gradient(90% 150% at 88% 115%, rgba(247, 196, 90, 0.55) 0%, rgba(176, 112, 44, 0.28) 32%, rgba(176, 112, 44, 0) 62%),
    linear-gradient(105deg, var(--dusk-deep) 0%, var(--dusk-mid) 48%, var(--dusk-violet) 78%, var(--dusk-amber) 100%);
  color: #fff;
  padding: 72px 0 68px;
  text-align: center;
  overflow: hidden;
}

/* 下辺に光の線 */
.page-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(247, 196, 90, 0) 0%,
    rgba(247, 196, 90, 0.75) 30%,
    var(--glow-gold) 62%,
    rgba(247, 196, 90, 0) 100%);
}

.page-header .breadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}

.page-header .breadcrumb a:hover {
  color: #fff;
}

.page-header h1 {
  text-wrap: balance;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

/* ===== Footer ===== */
.site-footer {
  position: relative;
  /* 夜に沈んだ空。右下にわずかな残光 */
  background:
    radial-gradient(70% 120% at 85% 0%, rgba(176, 112, 44, 0.20) 0%, rgba(176, 112, 44, 0) 55%),
    var(--dusk-deep);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand .logo-main {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}

.footer-brand p {
  margin-top: 14px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px;
}

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.footer-col li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.nb { white-space: nowrap; }

@media (max-width: 600px) {
  p .nb {
    white-space: normal;
  }
}

.mobile-break {
  display: none;
}

@media (max-width: 900px) {
  .mobile-break {
    display: block;
  }
}

.pc-break {
  display: block;
}

@media (max-width: 900px) {
  .pc-break {
    display: none;
  }
}
.mt-40 { margin-top: 40px; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .company-table th,
  .company-table td {
    padding: 14px 10px;
    font-size: 13px;
  }

  .company-table th {
    width: 84px;
    white-space: nowrap;
  }

  .grid-3,
  .service-list,
  .voice-grid,
  .works-grid,
  .flow-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-flex,
  .contact-wrap {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .mascot-flex {
    grid-template-columns: minmax(0, 1fr);
    padding: 32px;
    text-align: center;
  }

  .mascot-name {
    justify-content: center;
  }

  .mascot-profile-list div {
    grid-template-columns: 1fr;
    gap: 4px;
    text-align: left;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .logo {
    gap: 9px;
  }

  .logo .logo-mark {
    height: 32px;
  }

  .logo .logo-corp {
    font-size: 9.5px;
  }

  .logo .logo-main {
    font-size: 19px;
  }

  .global-nav .btn-contact {
    justify-content: center;
  }

  .nav-toggle {
    display: block;
  }

  .global-nav {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    /* トップ画面と同じ夕景の色でメニューをまとめる */
    background:
      radial-gradient(115% 80% at 82% 4%, rgba(176, 112, 44, 0.32) 0%, rgba(176, 112, 44, 0) 58%),
      linear-gradient(158deg, var(--dusk-deep) 0%, var(--dusk-mid) 56%, var(--dusk-violet) 100%);
    transition: right 0.3s ease;
    overflow-y: auto;
    /* メニュー全体を上下方向にもバランスよく配置
       （safe を解釈できない古い環境では従来どおり上寄せになる） */
    display: flex;
    flex-direction: column;
    justify-content: safe center;
  }

  .global-nav.is-open {
    right: 0;
  }

  .global-nav ul {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 26px 24px 32px;
    gap: 0;
  }

  .global-nav li:first-child a {
    border-top: 1px solid rgba(255, 255, 255, 0.17);
  }

  .global-nav a {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 19px 4px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 0;
  }

  .global-nav a .nav-ja {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.05em;
  }

  .global-nav a .nav-en {
    display: block;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.52);
  }

  .global-nav a:hover,
  .global-nav a.is-current {
    background: transparent;
    color: var(--glow-gold);
  }

  .global-nav a.is-current .nav-en {
    color: var(--glow-gold);
    opacity: 0.8;
  }

  .global-nav .btn-contact {
    margin-top: 26px;
    padding: 15px 20px;
    justify-content: center;
    text-align: center;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-deep) 100%);
    color: #16253d;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
  }

  .global-nav .btn-contact:hover {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-deep) 100%);
    color: #16253d;
  }

  /* 開いているときの × ボタンを丸で囲む */
  .nav-toggle.is-active {
    border-radius: 50%;
    box-shadow: inset 0 0 0 1.5px rgba(11, 36, 69, 0.4);
  }

  /* スマホ：デザイン画は文字が小さくなりすぎるのでHTML版に切り替え、
     背景は同じ絵から切り出した街並み＋光の線を使う */
  .hero-art {
    display: none;
  }

  .page-header {
    padding: 46px 0 42px;
  }

  .page-header h1 {
    font-size: 25px;
    letter-spacing: 0.02em;
  }

  .section-head h2 {
    font-size: 23px;
  }

  .section-head h2::after {
    width: 54px;
    margin-top: 13px;
  }

  /* スマホもデザイン画をそのまま使用（PC版と同じ考え方） */
  .hero-art {
    display: none;
  }

  .hero-art-sp {
    display: block;
  }

  .hero {
    min-height: 0;
    background: var(--cream);
  }

  /* 画像に含まれる見出し・キャラ・吹き出しはHTML側では出さない */
  .hero .hero-copy > h1,
  .hero .hero-lead,
  .hero .hero-mascot {
    display: none;
  }

  /* 3つの強みとボタンだけ、読みやすいHTMLのまま画像の下に置く */
  .hero .hero-inner {
    display: block;
    padding: 30px 24px 40px;
  }

  /* 「真心で〜」から「事業内容を見る」までを中央揃え */
  .hero-copy {
    width: 100%;
    text-align: center;
  }

  /* ブロックは中央、中身は左揃えで3つの左端をそろえる */
  .hero-points {
    flex-direction: column;
    align-items: flex-start;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-points li {
    justify-content: flex-start;
  }

  .hero-points .point-text {
    align-items: flex-start;
    text-align: left;
  }

  .hero-actions {
    justify-content: center;
  }

  /* スマホでは1行で表示（幅に合わせて自動縮小） */
  .hero h1 {
    font-size: clamp(15px, 6.4vw, 30px);
    line-height: 1.35;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    white-space: nowrap;
  }

  .hero-lead {
    font-size: 14px;
    letter-spacing: 0.05em;
    margin-bottom: 22px;
  }

  .hero-lead .lead-name {
    font-size: 16px;
    margin-left: 6px;
  }

  .hero-points {
    gap: 12px 22px;
    margin-bottom: 24px;
  }

  .hero-points .point-icon {
    width: 28px;
    height: 28px;
  }

  .hero-points .point-title {
    font-size: 14px;
  }

  .hero-points .point-sub {
    font-size: 11px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .btn {
    padding: 13px 22px;
    font-size: 14px;
  }

  /* キャラは本文の下・右寄せ、吹き出しはその左横 */
  .hero-mascot {
    position: static;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin: 8px -8px 0 0;
  }

  .hero-mascot img {
    width: 150px;
  }

  .hero-bubble {
    position: static;
    align-self: center;
    margin: 0 8px 12px 0;
    font-size: 12.5px;
    line-height: 1.5;
    padding: 10px 14px;
    border-radius: 14px;
    white-space: normal;
    max-width: 165px;
  }

  .hero-bubble strong {
    font-size: 13.5px;
  }

  /* しっぽはオクデンくん側（右）へ */
  .hero-bubble::after {
    right: -12px;
    bottom: 16px;
    top: auto;
    border: 7px solid transparent;
    border-left: 13px solid #fff;
    border-right: 0;
    border-top-width: 7px;
  }

  .cta-band .mini-pose {
    position: static;
    display: block;
    width: 64px;
    margin: 0 auto 16px;
  }

  .card .mini-pose {
    width: 42px;
    top: 10px;
    right: 10px;
  }

  .flow-item .mini-pose {
    width: auto;
    height: 59px;
    top: 10px;
    right: 10px;
  }

  section {
    padding: 64px 0;
  }

  .grid-3,
  .service-list,
  .voice-grid,
  .works-grid,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .cta-band h2 {
    font-size: 22px;
  }

  .about-flex h2,
  .about-flex .btn-outline-dark {
    text-align: center;
  }

  .about-flex > div {
    text-align: center;
  }

  .about-flex .heading-with-pose.align-start {
    justify-content: center;
  }

  .heading-with-pose .heading-pose {
    width: 44px;
  }

  .about-flex > div p {
    text-align: left;
  }
}

/* 画面の短い端末（iPhone SE など）ではメニューを少し詰めて全項目を収める */
@media (max-width: 900px) and (max-height: 640px) {
  .global-nav ul {
    padding: 16px 24px 20px;
  }

  .global-nav a {
    padding: 14px 4px;
  }

  .global-nav a .nav-ja {
    font-size: 17px;
  }

  .global-nav .btn-contact {
    margin-top: 18px;
  }
}

/* 代表挨拶：スマホ調整 */
@media (max-width: 900px) {
  .greeting-lead {
    font-size: 19px;
    letter-spacing: 0.06em;
    margin-bottom: 26px;
  }

  .greeting-sign {
    text-align: center;
  }

  .greeting-sign strong {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }
}

/* ヘッダー：メニュー項目が増えたぶん、中間幅で少し詰める */
@media (min-width: 901px) and (max-width: 1100px) {
  .global-nav ul {
    gap: 2px;
  }

  .global-nav a {
    padding: 10px 10px;
    font-size: 14px;
  }

  .global-nav .btn-contact {
    padding: 9px 15px;
  }

  .btn-contact .cta-text small {
    display: none;
  }

  .logo {
    gap: 10px;
  }

  .logo .logo-mark {
    height: 38px;
  }

  .logo .logo-main {
    font-size: 21px;
  }
}

/* ===========================================================
   テーマ：空と夕日のガラス（H案）
   ヘッダー／「電気工事のご相談は〜」／フッター／ハンバーガーは従来のまま。
   このブロックを削除すれば、以前の白＋ネイビーの見た目に戻ります。
   =========================================================== */
:root {
  --h-navy: #0d3b66;
  --h-text: #334050;
  --h-sky-deep: #85b1e8;
  --h-sun: #f9c96e;
  --h-orange: #f2a71b;
  --h-orange-deep: #e08a0c;
  --h-glass: rgba(255, 255, 255, 0.52);
  --h-glass-strong: rgba(255, 255, 255, 0.66);
  --h-glass-bd: rgba(255, 255, 255, 0.92);
  --h-glass-sh: 0 18px 40px rgba(88, 128, 184, 0.17), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  --h-blur: blur(22px) saturate(170%);
}

body {
  color: var(--h-text);
  background: transparent;
}

/* 背景が写真になるぶん、薄いグレーの文字を少し濃くする */
:root {
  --color-text-light: #334050;
}

/* 下地：トップ画面の夕景をぼかしたもの（画面に固定） */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url(../images/bg-sky.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* 夕日を思わせる淡いオレンジのベール＋会社ロゴの透かし */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    url(../images/logo-watermark.png),
    radial-gradient(120% 78% at 50% 104%, rgba(255, 206, 150, 0.5) 0%, rgba(255, 206, 150, 0) 62%),
    linear-gradient(180deg,
      rgba(255, 245, 233, 0.70) 0%,
      rgba(255, 238, 221, 0.70) 46%,
      rgba(255, 226, 198, 0.70) 100%);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: center 52%, center, center;
  background-size: min(58vw, 520px) auto, cover, cover;
}

@media (max-width: 900px) {
  body::after {
    background-size: min(78vw, 340px) auto, cover, cover;
    background-position: center 48%, center, center;
  }
}

section {
  background: transparent;
}

.section-alt {
  background: rgba(255, 255, 255, 0.34);
}

/* ---------- 下層ページの見出し帯 ---------- */
.page-header {
  background:
    radial-gradient(80% 150% at 88% 118%, rgba(249, 190, 96, 0.6) 0%, rgba(249, 190, 96, 0) 62%),
    linear-gradient(180deg, #cfe1f7 0%, #e6f0fc 46%, #fdf1de 100%);
  color: var(--h-navy);
}

.page-header h1 {
  color: var(--h-navy);
  text-shadow: none;
}

.page-header .breadcrumb,
.page-header .breadcrumb a {
  color: rgba(13, 59, 102, 0.72);
}

.page-header .breadcrumb a:hover {
  color: var(--h-navy);
}

/* ---------- 見出し ---------- */
.section-eyebrow {
  display: inline-block;
  padding: 7px 20px;
  font-size: 11.5px;
  letter-spacing: 0.3em;
  color: var(--h-orange-deep);
  border-radius: 999px;
  border: 1px solid var(--h-glass-bd);
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 6px 16px rgba(88, 128, 184, 0.12);
}

.section-head h2,
.about-flex h2,
.mascot-profile h2,
.greeting-lead {
  color: var(--h-navy);
}

.section-head h2::after {
  width: 76px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--h-sky-deep), var(--h-sun), var(--h-orange));
}

.section-head p {
  color: var(--h-text);
}

/* ---------- ガラスのパネル ---------- */
.card,
.service-item,
.voice-card,
.flow-item,
.company-table,
.contact-info-card,
.mascot-flex,
.works-card {
  background: var(--h-glass);
  border: 1px solid var(--h-glass-bd);
  border-radius: 18px;
  box-shadow: var(--h-glass-sh);
  -webkit-backdrop-filter: var(--h-blur);
  backdrop-filter: var(--h-blur);
}

.card p,
.service-item p,
.flow-item p,
.mascot-profile p {
  color: var(--h-text);
}

.card h3,
.service-item h3,
.flow-item h3 {
  color: var(--h-navy);
}

/* アイコンは空→夕日のガラスの円に */
.card-icon {
  border: 1px solid var(--h-glass-bd);
  background: linear-gradient(150deg, rgba(180, 212, 248, 0.55) 0%, rgba(252, 214, 150, 0.6) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
  color: var(--h-navy);
}

.service-item .num,
.flow-item .num,
.strength-num {
  color: var(--h-orange);
}

/* ---------- 会社概要の表 ---------- */
.company-table th {
  background: rgba(255, 255, 255, 0.42);
  color: var(--h-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
}

.company-table td {
  color: var(--h-text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
}

.company-table a {
  color: var(--h-orange-deep);
}

/* ---------- お客様の声 ---------- */
.voice-quote-mark {
  color: var(--h-sun);
}

.voice-text {
  color: #45505e;
}

.voice-cat {
  color: var(--h-orange-deep);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--h-glass-bd);
}

/* ---------- 代表挨拶 ---------- */
.greeting > p {
  color: var(--h-text);
}

.greeting-sign {
  border-top: 1px solid rgba(255, 255, 255, 0.9);
}

.greeting-sign strong {
  color: var(--h-navy);
}

/* ---------- フォーム ---------- */
.form-group label {
  color: var(--h-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--h-glass-bd);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--h-orange);
  box-shadow: 0 0 0 3px rgba(242, 167, 27, 0.18);
}

/* ---------- ボタン ---------- */
.btn {
  border-radius: 999px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--h-orange) 0%, var(--h-orange-deep) 100%);
  color: #fff;
  box-shadow: 0 14px 26px rgba(224, 138, 12, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--h-orange-deep) 0%, #c97a09 100%);
  color: #fff;
}

.btn-outline-dark,
.hero .btn-outline {
  border: 1px solid var(--h-glass-bd);
  color: var(--h-navy);
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 10px 22px rgba(88, 128, 184, 0.14);
}

.btn-outline-dark:hover,
.hero .btn-outline:hover {
  background: #fff;
  color: var(--h-navy);
}

/* ---------- スマホのトップ（3つの特長） ---------- */
.hero-points .point-title {
  color: var(--h-navy);
}

.hero-points .point-sub {
  color: var(--h-text);
}

/* ---------- 「電気工事のご相談は〜」の下の光の線 ---------- */
.cta-band {
  padding-bottom: 0;
}

.cta-wire {
  margin-top: 44px;
  overflow: hidden;
  line-height: 0;
}

.cta-wire svg {
  display: block;
  width: 100%;
  height: 132px;
}

/* スマホ用（全体が見えるよう、切り抜かずに縮小して表示する） */
.cta-wire .wire-sp {
  display: none;
}

.cta-wire .ll {
  fill: none;
  stroke: #ffd98a;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 5px rgba(255, 190, 80, 0.9)) drop-shadow(0 0 17px rgba(255, 160, 40, 0.5));
}

@media (max-width: 900px) {
  .cta-wire { margin-top: 30px; }

  /* 切り抜き版は隠し、全体が入る版に切り替える */
  .cta-wire .wire-pc { display: none; }

  .cta-wire .wire-sp {
    display: block;
    width: 100%;
    height: auto;
  }

  /* 小さくなるぶん、線を少し太くして見えやすく */
  .cta-wire .wire-sp .ll {
    stroke-width: 3.4;
    filter: drop-shadow(0 0 4px rgba(255, 190, 80, 0.9)) drop-shadow(0 0 12px rgba(255, 160, 40, 0.5));
  }

  .section-eyebrow { padding: 6px 16px; }
}

/* ---------- LINE で相談 ---------- */
.btn-line {
  background: linear-gradient(135deg, #22cf68 0%, #06c755 100%);
  color: #fff;
  box-shadow: 0 14px 26px rgba(6, 199, 85, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-line:hover {
  background: linear-gradient(135deg, #06c755 0%, #04a747 100%);
  color: #fff;
}

.btn-line .line-icon,
.contact-info-row .line-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: currentColor;
}

/* お問い合わせページのLINE欄 */
.contact-line {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.9);
}

.contact-line h3 {
  margin-bottom: 8px;
}

.contact-line p {
  font-size: 13px;
  color: var(--h-text);
  margin-bottom: 16px;
}

.contact-line .btn {
  width: 100%;
  justify-content: center;
}

.contact-line .line-qr {
  display: block;
  width: 132px;
  margin: 18px auto 0;
  border-radius: 10px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 8px 20px rgba(88, 128, 184, 0.16);
}

.contact-line .line-qr-note {
  text-align: center;
  font-size: 12px;
  margin: 8px 0 0;
}
