/* ==========================================================================
   ◆ デザイントークン
   ========================================================================== */
:root {
    --green-deep: #1a5c43;
    --green-dark: #0e3d2b;
    --green-soft: #e8f1ec;
    --green-light: #f2f7f4;
    --gold: #c2a24b;
    --gold-light: #f5eedc;
    --gold-dark: #9e8133;
    --line-green: #06c755;
    --bg: #faf8f3;
    --white: #ffffff;
    --ink: #22312a;
    --ink-light: #596b63;
    --ink-muted: #83948c;
    --alert: #b6442c;
    --alert-bg: #fdf2f0;
    --border-color: rgba(26, 92, 67, 0.12);
    --border-subtle: rgba(26, 92, 67, 0.06);
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 10px rgba(14, 61, 43, .04);
    --shadow: 0 4px 24px rgba(14, 61, 43, .08);
    --shadow-hover: 0 12px 36px rgba(14, 61, 43, .15);
    --serif: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
    --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
}

/* ==========================================================================
   ◆ リセット・基本
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.9;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}

.inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
section {
  padding: 96px 0;
}

/* demo badge (既存から引き継ぎ) */
.demo-bar {
  background: var(--green-dark);
  color: #f0e9da;
  font-size: 12px;
  text-align: center;
  padding: 6px;
  letter-spacing: .04em;
  position: relative;
  z-index: 1000;
}
.demo-bar b {
  color: var(--gold);
}

/* ==========================================================================
   ◆ 共通パーツ：セクション見出し
   ========================================================================== */
.sec-head {
  text-align: center;
  margin-bottom: 56px;
}
.sec-head .en {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    letter-spacing: 0.24em;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    gap: 8px;
}
.sec-head .en:before, .sec-head .en:after{
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  opacity: 0.6;
  background: var(--gold);
}
.sec-head h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 700;
  line-height: 1.5;
}
.sec-head .lead {
  margin-top: 18px;
  color: var(--ink-light);
  font-size: 15.5px;
}
.sec-head.on-dark h2, .sec-head.on-dark .lead {
  color: var(--white);
}

/* ==========================================================================
   ◆ 共通パーツ：ボタン
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  border-radius: 999px;
  padding: 16px 34px;
  font-size: 15.5px;
  transition: .25s;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1.4;
  text-align: center;
}
.btn .arw {
  transition: transform .25s;
}
.btn:hover .arw {
  transform: translateX(4px);
}
.btn-primary {
  background: var(--green-deep);
  color: #fff;
  box-shadow: 0 6px 18px rgba(26, 92, 67, .35);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  color: #fff;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #b08d33);
  color: #fff;
  box-shadow: 0 6px 18px rgba(194, 162, 75, .4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  color: #fff;
}
.btn-gold-sub {
    color: var(--green-dark);
    background: var(--gold-light);
    border: 1.5px solid var(--gold);
}
.btn-gold-sub:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}
.btn-lg {
  padding: 18px 38px;
  font-size: 16.5px;
  font-weight: 700;
}
.btn-md {
  padding: 14px 28px;
  font-size: 15px;
}
.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}
.btn-outline {
  border-color: var(--green-deep);
  color: var(--green-deep);
  background: transparent;
}
.btn-outline:hover {
  background: var(--green-deep);
  color: #fff;
}
.btn-outline.on-dark {
  border-color: #fff;
  color: #fff;
}
.btn-outline.on-dark:hover {
  background: #fff;
  color: var(--green-dark);
}
.btn-line {
  background: var(--line-green);
  color: #fff;
  box-shadow: 0 6px 18px rgba(6, 199, 85, .35);
}
.btn-line:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  color: #fff;
}

/* フローボタン */
.flow-btns {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.flow-btn {
  pointer-events: auto;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
  transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  position: relative;
}
.flow-btn:hover {
  transform: scale(1.1) translateY(-5px);
}
.flow-btn-line {
  background: var(--line-green);
  color: #fff;
}
.flow-btn-line i, .flow-btn-line svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}
.flow-btn .label {
  font-size: 10px;
  font-weight: 700;
  margin-top: 2px;
}
.flow-btn .badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--alert);
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

@media (max-width: 860px) {
  .flow-btns {
    display: none;
  }
}
.btn small {
  display: block;
  font-weight: 500;
  font-size: 11.5px;
  opacity: .85;
}

/* ==========================================================================
   ◆ 共通パーツ：ヘッダー
   ========================================================================== */
header#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 248, 243, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 92, 67, .1);
  transition: box-shadow .3s;
}
header#header.scrolled {
  box-shadow: var(--shadow);
}
.header-in {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo-icon {
  height: 44px;
  width: auto;
  display: block;
}
.brand-txt {
  line-height: 1.35;
}
.brand-txt .corp {
  font-size: 10.5px;
  letter-spacing: .12em;
  color: var(--ink-light);
}
.brand-txt .name {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 19px;
  color: var(--green-dark);
  letter-spacing: .04em;
}
@media (max-width: 1024px) {
  .brand-logo-icon {
    height: 36px;
  }
  .brand-txt .name {
    font-size: 17px;
  }
}
nav.gnav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav.gnav a {
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
nav.gnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .25s;
}
nav.gnav a:hover::after {
  width: 100%;
}
.header-cta {
  display: flex;
  gap: 8px;
  align-items: center;
}
.header-cta .btn {
  padding: 10px 18px;
  font-size: 13.5px;
}
.header-cta .header-btn-main {
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(26, 92, 67, .3);
}
.header-cta .header-btn-line {
  padding: 10px 16px;
  font-size: 13px;
}
.header-cta .header-btn-diag {
  padding: 10px 16px;
  font-size: 13px;
}
.header-cta .header-btn-diag:hover {
  background: var(--green-soft);
  color: var(--green-deep);
  border-color: var(--green-deep);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  margin: 6px auto;
  transition: .3s;
}

@media (max-width: 1024px) {
  nav.gnav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  nav.gnav.open {
    display: block;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 20px 24px;
    max-height: calc(100vh - 78px);
    overflow-y: auto;
    z-index: 100;
  }
  nav.gnav.open ul {
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
  }
  nav.gnav.open a {
    display: block;
    padding: 14px 8px;
    border-bottom: 1px solid rgba(26, 92, 67, .08);
    font-size: 15.5px;
  }
  .header-cta {
    display: none;
  }
}

.plans-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 860px) {
  .plans-summary-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.plan-summary-card {
  background: var(--white);
  padding: 34px 28px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(14, 61, 43, 0.06);
  border: 1px solid rgba(26, 92, 67, 0.08);
  border-top: 4px solid var(--green-deep);
  text-align: left;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
}
.plan-summary-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(194, 162, 75, 0.4);
}
.plan-summary-card.plan-card-light {
  border-top: 4px solid var(--green-deep);
}
.plan-summary-card.plan-card-standard, .plan-summary-card.featured {
  border-top: 4px solid var(--gold);
}
.plan-summary-card.plan-card-premium {
  border-top: 4px solid var(--green-deep);
}
.plan-summary-card h3 {
  font-family: var(--sans);
  font-size: 18.5px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(26, 92, 67, 0.08);
}
.psc-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.psc-base, .psc-per {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
}
.plan-summary-card p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
}

.service-plans-intro {
  margin-top: 80px;
  text-align: center;
}
.service-plans-intro h2 {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--green-dark);
  margin-bottom: 24px;
}
.service-plans-intro p {
  margin-bottom: 40px;
}

.price-common {
  margin-top: 60px;
  background: #f8faf9;
  border-radius: var(--radius-lg, 24px);
  padding: 48px 36px;
  border: 1px solid rgba(26, 92, 67, 0.08);
  box-shadow: 0 4px 24px rgba(14, 61, 43, 0.04);
}
.price-common-lead {
  text-align: center;
  font-size: 15px;
  color: var(--ink-light);
  margin-top: 10px;
  margin-bottom: 32px;
}
.common-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 28px;
}
.common-card {
  background: var(--white);
  padding: 34px 30px;
  border-radius: 16px;
  border: 1px solid rgba(26, 92, 67, 0.1);
  box-shadow: 0 8px 24px rgba(14, 61, 43, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.common-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--green-deep));
}
.common-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(14, 61, 43, 0.1);
  border-color: rgba(194, 162, 75, 0.5);
}
.common-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.common-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.common-card-meta {
  display: flex;
  gap: 8px;
  align-items: center;
}
.common-tag {
  background: var(--gold);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.common-subtag {
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.common-card-title {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--green-dark);
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.45;
}
.common-card-desc {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 18px;
}
.common-card-features {
  list-style: none;
  padding: 14px 16px;
  margin: 0 0 16px 0;
  background: rgba(26, 92, 67, 0.03);
  border-radius: 8px;
  border: 1px dashed rgba(26, 92, 67, 0.16);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.common-card-features li {
  font-size: 13px;
  color: var(--green-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.common-card-features li span {
  color: var(--gold);
  font-weight: 900;
}
.common-card-note {
  font-size: 12.5px;
  color: var(--ink-light);
  margin-top: auto;
  padding-top: 8px;
}
@media (max-width: 768px) {
  .price-common {
    padding: 28px 16px;
    border-radius: 16px;
    margin-top: 40px;
  }
  .common-menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .common-card {
    padding: 24px 18px;
    border-radius: 12px;
  }
}
.cd-text h3 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.fade-mt-80 {
  margin-top: 80px;
}
.pm-cat-subhead {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 14px;
  color: var(--green-deep);
}

.price-flow-no-top {
  padding-bottom: 96px;
  background: var(--bg);
}

/* ==========================================================================
   独自サービス：ダッシュボード
   ========================================================================== */
.dashboard-wrap {
  margin-top: 56px;
  background: #fdfaf5;
  border-radius: var(--radius-lg, 24px);
  padding: 64px;
  border: 1px solid rgba(26,92,67,0.05);
}
.dashboard-head {
  text-align: center;
  margin-bottom: 48px;
}
.dashboard-head .tag {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.dashboard-head h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  color: var(--green-dark);
  margin-bottom: 16px;
  line-height: 1.4;
}
.dashboard-head p {
  color: var(--ink-light);
  font-size: 16px;
}

.dashboard-intro {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 50px;
  align-items: flex-start;
}
.dashboard-visual {
  position: relative;
  width: 100%;
}
.dashboard-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  align-items: start;
}
.mockup {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(14, 61, 43, 0.1), 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(26, 92, 67, 0.12);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  width: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.mockup:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(14, 61, 43, 0.2);
  border-color: rgba(194, 162, 75, 0.5);
}
.mockup-main {
  width: 100%;
  position: relative;
  z-index: 1;
}
.mockup-sub {
  width: 100%;
  position: relative;
  z-index: 1;
}
.dashboard-showcase:has(.mockup:only-child) {
  grid-template-columns: 1fr;
}
.mockup-bar {
  background: #f4f7f5;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(26, 92, 67, 0.08);
}
.mock-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}
.mock-dot.dot-red { background: #ff5f56; }
.mock-dot.dot-yellow { background: #ffbd2e; }
.mock-dot.dot-green { background: #27c93f; }
.mock-title {
  font-size: 11px;
  color: var(--ink-light);
  margin-left: 6px;
  font-weight: 600;
  font-family: sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-zoom-hint {
  margin-left: auto;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--green-deep);
  background: var(--green-soft);
  padding: 2px 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  border: 1px solid rgba(26, 92, 67, 0.12);
  transition: background .2s, color .2s;
}
.mockup:hover .mock-zoom-hint {
  background: var(--gold-light);
  color: var(--gold-dark);
  border-color: rgba(194, 162, 75, 0.3);
}
.mock-img {
  overflow: hidden;
  background: #fcfdfc;
}
.dashboard-img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  display: block;
}
.dashboard-caption {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(217, 122, 50, 0.08);
  border: 1px dashed rgba(217, 122, 50, 0.35);
  border-radius: 8px;
}
.caption-badge {
  background: #d97a32;
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.caption-text {
  font-size: 12px;
  color: #9a480d;
  font-weight: 600;
  line-height: 1.5;
}
.dash-lead-txt {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 20px;
}
.dash-pills-wrap {
  margin-bottom: 24px;
  background: #f4f8f6;
  border-radius: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(26, 92, 67, 0.1);
}
.dash-pills-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.dash-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dash-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid rgba(26, 92, 67, 0.15);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--green-dark);
  box-shadow: 0 1px 4px rgba(14, 61, 43, 0.04);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.dash-pill .pill-dot {
  font-size: 9px;
  color: var(--gold);
}
.dash-pill:hover {
  transform: translateY(-1px);
  border-color: var(--gold);
  box-shadow: 0 3px 8px rgba(14, 61, 43, 0.08);
}
.dash-info-box {
  background: #fff;
  padding: 24px 22px;
  border-radius: 16px;
  border: 1px solid rgba(26, 92, 67, 0.12);
  box-shadow: 0 4px 16px rgba(14, 61, 43, 0.04);
}
.dash-box-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(26, 92, 67, 0.08);
  padding-bottom: 12px;
}
.dash-box-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dash-info-box h4 {
  font-family: var(--serif);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 2px;
}
.dash-info-box .dash-note {
  font-size: 11.5px;
  color: var(--ink-muted);
  margin: 0;
}
.check-list-s {
  list-style: none;
  padding: 0;
}
.check-list-s li {
  position: relative;
  padding-left: 24px;
  font-size: 13.5px;
  margin-bottom: 10px;
  line-height: 1.55;
  color: var(--ink-light);
}
.check-list-s li:last-child {
  margin-bottom: 0;
}
.check-list-s li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--gold-dark);
  font-weight: 900;
  font-size: 15px;
}

/* 料金ページ：ダッシュボードプレビュー */
.common-dashboard-preview {
  margin: 16px 0 18px 0;
  background: #f7faf8;
  border: 1px solid rgba(26, 92, 67, 0.12);
  border-radius: 12px;
  padding: 10px;
}
.cdp-thumb-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(26, 92, 67, 0.06);
}
.cdp-thumb {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.common-dashboard-preview:hover .cdp-thumb {
  transform: scale(1.02);
}
.cdp-note {
  font-size: 11.5px;
  color: #b05e19;
  font-weight: 600;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .dashboard-wrap {
    padding: 40px;
  }
  .dashboard-intro {
    gap: 40px;
  }
}
@media (max-width: 820px) {
  .dashboard-wrap {
    padding: 32px 20px;
    margin-top: 40px;
  }
  .dashboard-head h3 {
    font-size: 24px;
  }
  .dashboard-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .dashboard-visual {
    order: 2;
  }
  .dashboard-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .mockup-main,
  .mockup-sub {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
  .dashboard-text {
    order: 1;
  }
  .dash-info-box {
    padding: 24px;
  }
}

/* -----------------------------------------
   価格・メニューページ
----------------------------------------- */
.plan-menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
  align-items: stretch;
}

.plan-menu-card {
  background: var(--white);
  border-radius: 18px;
  border: 1px solid rgba(26, 92, 67, 0.12);
  box-shadow: 0 8px 24px rgba(14, 61, 43, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.plan-menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(14, 61, 43, 0.1);
}

/* プラン別カラーテーマ */
.plan-menu-card.plan-light {
  border-top: 5px solid #5a8a75;
}
.plan-menu-card.plan-light .pmc-badge {
  background: #eef5f1;
  color: #3b6b57;
  border: 1px solid rgba(59, 107, 87, 0.25);
}

.plan-menu-card.plan-standard {
  border-top: 5px solid var(--gold);
  border-color: rgba(194, 162, 75, 0.4);
  box-shadow: 0 12px 30px rgba(194, 162, 75, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #fbf9f4 100%);
}
.plan-menu-card.plan-standard:hover {
  border-color: var(--gold);
  box-shadow: 0 18px 40px rgba(194, 162, 75, 0.2);
}
.plan-menu-card.plan-standard .pmc-badge {
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
}

.plan-menu-card.plan-premium {
  border-top: 5px solid var(--green-deep);
  background: linear-gradient(180deg, #ffffff 0%, #f4f8f6 100%);
}
.plan-menu-card.plan-premium .pmc-badge {
  background: var(--green-deep);
  color: #fff;
  border: 1px solid var(--green-deep);
}

/* おすすめリボン */
.pmc-pop-ribbon {
  position: absolute;
  top: 14px;
  right: -32px;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 36px;
  transform: rotate(45deg);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

/* カードヘッダー */
.pmc-header {
  padding: 28px 26px 20px 26px;
  border-bottom: 1px solid rgba(26, 92, 67, 0.08);
}
.pmc-badge-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.pmc-badge {
  font-size: 11.5px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}
.pmc-type {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--green-dark);
}
.pmc-title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
  line-height: 1.35;
}
.pmc-summary {
  font-size: 13.5px;
  color: var(--ink-light);
  line-height: 1.65;
  margin: 0;
}

/* カードボディ */
.pmc-body {
  padding: 24px 26px 28px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ベースプラン引き継ぎバナー */
.pmc-base-note {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 92, 67, 0.06);
  border: 1px dashed rgba(26, 92, 67, 0.2);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12.5px;
  color: var(--green-deep);
  margin-bottom: 18px;
}
.pmc-plus-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-deep);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.pmc-list-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pmc-list-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(26, 92, 67, 0.12);
}

.pmc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pmc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink);
}

.pmc-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 11.5px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-standard .pmc-check {
  background: rgba(194, 162, 75, 0.15);
  color: #8c6f1a;
}
.plan-premium .pmc-check {
  background: rgba(14, 61, 43, 0.12);
  color: var(--green-deep);
}

.pmc-list strong {
  color: var(--green-dark);
  font-weight: 700;
  display: block;
}

.pmc-subtext {
  display: block;
  font-size: 12px;
  color: var(--ink-light);
  margin-top: 2px;
  line-height: 1.45;
}

.pm-cat-note {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.65;
  text-align: center;
}

@media (max-width: 1024px) {
  .plan-menu-cards {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .pmc-header {
    padding: 24px 20px 16px 20px;
  }
  .pmc-body {
    padding: 20px 20px 24px 20px;
  }
  .pmc-title {
    font-size: 19px;
  }
}

.price-menu-list {
  margin-top: 24px;
}
.pm-category {
  margin-bottom: 24px;
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  border: 1px solid rgba(26,92,67,0.08);
}
.pm-cat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 17px;
  color: var(--green-dark);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--green-soft);
}
.pm-cat-head .num {
  font-size: 14px;
  color: var(--gold);
  border: 1px solid var(--gold);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.pm-category ul {
  padding-left: 10px;
}
.pm-category li {
  font-size: 14px;
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 6px;
  line-height: 1.6;
}
.pm-category li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--green-deep);
  font-weight: 900;
}
.pm-note {
  font-size: 12px;
  color: var(--ink-light);
  margin-top: 16px;
}

/* オプションメニュー */
.option-menu {
  padding: 96px 0;
}
.bg-soft {
  background: var(--green-soft);
}
.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 24px;
}
.option-item {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 92, 67, 0.08);
  transition: transform 0.3s;
}
.option-item:hover {
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  .option-menu {
    padding: 56px 0;
  }
  .option-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .option-item {
    padding: 20px 18px;
  }
}
.opt-name {
    font-family: var(--serif);
    font-weight: 700;
    color: var(--green-dark);
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}
.mt-20 {
  margin-top: 20px;
}
.opt-list {
  padding-left: 0;
  list-style: none;
}
.opt-list li {
    font-size: 14.5px;
    color: var(--ink);
    line-height: 1.6;
    position: relative;
    padding-left: 18px;
}
.opt-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.opt-list small, .pm-category small {
  display: block;
  font-size: 0.85em;
  color: var(--ink-light);
  line-height: 1.4;
  margin-top: 2px;
}
.pm-cat-note {
  font-size: 13.5px;
  color: var(--alert);
  background: var(--alert-bg);
  border: 1px solid rgba(182, 68, 44, 0.25);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  margin-top: 24px;
  line-height: 1.6;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(182, 68, 44, 0.05);
}
.opt-price {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 12px;
}
.opt-desc {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.7;
}
.option-note {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-light);
}

/* ==========================================================================
   ◆ 共通パーツ：フッター
   ========================================================================== */
footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, .85);
  padding: 80px 0 32px;
}

.foot-main {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}
.foot-brand .foot-logo-icon {
  height: 44px;
  width: auto;
  display: block;
}
.foot-brand .foot-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}
.foot-brand .brand-txt .name {
  color: #fff;
  font-size: 20px;
}
.foot-brand .brand-txt .corp {
  color: rgb(163, 196, 181);
}
.foot-brand p {
  margin-top: 16px;
  font-size: 13px;
  line-height: 2;
  opacity: .85;
}
.foot-col h4 {
    font-family: var(--serif);
    font-size: 14px;
    letter-spacing: .2em;
    color: var(--gold-light);
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}
.foot-col li {
  margin-bottom: 10px;
}

.foot-col a {
    font-size: 14px;
    color: #e0eee7;
    transition: color .2s;
}
.foot-col a:hover {
  opacity: 1;
  color: var(--gold-light);
}
.foot-bottom {
    text-align: center;
    font-size: 12px;
    color: #8faea2;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 28px;
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}
@media (max-width: 860px) {
  .foot-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ==========================================================================
   ◆ 共通パーツ：スマホ固定CTA
   ========================================================================== */
.sp-fixed-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  box-shadow: 0 -4px 20px rgba(14, 61, 43, .15);
  padding: 10px 14px;
  gap: 10px;
}
.sp-fixed-cta .btn {
  padding: 13px 8px;
  border-radius: 12px;
}
.sp-fixed-cta .sp-btn-main {
  flex: 1.35;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(26, 92, 67, .3);
}
.sp-fixed-cta .sp-btn-line {
  flex: 1;
  font-size: 13.5px;
  font-weight: 700;
}

@media (max-width: 860px) {
  .sp-fixed-cta {
    display: flex;
  }
  body {
    padding-bottom: 70px;
  }
}

/* ==========================================================================
   ◆ パンくずリスト
   ========================================================================== */
.breadcrumb-nav {
  background: var(--bg);
  border-bottom: 1px solid rgba(26, 92, 67, 0.08);
  padding: 12px 0;
  font-size: 13px;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumb-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-light);
}
.breadcrumb-list li:not(:last-child)::after {
  content: "›";
  font-size: 13px;
  color: rgba(26, 92, 67, 0.4);
}
.breadcrumb-list a {
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-list a:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}
.breadcrumb-list li[aria-current="page"] span,
.breadcrumb-list li.current span {
  color: var(--green-dark);
  font-weight: 500;
  max-width: 480px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  vertical-align: bottom;
}
@media (max-width: 860px) {
  .breadcrumb-nav {
    padding: 10px 0;
    font-size: 12px;
  }
  .breadcrumb-list li[aria-current="page"] span,
  .breadcrumb-list li.current span {
    max-width: 220px;
  }
}

/* ==========================================================================
   ◆ お知らせ一覧・詳細
   ========================================================================== */
.news-list-wrap {
  background: var(--bg);
  padding: 80px 0;
}
.news-list-link {
  display: block;
  margin-bottom: 24px;
}
.news-item-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 92, 67, 0.06);
  transition: transform .25s, box-shadow .25s;
}
.news-item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.news-date {
  font-size: 13.5px;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--serif);
}
.news-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.5;
  margin-bottom: 12px;
  font-family: var(--serif);
}
.news-preview {
  font-size: 14.5px;
  color: var(--ink-light);
  line-height: 1.7;
}
.news-empty {
  text-align: center;
  padding: 80px;
  font-size: 16px;
  color: var(--ink-light);
}

/* お知らせ詳細 */
.news-detail-section,
.news-detail-container {
  background: var(--bg);
  padding: 72px 0 96px;
}
.news-detail-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 56px 48px;
  box-shadow: 0 4px 24px rgba(14, 61, 43, 0.06);
  border: 1px solid rgba(26, 92, 67, 0.08);
  position: static;
}
.news-detail-head,
.news-detail-header {
  position: static !important;
  z-index: auto !important;
  background: transparent !important;
  backdrop-filter: none !important;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(26, 92, 67, 0.12);
}
.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.news-detail-badge {
  display: inline-flex;
  align-items: center;
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}
.news-detail-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14.5px;
  color: var(--gold-dark);
  font-weight: 700;
  font-family: var(--serif);
  letter-spacing: 0.04em;
}
.news-date-icon {
  stroke: var(--gold-dark);
  flex-shrink: 0;
}
.news-detail-title {
  font-family: var(--serif);
  font-size: clamp(22px, 3.8vw, 32px);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.48;
  letter-spacing: 0.02em;
  margin: 0;
}
.news-detail-thumb {
  margin-bottom: 36px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  text-align: center;
  background: var(--bg);
}
.news-detail-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}
.news-detail-body {
  font-size: 16px;
  line-height: 2.15;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.news-detail-content {
  word-break: break-word;
}
.news-detail-content p {
  margin-bottom: 1.8em;
}
.news-detail-content p:last-child {
  margin-bottom: 0;
}
.news-detail-content h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark);
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.news-detail-content h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--green-dark);
  margin: 32px 0 16px;
  padding-left: 12px;
  border-left: 4px solid var(--green-deep);
}
.news-detail-content ul,
.news-detail-content ol {
  margin: 20px 0 24px;
  padding-left: 24px;
}
.news-detail-content li {
  margin-bottom: 8px;
}
.news-detail-content blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  background: var(--green-light);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  color: var(--ink);
  font-style: italic;
}
.news-detail-content a {
  color: var(--green-deep);
  text-decoration: underline;
  font-weight: 500;
}
.news-detail-content a:hover {
  color: var(--gold-dark);
}

/* 記事下部 CTA ボックス */
.news-cta-box {
  margin-top: 56px;
  background: linear-gradient(135deg, rgba(26, 92, 67, 0.04) 0%, rgba(194, 162, 75, 0.08) 100%);
  border: 1px solid rgba(194, 162, 75, 0.35);
  border-radius: 14px;
  padding: 36px 32px;
  text-align: center;
}
.news-cta-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  background: rgba(194, 162, 75, 0.15);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.news-cta-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 12px;
  line-height: 1.5;
}
.news-cta-text {
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-light);
  margin-bottom: 24px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.news-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.news-cta-btns .btn {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
}
.news-cta-btns .news-cta-btn-main {
  box-shadow: 0 4px 14px rgba(26, 92, 67, 0.25);
}
.news-cta-btns .news-cta-btn-line {
  box-shadow: 0 4px 14px rgba(6, 199, 85, 0.25);
}
.news-cta-btns .news-cta-btn-diag {
  box-shadow: 0 4px 14px rgba(194, 162, 75, 0.25);
}

/* 一覧へ戻るボタン */
.news-detail-back,
.news-detail-footer {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(26, 92, 67, 0.1);
  text-align: center;
  background: transparent !important;
  position: static !important;
}
.news-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  background: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.news-back-btn:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(194, 162, 75, 0.3);
}
.news-back-btn .arw-left {
  transition: transform 0.25s ease;
}
.news-back-btn:hover .arw-left {
  transform: translateX(-4px);
}

@media (max-width: 860px) {
  .news-list-wrap {
    padding: 56px 0;
  }
  .news-item-card {
    padding: 24px;
    flex-direction: column;
    gap: 16px;
  }
  .news-title {
    font-size: 18px;
  }
  
  .news-detail-section,
  .news-detail-container {
    padding: 36px 16px 60px;
  }
  .news-detail-card {
    padding: 28px 18px;
    border-radius: 12px;
  }
  .news-detail-head,
  .news-detail-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }
  .news-detail-title {
    font-size: clamp(20px, 5.5vw, 24px);
    line-height: 1.45;
  }
  .news-detail-body {
    font-size: 15px;
    line-height: 1.95;
  }
  .news-cta-box {
    padding: 24px 16px;
    margin-top: 40px;
  }
  .news-cta-title {
    font-size: 17px;
  }
  .news-cta-text {
    font-size: 13px;
    line-height: 1.75;
    margin-bottom: 20px;
  }
  .news-cta-btns {
    flex-direction: column;
    gap: 10px;
  }
  .news-cta-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .news-back-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   アニメーション
   ========================================================================== */
.fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade.show {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   共通ページヘッダー
   ========================================================================== */
.page-header {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-deep) 100%);
  color: #fff;
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(194, 162, 75, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.page-header .en {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.3em;
  margin-bottom: 16px;
  display: block;
  text-transform: uppercase;
}
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

/* ==========================================================================
   サービス（3つの柱）個別スタイル
   ========================================================================== */
.service-hero {
  padding: 72px 0 60px;
}
.service-header-lead {
  font-size: 15.5px;
  color: var(--green-soft);
  margin-top: 16px;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* クイックアンカーナビゲーション */
.service-nav-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(26, 92, 67, 0.1);
  box-shadow: 0 4px 16px rgba(14, 61, 43, 0.04);
  position: sticky;
  top: 72px;
  z-index: 90;
  padding: 10px 0;
}
.service-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.service-nav-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--green-light);
  border: 1px solid rgba(26, 92, 67, 0.12);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--green-dark);
  transition: all 0.2s ease;
}
.service-nav-item:hover {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 92, 67, 0.2);
}
.service-nav-item .s-nav-num {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  background: rgba(194, 162, 75, 0.15);
  padding: 2px 6px;
  border-radius: 6px;
}
.service-nav-item:hover .s-nav-num {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.service-nav-item.service-nav-plan {
  background: var(--gold-light);
  border-color: rgba(194, 162, 75, 0.4);
  color: #5c4712;
}
.service-nav-item.service-nav-plan .s-nav-icon {
  color: var(--gold-dark);
}
.service-nav-item.service-nav-plan:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.pillars {
  background: var(--bg);
  padding: 70px 0 100px;
}

/* 3つの柱 全体概要サマリーカード */
.pillar-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.pillar-summary-badge-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(26, 92, 67, 0.1);
  box-shadow: 0 4px 18px rgba(14, 61, 43, 0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.pillar-summary-badge-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green-deep);
  transition: height 0.2s ease;
}
.pillar-summary-badge-card.card-cost::before {
  background: var(--gold);
}
.pillar-summary-badge-card.card-empower::before {
  background: #257252;
}
.pillar-summary-badge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(26, 92, 67, 0.2);
}
.pillar-summary-badge-card:hover::before {
  height: 6px;
}
.psbc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.psbc-num {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--green-deep);
}
.card-cost .psbc-num {
  color: var(--gold-dark);
}
.card-empower .psbc-num {
  color: #1a6b4c;
}
.psbc-tag {
  font-size: 11px;
  font-weight: 700;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 3px 8px;
  border-radius: 999px;
}
.psbc-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-light);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card-cost .psbc-icon-box {
  background: var(--gold-light);
  color: var(--gold-dark);
}
.card-empower .psbc-icon-box {
  background: #e6f4ed;
  color: #1a6b4c;
}
.pillar-summary-badge-card h4 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.pillar-summary-badge-card p {
  font-size: 13.5px;
  color: var(--ink-light);
  line-height: 1.65;
  margin-bottom: 18px;
  flex-grow: 1;
}
.psbc-arrow {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-cost .psbc-arrow {
  color: var(--gold-dark);
}
.card-empower .psbc-arrow {
  color: #1a6b4c;
}

/* 柱カード */
.pillar-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 6px 28px rgba(14, 61, 43, 0.05);
  border: 1px solid rgba(26, 92, 67, 0.1);
  border-top: 6px solid var(--green-deep);
  padding: 48px 44px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(14, 61, 43, 0.1);
}
.pillar-card:last-of-type {
  margin-bottom: 0;
}
.pillar-card.cost {
  border-top-color: var(--gold);
}
.pillar-card.empower {
  border-top-color: #257252;
}

.pillar-card-watermark {
  position: absolute;
  top: 16px;
  right: 28px;
  font-family: var(--serif);
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  color: rgba(26, 92, 67, 0.04);
  pointer-events: none;
  user-select: none;
}
.pillar-card.cost .pillar-card-watermark {
  color: rgba(194, 162, 75, 0.06);
}
.pillar-card.empower .pillar-card-watermark {
  color: rgba(37, 114, 82, 0.05);
}

.pillar-card-header {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}
.pillar-tag-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.pillar-card .pillar-num {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 800;
  color: #ffffff;
  background: var(--green-deep);
  padding: 4px 14px;
  border-radius: 999px;
}
.pillar-card.cost .pillar-num {
  background: var(--gold-dark);
}
.pillar-card.empower .pillar-num {
  background: #257252;
}
.pillar-subtag {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink-light);
}

.pillar-title-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-light);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(26, 92, 67, 0.08);
}
.cost .cost-icon-badge {
  background: var(--gold-light);
  color: var(--gold-dark);
  box-shadow: 0 4px 14px rgba(194, 162, 75, 0.15);
}
.empower .empower-icon-badge {
  background: #e6f4ed;
  color: #1a6b4c;
  box-shadow: 0 4px 14px rgba(26, 107, 76, 0.1);
}

.pillar-card h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--green-dark);
  margin: 0;
  letter-spacing: 0.02em;
}

/* 実現すること ボックス */
.pillar-benefit {
  background: linear-gradient(135deg, #f0f7f3 0%, #eaf4ee 100%);
  padding: 24px 28px;
  border-radius: 14px;
  margin-bottom: 34px;
  border-left: 5px solid var(--green-deep);
  box-shadow: 0 2px 10px rgba(14, 61, 43, 0.03);
  position: relative;
  z-index: 1;
}
.pillar-card.cost .pillar-benefit {
  background: linear-gradient(135deg, #fdfbf4 0%, #f7f1e1 100%);
  border-left-color: var(--gold);
}
.pillar-card.empower .pillar-benefit {
  background: linear-gradient(135deg, #f0f8f4 0%, #e5f3ec 100%);
  border-left-color: #257252;
}

.pillar-benefit-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}
.pillar-benefit-label {
  display: inline-block;
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.pillar-card.cost .pillar-benefit-label {
  color: #8c6f1f;
}
.pillar-card.empower .pillar-benefit-label {
  color: #1a6b4c;
}
.pillar-benefit-en {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--ink-muted);
}
.pillar-benefit p {
  font-size: 15.5px;
  margin: 0;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.8;
}

/* メニューセクション */
.pillar-menu-section {
  position: relative;
  z-index: 1;
}
.pillar-menu-title-bar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(26, 92, 67, 0.1);
  flex-wrap: wrap;
  gap: 8px;
}
.pillar-menu-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pillar-menu-title::before {
  content: "";
  width: 4px;
  height: 16px;
  background: var(--green-deep);
  border-radius: 2px;
  display: inline-block;
}
.pillar-card.cost .pillar-menu-title::before {
  background: var(--gold);
}
.pillar-card.empower .pillar-menu-title::before {
  background: #257252;
}
.pillar-menu-desc {
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 500;
}

.pillar-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.pillar-item {
  background: #f8fbf9;
  border: 1px solid rgba(26, 92, 67, 0.08);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.25s ease;
}
.pillar-item:hover {
  background: #ffffff;
  border-color: rgba(26, 92, 67, 0.24);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 61, 43, 0.07);
}
.pillar-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  margin-top: 1px;
  box-shadow: 0 2px 6px rgba(26, 92, 67, 0.2);
}
.pillar-card.cost .pillar-check {
  background: var(--gold);
  box-shadow: 0 2px 6px rgba(194, 162, 75, 0.3);
}
.pillar-card.empower .pillar-check {
  background: #257252;
  box-shadow: 0 2px 6px rgba(37, 114, 82, 0.25);
}
.pillar-item-text {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .pillar-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-nav-bar {
    top: 60px;
    padding: 8px 0;
  }
  .service-nav-list {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 0 4px 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .service-nav-list::-webkit-scrollbar {
    display: none;
  }
  .service-nav-item {
    flex-shrink: 0;
    font-size: 12.5px;
    padding: 6px 14px;
  }
  .pillar-overview-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pillar-card {
    padding: 32px 20px;
    border-radius: 18px;
    margin-bottom: 40px;
  }
  .pillar-card-watermark {
    font-size: 80px;
    top: 10px;
    right: 14px;
  }
  .pillar-card h3 {
    font-size: 22px;
  }
  .pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }
  .pillar-icon svg {
    width: 24px;
    height: 24px;
  }
  .pillar-benefit {
    padding: 18px 18px;
    border-radius: 10px;
  }
  .pillar-items {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pillar-item {
    padding: 14px 16px;
    border-radius: 10px;
  }
}

/* クロージング ステートメント */
.service-closing {
  margin-top: 72px;
}
.service-closing-box {
  background: linear-gradient(135deg, var(--green-dark) 0%, #134633 100%);
  border: 1px solid rgba(194, 162, 75, 0.35);
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 12px 36px rgba(14, 61, 43, 0.15);
  position: relative;
  overflow: hidden;
}
.service-closing-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(194, 162, 75, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.closing-decor {
  font-family: var(--serif);
  font-size: 60px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.35;
  position: absolute;
  user-select: none;
  pointer-events: none;
}
.closing-decor-left {
  top: 16px;
  left: 24px;
}
.closing-decor-right {
  bottom: 12px;
  right: 24px;
}
.closing-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.24em;
  color: var(--gold-light);
  border: 1px solid rgba(194, 162, 75, 0.5);
  padding: 4px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.service-closing-box p {
  font-family: var(--serif);
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.85;
  margin: 0;
  position: relative;
  z-index: 1;
  letter-spacing: 0.04em;
}

/* プラン紹介セクション */
.service-plans-intro {
  margin-top: 96px;
  padding-top: 24px;
}
.service-plans-intro .plans-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 36px;
}
.service-plans-intro .plan-summary-card {
  background: var(--white);
  border: 1px solid rgba(26, 92, 67, 0.12);
  border-radius: 20px;
  padding: 36px 30px;
  box-shadow: 0 6px 20px rgba(14, 61, 43, 0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}
.service-plans-intro .plan-summary-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(26, 92, 67, 0.3);
}
.service-plans-intro .plan-summary-card.featured {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, #ffffff 0%, #fdfbf7 100%);
  box-shadow: 0 8px 30px rgba(194, 162, 75, 0.15);
}
.plan-card-top-meta {
  margin-bottom: 14px;
}
.plan-type-badge {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--green-deep);
  background: var(--green-light);
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}
.plan-type-badge.featured-badge {
  color: #fff;
  background: var(--gold);
}
.service-plans-intro .plan-summary-card h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--green-dark);
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(26, 92, 67, 0.08);
}
.service-plans-intro .plan-summary-card p {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.75;
  margin: 0;
  flex-grow: 1;
}
.plan-summary-link-hint {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px dashed rgba(26, 92, 67, 0.12);
  font-size: 14px;
  font-weight: 800;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-plans-btn-wrap {
  text-align: center;
  margin-top: 40px;
}
.btn-pill-service {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
  color: var(--white) !important;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 48px;
  border-radius: 9999px;
  box-shadow: 0 6px 20px rgba(26, 92, 67, 0.28);
  transition: all 0.25s ease;
}
.btn-pill-service:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(26, 92, 67, 0.38);
}
.btn-pill-service .arw {
  transition: transform 0.2s ease;
}
.btn-pill-service:hover .arw {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .service-plans-intro .plans-summary-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* サービス専用 CTA セクション */
.service-cta-outer {
  padding: 80px 0 100px;
  background: var(--bg);
}
.service-cta-card {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid rgba(26, 92, 67, 0.12);
  padding: 56px 40px;
  box-shadow: 0 8px 32px rgba(14, 61, 43, 0.05);
}
.service-cta-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.service-cta-btns .btn-hero-primary {
  max-width: 520px;
  width: 100%;
  font-size: 17px;
  padding: 18px 36px;
  box-shadow: 0 8px 24px rgba(26, 92, 67, 0.32);
}
.service-cta-sub-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 520px;
}
.service-sub-btn {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  font-size: 15px;
}
.service-cta-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(26, 92, 67, 0.08);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-light);
}

@media (max-width: 768px) {
  .service-cta-card {
    padding: 36px 20px;
    border-radius: 18px;
  }
  .service-cta-sub-btns {
    flex-direction: column;
    width: 100%;
  }
  .service-sub-btn {
    width: 100%;
    min-width: 0;
  }
  .service-cta-trust {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

@media (max-width: 860px) {
  .page-header {
    padding: 60px 0;
  }
}

/* ==========================================================================
   ヒーロー（ファーストビュー）
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(194, 162, 75, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(26, 92, 67, 0.08) 0%, transparent 40%),
              var(--bg);
  padding: 88px 0 72px;
}
.hero-in {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
}
.hero .tagline {
  display: inline-flex;
  align-items: center;
  color: var(--green-deep);
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: rgba(14, 61, 43, 0.04) 0px 2px 8px;
  gap: 6px;
  background: var(--white);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(194, 162, 75, 0.6);
  border-image: none;
  padding: 6px 16px;
  border-radius: 999px;
}
.hero .tagline::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 700;
  line-height: 1.55;
  color: var(--green-dark);
  letter-spacing: .02em;
}
.hero h1 .u {
  background: linear-gradient(transparent 68%, var(--gold-light) 68%);
}
.hero .sub {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 20px;
}
.hero-concerns-box {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(26, 92, 67, 0.12);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin: 18px 0 16px;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 10px rgba(14, 61, 43, 0.03);
}
.hero-concerns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-concerns li {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hc-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(194, 162, 75, 0.15);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}
.hero-desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink-light);
  margin-bottom: 12px;
}
.hero-catch {
  font-size: 16px;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.hero-catch strong {
  background: linear-gradient(transparent 60%, var(--gold-light) 60%);
  color: var(--green-dark);
  padding: 0 4px;
  font-weight: 700;
}
@media (max-width: 640px) {
  .hero-concerns-box {
    padding: 12px 14px;
  }
  .hero-concerns {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.hero .brand-msg {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.12em;
  margin-bottom: 32px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16px;
  gap: 14px;
}
.hero-cta .btn{
  min-width: 200px;
  flex: 1 1 0%;
}
.btn-hero-primary {
  padding: 17px 34px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(26, 92, 67, .35);
}
.btn-hero-line {
  padding: 15px 26px;
  font-size: 14.5px;
}
.btn-hero-diag {
  padding: 14px 22px;
  font-size: 14px;
}
.hero-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--ink-light);
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 36px rgba(14, 61, 43, 0.12));
}
@media (max-width: 1024px) {
  .hero-logo {
    max-width: 340px;
  }
}
@media (max-width: 860px) {
  .hero-logo {
    max-width: 280px;
  }
}

/* 対象地域・業種バー */
.trust-bar {
  border-top: 1px solid rgba(26, 92, 67, .12);
  margin-top: 64px;
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  justify-content: center;
}
.trust-bar .t-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: .1em;
}
.chip {
  background: var(--white);
  border: 1px solid rgba(26, 92, 67, .18);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
}

/* ==========================================================================
   お悩みセクション
   ========================================================================== */
.worries {
  background: var(--white);
  position: relative;
}
.worry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.worry-card {
  background: #fdfefe;
  border: 1px solid rgba(26, 92, 67, 0.1);
  border-top: 3px solid var(--green-deep);
  border-radius: 14px;
  padding: 24px 22px 26px;
  box-shadow: 0 4px 18px rgba(14, 61, 43, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.worry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(194, 162, 75, 0.45);
  border-top-color: var(--gold);
}
.worry-card:nth-child(4),
.worry-card:nth-child(5) {
  /* 下段2枚を綺麗にバランスよく配置 */
}
@media (min-width: 861px) {
  .worry-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .worry-card:nth-child(1),
  .worry-card:nth-child(2),
  .worry-card:nth-child(3) {
    grid-column: span 2;
  }
  .worry-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
  .worry-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}
@media (max-width: 860px) {
  .worry-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.worry-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(26, 92, 67, 0.12);
}
.worry-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.worry-card:hover .worry-icon {
  background: var(--gold-light);
  color: var(--gold-dark);
  transform: scale(1.05);
}
.worry-category {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.03em;
}
.worry-card-body {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-grow: 1;
}
.worry-check-mark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(194, 162, 75, 0.15);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  margin-top: 1px;
}
.worry-card:hover .worry-check-mark {
  background: var(--gold);
  color: #fff;
}
.worry-text {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.65;
  margin: 0;
}
.worry-close {
  text-align: center;
  margin-top: 44px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--green-deep);
}

/* ==========================================================================
   問題提起（濃色バンド）
   ========================================================================== */
.problem {
  padding: 52px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-deep) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.problem::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border: 2px solid rgba(194, 162, 75, .25);
  border-radius: 50%;
}
.problem::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 60px;
  width: 280px;
  height: 280px;
  border: 2px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
}
.problem .inner {
  position: relative;
  z-index: 1;
  max-width: 840px;
}
.problem h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.problem h2 .accent {
  color: var(--gold-light);
}
.problem p {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.95;
  color: rgba(255, 255, 255, .92);
}
.problem .risk {
  background: rgba(0, 0, 0, .32);
  border-left: 5px solid var(--gold);
  border: 1px solid rgba(194, 162, 75, .35);
  border-left: 5px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 18px 24px;
  margin-top: 20px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
}
.problem .risk strong {
  color: #ffea9f;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(194, 162, 75, 0.7);
}

/* ==========================================================================
   位置づけ＋5つの約束
   ========================================================================== */
.position .statement {
  max-width: 840px;
  margin: 0 auto 64px;
  text-align: center;
}
.position .statement p {
  margin-top: 22px;
  color: var(--ink);
  font-size: 15.5px;
  text-align: left;
}
.promises {
  background: var(--white);
}
.promise-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
.promise {
  flex: 0 0 calc((100% - 44px) / 3);
  max-width: calc((100% - 44px) / 3);
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: 0 4px 20px rgba(14, 61, 43, .07);
  border: 1px solid rgba(26, 92, 67, 0.08);
  border-top: 4px solid var(--gold);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (max-width: 860px) {
  .promise {
    flex: 0 0 calc((100% - 22px) / 2);
    max-width: calc((100% - 22px) / 2);
  }
}
@media (max-width: 600px) {
  .promise {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 24px 20px;
  }
}
.promise:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(194, 162, 75, 0.35);
}
.promise-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.promise-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.promise-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  opacity: .95;
}
.promise-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--green-soft);
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(26, 92, 67, 0.14);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.promise-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-soft) 0%, #dcebe3 100%);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(14, 61, 43, 0.05);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.promise:hover .promise-icon {
  background: linear-gradient(135deg, var(--gold-light) 0%, #f0e1be 100%);
  color: var(--gold-dark);
  transform: scale(1.06);
}
.promise-icon svg {
  width: 25px;
  height: 25px;
  display: block;
}
.promise h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0 0 12px;
  line-height: 1.55;
}
.promise p {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.9;
  margin: 0;
}
@media (max-width: 600px) {
  .promise-header {
    margin-bottom: 14px;
  }
  .promise-num {
    font-size: 26px;
  }
  .promise-icon {
    width: 42px;
    height: 42px;
  }
  .promise-icon svg {
    width: 22px;
    height: 22px;
  }
  .promise h3 {
    font-size: 17px;
  }
}

/* ==========================================================================
   比較表
   ========================================================================== */
.compare {
  background: var(--white);
}
.tbl-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  -webkit-overflow-scrolling: touch;
}
table.cmp {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 720px;
  font-size: 14.5px;
}
table.cmp th, table.cmp td {
  padding: 16px 14px;
  text-align: center;
  border-bottom: 1px solid rgba(26, 92, 67, .1);
}
table.cmp thead th {
  background: var(--green-dark);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
table.cmp thead th:first-child {
  text-align: left;
  padding-left: 22px;
  position: sticky;
  left: 0;
  z-index: 3;
  box-shadow: 2px 0 4px rgba(0, 0, 0, 0.08);
}
table.cmp tbody th {
  text-align: left;
  font-weight: 700;
  color: var(--green-dark);
  padding-left: 22px;
  background: var(--green-soft);
  white-space: nowrap;
  position: sticky;
  left: 0;
  z-index: 2;
  box-shadow: 2px 0 4px rgba(0, 0, 0, 0.05);
}
table.cmp tbody td.you {
  background: #fdf8eb;
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  border-left: 2px solid rgba(194, 162, 75, 0.4);
  border-right: 2px solid rgba(194, 162, 75, 0.4);
}
table.cmp tbody td.you.ok {
  color: var(--green-deep);
  font-size: 24px;
}
table.cmp tbody td.you.tri {
  color: #b08d33;
  font-size: 22px;
}
table.cmp tbody td.you.no {
  color: #a0aca6;
  font-size: 20px;
}
table.cmp thead .you {
  background: var(--gold);
  color: #fff;
  font-size: 15px;
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}
table.cmp .ok {
  color: var(--green-deep);
}
table.cmp .tri {
  color: var(--gold);
}
table.cmp .no {
  color: #c5cdc9;
}
.cmp-note {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--ink-light);
  text-align: right;
}

/* ==========================================================================
   3つの柱
   ========================================================================== */
.pillars {
  background: linear-gradient(180deg, var(--bg) 0%, var(--green-soft) 100%);
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.pillar {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: .3s;
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.pillar .p-head {
  background: var(--green-deep);
  color: #fff;
  padding: 26px 26px 22px;
  position: relative;
}
.pillar:nth-child(2) .p-head {
  background: var(--green-dark);
}
.pillar:nth-child(3) .p-head {
  background: linear-gradient(135deg, var(--gold), #a8863a);
}
.pillar .p-no {
  font-size: 12px;
  letter-spacing: .24em;
  opacity: .8;
  font-weight: 700;
}
.pillar .p-head h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  margin-top: 6px;
}
.pillar .p-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.pillar .p-body p {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.95;
  flex-grow: 1;
}
.pillar .p-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: 20px;
  padding: 9px 20px;
  background: var(--green-soft);
  color: var(--green-deep);
  border: 1px solid rgba(26, 92, 67, 0.25);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(26, 92, 67, 0.08);
  transition: all .25s ease;
}
.pillar:hover .p-more {
  background: var(--green-deep);
  color: #fff;
  border-color: var(--green-deep);
  box-shadow: 0 4px 12px rgba(26, 92, 67, 0.25);
}
.pillar .p-more .arw {
  transition: transform .25s;
}
.pillar:hover .p-more .arw {
  transform: translateX(4px);
}

/* ==========================================================================
   ◆ 共通パーツ：無料診断CTAバンド
   ========================================================================== */
.diagnosis-band {
  background: var(--green-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.diagnosis-band::before {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -160px;
  width: 380px;
  height: 380px;
  border: 2px solid rgba(194, 162, 75, .3);
  border-radius: 50%;
}
.diag-in {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
}
.diag-in .en {
   text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .28em;
  color: var(--gold-light);
  font-weight: 700;
}
.diag-in h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  line-height: 1.7;
  margin-top: 12px;
}
.diag-in p {
  margin-top: 18px;
  font-size: 15px;
  color: rgba(255, 255, 255, .9);
}
.diag-in .diag-lead-text {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.85;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.22);
  border-left: 4px solid var(--gold);
  padding: 12px 18px;
  border-radius: 0 8px 8px 0;
  display: block;
}
.diag-in .diag-lead-text strong {
  color: #ffea9f;
  font-weight: 700;
}
.diag-points {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.diag-points span {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
}
.diag-cta {
  text-align: center;
}
.diag-cta .free {
  display: inline-block;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: .2em;
  margin-bottom: 14px;
}
.diag-cta .btn {
  width: 100%;
  max-width: 360px;
  padding: 18px 30px;
  font-size: 16.5px;
  flex-direction: column;
  gap: 2px;
}
.diag-alt-cta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.diag-alt-txt {
  font-size: 12.5px;
  color: var(--gold-light) !important;
  margin-top: 0 !important;
  margin-bottom: 10px;
}
.diag-alt-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   料金・導入の流れ（概要）
   ========================================================================== */
.price-flow {
  background: var(--white);
  padding: 60px 0 80px;
}
.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 992px) {
  .pf-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
}
.price-card {
  background: var(--white);
  border: 1px solid rgba(26, 92, 67, 0.12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(14, 61, 43, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  width: 100%;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(14, 61, 43, 0.09);
}
.price-card.featured {
  border: 2px solid #deb862;
  box-shadow: 0 6px 24px rgba(194, 162, 75, 0.16);
}
.price-card.featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(194, 162, 75, 0.22);
}
.price-card .pc-head {
  background: #eef5f1;
  color: var(--green-dark);
  padding: 16px 24px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price-card.featured .pc-head {
  background: #faf6ec;
}
.price-card .pc-badge-rec {
  background: #c59b27;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.price-card .pc-body {
  padding: 34px 28px 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.price-card .pc-name {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 20px;
  line-height: 1.4;
}
.price-card .pc-price {
  font-family: var(--serif);
  color: var(--green-deep);
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}
.price-card .pc-price .yen-label {
  font-size: 20px;
  font-weight: 700;
}
.price-card .pc-price .yen-num {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}
.price-card .pc-price .unit {
  font-size: 20px;
  font-weight: 700;
}
.price-card .pc-add {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: #a68338;
  margin-bottom: 22px;
}
.price-card .pc-divider {
  border-top: 1px dotted #d0d7d3;
  margin-bottom: 22px;
}
.price-card .pc-note {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.75;
  margin: 0 0 24px 0;
  flex-grow: 1;
}
.price-card .pc-ex {
  background: #f2f7f4;
  border-radius: 12px;
  padding: 16px 18px;
  margin-top: auto;
  border: 1px solid rgba(26, 92, 67, 0.06);
}
.price-card .pc-ex-label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 4px;
}
.price-card .pc-ex-content {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.55;
}
.price-card .pc-tax {
  font-weight: 400;
  font-size: 13px;
  color: var(--ink-light);
}
.price-card-note-bottom {
  text-align: right;
  font-size: 12px;
  color: var(--ink-light);
  margin-top: 16px;
  margin-bottom: 0;
}
.pf-flow-head {
  margin-bottom: 32px;
  text-align: center;
}
.pf-flow-head .en {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .28em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pf-flow-head h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 700;
  color: var(--green-dark);
}
.price-card .btn {
  margin: 22px auto 0;
}
.pf-flow-head.text-center {
  text-align: center;
}
.price-flow-container {
  max-width: 800px;
  margin: 40px auto 0;
}
.price-cta-center {
  text-align: center;
  margin-bottom: 64px;
}
.btn-pill-dark, .btn.btn-primary.btn-pill-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 44px;
  border-radius: 999px;
  background: var(--green-dark);
  color: #fff;
  font-weight: 700;
  font-size: 15.5px;
  box-shadow: 0 6px 20px rgba(14, 61, 43, 0.22);
  transition: all .3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-pill-dark:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(14, 61, 43, 0.3);
}

.flow-head {
  margin-top: 10px;
  margin-bottom: 44px;
}
.flow-timeline-wrap {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.flow-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.flow-timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  bottom: 36px;
  left: 54px;
  width: 2px;
  background: #deb862;
  z-index: 1;
}
.flow-step-card {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(26, 92, 67, 0.08);
  box-shadow: 0 4px 18px rgba(14, 61, 43, 0.05);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  gap: 26px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.flow-step-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(14, 61, 43, 0.1);
  border-color: rgba(194, 162, 75, 0.4);
}
.flow-step-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(14, 61, 43, 0.2);
  border: 2px solid #fff;
}
.flow-step-content {
  flex: 1;
}
.flow-step-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
  line-height: 1.4;
}
.flow-step-content p {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 640px) {
  .flow-timeline::before {
    left: 42px;
  }
  .flow-step-card {
    padding: 18px 20px;
    gap: 16px;
  }
  .flow-step-badge {
    width: 40px;
    height: 40px;
    font-size: 14.5px;
  }
  .flow-step-content h4 {
    font-size: 15.5px;
  }
  .flow-step-content p {
    font-size: 13px;
  }
}

/* ==========================================================================
   画像拡大モーダル（ライトボックス）
   ========================================================================== */
.img-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.img-modal.is-open {
  display: flex;
}
.img-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 30, 20, 0.85);
  backdrop-filter: blur(8px);
  animation: modalFadeIn 0.25s ease-out;
}
.img-modal-dialog {
  position: relative;
  z-index: 1;
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: modalZoomIn 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.img-modal-close {
  position: absolute;
  top: -46px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.img-modal-close:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.08);
}
.img-modal-body {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  max-width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}
.img-modal-pic {
  max-width: 92vw;
  max-height: 75vh;
  object-fit: contain;
  display: block;
}
.img-modal-caption {
  padding: 12px 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--green-dark);
  background: #f7faf8;
  border-top: 1px solid rgba(26, 92, 67, 0.08);
  text-align: center;
  margin: 0;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modalZoomIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

/* ==========================================================================
   お知らせ（NEWS）セクション再調整
   ========================================================================== */
.news-sec {
  background: var(--white);
  padding: 80px 0;
}
.news-card-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.news-list-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.news-row-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg);
  padding: 20px 24px;
  border-radius: 12px;
  border: 1px solid rgba(26, 92, 67, 0.08);
  box-shadow: 0 2px 10px rgba(14, 61, 43, 0.03);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.news-row-item:hover {
  transform: translateX(4px);
  background: #fff;
  box-shadow: 0 8px 20px rgba(14, 61, 43, 0.08);
  border-color: rgba(194, 162, 75, 0.4);
}
.news-row-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.news-row-date {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gold-dark);
  font-family: var(--serif);
  letter-spacing: 0.04em;
}
.news-row-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid rgba(26, 92, 67, 0.12);
  padding: 2px 8px;
  border-radius: 4px;
}
.news-row-title {
  flex: 1;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.5;
  transition: color .2s;
}
.news-row-item:hover .news-row-title {
  color: var(--green-deep);
}
.news-row-arrow {
  color: var(--gold);
  opacity: 0.7;
  transition: transform .25s, opacity .25s;
  flex-shrink: 0;
}
.news-row-item:hover .news-row-arrow {
  transform: translateX(4px);
  opacity: 1;
}
.news-more-wrap {
  text-align: center;
}
@media (max-width: 640px) {
  .news-row-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 18px;
  }
  .news-row-title {
    font-size: 14.5px;
  }
  .news-row-arrow {
    display: none;
  }
}

.flow {
  counter-reset: step;
}
.flow li {
  list-style: none;
  position: relative;
  padding: 0 0 26px 66px;
  counter-increment: step;
}
.flow li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: -2px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-deep);
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow li::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 48px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(var(--green-deep), var(--gold-light));
}
.flow li:last-child::after {
  display: none;
}
.flow h4 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--green-dark);
  padding-top: 8px;
}
.flow p {
  font-size: 13.5px;
  color: var(--ink-light);
  margin-top: 4px;
}

/* ==========================================================================
   ◆ 共通パーツ：LINE誘導バナー
   ========================================================================== */
.line-band {
  background: linear-gradient(135deg, #0aa64a, var(--line-green));
  color: #fff;
  border-radius: calc(var(--radius) + 10px);
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(6, 199, 85, .35);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.line-band::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
}
.line-band::after {
  content: "LINE";
  position: absolute;
  left: -20px;
  bottom: -30px;
  font-size: 160px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
}
.line-band h2 {
  font-family: var(--serif);
  font-size: clamp(21px, 2.6vw, 28px);
  font-weight: 700;
  line-height: 1.6;
  position: relative;
}
.line-band .l-badge {
  display: inline-block;
  background: #fff;
  color: #0aa64a;
  font-size: 12.5px;
  font-weight: 900;
  border-radius: 999px;
  padding: 5px 16px;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.line-band p {
  margin-top: 14px;
  font-size: 14.5px;
  opacity: .95;
  position: relative;
}
.line-band .btn {
  background: #fff;
  color: #0aa64a;
  width: 100%;
  max-width: 320px;
  padding: 20px 30px;
  font-size: 17px;
  margin: 0 auto;
  font-weight: 900;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.line-band .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .15);
}

/* ==========================================================================
   会社概要ミニ
   ========================================================================== */
.about-mini {
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-copy .origin {
  font-family: var(--serif);
  font-size: clamp(20px, 2.6vw, 27px);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.9;
}
.about-copy .origin .g {
  color: var(--gold);
}
.about-copy p {
  margin-top: 20px;
  font-size: 15px;
  color: var(--ink);
  line-height: 2.05;
}
.about-copy .btn {
  margin-top: 28px;
}
.dl-table {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px 30px;
}
.dl-table dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0 20px;
  font-size: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(26, 92, 67, .08);
}
.dl-table dl:last-child {
  border-bottom: none;
}
.dl-table dt {
  font-weight: 700;
  color: var(--green-deep);
}
.dl-table dd {
  color: var(--ink);
}

/* ==========================================================================
   ページ別スタイル：サンクスページ
   ========================================================================== */
.thanks-wrap {
  padding: 80px 0;
  background: var(--white);
}
.thanks-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 64px 48px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 92, 67, 0.08);
  text-align: center;
}
.thanks-icon {
  width: 64px;
  height: 64px;
  background: var(--green-deep);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 32px;
}
.thanks-box p {
  font-size: 16px;
  line-height: 2;
  color: var(--ink);
  margin-bottom: 24px;
}
.thanks-note {
  font-size: 14.5px;
  color: var(--ink-light);
  margin-bottom: 40px !important;
  line-height: 1.8;
}

/* ==========================================================================
   ページ別スタイル：エラーページ
   ========================================================================== */
.error-wrap {
  padding: 120px 0;
  background: var(--bg);
  text-align: center;
}
.error-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 64px 48px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 92, 67, 0.08);
  max-width: 640px;
  margin: 0 auto;
}
.error-code {
  font-family: var(--serif);
  font-size: 80px;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 24px;
}
.error-msg {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 32px;
}
.error-detail {
  text-align: left;
  background: var(--green-soft);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 40px;
  font-family: monospace;
  font-size: 13px;
  color: var(--alert);
  overflow-x: auto;
  border: 1px solid rgba(182, 68, 44, 0.1);
}

/* ==========================================================================
   ページ別スタイル：診断ツール
   ========================================================================== */
.diag-wrap {
  padding: 80px 0;
}
.diag-intro {
  max-width: 840px;
  margin: 0 auto 56px;
  text-align: center;
}
.diag-intro h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 24px;
  line-height: 1.6;
}
.diag-intro p {
  font-size: 16px;
  color: var(--ink-light);
  line-height: 2.1;
}
#diagnosis-root {
  margin-top: 48px;
}

/* ==========================================================================
   ページ別スタイル：ニュース詳細
   ========================================================================== */
.news-detail-wrap {
  padding: 80px 0;
  background: var(--white);
}
.news-meta {
  font-size: 14px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
  font-family: var(--serif);
}
.news-title-detail {
  font-family: var(--serif);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.4;
  margin-bottom: 40px;
}
.news-content {
  font-size: 16px;
  line-height: 2.1;
  color: var(--ink);
}
.news-content img {
  margin: 32px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.news-back {
  margin-top: 80px;
  text-align: center;
  border-top: 1px solid rgba(26, 92, 67, 0.1);
  padding-top: 48px;
}

/* ==========================================================================
   ページ別スタイル：お問い合わせ
   ========================================================================== */
.form-wrap {
  padding: 80px 0;
}
.form-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 56px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 92, 67, 0.08);
}
.form-label {
  display: block;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
  font-size: 15px;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(26, 92, 67, 0.15);
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
  transition: all 0.25s;
  background: var(--bg);
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(194, 162, 75, 0.1);
}
.form-control.is-invalid {
  border-color: var(--alert);
}
.invalid-feedback {
  color: var(--alert);
  font-size: 13.5px;
  margin-top: 6px;
  font-weight: 700;
}
.mb-5 {
  margin-bottom: 32px;
}
.req {
  color: var(--alert);
  margin-left: 6px;
  font-size: 12px;
  vertical-align: middle;
  background: rgba(182, 68, 44, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}
.form-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  margin-right: 24px;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
}
.form-check-input {
  width: 20px;
  height: 20px;
  accent-color: var(--green-deep);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 30px;
  margin-bottom: 60px;
}
.contact-btn-submit {
  padding: 18px 60px;
  max-width: 100%;
}
@media (max-width: 768px) {
  .contact-methods-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  .form-box {
    padding: 32px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-btn-submit {
    width: 100%;
    padding: 16px 20px;
  }
}

/* ==========================================================================
   ページ別スタイル：お問い合わせ確認
   ========================================================================== */
.confirm-wrap {
  padding: 80px 0;
  background: var(--bg);
}
.confirm-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 56px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 92, 67, 0.08);
}
.confirm-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 48px;
}
.confirm-table th {
  text-align: left;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(26, 92, 67, 0.08);
  color: var(--green-deep);
  font-size: 15px;
  width: 32%;
  font-weight: 700;
  vertical-align: top;
}
.confirm-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(26, 92, 67, 0.08);
  font-size: 15.5px;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: break-word;
}
.confirm-table td.confirm-message,
.confirm-message {
  white-space: pre-wrap;
  line-height: 1.7;
}
.confirm-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.confirm-actions form {
  display: inline-block;
}
@media (max-width: 768px) {
  .confirm-wrap {
    padding: 48px 0 64px;
  }
  .confirm-box {
    padding: 28px 18px;
  }
  .confirm-table th {
    width: 38%;
    padding: 14px 10px;
    font-size: 13.5px;
  }
  .confirm-table td {
    padding: 14px 10px;
    font-size: 14.5px;
  }
  .confirm-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .confirm-actions form {
    width: 100%;
  }
  .confirm-actions .btn {
    width: 100%;
    padding: 16px 20px !important;
  }
}

/* ==========================================================================
   ページ別スタイル：お知らせ
   ========================================================================== */
.news-list-wrap {
  padding: 80px 0;
}
.news-item-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 92, 67, 0.06);
}
.news-item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.news-img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.news-date {
  font-size: 13.5px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--serif);
}
.news-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.5;
  margin-bottom: 12px;
  font-family: var(--serif);
}
.news-preview {
  font-size: 14.5px;
  color: var(--ink-light);
  line-height: 1.7;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 56px;
  list-style: none;
}
.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(26, 92, 67, 0.12);
  color: var(--green-deep);
  font-weight: 700;
  transition: all 0.2s;
}
.page-item.active .page-link {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: #fff;
}
.page-link:hover:not(.active) {
  background: var(--green-soft);
  border-color: var(--green-deep);
}
@media (max-width: 768px) {
  .news-item-card {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }
  .news-img {
    width: 100%;
    height: 200px;
  }
}

/* ==========================================================================
   ページ別スタイル：サービス
   ========================================================================== */
.sec-intro {
  padding: 96px 0 64px;
  text-align: center;
  background: var(--white);
}
.sec-intro h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 24px;
  line-height: 1.5;
}
.sec-intro p {
  font-size: 16px;
  color: var(--ink-light);
  line-height: 2;
  max-width: 840px;
  margin: 0 auto;
}
.menu-card {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  margin-bottom: 48px;
  box-shadow: var(--shadow);
  position: relative;
  border-top: 4px solid var(--green-deep);
}
.menu-card:nth-child(2) {
  border-top-color: var(--green-dark);
}
.menu-card:nth-child(3) {
  border-top-color: var(--gold);
}
.menu-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 24px;
}
.menu-card .benefit {
  background: var(--green-soft);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 32px;
  border-left: 4px solid var(--green-deep);
}
.menu-card .benefit b {
  color: var(--green-deep);
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.menu-card .benefit p {
  font-size: 15.5px;
  margin: 0;
  color: var(--ink);
  font-weight: 500;
}
.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  padding: 12px 0;
  border-bottom: 1px solid rgba(26, 92, 67, 0.08);
}
.service-item::before {
  content: "✓";
  color: var(--green-deep);
  font-weight: 900;
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 32px;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 860px) {
  .service-list {
    grid-template-columns: 1fr;
  }
  .menu-card {
    padding: 32px 24px;
  }
}

/* ==========================================================================
   ページ別スタイル：会社案内
   ========================================================================== */
.sec-philosophy {
  background: var(--white);
}
.ph-box {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}
.ph-box h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--green-dark);

  line-height: 1.6;
}
.ph-box h2 .g {
  color: var(--gold);
}
.ph-box p {
  font-size: 16px;
  line-height: 2.1;
  color: var(--ink);
  margin-bottom: 48px;
  text-align: left;
}
.profile-card {
  background: var(--green-soft);
  border-radius: var(--radius);
  padding: 48px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
  text-align: left;
  margin-top: 64px;
  box-shadow: var(--shadow);
}
.profile-img {
  background: var(--gold-light);
  aspect-ratio: 3/4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  padding: 20px;
  border: 1px solid var(--gold);
}
.profile-txt h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.profile-txt .pos {
  font-size: 14px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 24px;
  display: block;
  letter-spacing: 0.05em;
}
.profile-txt p {
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.9;
  margin-bottom: 0;
}
.company-info {
  margin-top: 120px;
}
.dl-table {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 40px;
  border: 1px solid rgba(26, 92, 67, 0.08);
}
.dl-table dl {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  font-size: 15px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(26, 92, 67, 0.08);
}
.dl-table dl:last-child {
  border-bottom: none;
}
.dl-table dt {
  font-weight: 700;
  color: var(--green-deep);
}
.dl-table dd {
  color: var(--ink);
  line-height: 1.7;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}
.map-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(26, 92, 67, 0.12);
  background: var(--green-soft);
}
@media (max-width: 768px) {
  .map-wrap {
    aspect-ratio: 4 / 3;
    max-height: 260px;
  }
}
.cta-band {
  background: var(--green-soft);
  padding: 80px 0;
}
@media (max-width: 860px) {
  .profile-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
  }
  .profile-img {
    max-width: 200px;
    margin: 0 auto;
  }
  .dl-table {
    padding: 10px 24px;
  }
  .dl-table dl {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */
.about-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(26, 92, 67, 0.08);
  padding: 64px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(26, 92, 67, 0.05);
}
.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gold);
}
.about-card-head {
  margin-bottom: 40px;
  text-align: center;
}
.about-card-head .en {
  display: block;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.about-card-head h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--green-dark);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
.about-card-head h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--green-soft);
}
.about-card-body p {
  font-size: 16px;
  line-height: 2.1;
  color: var(--ink);
}
.about-card.greeting {
  background: linear-gradient(to bottom right, #fff, var(--green-soft));
}
.about-card.origin {
  background: linear-gradient(to bottom right, #fff, var(--gold-light));
}
.about-card.origin::before {
  background: var(--green-dark);
}

@media (max-width: 768px) {
  .about-card {
    padding: 40px 24px;
  }
  .about-card-head h2 {
    font-size: 24px;
  }
}

.value-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 16px;
}
.value-list li {
  background: var(--green-soft);
  padding: 20px 32px;
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  font-weight: 700;
  color: var(--green-deep);
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .value-list li {
    padding: 16px 20px;
    font-size: 15px;
  }
}

/* ==========================================================================
   追加のレスポンシブ
   ========================================================================== */
@media (max-width: 860px) {
  section {
    padding: 72px 0;
  }
  .hero {
    padding: 44px 0 32px;
  }
  .hero-in {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero .tagline {
    font-size: 12px;
    padding: 5px 12px;
    margin-bottom: 16px;
    line-height: 1.4;
    white-space: normal;
  }
  .hero h1 {
    font-size: clamp(21px, 6.8vw, 26px);
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .hero .sub {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
  }
  .hero .brand-msg {
    font-size: 15.5px;
    margin-bottom: 22px;
    letter-spacing: 0.08em;
  }
  .hero-cta {
    margin-bottom: 12px;
  }
  .btn-hero-diag {
    width: 100%;
    padding: 15px 20px;
    font-size: 15px;
    text-align: center;
    justify-content: center;
  }
  .hero-note {
    font-size: 12px;
    line-height: 1.6;
    margin-top: 10px;
  }
  .hero-visual {
    max-width: 220px;
    margin: 0 auto;
  }
  .hero-logo {
    max-width: 220px;
  }
  .worry-grid {
    grid-template-columns: 1fr;
  }
  .diag-in, .pf-grid, .about-grid {
    grid-template-columns: 1fr;
  }
  .line-band {
    grid-template-columns: 1fr;
    padding: 36px 26px;
    text-align: center;
  }
  .dl-table dl {
    grid-template-columns: 96px 1fr;
  }
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block;
  }
  br.sp-only {
    display: inline;
  }
}

@media (max-width: 768px) {
  .dl-table dl {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 15px 0 !important;
  }
  .dl-table dt {
    font-size: 14px;
  }
  .dl-table dd {
    font-size: 15px;
  }
  .profile-card {
    grid-template-columns: 1fr !important;
    padding: 30px !important;
    gap: 30px !important;
  }
  .profile-img {
    max-width: 200px;
    margin: 0 auto;
  }
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.lead-quote {
    margin-bottom: 36px;
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.7;
    background: var(--green-soft);
    border-left: 4px solid var(--green-deep);
    border-radius: 8px;
    padding: 24px 28px;
}
.about-subhead::before {
    content: "";
    display: block;
    width: 6px;
    flex-shrink: 0;
    background: var(--gold);
    border-radius: 3px;
    margin: 3px 0;
}
.about-subhead {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.5;
    padding-bottom: 8px;
    display: flex;
    align-items: stretch;
    margin: 36px 0px 16px;
    border-bottom: 1.5px solid var(--border-color);
    gap: 12px;
}
@media (max-width: 768px) {
    .about-subhead {
        font-size: 18px;
        margin: 28px 0 14px;
    }
}
.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}
.foot-col h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--gold);
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), #b08d33);
    color: #fff;
    box-shadow: 0 6px 18px rgba(194, 162, 75, .4);
}