@charset "utf-8";
:root {
  --main: #0075c2;
  --main-dark: #00538c;
  --accent: #ffb400;
  --bg-light: #f5f8fb;
  --text-main: #333;
  --text-muted: #666;
  --border-soft: #dde3ec;
  --card-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  --radius-lg: 16px;
  --radius-xl: 24px;
  --max-width: 1060px;
}
* {
  box-sizing: border-box;
}
body {
    font-size: 0.9rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt";
    margin: 0px;
    width: 100%;
    color: var(--text-main);
    line-height: 1.5rem;
    background-color: #ffffff;
}
h1, h2, h3, h4, h5 {
  font-weight: normal;
  margin: 0px;
}
p {
  margin: 0px;
}
ul, ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}
a {
  color: var(--main);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a img {
  border-style: none;
}
img {
  image-rendering: -webkit-optimize-contrast;
}
/* ===== Layout ===== */
.site-header {
  border-bottom: 1px solid #e3e7ee;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  font-family: "Noto Serif JP", serif;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--main-dark);
  white-space: nowrap;
  width: 30%;
}
.site-logo img {
  width: 70%;
}
.global-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 0.9rem;
}
.global-nav a {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--main-dark);
  text-decoration: none;
  transition: background-color 0.15s, color 0.15s;
}
.global-nav a:hover {
  background: var(--bg-light);
  color: var(--main);
}
.hero {
  background: linear-gradient(135deg, #e6f2ff, #f5fbff);
  border-bottom: 1px solid #dde5f0;
  font-family: "Noto Serif JP", serif;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 16px 40px;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 32px;
  align-items: center;
}
.hero-lead {
  min-width: 0;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.8rem;
  padding: 0px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #d3e3ff;
  color: var(--main-dark);
  margin-bottom: 10px;
}
.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}
.hero-title {
    margin: 0 0 10px;
    font-size: clamp(22px, 3vw, 26px);
    font-weight: bold;
    line-height: 2.4rem;
}
.hero-title span {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(0, 117, 194, 0.08);
  color: var(--main-dark);
}
.hero-desc {
  color: var(--text-muted);
  margin-bottom: 16px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.hero-badge {
    font-size: 0.8rem;
    padding: 4px 9px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #d9e3f5;
    color: #445;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 6px;
}
.btn-primary {
  border: none;
  cursor: pointer;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--main), var(--main-dark));
  color: #fff;
  font-weight: 600;
  box-shadow: 0 6px 12px rgba(0, 92, 160, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-primary span {
  font-size: 11px;
  opacity: 0.9;
}
.btn-secondary {
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  border: 1px solid var(--main);
  color: var(--main-dark);
  background: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
    line-height: 1.3rem;
}
.hero-visual {
  min-width: 0;
}
.hero-panel {
    background: #fff;
    padding: 18px 18px 16px;
    border: 1px solid #e2ebf7;
    text-align: center;
  border-radius: 30px;
}
.hero-panel img {
  width: 80%;
}
.hero-panel-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--main-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-panel-pill {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #f0f6ff;
  color: var(--main-dark);
}
.hero-score-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.hero-score-main {
  flex: 1;
}
.hero-score-label {
  font-size: 11px;
  color: var(--text-muted);
}
.hero-score-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--main-dark);
}
.hero-score-sub {
  font-size: 11px;
  color: var(--text-muted);
}
.hero-score-badge {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #fef6e5;
  color: #9b6a00;
  border: 1px solid #f7d690;
  white-space: nowrap;
}
.hero-panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 11px;
  color: var(--text-muted);
}
.hero-panel-list li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 4px;
}
.hero-panel-list-bullet {
  margin-top: 5px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--main);
}
.hero-panel-footer {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed #dde3f0;
  font-size: 10px;
  color: var(--text-muted);
}
/* Content sections */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 16px;
  font-family: "Noto Serif JP", serif;
}
.section-header {
    margin-bottom: 18px;
    margin-top: 10px;
}
.section-kicker {
    font-size: 1rem;
    color: var(--main-dark);
    text-transform: uppercase;
}
.section-title {
    font-size: 2rem;
    letter-spacing: 2px;
    line-height: 3rem;
}
.section-lead {
    color: var(--text-muted);
    margin-top: 15px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 0px;
}
.section--muted {
  background: var(--bg-light);
  border-top: 1px solid #e2e9f3;
  border-bottom: 1px solid #e2e9f3;
}
/* Risk cards */
.risk-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.risk-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 14px 14px 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.risk-card-head {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}
.risk-icon {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 20%, #fff 0, #fff 25%, #cfe4ff 26%, #7fb3ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--main-dark);
  flex-shrink: 0;
}
.risk-title {
    font-size: 1.3rem;
    font-weight: bold;
}
.risk-tagline {
  font-size: 1rem;
  color: var(--text-muted);
}
.risk-body {
    color: var(--text-muted);
    margin-top: 10px;
}
.risk-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
    font-size: 0.8rem;
}
.risk-tag {
  padding: 2px 7px;
  border-radius: 999px;
  background: #f2f6ff;
  color: var(--main-dark);
  border: 1px solid #d6e2ff;
}
.risk-link {
  margin-top: 6px;
    font-size: 0.8rem;
}
.risk-link a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--main-dark);
  font-weight: 600;
}
.risk-link a::after {
  content: "▶";
  font-size: 9px;
}
/* Helpful info list */
.info-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.info-item {
  font-size: 12px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  padding: 10px 11px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-label {
  font-size: 0.8rem;
  color: var(--main-dark);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.info-title {
    font-size: 1.2rem;
    font-weight: bold;
}
.info-desc {
  color: var(--text-muted);
    font-size: 0.9rem;
}
.info-link {
  font-size: 0.9rem;
  margin-top: 2px;
}
.info-link a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--main-dark);
}
.info-link a::after {
  content: "▶";
  font-size: 9px;
}
/* Footer */
.site-footer {
  border-top: 1px solid #e2e6ee;
  padding: 16px 16px 24px;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  background: #fafbfe;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-links {
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}
/* Responsive */
@media (max-width: 840px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-visual {
    order: -1;
  }
  .risk-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .info-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .global-nav {
    justify-content: flex-start;
  }
  .hero-inner {
    padding-top: 24px;
    padding-bottom: 28px;
  }
  .risk-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .info-list {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* ===== 最短即日調達の仕組み 図（flow） ===== */
.fact-flow {
  background: var(--bg-light);
  border-radius: 18px;
  border: 1px solid #dde4f0;
  padding: 20px 16px;
}
.fact-flow__caption {
  font-size: 1.1rem;
  font-weight: 600;
  color: #345;
  margin: 0 0 10px;
}
.fact-flow__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
}
/* 各ステップカード */
.fact-flow__step {
  position: relative;
  flex: 1 1 180px;
  min-width: 0;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e0e6f2;
  padding: 10px 12px 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}
.fact-flow__step-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.fact-flow__step-num {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--main);
  letter-spacing: 0.08em;
}
.fact-flow__step-time {
  font-size: 0.9rem;
  color: #888;
}
.fact-flow__step-title {
  margin: 0 0 4px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #234;
}
.fact-flow__step-body {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
}
/* 即日入金ステップを強調 */
.fact-flow__step--highlight {
  border-color: #ffcf7a;
  box-shadow: 0 0 0 1px #ffe6b3, 0 6px 16px rgba(0, 0, 0, 0.06);
  background: #fffdf6;
}
.fact-flow__point-list {
  margin: 8px 0 0;
  padding-left: 1.2em;
  font-size: 0.9rem;
  color: #754f00;
}
.fact-flow__point-list li {

}
/* 後日精算ステップは少しトーンを落とす */
.fact-flow__step--later {
  opacity: 0.95;
}
/* PC 時：横並び矢印 */
@media (min-width: 840px) {
  .fact-flow__step {
    margin-right: 18px;
  }
  .fact-flow__step::after {
    content: "▶";
    position: absolute;
    top: 50%;
    right: -14px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: #a4aec0;
  }
  .fact-flow__step:last-child::after {
    content: none;
  }
}
/* 補足テキスト */
.fact-flow__note {
  margin: 10px 0 0;
  font-size: 0.9rem;
  color: #777;
}
/* スマホ：縦並び */
@media (max-width: 839px) {
  .fact-flow {
    padding: 16px 12px;
  }
  .fact-flow__step {
    margin-right: 0;
  }
}
/* ===== 対策とファクタリング活用例（CASE） ===== */

.case-grid {
    display: grid;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.case-panel {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--card-shadow);
    padding: 25px 25px 25px;
}

.case-panel--issue {
    background: #fdfefe;
}

.case-panel--solution {
  background: #fffdf8;
  border-color: #f2dfb3;
}

.case-panel__title {
  margin: 0 0 8px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #234;
}

.case-kv {
    margin: 0;
    line-height: 2rem;
}

.case-kv dt {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #345;
}

.case-kv dd {
  margin: 4px 0 0;
}

.case-list {
    margin: 0;
    padding-left: 1.2em;
    font-size:0.9rem;
    color: var(--text-muted);
    line-height: 1.7rem;
}
.case-list li {
    width: 30%;
    margin-right: 1%;
    margin-left: 1%;
    display: inline-block;
}
.case-list li img {
    width: 100%;
}

.case-list li + li {
  margin-top: 3px;
}
.case-list ul li span {
    display: block;
}
.case-list2 {
    margin-top: 0%;
    margin-right: 0%;
    margin-left: 3%;
    margin-bottom: 0%;
    padding-left: 1.2em;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7rem;
    list-style-position: outside;
    list-style-type: disc;
}
.case-list2 span {
    color: #F71013;
}
.case-section {
  margin-top: 10px;
}

.case-section__title {
    margin: 0 0 4px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #234;
    line-height: 2rem;
}

.case-section--hint {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed #e0cfa3;
}

/* STEP フロー */
.case-flow {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.case-flow li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 4px;
}

.case-flow__tag {
  flex: 0 0 auto;
  font-size: 0.9rem;
  padding: 2px 8px;
  border-radius: 999px;
  background: #e9f2ff;
  color: var(--main-dark);
  font-weight: 600;
}

.case-flow__text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7rem;
}

/* 向いている会社タグ */
.case-tags {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.case-tags li {
  font-size: 0.95rem;
  padding: 3px 8px;
  border-radius: 999px;
  background: #f3f6ff;
  color: #345;
  border: 1px solid #d4e0ff;
}

.case-note {
  margin: 10px 0 0;
  font-size: 0.9rem;
  color: #777;
}

.case-backlink {
  margin-top: 14px;
  font-size: 0.9rem;
}

.case-backlink a {
  color: var(--main-dark);
  text-decoration: none;
}

.case-backlink a:hover {
  text-decoration: underline;
}

/* レスポンシブ：スマホでは縦並び */
@media (max-width: 840px) {
  .case-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* ===== パンくず（breadcrumb） ===== */

.breadcrumb {
  margin: 4px 0 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumb__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.breadcrumb__item::after {
  content: ">";
  font-size: 0.8rem;
  color: #bbb;
}

.breadcrumb__item:last-child::after {
  content: "";
}

.breadcrumb__item a {
  color: var(--main-dark);
  text-decoration: none;
}

.breadcrumb__item a:hover {
  text-decoration: underline;
}

.breadcrumb__item--current {
  color: var(--text-muted);
  font-weight: 600;
}
/* ===== 支払サイトのギャップを埋める方法 ===== */

.gap-bridge {
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 16px 8px;
  border-radius: 16px;
  background: var(--bg-light, #f5f8fb);
  border: 1px solid #dde4f0;
}

/* タイムライン部分 */
.gap-bridge__timeline {
  margin-bottom: 18px;
}

.gap-bridge__axis {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px dashed #cfd7e7;
}

.gap-bridge__node {
  flex: 0 0 32%;
  padding: 8px 10px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #dde3f0;
}

.gap-bridge__node-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #233047;
}

.gap-bridge__node-sub {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 2px;
}

/* 左右で色を少し変える */
.gap-bridge__node--pay {
  border-left: 4px solid #f97316;
}

.gap-bridge__node--in {
  border-left: 4px solid var(--main, #0075c2);
}

/* ギャップ部分 */
.gap-bridge__gap {
  flex: 1 1 auto;
  text-align: center;
  position: relative;
  padding: 8px 6px;
}

.gap-bridge__gap::before {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  border-radius: 999px;
  background: repeating-linear-gradient(
    90deg,
    #e5e7eb,
    #e5e7eb 8px,
    #cbd5e1 8px,
    #cbd5e1 16px
  );
}

.gap-bridge__gap-label {
  position: relative;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  background: #fff;
  font-size: 0.85rem;
  color: #4b5563;
  border: 1px solid #e5e7eb;
}

.gap-bridge__gap-badge {
  position: relative;
  display: inline-block;
  margin-top: 6px;
  padding: 4px 10px;
  border-radius: 10px;
  background: #fef3c7;
  border: 1px solid #facc15;
  font-size: 0.8rem;
  color: #92400e;
}

/* 下の説明文 */
.gap-bridge__tips {
  margin: 8px 0 0;
  padding-left: 1.2em;
  font-size: 0.9rem;
  color: #4b5563;
}

.gap-bridge__tips li + li {
  margin-top: 2px;
}

/* カード部分 */
.gap-bridge__cards {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gap-bridge__card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--border-soft, #dde4f0);
  box-shadow: var(--card-shadow, 0 4px 10px rgba(0,0,0,0.03));
  padding: 12px 12px 10px;
}

.gap-bridge__card-title {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1f2937;
}
.gap-bridge__card-img {
    width: 100%;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}
.gap-bridge__card-img img {
    width: 90%;
}
.gap-bridge__card-list {
  margin: 0;
  padding-left: 1.1em;
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.6rem;
}

.gap-bridge__card-list li + li {
  margin-top: 2px;
}

/* レスポンシブ */
@media (max-width: 840px) {
  .gap-bridge__axis {
    flex-direction: column;
    align-items: stretch;
  }
  .gap-bridge__gap {
    order: 2;
  }
  .gap-bridge__cards {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* ===== 納税期を乗り切るためのポイント ===== */

.tax-tips {
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 16px 10px;
  border-radius: 16px;
  background: var(--bg-light, #f5f8fb);
  border: 1px solid #dde4f0;
}

.tax-tips__intro {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #374151;
}

.tax-tips__intro strong {
  color: var(--main, #0075c2);
}

/* カードグリッド */

.tax-tips__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tax-tips__card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--border-soft, #dde4f0);
  box-shadow: var(--card-shadow, 0 4px 10px rgba(0,0,0,0.03));
  padding: 12px 12px 10px;
  position: relative;
}

/* 納税期×ファクタリングのカードだけ少し強調 */
.tax-tips__card--accent {
  border-color: #facc15;
  background: #fffbeb;
}

.tax-tips__badge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 999px;
  background: #e5f0ff;
  color: var(--main, #0075c2);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.tax-tips__card--accent .tax-tips__badge {
  background: #fef3c7;
  color: #92400e;
}

.tax-tips__card-title {
  margin: 4px 0 4px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #111827;
}
.tax-tips__card-title-img {
    width: 100%;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}
.tax-tips__card-title-img img {
    width: 90%;
}
.tax-tips__list {
  margin: 2px 0 0;
  padding-left: 1.1em;
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.6rem;
}

.tax-tips__list li + li {
  margin-top: 2px;
}

/* 注意書き */

.tax-tips__note {
  margin: 12px 0 0;
  font-size: 0.85rem;
  color: #6b7280;
}

/* レスポンシブ：スマホでは1列 */

@media (max-width: 768px) {
  .tax-tips__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* ===== 季節要因に強い資金繰りの作り方 ===== */

.season-cash {
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 16px 12px;
  border-radius: 16px;
  background: var(--bg-light, #f5f8fb);
  border: 1px solid #dde4f0;
}

/* 上部：イントロ＋年間イメージ */

.season-cash__top {
  display: grid;

  margin-bottom: 16px;
}

.season-cash__intro {
    font-size: 0.95rem;
    color: #374151;
    width: 100%;
}

.season-cash__intro p {
  margin: 0 0 6px;
}

.season-cash__intro strong {
  color: var(--main, #0075c2);
}

/* カレンダー風イメージ */

.season-cash__calendar {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--border-soft, #dde4f0);
    box-shadow: var(--card-shadow, 0 4px 10px rgba(0, 0, 0, 0.03));
    padding: 12px 12px 10px;
    width: 100%;
}

.season-cash__calendar-header {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 6px;
}

.season-cash__months {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 6px;
}

.season-cash__month {
  border-radius: 10px;
  padding: 6px 6px;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.2;
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.season-cash__month--busy {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.season-cash__month--normal {
  background: #f9fafb;
}

.season-cash__month--slow {
  background: #fef2f2;
  border-color: #fecaca;
}

.season-cash__month-label {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
  color: #111827;
}

.season-cash__month-note {
  display: block;
  color: #4b5563;
}

.season-cash__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 4px;
}

.season-cash__legend-item {
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #4b5563;
}

.season-cash__legend-item--busy {
  border-color: #bfdbfe;
  background: #eff6ff;
}

.season-cash__legend-item--slow {
  border-color: #fecaca;
  background: #fef2f2;
}

.season-cash__legend-item--buffer {
  border-color: #facc15;
  background: #fffbeb;
}

.season-cash__calendar-note {
  margin: 0;
  font-size: 0.8rem;
  color: #6b7280;
}

/* 下部：カード群 */

.season-cash__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.season-cash__card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--border-soft, #dde4f0);
  box-shadow: var(--card-shadow, 0 4px 10px rgba(0, 0, 0, 0.03));
  padding: 12px 12px 10px;
  position: relative;
}

/* ファクタリング等を含むカードを少し強調 */
.season-cash__card--accent {
  border-color: #bfdbfe;
  background: #f4f7ff;
}

.season-cash__step-badge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 999px;
  background: #e5f0ff;
  color: var(--main, #0075c2);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.season-cash__card-title {
  margin: 4px 0 4px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #111827;
}

.season-cash__list {
  margin: 2px 0 0;
  padding-left: 1.1em;
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.6rem;
}

.season-cash__list li + li {
  margin-top: 2px;
}

/* 注意書き */

.season-cash__note {
  margin: 12px 0 0;
  font-size: 0.85rem;
  color: #6b7280;
}

/* レスポンシブ */

@media (max-width: 900px) {
  .season-cash__top {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .season-cash__months {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .season-cash__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* ===== 融資とファクタリングの使い分け ===== */

.lvf {
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 16px 12px;
  border-radius: 16px;
  background: var(--bg-light, #f5f8fb);
  border: 1px solid #dde4f0;
}

.lvf__summary {
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: #374151;
}

.lvf__summary strong {
  color: var(--main, #0075c2);
}

.lvf__tags {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.lvf__tag {
  font-size: 0.8rem;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #4b5563;
}

/* レイアウト */

.lvf__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: flex-start;
}

/* 比較表 */

.lvf__table-wrap {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--border-soft, #dde4f0);
  box-shadow: var(--card-shadow, 0 4px 10px rgba(0,0,0,0.03));
  padding: 10px 10px 8px;
}

.lvf__sub-title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #111827;
}

.lvf-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.lvf-table th,
.lvf-table td {
  padding: 6px 6px;
  vertical-align: top;
  border-top: 1px solid #e5e7eb;
}

.lvf-table tr:first-child th,
.lvf-table tr:first-child td {
  border-top: none;
}

.lvf-table th {
  width: 26%;
  font-weight: 600;
  color: #374151;
  background: #f9fafb;
}

.lvf-table td {
  color: #4b5563;
  line-height: 1.6rem;
}

/* 右側カード */

.lvf__cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.lvf__card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--border-soft, #dde4f0);
  box-shadow: var(--card-shadow, 0 4px 10px rgba(0,0,0,0.03));
  padding: 10px 12px 10px;
}

.lvf__card--factoring {
  border-color: #bfdbfe;
  background: #f3f7ff;
}

.lvf__card--mix {
  border-style: dashed;
}

.lvf__badge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.lvf__badge--loan {
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.lvf__card-title {
    margin-top: 10px;
}
.lvf__list {
    list-style-position: inside;
    list-style-type: circle;
    margin-top: 5px;
}
.lvf__note {
    margin-top: 10px;
}
.lvf__badge--factoring {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.lvf__badge--mix {
  background: #fef3c7;
  color: #92400e;
  borde
}
/* ===== 与信管理とあわせたリスク対策 ===== */

.credit-risk {
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 16px 12px;
  border-radius: 16px;
  background: var(--bg-light, #f5f8fb);
  border: 1px solid #dde4f0;
}

.credit-risk__intro {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #374151;
}

.credit-risk__intro strong {
  color: var(--main, #0075c2);
}

.credit-risk__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.credit-risk__card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--border-soft, #dde4f0);
  box-shadow: var(--card-shadow, 0 4px 10px rgba(0,0,0,0.03));
  padding: 12px 12px 10px;
  position: relative;
}

.credit-risk__card--rank {
  background: #fdfefe;
}

.credit-risk__card--flow {
  background: #f9fbff;
}

.credit-risk__card--wide {
  grid-column: 1 / -1;
}

.credit-risk__badge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 999px;
  background: #e5f0ff;
  color: var(--main, #0075c2);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.credit-risk__card-title {
  margin: 4px 0 6px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #111827;
}

/* 与信サイクル */

.credit-flow {
  margin: 2px 0 6px;
  padding: 0;
  list-style: none;
}

.credit-flow li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 4px;
}
.credit-flow li img {
    width: 100%;
    display: inline-block;
}
.credit-flow__step {
  flex: 0 0 auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2563eb;
}

.credit-flow__text {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.6rem;
}

/* ランク別リスト */

.credit-rank {
  margin: 0;
}

.credit-rank dt {
  margin-top: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
}

.credit-rank dd {
  margin: 2px 0 0;
}

.credit-risk__list {
  margin: 0;
  padding-left: 1.1em;
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.6rem;
    list-style-position: outside;
    list-style-type: circle;
}
.credit-risk__list li + li {
  margin-top: 2px;
}

/* チェック項目 複数列 */

.credit-risk__list--cols {
  columns: 2;
  column-gap: 20px;
}

@media (max-width: 720px) {
  .credit-risk__list--cols {
    columns: 1;
  }
}

/* 補足テキスト */

.credit-risk__hint {
  margin: 6px 0 0;
  font-size: 0.85rem;
  color: #6b7280;
}

.credit-risk__note {
  margin: 12px 0 0;
  font-size: 0.85rem;
  color: #6b7280;
}

/* レスポンシブ */

@media (max-width: 840px) {
  .credit-risk__grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .credit-risk__card--wide {
    grid-column: auto;
  }
}
/* ▼ ブログ一覧セクション */

    .section-blog {
      padding: 64px 16px;

    }

    .section-blog__inner {
      max-width: 1080px;
      margin: 0 auto;
    }

    .section-blog__label {
      font-size: 12px;
      letter-spacing: .2em;
      color: var(--main-color);
      font-weight: 600;
      margin: 0 0 8px;
    }

    .section-blog__title {
      font-size: 24px;
      font-weight: 700;
      margin: 0 0 12px;
    }

    .section-blog__lead {
      font-size: 14px;
      color: var(--muted);
      margin: 0 0 32px;
    }

    .blog-list {
      display: grid;
      gap: 24px;
	  font-family: "Noto Serif JP", serif;
    }



    @media (min-width: 768px) {
      .blog-list {
        grid-template-columns: repeat(3, 1fr); /* PCで3カラム */
      }

      .section-blog {
        padding: 80px 24px;
      }

      .section-blog__title {
        font-size: 28px;
      }
    }

    .blog-card {
      background: #fff;
      border-radius: 12px;
      padding: 20px 18px;
      box-shadow: 0 4px 16px rgba(0,0,0,.04);
      border: 1px solid rgba(0,0,0,.04);
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .blog-card a {
      display: block;
      height: 100%;
    }

    .blog-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(0,0,0,.08);
    }

    .blog-card__cat {
      font-size: 11px;
      font-weight: 600;
      color: var(--main-color);
      letter-spacing: .12em;
      margin: 0 0 8px;
    }

    .blog-card__title {
      font-size: 1.2rem;
      font-weight: 700;
      margin: 0 0 10px;
    }

    .blog-card__img {
    width: 100%;
    }
    .blog-card__img img {
    width: 100%;
    }
    .blog-card__excerpt {
      font-size: 1rem;
      color: var(--muted);
      margin: 0 0 16px;
    }

    .blog-card__meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 11px;
      color: var(--muted);
    }

    .blog-card__more {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-weight: 600;
      color: var(--main-color);
    }

    .blog-card__more::after {
      content: "›";
      font-size: 14px;
    }
    .breadcrumb {
      font-size: 12px;
      color: var(--muted);
      margin: 0 0 16px;
      white-space: nowrap;
      overflow-x: auto;
    }

    .breadcrumb ol {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
    }

    .breadcrumb li {
      display: inline-flex;
      align-items: center;
    }

    .breadcrumb li + li::before {
      content: "›";
      margin: 0 4px;
      color: #b0b4b8;
      font-size: 11px;
    }

    .breadcrumb a {
      text-decoration: none;
      color: var(--muted);
    }

    .breadcrumb a:hover {
      text-decoration: underline;
    }
    .section-article {
      padding: 40px 16px 80px;
	  font-family: "Noto Serif JP", serif;
    }

    .article-inner {
      max-width: 960px;
      margin: 0 auto;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 10px 24px rgba(0,0,0,.04);
      padding: 28px 20px 32px;
      border: 1px solid var(--border);
    }

    @media (min-width: 768px) {
      .section-article {
        padding: 56px 24px 96px;
      }
      .article-inner {
        padding: 32px 40px 40px;
      }
    }

    .article-label {
      font-size: 12px;
      letter-spacing: .22em;
      color: var(--main-color);
      font-weight: 600;
      margin: 0 0 8px;
      text-transform: uppercase;
    }

    .article-category {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      color: var(--main-color);
      background: #e4edff;
      padding: 4px 10px;
      border-radius: 999px;
      margin-bottom: 12px;
    }

    .article-title {
      font-size: 24px;
      font-weight: 700;
      margin: 0 0 12px;
    }

    @media (min-width: 768px) {
      .article-title {
        font-size: 28px;
      }
    }

    .article-meta {
      font-size: 12px;
      color: var(--muted);
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      margin-bottom: 20px;
    }

    .article-meta span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .article-meta__dot::before {
      content: "";
      display: inline-block;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--muted);
    }

    .article-lead {
      font-size: 14px;
      color: var(--text);
      background: #f5f7fb;
      border-radius: 10px;
      padding: 14px 16px;
      margin: 0 0 24px;
    }

    .article-body {
      font-size: 14px;
      color: var(--text);
    }

    .article-body h2 {
      font-size: 20px;
      margin: 32px 0 12px;
      padding-bottom: 6px;
      border-bottom: 2px solid var(--accent);
    }

    .article-body h3 {
      font-size: 16px;
      margin: 24px 0 8px;
    }

    .article-body p {
      margin: 0 0 14px;
    }

    .article-body ul,
    .article-body ol {
      margin: 0 0 16px 1.4em;
      padding: 0;
    }

    .article-body li {
      margin-bottom: 6px;
    }

    .article-body strong {
      font-weight: 700;
    }
    .article-body img {
    width: 50%;
    }
    .article-note {
      font-size: 12px;
      color: var(--muted);
      background: #fafafa;
      border-radius: 8px;
      padding: 10px 12px;
      margin: 20px 0 0;
    }

    .article-callout {
      margin: 24px 0;
      padding: 16px 16px;
      border-radius: 12px;
      background: #fff9e8;
      border: 1px solid #ffe2a0;
      font-size: 13px;
    }

    .article-callout-title {
      font-weight: 700;
      margin-bottom: 6px;
    }

    /* ▼ 戻る／次記事ナビ */

    .article-footer-nav {
      margin-top: 32px;
      padding-top: 20px;
      border-top: 1px solid var(--border);
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: space-between;
      font-size: 13px;
    }

    .article-footer-nav a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: #fff;
      text-decoration: none;
      color: var(--main-color);
      font-weight: 600;
    }

    .article-footer-nav a span {
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .article-footer-nav a:hover {
      box-shadow: 0 4px 12px rgba(0,0,0,.06);
    }

    .article-footer-nav__prev::before {
      content: "‹";
      font-size: 16px;
    }

    .article-footer-nav__next::after {
      content: "›";
      font-size: 16px;
    }

    .article-footer-nav__back {
      margin-left: auto;
    }
    .section-faq {
      padding: 56px 16px 88px;
	  font-family: "Noto Serif JP", serif;
    }

    .faq-inner {
      max-width: 960px;
      margin: 0 auto;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 10px 24px rgba(0,0,0,.04);
      padding: 28px 20px 32px;
      border: 1px solid var(--border);
    }

    @media (min-width: 768px) {
      .section-faq {
        padding: 72px 24px 104px;
      }
      .faq-inner {
        padding: 32px 40px 40px;
      }
    }

    .faq-label {
      font-size: 12px;
      letter-spacing: .24em;
      color: var(--main-color);
      font-weight: 600;
      margin: 0 0 8px;
    }

    .faq-title {
      font-size: 24px;
      font-weight: 700;
      margin: 0 0 10px;
    }

    @media (min-width: 768px) {
      .faq-title {
        font-size: 28px;
      }
    }

    .faq-lead {
      font-size: 14px;
      color: var(--muted);
      margin: 0 0 24px;
    }

    .faq-list {
      border-top: 1px solid var(--border);
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
      padding: 12px 0;
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 6px 0;
      outline: none;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-q-mark {
      flex: 0 0 auto;
      width: 24px;
      height: 24px;
      border-radius: 999px;
      background: #e4edff;
      color: var(--main-color);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      margin-top: 3px;
    }

    .faq-q-text {
      font-size: 15px;
      font-weight: 700;
      line-height: 1.6;
      flex: 1 1 auto;
      position: relative;
      padding-right: 22px;
    }

    .faq-q-text::after {
      content: "＋";
      position: absolute;
      right: 0;
      top: 0;
      font-size: 16px;
      color: var(--muted);
    }

    .faq-item[open] .faq-q-text::after {
      content: "－";
    }

    .faq-a {
      padding: 4px 0 6px 34px;
      font-size: 14px;
      color: var(--text);
    }

    .faq-a p {
      margin: 0 0 8px;
    }

    .faq-a ul {
      margin: 0 0 8px 1.4em;
      padding: 0;
      font-size: 13px;
      color: var(--muted);
    }

    .faq-a li {
      margin-bottom: 4px;
    }

    .faq-bottom-note {
      margin-top: 20px;
      font-size: 12px;
      color: var(--muted);
      background: #fafafa;
      border-radius: 8px;
      padding: 10px 12px;
    }

    .faq-cta {
      margin-top: 24px;
      text-align: center;
    }

    .faq-cta a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 20px;
      border-radius: 999px;
      border: none;
      background: var(--main-color);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      box-shadow: 0 4px 14px rgba(0,0,0,.16);
    }

    .faq-cta a:hover {
      opacity: .95;
      text-decoration: none;
    }

    .faq-cta a::after {
      content: "›";
      font-size: 16px;
    }
    .section-factoring {
      padding: 64px 16px 80px;
      background: #ffffff;
	  font-family: "Noto Serif JP", serif;
    }

    .factoring-inner {
      max-width: 1040px;
      margin: 0 auto;
    }

    .factoring-label {
      font-size: 1rem;
      letter-spacing: .24em;
      color: var(--main-color);
      font-weight: 600;
      margin: 0 0 8px;
      text-transform: uppercase;
    }

    .factoring-title {
      font-size: 1.2rem;
      font-weight: 700;
      margin: 0 0 10px;
    }

    @media (min-width: 768px) {
      .factoring-title {
        font-size: 30px;
      }
    }

    .factoring-lead {
      font-size: 14px;
      color: var(--muted);
      margin: 0 0 24px;

    }

    .factoring-layout {
      display: grid;
      gap: 24px;
    }

    @media (min-width: 900px) {
      .factoring-layout {
        grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
        align-items: start;
      }
    }

    .factoring-main-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 24px rgba(0,0,0,.04);
    padding: 24px 20px 24px;
    }

    @media (min-width: 900px) {
      .factoring-main-card {
        padding: 26px 26px 26px;
      }
    }

    .factoring-main-card h2 {
      font-size: 18px;
      margin: 0 0 10px;
    }

    .factoring-main-card p {
      font-size: 14px;
      margin: 0 0 10px;
    }

    .factoring-main-card ul {
    margin: 0 0 12px 1.3em;
    padding: 0;
    font-size: 0.9rem;
    color: var(--muted);
    list-style-position: outside;
    list-style-type: disc;
    }

    .factoring-main-card li {
      margin-bottom: 6px;
    }

    .factoring-definition {
      font-size: 15px;
      padding: 10px 12px;
      border-left: 4px solid var(--main-color);
      background: #f5f7fb;
      border-radius: 6px;
      margin-bottom: 12px;
    }

    .factoring-definition img {
    width: 100%;
    }

    .factoring-flow {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed var(--border);
    font-size: 0.9rem;
    }

    .factoring-flow-title {
      font-weight: 900;
      margin: 0 0 8px;
    }

    .factoring-flow-steps {

    width: 100%;
    }

    @media (min-width: 640px) {
      .factoring-flow-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    .factoring-flow-step {
      font-size: 0.9rem;
      background: #fafafa;
      border-radius: 10px;
      padding: 10px 10px 11px;
      border: 1px solid var(--border);
      position: relative;
    }

    .factoring-flow-step-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      border-radius: 999px;
      background: #e4edff;
      color: var(--main-color);
      font-weight: 700;
      margin-bottom: 4px;
    }

    .factoring-flow-step-title {
      font-weight: 700;
      margin-bottom: 4px;
      font-size: 1rem;
    }

    .factoring-flow-step p {
      margin: 0;
      color: var(--muted);
    }

    /* 右側：ポイント・メリット・注意点 */

    .factoring-side {
      display: grid;
      gap: 16px;
    }

    .factoring-side-card {
    background-color: #F1C97C;
    border-radius: 14px;
    padding: 16px 16px 18px;
    border: 1px solid var(--border);
    font-size: 0.9rem;
    }

    .factoring-side-title {
      font-size: 1rem;
      font-weight: 700;
      margin: 0 0 6px;
      color: var(--main-color);
    }

    .factoring-side-card ul {
      margin: 0 0 4px 1.2em;
      padding: 0;
    }

    .factoring-side-card li {
      margin-bottom: 4px;
    }

    .factoring-note {
      color: var(--muted);
      margin-top: 8px;
    }

    .factoring-compare {
      margin-top: 4px;
      color: var(--muted);
    }

    .factoring-compare strong {
      font-weight: 700;
      color: var(--text);
    }

    @media (max-width: 599px) {
      .section-factoring {
        padding-top: 40px;
      }
    }
/* ================================
   お問合せフォーム
   ================================ */

.contact-section {
  padding: 60px 16px;
	  font-family: "Noto Serif JP", serif;
}

.contact-inner {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 24px 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.contact-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.contact-lead {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: center;
  color: #555555;
}

.contact-form {
  margin-top: 8px;
}

.form-row {
  margin-bottom: 18px;
}

.form-row-half {
  display: block;
}

.form-row-half .field {
  width: 100%;
}

/* ラベル・入力系共通 */
.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333333;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #d3d7e3;
  padding: 10px 12px;
  font-size: 0.95rem;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  background-color: #fafbff;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #3b82f6; /* アクセント（青系） */
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
  background-color: #ffffff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

/* 必須マーク */
.required {
  display: inline-block;
  font-size: 0.7rem;
  color: #ffffff;
  background: #ef4444;
  border-radius: 999px;
  padding: 2px 6px;
  margin-left: 6px;
  vertical-align: middle;
}

/* プライバシーポリシー同意 */
.agree-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  cursor: pointer;
}

.agree-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.contact-note {
  margin-top: 6px;
  font-size: 0.8rem;
  color: #777777;
  line-height: 1.6;
}

/* 送信ボタン */
.form-row-submit {
  text-align: center;
  margin-top: 28px;
}

.contact-submit {
  display: inline-block;
  border: none;
  outline: none;
  padding: 12px 40px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.contact-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(37, 99, 235, 0.3);
  opacity: 0.95;
}

.contact-submit:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.2);
}

/* PCのみ改行させたいとき用 */
.pc-only {
  display: none;
}

/* レイアウト調整（PC） */
@media (min-width: 768px) {
  .contact-inner {
    padding: 40px 40px 48px;
  }

  .contact-title {
    font-size: 1.8rem;
  }

  .form-row-half {
    display: flex;
    gap: 20px;
  }

  .form-row-half .field {
    width: 50%;
  }

  .pc-only {
    display: inline;
  }
}
/* ================================
   一括見積フォーム
   ================================ */

.estimate-section {
  padding: 60px 16px;
  background: #eef2ff; /* 少し青みのある背景で差別化 */
	  font-family: "Noto Serif JP", serif;
}

.estimate-inner {
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 24px 40px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.estimate-title {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.estimate-lead {
  font-size: 0.98rem;
  line-height: 1.9;
  margin-bottom: 26px;
  text-align: center;
  color: #4b5563;
}

.estimate-form {
  margin-top: 8px;
}

/* 行レイアウト共通（他フォームと共通で使ってOK） */
.form-row {
  margin-bottom: 18px;
}

.form-row-half {
  display: block;
}

.form-row-half .field {
  width: 100%;
}

/* ラベル・入力系 */
.estimate-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
}

.estimate-form input[type="text"],
.estimate-form input[type="email"],
.estimate-form input[type="tel"],
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  padding: 10px 12px;
  font-size: 0.95rem;
  box-sizing: border-box;
  outline: none;
  background-color: #f9fafb;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.estimate-form input[type="text"]:focus,
.estimate-form input[type="email"]:focus,
.estimate-form input[type="tel"]:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
  border-color: #4f46e5; /* 青紫系アクセント */
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
  background-color: #ffffff;
}

.estimate-form textarea {
  resize: vertical;
  min-height: 160px;
}

/* 必須マーク（共通で使える） */
.required {
  display: inline-block;
  font-size: 0.7rem;
  color: #ffffff;
  background: #ef4444;
  border-radius: 999px;
  padding: 2px 6px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ラジオグループ */
.field-label-inline {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.9rem;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
}

.radio-group input[type="radio"] {
  width: 16px;
  height: 16px;
}

/* プライバシー同意・注意文 */
.agree-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  cursor: pointer;
}

.agree-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.estimate-note {
  margin-top: 6px;
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.7;
	  font-family: "Noto Serif JP", serif;
}

/* 送信ボタン */
.form-row-submit {
  text-align: center;
  margin-top: 26px;
}

.estimate-submit {
  display: inline-block;
  border: none;
  outline: none;
  padding: 13px 48px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  background: linear-gradient(90deg, #4f46e5, #6366f1);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(79, 70, 229, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.estimate-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(79, 70, 229, 0.45);
  opacity: 0.96;
}

.estimate-submit:active {
  transform: translateY(0);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

/* PCだけ改行させたいとき用 */
.pc-only {
  display: none;
}

/* レイアウト（PC以上） */
@media (min-width: 768px) {
  .estimate-inner {
    padding: 40px 40px 48px;
  }

  .estimate-title {
    font-size: 1.9rem;
  }

  .form-row-half {
    display: flex;
    gap: 20px;
  }

  .form-row-half .field {
    width: 50%;
  }

  .radio-group {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .pc-only {
    display: inline;
  }
}
/* ================================
   運営会社
   ================================ */

.company-section {
  padding: 60px 16px 70px;
  background: #f9fafb;
	  font-family: "Noto Serif JP", serif;
}

.company-inner {
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 24px 40px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(209, 213, 219, 0.9);
}

.company-title {
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.company-lead {
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.9;
  color: #4b5563;
  margin-bottom: 24px;
}

.company-box {
  margin-top: 8px;
}

.company-table {
  margin: 0;
  padding: 0;
}

.company-row {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;
}

.company-row:first-child {
  border-top: 1px solid #e5e7eb;
}

.company-row dt,
.company-row dd {
  margin: 0;
  padding: 0;
}

/* 見出し（項目名） */
.company-row dt {
  font-size: 0.85rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 4px;
}

/* 内容 */
.company-row dd {
  font-size: 0.95rem;
  color: #111827;
  line-height: 1.8;
}

/* 注意書き */
.company-note {
  margin-top: 18px;
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.7;
}

/* PCのみ改行させる用（他のセクションと共通で使用可能） */
.pc-only {
  display: none;
}

/* PCレイアウト */
@media (min-width: 768px) {
  .company-inner {
    padding: 40px 40px 48px;
  }

  .company-title {
    font-size: 1.9rem;
  }

  .company-row {
    flex-direction: row;
    align-items: flex-start;
    padding: 12px 0;
  }

  .company-row dt {
    width: 26%;
    font-size: 0.9rem;
    margin-bottom: 0;
  }

  .company-row dd {
    width: 74%;
    font-size: 0.95rem;
  }

  .pc-only {
    display: inline;
  }
}
/* ================================
   プライバシーポリシー
   ================================ */

.privacy-section {
  padding: 60px 16px 70px;
  background: #f3f4f6;
	  font-family: "Noto Serif JP", serif;
}

.privacy-inner {
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 24px 40px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(209, 213, 219, 0.9);
}

.privacy-title {
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.privacy-lead {
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.9;
  color: #4b5563;
  margin-bottom: 22px;
}

.privacy-block {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
}

.privacy-heading {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111827;
}

.privacy-text {
  font-size: 0.92rem;
  line-height: 1.9;
  color: #374151;
}

.privacy-list {
  margin: 8px 0 0 1.2em;
  padding: 0;
  list-style: disc;
}

.privacy-list li {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #374151;
  margin-bottom: 2px;
}

/* お問い合わせ窓口のミニテーブル */
.privacy-contact {
  margin: 12px 0 0;
  padding: 0;
}

.privacy-contact-row {
  display: flex;
  flex-direction: column;
  padding: 4px 0;
}

.privacy-contact-row dt,
.privacy-contact-row dd {
  margin: 0;
  padding: 0;
}

.privacy-contact-row dt {
  font-size: 0.85rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 2px;
}

.privacy-contact-row dd {
  font-size: 0.9rem;
  color: #111827;
}

.privacy-updated {
  margin-top: 10px;
  font-size: 0.82rem;
  color: #6b7280;
}

/* PCだけ改行させる用（他セクションと共通で使用可能） */
.pc-only {
  display: none;
}

/* PCレイアウト */
@media (min-width: 768px) {
  .privacy-inner {
    padding: 40px 40px 48px;
  }

  .privacy-title {
    font-size: 1.9rem;
  }

  .privacy-contact-row {
    flex-direction: row;
    align-items: flex-start;
  }

  .privacy-contact-row dt {
    width: 22%;
  }

  .privacy-contact-row dd {
    width: 78%;
  }

  .pc-only {
    display: inline;
  }
}
/* ================================
   免責事項
   ================================ */

.disclaimer-section {
  padding: 60px 16px 70px;
  background: #ffffff;
	  font-family: "Noto Serif JP", serif;
}

.disclaimer-inner {
  max-width: 960px;
  margin: 0 auto;
  background: #f9fafb;
  border-radius: 12px;
  padding: 32px 24px 40px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(209, 213, 219, 0.9);
}

.disclaimer-title {
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.disclaimer-lead {
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.9;
  color: #4b5563;
  margin-bottom: 22px;
}

.disclaimer-block {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
}

.disclaimer-heading {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111827;
}

.disclaimer-text {
  font-size: 0.92rem;
  line-height: 1.9;
  color: #374151;
  margin-bottom: 4px;
}

.disclaimer-updated {
  margin-top: 20px;
  font-size: 0.82rem;
  color: #6b7280;
  text-align: right;
}

/* PCレイアウト */
@media (min-width: 768px) {
  .disclaimer-inner {
    padding: 40px 40px 48px;
  }

  .disclaimer-title {
    font-size: 1.9rem;
  }
}
/* ================================
   ファクタリング会社一覧
   ================================ */

.factoring-list-section {
  padding: 60px 16px;
  background: #eef2ff;
	  font-family: "Noto Serif JP", serif;
}

.factoring-list-inner {
  max-width: 1120px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 24px 40px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.factoring-list-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.factoring-list-lead {
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.9;
  color: #4b5563;
  margin-bottom: 26px;
}

.factoring-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* カード */
.factoring-card {
  border-radius: 10px;
  padding: 20px 18px 18px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.factoring-card-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.factoring-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.factoring-card-tag {
  display: inline-block;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0369a1;
  font-weight: 600;
}

.factoring-card-tag.tag-three {
  background: #e5e7ff;
  color: #4338ca;
}

.factoring-card-tag.tag-medical {
  background: #dcfce7;
  color: #15803d;
}

.factoring-card-table {
  margin: 0;
  padding: 0;
}

.factoring-card-row {
  display: flex;
  flex-direction: column;
  padding: 6px 0;
  border-top: 1px dashed #e5e7eb;
}

.factoring-card-row:first-child {
  border-top: none;
}

.factoring-card-row dt,
.factoring-card-row dd {
  margin: 0;
  padding: 0;
}

.factoring-card-row dt {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 2px;
}

.factoring-card-row dd {
  font-size: 0.9rem;
  color: #111827;
  line-height: 1.7;
}

.factoring-card-footer {
  margin-top: 8px;
}

.factoring-card-link {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  text-decoration: none;
  background: #4f46e5;
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(79, 70, 229, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.factoring-card-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 9px 18px rgba(79, 70, 229, 0.45);
  opacity: 0.96;
}

.factoring-card-link:active {
  transform: translateY(0);
  box-shadow: 0 5px 12px rgba(79, 70, 229, 0.3);
}

.factoring-list-note {
  margin-top: 18px;
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.7;
}
