/* =========================================================
   Base / Reset
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  color: #1f2937;
  background: #f8f5ef;
  line-height: 1.8;
  font-size: 16px;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
}

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

details summary {
  cursor: pointer;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.pc-only {
  display: none;
}

/* =========================================================
   Colors / Variables
========================================================= */
:root {
  --bg-main: #f8f5ef;
  --bg-white: #ffffff;
  --bg-soft: #f3eee4;

  --text-main: #1f2937;
  --text-sub: #4b5563;
  --text-muted: #6b7280;

  --navy: #1e3553;
  --navy-2: #2d4a6d;

  --border: #ddd5c7;
  --shadow: 0 8px 24px rgba(30, 53, 83, 0.08);

  --phone: #d97706;
  --phone-dark: #b45f00;

  --line: #16a34a;
  --line-dark: #12803a;

  --form: #1e3553;
  --form-dark: #162841;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
}

/* =========================================================
   Common Section
========================================================= */
.section {
  padding: 56px 0;
}

.section-soft {
  background: var(--bg-soft);
  border-top: 1px solid rgba(221, 213, 199, 0.7);
  border-bottom: 1px solid rgba(221, 213, 199, 0.7);
}

.section-head {
  margin-bottom: 24px;
}

.section-head-center {
  text-align: center;
}

.section-title {
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.section-text {
  color: var(--text-sub);
  font-size: 0.98rem;
}

.card-grid {
  display: grid;
  gap: 14px;
}

/* =========================================================
   Header
========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #e7e0d3;
  backdrop-filter: blur(8px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 10px 0 12px;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  color: var(--navy);
}

.logo-mark {
  font-size: 2.0rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.header-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 12px;
  font-weight: 700;
  padding: 10px 12px;
  border: 1px solid transparent;
  transition: opacity 0.2s ease;
  text-align: center;
}

.btn:hover {
  opacity: 0.92;
}

.btn-phone {
  grid-column: 1 / -1;
  background: #fff7ed;
  border-color: #fed7aa;
  color: #9a4e00;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  line-height: 1.3;
}

.btn-phone .btn-label {
  font-size: 0.78rem;
}

.btn-phone .btn-value {
  font-size: 1.05rem;
}

.btn-line {
  background: #ecfdf3;
  border-color: #bbf7d0;
  color: #166534;
}

.btn-form {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

/* =========================================================
   Hero
========================================================= */
.hero {
  padding: 22px 0 28px;
  background:
    linear-gradient(to bottom, #fbfaf7, #f8f5ef);
}

.hero-inner {
  display: grid;
  gap: 18px;
}

.hero-content {
  background: var(--bg-white);
  border: 1px solid #e7e0d3;
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-lead {
  display: inline-block;
  background: #eef4fb;
  color: var(--navy);
  border: 1px solid #d7e3f3;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 1.6rem;
  line-height: 1.45;
  color: var(--navy);
  margin-bottom: 12px;
}

.hero-copy {
  color: var(--text-sub);
  font-size: 1rem;
}

.hero-copy strong {
  color: var(--navy);
}

.hero-cta-group {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.cta-card {
  border-radius: 14px;
  padding: 14px;
  border: 1px solid transparent;
  display: grid;
  gap: 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: transform 0.15s ease, opacity 0.2s ease;
}

.cta-card:hover {
  transform: translateY(-1px);
  opacity: 0.97;
}

.cta-card-title {
  font-size: 0.9rem;
  font-weight: 700;
}

.cta-card-main {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
}

.cta-card-sub {
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.5;
}

.cta-card-phone {
  background: #fff7ed;
  border-color: #fed7aa;
  color: #9a4e00;
}

.cta-card-line {
  background: #ecfdf3;
  border-color: #bbf7d0;
  color: #166534;
}

.cta-card-form {
  background: #eef4fb;
  border-color: #d7e3f3;
  color: var(--navy);
}

.hero-meta {
  margin-top: 14px;
  border-top: 1px dashed #ddd5c7;
  padding-top: 12px;
  display: grid;
  gap: 8px;
}

.hero-area,
.hero-note {
  font-size: 1.2rem;
  color: var(--text-sub);
  line-height: 1.6;
}

.hero-note {
  color: #7c5f35;
  background: #fffaf0;
  border: 1px solid #f6e7c1;
  border-radius: 10px;
  padding: 8px 10px;
}

.hero-visual {
  display: none;
}

.hero-image-card {
  background: var(--bg-white);
  border: 1px solid #e7e0d3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.hero-image-card figcaption {
  padding: 10px 12px;
  font-size: 0.86rem;
  color: var(--text-muted);
  border-top: 1px solid #eee6d7;
}

/* =========================================================
   Problems
========================================================= */
.problem-grid {
  display: grid;
  gap: 12px;
}

.problem-card {
  background: #fff;
  border: 1px solid #e7e0d3;
  border-radius: 14px;
  padding: 14px;
}

.problem-card h3 {
  font-size: 1.03rem;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 6px;
}

.problem-card p {
  color: var(--text-sub);
  font-size: 0.95rem;
}

.bridge-message {
  margin-top: 16px;
  background: #fff;
  border: 1px solid #d7e3f3;
  border-left: 4px solid var(--navy);
  border-radius: 12px;
  padding: 14px;
}

.bridge-message p {
  color: var(--text-sub);
  font-size: 0.96rem;
}

/* =========================================================
   Item Cards
========================================================= */
.item-grid {
  grid-template-columns: 1fr;
}

.item-card {
  background: var(--bg-white);
  border: 1px solid #e7e0d3;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 3px 10px rgba(30, 53, 83, 0.03);
}

.item-card h3 {
  margin-bottom: 6px;
  font-size: 1.02rem;
  line-height: 1.5;
}

.item-card h3 a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: #c8d4e3;
  text-underline-offset: 3px;
}

.item-card p {
  color: var(--text-sub);
  font-size: 0.94rem;
  line-height: 1.65;
}

/* =========================================================
   Reasons
========================================================= */
.reason-grid {
  display: grid;
  gap: 12px;
}

.reason-card {
  background: var(--bg-white);
  border: 1px solid #e7e0d3;
  border-radius: 14px;
  padding: 14px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 10px 12px;
  align-items: start;
}

.reason-icon {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: #eef4fb;
  border: 1px solid #d7e3f3;
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.05rem;
}

.reason-card h3 {
  grid-column: 2 / 3;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--navy);
  margin-top: 2px;
}

.reason-card p {
  grid-column: 1 / -1;
  color: var(--text-sub);
  font-size: 0.94rem;
  line-height: 1.65;
}

/* =========================================================
   Flow
========================================================= */
.flow-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.flow-item {
  background: var(--bg-white);
  border: 1px solid #e7e0d3;
  border-radius: 14px;
  padding: 14px;
  display: grid;
  gap: 10px;
}

.flow-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 86px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef4fb;
  border: 1px solid #d7e3f3;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.82rem;
}

.flow-body h3 {
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 4px;
}

.flow-body p {
  color: var(--text-sub);
  font-size: 0.94rem;
}

/* =========================================================
   Areas
========================================================= */
.area-box {
  background: #fff;
  border: 1px solid #e7e0d3;
  border-radius: 16px;
  padding: 16px;
}

.area-box-title {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.area-link-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.area-link-list li a {
  display: block;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 14px;
  color: #1f2937;
  font-weight: 700;
}

.area-link-list li a:hover {
  background: #eef4fb;
  border-color: #d7e3f3;
}

.area-note {
  color: var(--text-sub);
  font-size: 0.92rem;
}

/* =========================================================
   Results
========================================================= */
.result-grid {
  grid-template-columns: 1fr;
}

.result-card {
  background: #fff;
  border: 1px solid #e7e0d3;
  border-radius: 14px;
  padding: 14px;
}

.result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.result-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  color: #374151;
  font-size: 0.8rem;
  font-weight: 700;
}

.result-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.5;
}

.result-card p {
  font-size: 0.92rem;
  color: var(--text-sub);
}

.result-comment {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed #ddd5c7;
}

/* =========================================================
   FAQ
========================================================= */
.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: 1px solid #e7e0d3;
  border-radius: 14px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  padding: 14px 16px;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  padding-right: 44px;
  line-height: 1.5;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--navy-2);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  border-top: 1px solid #eee6d7;
  padding: 12px 16px 14px;
}

.faq-answer p {
  color: var(--text-sub);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* =========================================================
   Final CTA
========================================================= */
.final-cta {
  background: linear-gradient(180deg, #f3eee4 0%, #ebe3d6 100%);
  border-top: 1px solid #ddd5c7;
  border-bottom: 1px solid #ddd5c7;
}

.final-cta-inner {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(221, 213, 199, 0.9);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.final-cta-grid {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.final-cta-btn {
  border-radius: 14px;
  padding: 14px;
  color: #fff;
  display: grid;
  gap: 2px;
  min-height: 72px;
  align-content: center;
}

.final-cta-label {
  font-size: 0.88rem;
  opacity: 0.95;
  font-weight: 700;
}

.final-cta-value {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
}

.final-cta-phone {
  background: linear-gradient(180deg, var(--phone), var(--phone-dark));
}

.final-cta-line {
  background: linear-gradient(180deg, var(--line), var(--line-dark));
}

.final-cta-form {
  background: linear-gradient(180deg, var(--form), var(--form-dark));
}

.final-cta-note {
  margin-top: 12px;
  background: #fff;
  border: 1px solid #e7e0d3;
  border-radius: 12px;
  padding: 12px;
}

.final-cta-note p {
  color: var(--text-sub);
  font-size: 0.9rem;
  line-height: 1.6;
}

.final-cta-note p + p {
  margin-top: 6px;
}

/* =========================================================
   Footer
========================================================= */
.site-footer {
  background: #24384f;
  color: #eaf0f6;
}

.footer-inner {
  display: grid;
  gap: 20px;
  padding: 28px 0 20px;
}

.footer-name {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.footer-text {
  font-size: 0.92rem;
  color: #dbe5ef;
  line-height: 1.7;
}

.footer-nav ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-nav a {
  display: inline-block;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  font-size: 0.94rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.copyright {
  margin: 0;
  padding: 12px 0 18px;
  font-size: 0.82rem;
  color: #cdd9e6;
  text-align: center;
}

/* =========================================================
   Responsive (Tablet)
========================================================= */
@media (min-width: 768px) {
  body {
    font-size: 17px;
  }

  .container {
    width: min(1120px, calc(100% - 40px));
  }

  .pc-only {
    display: inline;
  }

  .section {
    padding: 72px 0;
  }

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

  .section-text {
    font-size: 1rem;
  }

  .header-inner {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
  }

  .header-cta {
    justify-self: end;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }

  .btn-phone {
    grid-column: auto;
    min-width: 220px;
    padding-inline: 14px;
  }

  .btn-line,
  .btn-form {
    min-width: 140px;
  }

  .hero {
    padding: 28px 0 36px;
  }

  .hero-inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
    align-items: start;
  }

  .hero-content {
    padding: 22px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .hero-visual {
    display: block;
  }

  .hero-cta-group {
    grid-template-columns: 1fr;
  }

  .problem-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .item-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .flow-list {
    gap: 14px;
  }

  .flow-item {
    grid-template-columns: 120px 1fr;
    align-items: start;
    gap: 12px;
  }

  .flow-step {
    margin-top: 2px;
  }

  .flow-body h3 {
    font-size: 1.05rem;
  }

  .area-link-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .final-cta-inner {
    padding: 24px;
  }

  .final-cta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: start;
  }
}

/* =========================================================
   Responsive (Desktop)
========================================================= */
@media (min-width: 1024px) {
  .section {
    padding: 84px 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-content {
    padding: 26px;
  }

  .hero-image-card img {
    aspect-ratio: 4 / 3;
  }

  .problem-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .item-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .reason-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .result-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .faq-list {
    gap: 12px;
  }
}

/* =========================================================
   Focus Visible (Accessibility)
========================================================= */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(30, 53, 83, 0.35);
  outline-offset: 2px;
  border-radius: 8px;
}

/* =========================================================
   Hero visual removed + width balance fix
   右画像削除後の幅バランス調整版
========================================================= */

/* Heroは1カラム */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: start; /* 左揃えで下段コンテンツの始点と揃える */
}

/* Hero本文カードの幅を広げて、下段とのバランスを整える */
.hero-content {
  width: 100%;
  max-width: 1000px; /* ← 前回の720pxより広げる */
}

/* 右画像は非表示（HTMLに残っていても消える） */
.hero-visual {
  display: none !important;
}

/* タブレット */
@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .hero-content {
    max-width: 900px;
  }
}

/* PC */
@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .hero-content {
    max-width: 1100px;
  }
}

/* =========================================================
   Hero CTA 2-column layout (PC only)
   左: テキスト / 右: ビジュアル
========================================================= */

/* CTAカード内テキストのラッパー */
.cta-card-text {
  display: grid;
  gap: 4px;
  min-width: 0;
}

/* 右側ビジュアルは初期状態では非表示（スマホ優先） */
.cta-card-media {
  display: none;
}

.cta-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

/* タブレット以上で、CTAカードを2カラム化 */
@media (min-width: 768px) {
  .cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(180px, 0.95fr);
    align-items: center;
    gap: 14px;
    padding: 14px;
  }

  .cta-card-text {
    gap: 4px;
  }

  .cta-card-media {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 92px;
  }

  .cta-card-main {
    line-height: 1.45;
  }

  .cta-card-sub {
    line-height: 1.5;
  }
}

/* PCで少し見栄えを整える */
@media (min-width: 1024px) {
  .cta-card {
    grid-template-columns: minmax(0, 1.7fr) minmax(220px, 1fr);
    gap: 16px;
    padding: 16px;
  }

  .cta-card-media {
    min-height: 104px;
  }

  .cta-card-main {
    font-size: 1.08rem;
  }
}

.hero-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-copy {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* PCでCTAカード内の文字を大きくする */
@media (min-width: 1024px) {
  .cta-card-title {
    font-size: 1.3rem;
    line-height: 1.45;
  }

  .cta-card-main {
    font-size: 1.48rem;
    line-height: 1.4;
    font-weight: 800;
  }

  .cta-card-sub {
    font-size: 1.2rem;
    line-height: 1.6;
  }
}

/* =========================================================
   選ばれる理由：見出し中央寄せ + 少し大きく
   （実際のクラス名 .reason-card に合わせる）
========================================================= */

/* カード全体の中央揃え（見出し用） */
.reason-card {
  text-align: center;
  /* 既存の2カラム指定を解除して、1カラムにする */
  grid-template-columns: 1fr;
  gap: 10px;
}

/* 見出し（太字）を中央寄せ＆サイズアップ */
.reason-card h3 {
  grid-column: 1 / -1;   /* 既存指定の上書き */
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
  margin: 0 0 6px;
}

/* 本文は読みやすさ優先で左寄せ（中央寄せにしたいなら center に変更） */
.reason-card p {
  grid-column: 1 / -1;   /* 既存指定の上書き */
  text-align: left;
  margin: 0;
}

/* PCで見出しを少しだけ大きく */
@media (min-width: 1024px) {
  .reason-card h3 {
    font-size: 1.28rem;
  }
}

/* =========================================================
   retro.html に寄せるための下層ページ色統一
========================================================= */

/* ページ全体の地色 */
body {
  background: #f8f5ef;
  color: #1f2937;
}

/* 薄い帯背景 */
.section-soft {
  background: #f3eee4;
  border-top: 1px solid #ddd5c7;
  border-bottom: 1px solid #ddd5c7;
}

/* company.html で使っているカード類
   faq.html のFAQ枠もここで寄せる */
.page-card,
.info-card,
.promise-item,
.note-box,
.cta-panel,
.faq-item,
.final-cta-note {
  background: #ffffff;
  border: 1px solid #e7e0d3;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(30, 53, 83, 0.08);
}

/* 余白が無いと箱っぽく見えないので追加 */
.page-card,
.info-card,
.note-box,
.cta-panel {
  padding: 22px;
}

.promise-item {
  padding: 16px;
}

/* 見出しや本文色 */
.page-lead {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  background: #eef4fb;
  border: 1px solid #d7e3f3;
  border-radius: 999px;
  color: #1e3553;
  font-size: 0.82rem;
  font-weight: 700;
}

.page-title,
.note-title,
.cta-panel-title {
  color: #1e3553;
}

.page-text,
.note-text {
  color: #4b5563;
}

/* 小リンクボタン */
.link-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  background: #eef4fb;
  border: 1px solid #d7e3f3;
  border-radius: 999px;
  color: #1e3553;
  font-weight: 700;
}

/* タグ類 */
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  background: #fffaf0;
  border: 1px solid #f6e7c1;
  border-radius: 999px;
  color: #7c5f35;
  font-size: 0.82rem;
  font-weight: 700;
}

/* FAQの開閉枠 */
.faq-item {
  overflow: hidden;
}

.faq-answer {
  border-top: 1px solid #eee6d7;
}

/* CTAの小ボタン */
.mini-btn,
.plain-link {
  color: #1e3553;
}

/* フッター色 */
.site-footer {
  background: #24384f;
  color: #eaf0f6;
}

.footer-text {
  color: #dbe5ef;
}

.footer-nav a {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.copyright {
  color: #cdd9e6;
}

/* =========================================================
   company.html / faq.html 用の見た目を追加
========================================================= */

/* ページ全体の背景を少し濃くして、retro.html寄りの土台にする */
body {
  background: #f3eee4;
  color: #1f2937;
}

/* 薄い帯の背景 */
.section-soft {
  background: #efe6d8;
  border-top: 1px solid #ddd5c7;
  border-bottom: 1px solid #ddd5c7;
}

/* ページ冒頭の大きい白枠 */
.page-card {
  background: #fffdf8;
  border: 1px solid #e7e0d3;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(30, 53, 83, 0.08);
}

/* 会社情報の情報枠 */
.info-card {
  background: #fffdf8;
  border: 1px solid #e7e0d3;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(30, 53, 83, 0.08);
}

/* 補足枠 */
.note-box {
  margin-top: 18px;
  background: #fcf8f1;
  border: 1px solid #eadfcd;
  border-radius: 14px;
  padding: 16px;
}

.note-title {
  margin: 0 0 8px;
  color: #1e3553;
  font-weight: 700;
}

.note-text {
  margin: 0;
  color: #4b5563;
}

/* 約束・特徴カード */
.promise-grid {
  display: grid;
  gap: 14px;
}

.promise-item {
  background: #fffdf8;
  border: 1px solid #e7e0d3;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(30, 53, 83, 0.06);
}

.promise-item h3 {
  margin: 0 0 8px;
  color: #1e3553;
  font-size: 1.05rem;
}

.promise-item p {
  margin: 0;
  color: #4b5563;
}

/* タグ一覧 */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: #fffaf0;
  border: 1px solid #f1e2bf;
  border-radius: 999px;
  color: #7a5d30;
  font-size: 0.9rem;
  font-weight: 700;
}

/* CTA枠 */
.cta-panel {
  margin-top: 20px;
  background: #fffdf8;
  border: 1px solid #e7e0d3;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(30, 53, 83, 0.06);
}

.cta-panel-title {
  margin: 0 0 14px;
  color: #1e3553;
  font-weight: 700;
}

.cta-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* 小ボタン */
.mini-btn,
.link-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  background: #eef4fb;
  border: 1px solid #d7e3f3;
  border-radius: 999px;
  color: #1e3553;
  font-weight: 700;
  text-decoration: none;
}

/* FAQボックス */
.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #fffdf8;
  border: 1px solid #e7e0d3;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(30, 53, 83, 0.06);
}

.faq-item summary {
  padding: 16px 18px;
  font-weight: 700;
  color: #1e3553;
  background: #fffdf8;
}

.faq-answer {
  padding: 14px 18px 18px;
  border-top: 1px solid #eee6d7;
  background: #fcf8f1;
  color: #4b5563;
}

/* 見出しまわり */
.page-lead {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  background: #eef4fb;
  border: 1px solid #d7e3f3;
  border-radius: 999px;
  color: #1e3553;
  font-size: 0.82rem;
  font-weight: 700;
}

.page-title,
.section-title {
  color: #1e3553;
}

.page-text,
.section-text {
  color: #4b5563;
}

/* フッター */
.site-footer {
  background: #24384f;
  color: #eaf0f6;
}

.footer-text {
  color: #dbe5ef;
}

.footer-nav a {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.copyright {
  color: #cdd9e6;
}

/* =========================================
   色を直接指定して強制上書き
========================================= */

/* ページ全体の背景 */
body {
  background: #f3eee4 !important;
  color: #1f2937 !important;
}

/* 薄い帯背景 */
.section-soft {
  background: #efe6d8 !important;
  border-top: 1px solid #d9cfbf !important;
  border-bottom: 1px solid #d9cfbf !important;
}

/* メインの白カード */
.page-card,
.info-card,
.promise-item,
.cta-panel,
.faq-item,
.final-cta-note {
  background: #fffdf8 !important;
  border: 1px solid #e2d7c6 !important;
  box-shadow: 0 8px 24px rgba(30, 53, 83, 0.08) !important;
}

/* 補足ボックス */
.note-box {
  background: #fcf8f1 !important;
  border: 1px solid #e6dac7 !important;
}

/* FAQの回答部分 */
.faq-answer {
  background: #fcf8f1 !important;
  border-top: 1px solid #ece2d2 !important;
  color: #4b5563 !important;
}

/* 小見出しラベル */
.page-lead {
  background: #eef4fb !important;
  border: 1px solid #d7e3f3 !important;
  color: #1e3553 !important;
}

/* リンクチップ */
.link-chip {
  background: #eef4fb !important;
  border: 1px solid #d7e3f3 !important;
  color: #1e3553 !important;
}

/* タグ */
.tag {
  background: #fffaf0 !important;
  border: 1px solid #f1e2bf !important;
  color: #7a5d30 !important;
}

/* フッター */
.site-footer {
  background: #24384f !important;
  color: #eaf0f6 !important;
}

.footer-text {
  color: #dbe5ef !important;
}

.footer-nav a {
  color: #ffffff !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.copyright {
  color: #cdd9e6 !important;
}

/* =========================================
   company / faq 用の色とカードを直指定
========================================= */

body {
  background: #f3eee4 !important;
  color: #1f2937 !important;
}

.section-soft {
  background: #efe6d8 !important;
  border-top: 1px solid #d9cfbf !important;
  border-bottom: 1px solid #d9cfbf !important;
}

/* 会社情報ページ上部のカード */
.page-card {
  background: #fffdf8 !important;
  border: 1px solid #e2d7c6 !important;
  border-radius: 16px !important;
  padding: 22px !important;
  box-shadow: 0 8px 24px rgba(30, 53, 83, 0.08) !important;
}

.page-lead {
  display: inline-block !important;
  margin-bottom: 10px !important;
  padding: 4px 10px !important;
  background: #eef4fb !important;
  border: 1px solid #d7e3f3 !important;
  border-radius: 999px !important;
  color: #1e3553 !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
}

.page-title,
.section-title,
.note-title,
.cta-panel-title {
  color: #1e3553 !important;
}

.page-text,
.section-text,
.note-text {
  color: #4b5563 !important;
}

/* リンクボタン */
.page-links {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 16px !important;
}

.link-chip {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 42px !important;
  padding: 10px 14px !important;
  background: #eef4fb !important;
  border: 1px solid #d7e3f3 !important;
  border-radius: 999px !important;
  color: #1e3553 !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

/* 事業者情報の大枠 */
.info-card {
  background: #fffdf8 !important;
  border: 1px solid #e2d7c6 !important;
  border-radius: 16px !important;
  padding: 22px !important;
  box-shadow: 0 8px 24px rgba(30, 53, 83, 0.08) !important;
}

/* 補足枠 */
.note-box {
  margin-top: 18px !important;
  background: #fcf8f1 !important;
  border: 1px solid #e6dac7 !important;
  border-radius: 14px !important;
  padding: 16px !important;
}

/* 約束カード */
.promise-grid {
  display: grid !important;
  gap: 14px !important;
}

.promise-item {
  background: #fffdf8 !important;
  border: 1px solid #e2d7c6 !important;
  border-radius: 14px !important;
  padding: 18px !important;
  box-shadow: 0 8px 24px rgba(30, 53, 83, 0.06) !important;
}

.promise-item h3 {
  margin: 0 0 8px !important;
  color: #1e3553 !important;
}

.promise-item p {
  margin: 0 !important;
  color: #4b5563 !important;
}

/* タグ */
.tag-list {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

.tag {
  display: inline-flex !important;
  align-items: center !important;
  padding: 6px 12px !important;
  background: #fffaf0 !important;
  border: 1px solid #f1e2bf !important;
  border-radius: 999px !important;
  color: #7a5d30 !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
}

/* CTA枠 */
.cta-panel {
  margin-top: 20px !important;
  background: #fffdf8 !important;
  border: 1px solid #e2d7c6 !important;
  border-radius: 16px !important;
  padding: 18px !important;
  box-shadow: 0 8px 24px rgba(30, 53, 83, 0.06) !important;
}

.cta-panel-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

.mini-btn,
.plain-link {
  color: #1e3553 !important;
}

/* FAQ */
.faq-item {
  background: #fffdf8 !important;
  border: 1px solid #e2d7c6 !important;
  box-shadow: 0 8px 24px rgba(30, 53, 83, 0.06) !important;
}

.faq-answer {
  background: #fcf8f1 !important;
  border-top: 1px solid #ece2d2 !important;
  color: #4b5563 !important;
}

/* フッター */
.site-footer {
  background: #24384f !important;
  color: #eaf0f6 !important;
}

.footer-text {
  color: #dbe5ef !important;
}

.footer-nav a {
  color: #ffffff !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.copyright {
  color: #cdd9e6 !important;
}

/* =========================================================
   FINAL: retro.css と同じ暖色系パレットへ統一（このブロックを最優先）
========================================================= */
body {
  color: #35291d !important;
  background: linear-gradient(to bottom, #efe2cc 0%, #e2cfb3 100%) !important;
}

.site-header {
  background: rgba(247, 238, 224, 0.94) !important;
  border-bottom: 1px solid #cdb89a !important;
}

.logo,
.logo-mark,
.page-title,
.section-title,
.note-title,
.cta-panel-title,
.promise-item h3,
.faq-item summary,
.plain-link,
.mini-btn,
.link-chip {
  color: #2e4b68 !important;
}

.logo-sub {
  color: #8d7764 !important;
}

.btn-phone {
  background: #fff0df !important;
  border-color: #e9bf8d !important;
  color: #8f4c11 !important;
}

.btn-line {
  background: #edf7ef !important;
  border-color: #b8d4bd !important;
  color: #2f6241 !important;
}

.btn-form {
  background: #eef2f5 !important;
  border-color: #c5d0da !important;
  color: #314a63 !important;
}

.section-soft {
  background: #efe4d2 !important;
  border-top: 1px solid rgba(204, 184, 155, 0.72) !important;
  border-bottom: 1px solid rgba(204, 184, 155, 0.72) !important;
}

.page-card,
.info-card,
.promise-item,
.cta-panel,
.faq-item,
.final-cta-note {
  background: #fbf5ea !important;
  border: 1px solid #d9c5a8 !important;
  box-shadow: 0 10px 24px rgba(84, 61, 36, 0.10) !important;
}

.note-box,
.faq-answer {
  background: #f8eddc !important;
  border-color: #e2c9a6 !important;
}

.faq-answer {
  border-top: 1px solid #e2c9a6 !important;
}

.page-lead {
  background: #efe3d1 !important;
  border: 1px solid #d7c3a5 !important;
  color: #2e4b68 !important;
}

.page-text,
.section-text,
.note-text,
.promise-item p,
.faq-answer,
.info-card dd,
.info-card dt {
  color: #5f4f41 !important;
}

.link-chip,
.mini-btn {
  background: #efe3d1 !important;
  border: 1px solid #d7c3a5 !important;
}

.tag {
  background: #f8eddc !important;
  border: 1px solid #e2c9a6 !important;
  color: #7a5530 !important;
}

.site-footer {
  background: #3b2f24 !important;
  color: #f4eadb !important;
}

.footer-name {
  color: #fff7ea !important;
}

.footer-text {
  color: #eadfce !important;
}

.footer-nav a {
  color: #fff7ea !important;
  text-decoration-color: rgba(255, 255, 255, 0.4) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.copyright {
  color: #d7c8b2 !important;
}
