/* ==========================================================================
   ◆ デザイントークン
   ========================================================================== */
:root {
  --green-deep: #1a5c43;      /* メイン：信頼・誠実 */
  --green-dark: #0e3d2b;      /* 濃色セクション背景 */
  --green-soft: #e8f1ec;      /* 薄緑背景 */
  --gold: #c2a24b;            /* 水引・結びのアクセント */
  --gold-light: #e5d8b0;
  --line-green: #06c755;      /* LINE公式カラー */
  --bg: #faf8f3;              /* 温かみのある生成り */
  --white: #ffffff;
  --ink: #26332d;             /* 本文 */
  --ink-light: #5f6f67;
  --alert: #b6442c;           /* 注意喚起 */
  --radius: 14px;
  --shadow: 0 4px 24px rgba(14, 61, 43, .08);
  --shadow-hover: 0 10px 32px rgba(14, 61, 43, .16);
  --serif: "Zen Old Mincho", serif;
  --sans: "Noto Sans JP", 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-block;
  font-size: 12px;
  letter-spacing: .28em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.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-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: 768px) {
  .flow-btns {
    display: none;
  }
}
.btn small {
  display: block;
  font-weight: 500;
  font-size: 11.5px;
  opacity: .85;
}

/* ==========================================================================
   ◆ 共通パーツ：ヘッダー
   ========================================================================== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 243, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 92, 67, .1);
  transition: box-shadow .3s;
}
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: 10px;
  align-items: center;
}
.header-cta .btn {
  padding: 11px 20px;
  font-size: 13.5px;
}
.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;
  }
  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;
  }
}

/* -----------------------------------------
   価格・メニューページ
----------------------------------------- */
.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(240px, 1fr));
  gap: 20px;
}
.option-item {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.option-item:hover {
  transform: translateY(-5px);
}
.opt-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.mt-20 {
  margin-top: 20px;
}
.opt-list {
  padding-left: 0;
  list-style: none;
}
.opt-list li {
  font-size: 13px;
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 4px;
  line-height: 1.5;
  color: var(--ink-light);
}
.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: 11px;
  color: var(--ink-light);
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed var(--green-soft);
  line-height: 1.5;
}
.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);
}
.foot-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 40px;
}
.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 {
  opacity: .7;
}
.foot-brand p {
  margin-top: 16px;
  font-size: 13px;
  line-height: 2;
  opacity: .85;
}
.foot-col h4 {
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: .16em;
  font-weight: 700;
  margin-bottom: 16px;
}
.foot-col li {
  margin-bottom: 10px;
}
.foot-col a {
  font-size: 14px;
  opacity: .85;
  transition: .2s;
}
.foot-col a:hover {
  opacity: 1;
  color: var(--gold-light);
}
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .15);
  text-align: center;
  padding: 20px 24px;
  font-size: 12px;
  opacity: .65;
}

@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 12px;
  gap: 10px;
}
.sp-fixed-cta .btn {
  flex: 1;
  padding: 13px 8px;
  font-size: 13px;
  border-radius: 12px;
}

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

/* ==========================================================================
   ◆ お知らせ一覧・詳細
   ========================================================================== */
.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);
  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-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 24px;
}
.news-detail-card {
  max-width: 840px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 56px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 92, 67, 0.08);
}
.news-detail-header {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(26, 92, 67, 0.1);
}
.news-detail-date {
  font-size: 14px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
  font-family: var(--serif);
}
.news-detail-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.45;
}
.news-detail-body {
  font-size: 16px;
  line-height: 2.1;
  color: var(--ink);
}
.news-detail-content {
  margin-top: 32px;
  word-break: break-all;
}
.news-detail-image {
  max-width: 100%;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}
.news-detail-footer {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(26, 92, 67, 0.1);
  text-align: center;
  background: transparent;
}
.news-detail-footer .btn {
  min-width: 240px;
}

@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-container {
    padding: 40px 20px;
  }
  .news-detail-card {
    padding: 32px 20px;
  }
  .news-detail-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
  }
  .news-detail-body {
    font-size: 15px;
    line-height: 1.9;
  }
  .news-detail-footer .btn {
    min-width: 100%;
    padding: 14px 20px;
  }
}

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

/* ==========================================================================
   共通ページヘッダー
   ========================================================================== */
.page-header {
  background: var(--green-dark);
  color: #fff;
  padding: 100px 0 80px;
  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つの柱）個別スタイル
   ========================================================================== */
.pillars {
  background: var(--white);
  padding: 100px 0;
}
.pillar-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 48px;
  margin-bottom: 64px;
  position: relative;
  border-top: 6px solid var(--green-deep);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.pillar-card:last-child {
  margin-bottom: 0;
}
.pillar-card .pillar-num {
  font-size: 13px;
  letter-spacing: .24em;
  color: var(--green-deep);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}
.pillar-card h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 24px;
}
.pillar-benefit {
  background: var(--green-soft);
  padding: 28px;
  border-radius: 12px;
  margin-bottom: 40px;
  border-left: 4px solid var(--green-deep);
}
.pillar-benefit b {
  color: var(--green-deep);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.pillar-benefit b::before {
  content: "CHECK";
  font-size: 10px;
  background: var(--green-deep);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
}
.pillar-benefit p {
  font-size: 16px;
  margin: 0;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.7;
}

.pillar-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px 40px;
}
.pillar-item {
  position: relative;
  padding-left: 28px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.6;
}
.pillar-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 2px;
  background: var(--gold);
}

/* 個別カラー設定 */
.pillar-card.cost { border-top-color: var(--green-dark); }
.pillar-card.cost .pillar-num { color: var(--green-dark); }
.pillar-card.cost .pillar-benefit { border-left-color: var(--green-dark); }
.pillar-card.cost .pillar-benefit b { color: var(--green-dark); }
.pillar-card.cost .pillar-benefit b::before { background: var(--green-dark); }

.pillar-card.empower { border-top-color: var(--gold); }
.pillar-card.empower .pillar-num { color: var(--gold); }
.pillar-card.empower .pillar-benefit { border-left-color: var(--gold); }
.pillar-card.empower .pillar-benefit b { color: var(--gold); }
.pillar-card.empower .pillar-benefit b::before { background: var(--gold); }

@media (max-width: 768px) {
  .pillar-card {
    padding: 32px 24px;
  }
  .pillar-card h3 {
    font-size: 24px;
  }
  .pillar-items {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pf-grid {
    grid-template-columns: 1fr;
  }
}

.service-closing {
  margin-top: 100px;
  text-align: center;
}
.service-closing p {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.7;
}
.service-closing p span {
  display: block;
}

.service-cta-outer {
  padding: 100px 0;
  background: var(--bg);
}
.service-cta-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.service-cta-btns .btn {
  width: 100%;
  max-width: 480px;
  font-size: 18px;
  padding: 20px 40px;
}
@media (max-width: 860px) {
  .page-header {
    padding: 60px 0;
  }
}

/* ==========================================================================
   ヒーロー（ファーストビュー）
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(1200px 600px at 85% -10%, var(--green-soft) 0%, transparent 60%), linear-gradient(180deg, #fdfcf9 0%, var(--bg) 100%);
  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;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gold-light);
  color: var(--green-deep);
  font-weight: 700;
  font-size: 13.5px;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  margin-bottom: 26px;
}
.hero .tagline::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(30px, 4.6vw, 50px);
  font-weight: 900;
  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 {
  margin-top: 26px;
  font-size: 16px;
  color: var(--ink);
  max-width: 34em;
}
.hero .sub strong {
  color: var(--green-deep);
}
.hero .brand-msg {
  margin-top: 22px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .14em;
}
.hero-cta {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.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: 320px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(14, 61, 43, 0.1));
}
@media (max-width: 1024px) {
  .hero-logo {
    max-width: 240px;
  }
}

/* 対象地域・業種バー */
.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);
}
.worry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}
.worry {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid rgba(26, 92, 67, .1);
  border-radius: var(--radius);
  padding: 20px 22px;
  font-size: 15px;
  font-weight: 500;
  transition: .25s;
}
.worry:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.worry .ck {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--green-deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  margin-top: 2px;
}
.worry-close {
  text-align: center;
  margin-top: 44px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--green-deep);
}

/* ==========================================================================
   問題提起（濃色バンド）
   ========================================================================== */
.problem {
  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(24px, 3.4vw, 36px);
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}
.problem h2 .accent {
  color: var(--gold-light);
}
.problem p {
  margin-top: 28px;
  font-size: 15.5px;
  line-height: 2.1;
  color: rgba(255, 255, 255, .92);
}
.problem .risk {
  background: rgba(0, 0, 0, .22);
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 18px 24px;
  margin-top: 26px;
  font-weight: 700;
  font-size: 16.5px;
}

/* ==========================================================================
   位置づけ＋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;
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.promise {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  transition: .3s;
  position: relative;
}
.promise:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.promise .num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  opacity: .9;
}
.promise h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--green-dark);
  margin: 14px 0 12px;
  line-height: 1.6;
}
.promise p {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.95;
}

/* ==========================================================================
   比較表
   ========================================================================== */
.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;
}
table.cmp tbody th {
  text-align: left;
  font-weight: 700;
  color: var(--green-dark);
  padding-left: 22px;
  background: var(--green-soft);
  white-space: nowrap;
}
table.cmp .you {
  background: #fbf6e8;
  font-weight: 900;
  color: var(--green-deep);
  font-size: 16px;
}
table.cmp thead .you {
  background: var(--gold);
  color: #fff;
  font-size: 15px;
}
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: block;
  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;
}
.pillar .p-body p {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.95;
}
.pillar .p-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--green-deep);
}
.pillar .p-more .arw {
  transition: transform .25s;
}
.pillar:hover .p-more .arw {
  transform: translateX(5px);
}

/* ==========================================================================
   ◆ 共通パーツ：無料診断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 {
  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-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: 340px;
  padding: 20px 34px;
  font-size: 17px;
  flex-direction: column;
  gap: 2px;
}

/* ==========================================================================
   料金・導入の流れ（概要）
   ========================================================================== */
.price-flow {
  background: var(--white);
}
.pf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: start;
}
.price-card {
  background: var(--bg);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
}
.price-card .pc-head {
  background: var(--gold);
  color: #fff;
  text-align: center;
  padding: 14px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .08em;
}
.price-card .pc-body {
  padding: 48px 30px;
  text-align: center;
}
.price-card .pc-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--green-dark);
}
.price-card .pc-price {
  margin-top: 16px;
  font-family: var(--serif);
  color: var(--green-deep);
}
.price-card .pc-price .yen {
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}
.price-card .pc-price .unit {
  font-size: 15px;
  font-weight: 700;
}
.price-card .pc-add {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.price-card .pc-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.8;
}
.price-card .pc-ex {
  margin-top: 24px;
  background: var(--green-soft);
  border-radius: 10px;
  padding: 20px;
  font-size: 14px;
  text-align: left;
  border: 1px solid rgba(26, 92, 67, .12);
}
.price-card .pc-ex b {
  color: var(--green-deep);
}
.price-card .pc-sub-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--ink-light);
}
.pf-flow-head {
  margin-bottom: 32px;
}
.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: 26px;
  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;
}
.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;
  background: var(--white);
}
.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;
  background: var(--white);
}
.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;
}
@media (max-width: 768px) {
  .form-box {
    padding: 32px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ==========================================================================
   ページ別スタイル：お知らせ
   ========================================================================== */
.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;
  }
}

/* ==========================================================================
   ページ別スタイル：料金・導入の流れ
   ========================================================================== */
.price-card {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 20px;
  overflow: hidden;
  max-width: 800px;
  margin: 60px auto;
  box-shadow: var(--shadow);
}
.price-card .head {
  background: var(--gold);
  color: #fff;
  padding: 24px;
  text-align: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.1em;
}
.price-card .body {
  padding: 48px;
}
.price-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--gold-light);
}
.price-item .label {
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
}
.price-item .val {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 900;
  color: var(--green-deep);
}
.price-item .val span {
  font-size: 16px;
  font-weight: 700;
  margin-left: 4px;
  color: var(--ink);
}
.price-example {
  background: var(--green-soft);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(26, 92, 67, 0.1);
}
.price-example h4 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--green-dark);
  text-align: center;
}
.price-example .row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 8px;
}
.price-example .row:last-child {
  border-bottom: none;
}
.price-example b {
  color: var(--green-deep);
  font-size: 1.2em;
}
.flow-list {
  margin: 80px 0;
  counter-reset: flow;
}
.flow-item {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}
.flow-item::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 60px;
  bottom: -32px;
  width: 2px;
  background: linear-gradient(var(--green-deep), var(--gold-light));
  z-index: 1;
}
.flow-item:last-child::before {
  display: none;
}
.flow-no {
  width: 52px;
  height: 52px;
  background: var(--green-deep);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.flow-item:nth-child(even) .flow-no {
  background: var(--gold);
}
.flow-content h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 12px;
  padding-top: 12px;
}
.flow-content p {
  font-size: 15.5px;
  color: var(--ink-light);
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 768px) {
  .price-card .body {
    padding: 32px 20px;
  }
  .price-item {
    flex-direction: column;
    gap: 8px;
  }
  .flow-item {
    gap: 20px;
  }
}

/* ==========================================================================
   ページ別スタイル：サービス
   ========================================================================== */
.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);
  margin-bottom: 40px;
  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;
}
.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);
  text-align: justify;
}
.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;
  }
}

/* ==========================================================================
   追加のレスポンシブ
   ========================================================================== */
@media (max-width: 860px) {
  section {
    padding: 72px 0;
  }
  .hero {
    padding: 56px 0;
  }
  .hero-in {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-visual {
    max-width: 420px;
    margin: 0 auto;
  }
  .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;
  }
}

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