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

.avatar {
  vertical-align: middle;
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

ul {
  padding: 0;
}
li {
  list-style-type: none;
}
dd {
  margin-left: 0;
}

.flow > li {
  position: relative;
}
.flow > li:not(:last-child) {
  margin-bottom: 40px;
}
.flow > li:not(:first-child)::before {
  content: "";
  height: 60px;
  display: block;
  border-left: 4px dotted #e5e5e5;
  position: absolute;
  top: -40px;
  left: -webkit-calc(10% + 30px - 2px);
  left: calc(10% + 30px - 2px);
  z-index: 10;
}
.flow > li dl {
  width: 100%;
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid rgb(107, 144, 219);
  border-radius: 10px;
  position: relative;
}
.flow > li:not(:last-child) dl::before,
.flow > li:not(:last-child) dl::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.flow > li:not(:last-child) dl::before {
  border-width: 22px;
  border-top-color: rgb(107, 144, 219);
}
.flow > li:not(:last-child) dl::after {
  border-width: 20px;
  border-top-color: #fff;
}
.flow > li dl dt {
  font-size: 20px;
  font-weight: 600;
  color: rgb(107, 144, 219);
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  margin-right: 2vw;
  text-align: center;
}
.flow > li dl dt .icon {
  font-size: 12px;
  color: #fff;
  background: rgb(107, 144, 219);
  background: -moz-linear-gradient(
    left,
    rgba(107, 144, 219, 1) 0%,
    rgba(102, 213, 233, 1) 100%
  );
  background: -webkit-linear-gradient(
    left,
    rgba(107, 144, 219, 1) 0%,
    rgba(102, 213, 233, 1) 100%
  );
  background: linear-gradient(
    to right,
    rgba(107, 144, 219, 1) 0%,
    rgba(102, 213, 233, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b90db', endColorstr='#66d5e9',GradientType=1 );
  padding: 5px 10px;
  margin-bottom: 10px;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 100;
}

.Qa-Box {
  width: 80%;
  margin: 0 auto;
}

.Qa-Box .Qa {
  padding: 20px 0;
  border-bottom: 1px solid #c8c8c8;
}

.Qa-Box .Qa dt,
.Qa-Box .Qa dd {
  display: flex;
  align-items: baseline;
  margin: 15px 0;
}

.Qa-Box .Qa dt p {
  margin: 0;
  padding-left: 15px;
  font-weight: bold;
  width: 100%;
}

.Qa-Box .Qa dd p {
  margin: 0;
  padding-left: 15px;
  width: 100%;
}

.Qa-Box .Qa:last-of-type {
  border-bottom: none;
}

.Qa-Box .Qa dt::before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #6699b7;
  width: 2em;
  height: 2em;
}

.Qa-Box .Qa dd::before {
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #d65556;
  width: 2em;
  height: 2em;
}

@media screen and (max-width: 960px) {
  .Qa-Box {
    width: 95%;
  }
}

.comparison-table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-size: 0.75rem;
}

.comparison-table th,
.comparison-table td {
  padding: 0.5rem;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

.comparison-table th:first-child {
  border: 0;
}

.comparison-table th:nth-child(2n) {
  box-shadow: 0 0 2rem hsla(0, 0%, 0%, 0.15);
}

.comparison-table th:nth-child(2n),
.comparison-table td:nth-child(2n) {
  position: relative;
  background: #fff;
}

.comparison-table td:not(:first-child) {
  text-align: center;
}

@media (min-width: 48rem) {
  .comparison-table {
    font-size: 0.875rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 1rem;
  }
}

@media (min-width: 60rem) {
  .comparison-table {
    font-size: 1rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 1.5rem 2rem;
  }
}

@media screen and (max-width: 991px) {
  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .tb {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .mb {
    display: none !important;
  }
}

ul {
  padding: 0;
}
li {
  list-style-type: none;
}
dd {
  margin-left: 0;
}

.flow > li {
  position: relative;
}
.flow > li:not(:last-child) {
  margin-bottom: 40px;
}
.flow > li:not(:first-child)::before {
  content: "";
  height: 60px;
  display: block;
  border-left: 4px dotted #e5e5e5;
  position: absolute;
  top: -40px;
  left: -webkit-calc(10% + 30px - 2px);
  left: calc(10% + 30px - 2px);
  z-index: 10;
}
.flow > li dl {
  width: 100%;
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid rgb(107, 144, 219);
  border-radius: 10px;
  position: relative;
}
.flow > li:not(:last-child) dl::before,
.flow > li:not(:last-child) dl::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.flow > li:not(:last-child) dl::before {
  border-width: 22px;
  border-top-color: rgb(107, 144, 219);
}
.flow > li:not(:last-child) dl::after {
  border-width: 20px;
  border-top-color: #fff;
}
.flow > li dl dt {
  font-size: 20px;
  font-weight: 600;
  color: rgb(107, 144, 219);
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  margin-right: 2vw;
  text-align: center;
}
.flow > li dl dt .icon {
  font-size: 12px;
  color: #fff;
  background: rgb(107, 144, 219);
  background: -moz-linear-gradient(
    left,
    rgba(107, 144, 219, 1) 0%,
    rgba(102, 213, 233, 1) 100%
  );
  background: -webkit-linear-gradient(
    left,
    rgba(107, 144, 219, 1) 0%,
    rgba(102, 213, 233, 1) 100%
  );
  background: linear-gradient(
    to right,
    rgba(107, 144, 219, 1) 0%,
    rgba(102, 213, 233, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b90db', endColorstr='#66d5e9',GradientType=1 );
  padding: 5px 10px;
  margin-bottom: 10px;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 100;
}

.Qa-Box {
  width: 80%;
  margin: 0 auto;
}

.Qa-Box .Qa {
  padding: 20px 0;
  border-bottom: 1px solid #c8c8c8;
}

.Qa-Box .Qa dt,
.Qa-Box .Qa dd {
  display: flex;
  align-items: baseline;
  margin: 15px 0;
}

.Qa-Box .Qa dt p {
  margin: 0;
  padding-left: 15px;
  font-weight: bold;
  width: 100%;
}

.Qa-Box .Qa dd p {
  margin: 0;
  padding-left: 15px;
  width: 100%;
}

.Qa-Box .Qa:last-of-type {
  border-bottom: none;
}

.Qa-Box .Qa dt::before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #6699b7;
  width: 2em;
  height: 2em;
}

.Qa-Box .Qa dd::before {
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #d65556;
  width: 2em;
  height: 2em;
}

@media screen and (max-width: 960px) {
  .Qa-Box {
    width: 95%;
  }
}

.comparison-table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-size: 0.75rem;
}

.comparison-table th,
.comparison-table td {
  padding: 0.5rem;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

.comparison-table th:first-child {
  border: 0;
}

.comparison-table th:nth-child(2n) {
  box-shadow: 0 0 2rem hsla(0, 0%, 0%, 0.15);
}

.comparison-table th:nth-child(2n),
.comparison-table td:nth-child(2n) {
  position: relative;
  background: #fff;
}

.comparison-table td:not(:first-child) {
  text-align: center;
}

@media (min-width: 48rem) {
  .comparison-table {
    font-size: 0.875rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 1rem;
  }
}

@media (min-width: 60rem) {
  .comparison-table {
    font-size: 1rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 1.5rem 2rem;
  }
}

@media screen and (max-width: 991px) {
  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .tb {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .mb {
    display: none !important;
  }
}

.header-fixed {
  background-color: #005db9;
  box-shadow: 0 1px 1px #ccc;
  padding: 20px 40px;
  height: 80px;
  color: #ffffff;
  box-sizing: border-box;
  top: -100px;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
}

.header-color {
  background-color: #005db9;
}

.header-fixed .header-limiter {
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
}

/*	The header placeholder. It is displayed when the header is fixed to the top of the
browser window, in order to prevent the content of the page from jumping up. */

.header-fixed-placeholder {
  height: 80px;
  display: none;
}

/* Logo */

.header-fixed .header-limiter h1 {
  float: left;
  font: normal 28px Cookie, Arial, Helvetica, sans-serif;
  line-height: 40px;
  margin: 0;
}

.header-fixed .header-limiter h1 span {
  color: #5383d3;
}

/* The navigation links */

.header-fixed .header-limiter a {
  color: #ffffff;
  text-decoration: none;
}

.header-fixed .header-limiter nav {
  font: 16px Arial, Helvetica, sans-serif;
  line-height: 40px;
  float: right;
}

.header-fixed .header-limiter nav a {
  display: inline-block;
  padding: 0 5px;
  text-decoration: none;
  color: #ffffff;
  opacity: 0.9;
}

.header-fixed .header-limiter nav a:hover {
  opacity: 1;
}

.header-fixed .header-limiter nav a.selected {
  color: #608bd2;
  pointer-events: none;
  opacity: 1;
}

/* Fixed version of the header */

body.fixed .header-fixed {
  padding: 10px 40px;
  height: 50px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

body.fixed .header-fixed-placeholder {
  display: block;
}

body.fixed .header-fixed .header-limiter h1 {
  font-size: 24px;
  line-height: 30px;
}

body.fixed .header-fixed .header-limiter nav {
  line-height: 28px;
  font-size: 13px;
}

/* Making the header responsive */

@media all and (max-width: 600px) {
  .header-fixed {
    padding: 20px 0;
    height: 75px;
  }

  .header-fixed .header-limiter h1 {
    float: none;
    margin: -8px 0 10px;
    text-align: center;
    font-size: 24px;
    line-height: 1;
  }

  .header-fixed .header-limiter nav {
    line-height: 1;
    float: none;
  }

  .header-fixed .header-limiter nav a {
    font-size: 13px;
  }

  body.fixed .header-fixed {
    display: none;
  }
}

.zIndex {
  z-index: 999 !important;
}

/* ============================================================
   Design Refinement Layer
   黄金比ベースのタイポグラフィ・余白・行間・配置をレスポンシブに整える
   （quick-website.css を上書き。!important は最小限）
   ============================================================ */
:root {
  --lp-rhythm: clamp(1rem, 0.6rem + 1.6vw, 1.618rem);
  --lp-measure: 44rem; /* 読みやすい行長（約 680px） */
}

/* --- 日本語フォント（全体に適用） --- */
body,
.lead,
p, li, dd, dt, span, a, label, input, textarea, button, select,
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.display-1, .display-2, .display-3, .display-4,
.btn {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "BIZ UDPGothic", Meiryo, system-ui, sans-serif !important;
  font-feature-settings: "palt" 1; /* 日本語の字詰めを自然に */
}

/* --- 本文タイポグラフィ --- */
body {
  font-size: clamp(15px, 0.92rem + 0.25vw, 17px);
  font-weight: 500; /* 細さ解消：標準を少し太く */
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #2c313a;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
p {
  font-weight: 500;
  line-height: 1.9;
  margin-bottom: 1.25em;
}
.lead {
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.15rem) !important;
  font-weight: 500;
  line-height: 1.9 !important;
  letter-spacing: 0.02em;
}
/* 中央寄せの導入文は読みやすい行長に収める */
.text-center > .lead,
.justify-content-center .lead {
  max-width: var(--lp-measure);
  margin-left: auto;
  margin-right: auto;
}

/* --- 見出しスケール（モジュラースケール × clamp） --- */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4,
.display-1, .display-2, .display-3, .display-4 {
  letter-spacing: 0.02em;
  word-break: normal;
  overflow-wrap: break-word;
}
.display-3, .display-4 {
  font-size: clamp(1.55rem, 1.05rem + 2.5vw, 2.55rem) !important;
  line-height: 1.4 !important;
  font-weight: 900;
  margin-bottom: 0.6em;
}
h2, .h2 {
  font-size: clamp(1.4rem, 1.02rem + 1.7vw, 2.05rem) !important;
  line-height: 1.45 !important;
  font-weight: 800;
  margin-bottom: 0.7em;
}
h3, .h3, h5.h3 {
  font-size: clamp(1.18rem, 1rem + 0.95vw, 1.5rem) !important;
  line-height: 1.55 !important;
  font-weight: 700;
  margin-bottom: 0.55em;
}
h4, .h4 { font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.25rem) !important; line-height: 1.6 !important; }
h5 { line-height: 1.7; }

/* --- セクションの縦リズム（余白を詰めて間延びを解消） --- */
.slice { padding-top: clamp(1.8rem, 1.1rem + 3.2vw, 3.25rem); padding-bottom: clamp(1.8rem, 1.1rem + 3.2vw, 3.25rem); }
.slice-lg { padding-top: clamp(2.25rem, 1.4rem + 4.5vw, 4.25rem); padding-bottom: clamp(2.25rem, 1.4rem + 4.5vw, 4.25rem); }
.py-6 { padding-top: clamp(1.25rem, 0.9rem + 1.8vw, 2.25rem) !important; padding-bottom: clamp(1.25rem, 0.9rem + 1.8vw, 2.25rem) !important; }
.py-7 { padding-top: clamp(1.5rem, 1rem + 2.4vw, 2.75rem) !important; padding-bottom: clamp(1.5rem, 1rem + 2.4vw, 2.75rem) !important; }

/* 見出しブロックと本文の間隔 */
.row.mb-5 { margin-bottom: clamp(1.25rem, 0.9rem + 2vw, 2.25rem) !important; }

/* 連続する2カラム特徴ブロックの間隔を均一化 */
.container > .py-6 + .py-6 { padding-top: 0 !important; margin-top: clamp(1rem, 0.7rem + 1.8vw, 1.85rem); }

/* --- 画像・カード --- */
.card { border-radius: 14px; }
/* 全幅で見せる特徴画像（card-body p-2 直下）だけを 100% 幅に */
.card-body.p-2 > img { display: block; width: 100%; height: auto; }
.card-body.p-2 > img.img-fluid { border-radius: 12px; }
/* それ以外の画像（ロゴ・高さ固定の画像など）は常に縦横比を維持し歪ませない */
img { max-width: 100%; }
img.img-fluid { height: auto; }
.img-center { width: auto; max-width: 100%; margin-left: auto; margin-right: auto; }
/* 明示的に height/width が指定された画像は比率維持（一方の auto を担保） */
img[style*="height"]:not([style*="width"]) { width: auto; }
img[style*="width"]:not([style*="height"]) { height: auto; }

/* --- ボタン --- */
.btn { letter-spacing: 0.03em; border-radius: 999px; }
.btn-lg { padding: 0.85em 2em; }

/* --- リスト本文の行間 --- */
li, dd { line-height: 1.85; }

/* --- フロー（STEP）：縦型カードに再設計（長いタイトルでも崩れない） --- */
.flow > li:not(:last-child) { margin-bottom: clamp(22px, 3vw, 34px); }
.flow > li dl {
  display: block;                 /* 横並び(dt20%/dd)をやめて縦積みに */
  padding: clamp(18px, 2.8vw, 30px) clamp(20px, 3.2vw, 34px);
  border: 2px solid var(--lp-green);
  border-radius: 14px;
}
.flow > li dl dt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  flex-basis: auto;               /* 20%固定を解除 */
  width: 100%;
  margin-right: 0;
  margin-bottom: 12px;
  text-align: left;
  color: var(--lp-green);
  font-size: clamp(1.05rem, 0.92rem + 0.6vw, 1.35rem);
  line-height: 1.45;
  font-weight: 800;
}
.flow > li dl dt .icon {
  display: inline-block;          /* タイトルと同じ行に小バッジとして配置 */
  margin-bottom: 0;
  flex: 0 0 auto;
  font-size: 12px;
  white-space: nowrap;
  background: linear-gradient(to right, var(--lp-green) 0%, var(--lp-accent) 100%) !important;
}
.flow > li dl dd {
  width: 100%;
  text-align: left;
  line-height: 1.9;
  color: var(--lp-text, #4a4a4a);
}
/* 矢印コネクタ・ドット線を緑＆中央に */
.flow > li:not(:last-child) dl::before { border-top-color: var(--lp-green) !important; }
.flow > li:not(:first-child)::before { left: 50%; transform: translateX(-50%); }

/* --- Q&A ボックスの余白・行間 --- */
.Qa-Box .Qa dt p, .Qa-Box .Qa dd p { line-height: 1.85; }
.Qa-Box .Qa { padding: clamp(16px, 2.5vw, 24px) 0; }

/* --- 行長が広がりすぎないようコンテナを微調整（超ワイド画面対策） --- */
@media (min-width: 1400px) {
  .container { max-width: 1180px; }
}

/* --- スマホでの左右余白を確保 --- */
@media (max-width: 575px) {
  .container { padding-left: 1.15rem; padding-right: 1.15rem; }
  .flow { padding-left: 0; padding-right: 0; }
}

/* ============================================================
   カラーテーマ：でもやるんだよ（グリーン）に統一
   テンプレート(Quick)の primary 青 #007ce6 系を上書き
   ============================================================ */
:root {
  --lp-green: #1a6b3f;
  --lp-green-dark: #0f4428;
  --lp-green-light: #2d8659;
  --lp-accent: #48c774;
  --lp-text: #4a4a4a;
}

/* Bootstrap primary（テキスト/背景/ボタン/バッジ） */
.text-primary { color: var(--lp-green) !important; }
.bg-primary { background-color: var(--lp-green) !important; }
.badge-primary { background-color: var(--lp-green) !important; color: #fff !important; }
.btn-primary {
  background-color: var(--lp-green) !important;
  border-color: var(--lp-green) !important;
  color: #fff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
  background-color: var(--lp-green-dark) !important;
  border-color: var(--lp-green-dark) !important;
}
.btn-outline-primary {
  color: var(--lp-green) !important;
  border-color: var(--lp-green) !important;
}
.btn-outline-primary:hover { background-color: var(--lp-green) !important; color: #fff !important; }
.btn-neutral { color: var(--lp-green) !important; }

/* リンク */
a { color: var(--lp-green); }
a:hover { color: var(--lp-green-dark); }
/* 暗背景セクション内のリンク・ボタンは視認性維持 */
.bg-section-dark a:not(.btn) { color: var(--lp-accent); }

/* アイコン/装飾の primary 色 */
.icon.icon-primary,
.svg-icon-primary,
[class*="text-primary"] { color: var(--lp-green) !important; }

/* ヘッダー（青→緑） */
.header-fixed,
.header-color { background-color: var(--lp-green) !important; box-shadow: 0 1px 1px rgba(0,0,0,0.12); }
.header-fixed .header-limiter h1 span { color: var(--lp-accent); }
.header-fixed .header-limiter nav a.selected { color: var(--lp-accent); }

/* Q&A バッジ（Q=緑 / A=アクセント緑） */
.Qa-Box .Qa dt::before { background: var(--lp-green) !important; }
.Qa-Box .Qa dd::before { background: var(--lp-accent) !important; }

/* 上部 dl 枠（ファイル前半の青 border / dt色 を上書き） */
.flow > li dl { border-color: var(--lp-green) !important; }
.flow > li dl dt { color: var(--lp-green) !important; }

/* ============================================================
   ヘッダー：/demoyarundayo のトンマナに統一
   （白・backdrop blur・繊細な影／緑グラデのロゴ／ダークnav＋緑ピルCTA）
   ============================================================ */
.header-fixed,
body.fixed .header-fixed {
  display: block !important;
  position: sticky !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  height: auto !important;
  padding: clamp(10px, 1.6vh, 16px) clamp(18px, 4vw, 40px) !important;
  background: rgba(255, 255, 255, 0.97) !important;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05) !important;
  border-bottom: 1px solid rgba(26, 107, 63, 0.12);
  color: var(--lp-green) !important;
  z-index: 1000 !important;
}
.header-fixed-placeholder { display: none !important; }

.header-fixed .header-limiter {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}

/* ロゴ */
.header-fixed .header-limiter h1 { float: none; margin: 0; font: inherit; line-height: 1; }
.header-fixed .header-limiter h1 a,
.lp-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.lp-logo-img {
  height: clamp(32px, 4.5vw, 42px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(26, 107, 63, 0.15));
  transition: transform 0.3s ease;
}
.lp-logo:hover .lp-logo-img { transform: rotate(-10deg) scale(1.08); }
.header-fixed .header-limiter h1 a span {
  font-weight: 900;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--lp-green) 0%, var(--lp-green-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--lp-green);
}

/* ナビ */
.header-fixed .header-limiter nav { float: none; display: flex; align-items: center; gap: clamp(14px, 2.4vw, 32px); font: inherit; line-height: 1; }
.header-fixed .header-limiter nav a {
  color: var(--text-dark, #1a1a1a);
  opacity: 1;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding: 0;
  transition: color 0.25s ease, transform 0.25s ease;
}
.header-fixed .header-limiter nav a:hover { color: var(--lp-green); opacity: 1; transform: translateY(-2px); }
/* 末尾リンク（お問い合わせ）を緑ピルCTAに */
.header-fixed .header-limiter nav a:last-child {
  background: var(--lp-green);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 900;
  box-shadow: 0 4px 16px rgba(26, 107, 63, 0.25);
}
.header-fixed .header-limiter nav a:last-child:hover { background: var(--lp-green-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26, 107, 63, 0.35); }

@media (max-width: 767px) {
  .header-fixed .header-limiter { flex-wrap: wrap; justify-content: center; gap: 8px 16px; }
  .header-fixed .header-limiter nav { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .header-fixed .header-limiter nav a { font-size: 0.85rem; }
  .header-fixed .header-limiter nav a:last-child { padding: 8px 18px; }
}
@media (max-width: 480px) {
  .header-fixed .header-limiter nav a:nth-child(1),
  .header-fixed .header-limiter nav a:nth-child(2) { display: none; }
}

/* ============================================================
   フッター：/demoyarundayo のデザイン・トンマナに統一
   ============================================================ */
.footer {
  padding: clamp(48px, 8vh, 64px) 24px clamp(32px, 5vh, 48px) !important;
  background: var(--lp-green-dark) !important;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0;
}
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: clamp(40px, 6vw, 64px); padding-bottom: clamp(32px, 5vh, 48px); }
.footer-brand { flex-shrink: 0; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo-img { height: clamp(36px, 5vw, 48px); width: auto; }
.footer-name { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; color: #fff; line-height: 1; letter-spacing: -0.02em; }
.footer-nav { display: flex; gap: clamp(28px, 5vw, 56px); flex-wrap: wrap; }
.footer-nav-col { min-width: 100px; }
.footer-nav-heading { font-size: 0.95rem; font-weight: 900; color: #fff; margin-bottom: 16px; letter-spacing: 0.02em; }
.footer-nav-list { list-style: none; padding: 0; margin: 0; }
.footer-nav-list li { margin-bottom: 8px; }
.footer-nav-list li:last-child { margin-bottom: 0; }
.footer-link { font-size: 0.9rem; color: rgba(255, 255, 255, 0.78); text-decoration: none; font-weight: 600; transition: color 0.2s ease; }
.footer-link:hover { color: var(--lp-accent); }
.footer-separator { height: 1px; background: rgba(255, 255, 255, 0.2); margin-bottom: clamp(24px, 4vh, 36px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 24px; }
.footer-company-info { display: flex; flex-direction: column; gap: 6px; }
.footer-company-name { font-size: 1.1rem; font-weight: 900; color: #fff; margin: 0; }
.footer-tagline { font-size: 0.9rem; color: rgba(255, 255, 255, 0.8); margin: 0; }
.footer-contact { font-size: 0.9rem; color: rgba(255, 255, 255, 0.8); margin: 4px 0 0; }
.footer-contact-label { margin-right: 8px; }
.footer-contact-link { color: var(--lp-accent); text-decoration: none; }
.footer-contact-link:hover { text-decoration: underline; }
.footer-copyright { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); font-weight: 500; margin: 0; }
@media (max-width: 767px) {
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-nav { width: 100%; gap: 28px 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
}
