﻿@charset "UTF-8";

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-md);
  font-family: var(--ff-sans);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  line-height: 1.4;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: background var(--trans-base), color var(--trans-base), transform var(--trans-fast);
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn--primary { background: var(--c-orange); color: var(--c-white); border-color: var(--c-orange); }
.btn--primary:hover { background: var(--c-orange-dark); border-color: var(--c-orange-dark); color: var(--c-white); }

.btn--outline { background: transparent; color: var(--c-white); border-color: var(--c-white); }
.btn--outline:hover { background: rgba(255,255,255,.15); color: var(--c-white); }

.btn--navy { background: var(--c-navy); color: var(--c-white); border-color: var(--c-navy); }
.btn--navy:hover { background: var(--c-navy-dark); color: var(--c-white); }

.btn--line { background: #06c755; color: #fff; border-color: #06c755; }
.btn--line:hover { background: #05b34c; border-color: #05b34c; color: #fff; }

.btn--lg {
  padding: var(--sp-4) var(--sp-10);
  font-size: var(--fs-xl);
  border-radius: var(--r-lg);
}
.btn--full { display: flex; width: 100%; }

/* ── Section titles ── */
.sec-title {
  font-size: clamp(var(--fs-xl), 3vw, var(--fs-3xl));
  color: var(--c-navy);
  margin-bottom: var(--sp-6);
}
.sec-title--bar {
  padding-bottom: var(--sp-3);
  border-bottom: 3px solid var(--c-orange);
  display: inline-block;
}
.sec-title--center {
  display: block;
  text-align: center;
}
.sec-title--center::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--c-orange);
  margin: var(--sp-3) auto 0;
}
.sec-title--white { color: var(--c-white); }

.sub-title {
  font-size: clamp(var(--fs-lg), 2.5vw, var(--fs-2xl));
  color: var(--c-navy);
  margin: var(--sp-10) 0 var(--sp-4);
  padding-left: var(--sp-4);
  border-left: 4px solid var(--c-blue);
}
.sub-title--sm { font-size: var(--fs-xl); margin-top: var(--sp-8); }

.sub-sub-title {
  font-size: var(--fs-lg);
  color: var(--c-navy-mid);
  margin: var(--sp-6) 0 var(--sp-3);
}

/* ── Campaign cards ── */
.point-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-top: 4px solid var(--c-orange);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-card);
}
.point-card__num {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--c-navy);
  color: var(--c-white);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-3);
}
.point-card__num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--c-orange);
  border-radius: 50%;
  font-size: var(--fs-xs);
  flex-shrink: 0;
}
.point-card__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  margin-bottom: var(--sp-3);
}
.point-card__body { font-size: var(--fs-base); line-height: 1.8; }

/* ── Insurance box ── */
.insurance-box {
  background: var(--c-white);
  border: 2px solid var(--c-blue);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  margin-block: var(--sp-8);
}
.insurance-box__title {
  color: var(--c-red);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-2);
}

/* ── Contact column cards ── */
.contact-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}
.contact-card__head {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--c-white);
}
.contact-card__note {
  font-size: var(--fs-sm);
  color: var(--c-gray-400);
  line-height: 1.6;
}
.mail-link {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  text-decoration: underline;
  word-break: break-all;
}
.mail-link:hover { color: var(--c-yellow-hl); text-decoration: underline; }

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  background: transparent;
  color: var(--c-gray-400);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--r-sm);
  padding: var(--sp-1) var(--sp-3);
  font-size: var(--fs-xs);
  cursor: pointer;
  transition: all var(--trans-fast);
  font-family: var(--ff-sans);
  margin-top: var(--sp-1);
}
.copy-btn:hover { background: rgba(255,255,255,.15); color: var(--c-white); }
.copy-btn[data-copied="true"] { background: #22c55e; border-color: #22c55e; color: var(--c-white); }

.tel-img-wrap { width: 100%; max-width: 420px; }
.tel-img-wrap img { width: 100%; }

.line-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: #06c755;
  color: var(--c-white);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-5);
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
  transition: background var(--trans-base), transform var(--trans-fast);
  text-decoration: none;
  max-width: 280px;
  justify-content: center;
}
.line-btn:hover { background: #05b04a; color: var(--c-white); text-decoration: none; transform: translateY(-1px); }
.line-btn__img { width: 160px; height: auto; border-radius: var(--r-sm); }

/* ── Blog info list ── */
.info-list-box {
  border: 2px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  max-height: 200px;
  overflow-y: auto;
}
.info-list-box p { margin-bottom: var(--sp-2); font-weight: var(--fw-bold); }
.info-list-box li {
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--c-border);
  font-size: var(--fs-sm);
}
.info-list-box li:last-child { border-bottom: none; }
.info-list-box a { color: var(--c-blue); }

/* ── Subsidy banners ── */
.subsidy-banners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-4);
}
.subsidy-banners a { display: block; }
.subsidy-banners img {
  width: 100%;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  transition: transform var(--trans-fast);
}
.subsidy-banners img:hover { transform: translateY(-2px); }
@media (max-width: 480px) { .subsidy-banners { grid-template-columns: 1fr; } }

/* ── Works ── */
.works-case { margin-bottom: var(--sp-12); }
.works-case__head {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  background: var(--c-gray-100);
  border-left: 4px solid var(--c-orange);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--sp-3) var(--sp-5);
  margin-bottom: var(--sp-5);
}
.works-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}
@media (max-width: 600px) { .works-ba { grid-template-columns: 1fr; } }
.works-ba__item { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--c-border); }
.works-ba__label {
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  padding: var(--sp-2);
  color: var(--c-white);
}
.works-ba__label--before { background: var(--c-gray-700); }
.works-ba__label--after  { background: var(--c-blue); }
.works-ba__label--done   { background: var(--c-navy-mid); }
.works-ba__item img { width: 100%; height: 220px; object-fit: cover; }

.works-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
@media (max-width: 600px) { .works-3col { grid-template-columns: 1fr 1fr; } }
.works-3col img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--r-md); border: 1px solid var(--c-border); }

.works-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
@media (max-width: 480px) { .works-2col { grid-template-columns: 1fr; } }
.works-2col img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--r-md); border: 1px solid var(--c-border); }

/* ── New badge ── */
.badge-new {
  display: inline-flex;
  align-items: center;
  background: var(--c-red);
  color: var(--c-white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  padding: 2px 8px;
  border-radius: var(--r-full);
  margin-right: var(--sp-2);
  vertical-align: middle;
}

/* ── Misc ── */
.accept-note {
  background: var(--c-gray-100);
  border-left: 4px solid #06c755;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--c-gray-700);
  margin-bottom: var(--sp-3);
}
.img-full { width: 100%; }
.img-center { display: block; margin-inline: auto; }

/* ── Breadcrumb ── */
.breadcrumb {
  background: var(--c-gray-100);
  border-bottom: 1px solid var(--c-border);
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  padding: var(--sp-3) 0;
  font-size: var(--fs-sm);
}
.breadcrumb__list li:not(:last-child)::after {
  content: '›';
  margin-left: var(--sp-2);
  color: var(--c-gray-400);
}
.breadcrumb__list li:last-child { color: var(--c-text-muted); }
.breadcrumb__list a { color: var(--c-blue); }

/* ── Info table (company overview) ── */
.info-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid var(--c-navy);
  margin-bottom: var(--sp-8);
  font-size: var(--fs-base);
}
.info-table th,
.info-table td {
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--c-border);
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}
.info-table th {
  background: var(--c-gray-50);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  width: 200px;
  white-space: nowrap;
}
.info-tel-img {
  max-width: 340px;
  width: 100%;
  display: block;
}
.map-wrap {
  overflow: hidden;
  border-radius: var(--r-md);
  margin-top: var(--sp-2);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}
@media (max-width: 640px) {
  .info-table,
  .info-table tbody,
  .info-table tr,
  .info-table th,
  .info-table td { display: block; width: 100%; box-sizing: border-box; }
  .info-table tr { border-top: 1px solid var(--c-border); }
  .info-table tr:first-child { border-top: 2px solid var(--c-navy); }
  .info-table th {
    white-space: normal;
    width: 100%;
    padding: var(--sp-3) var(--sp-4) var(--sp-1);
    border-bottom: none;
    font-size: var(--fs-sm);
    color: var(--c-text-muted);
    background: var(--c-gray-50);
  }
  .info-table td {
    padding: var(--sp-2) var(--sp-4) var(--sp-4);
    border-bottom: none;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .map-wrap iframe { height: 260px; }
}

/* ── Article body (ブログ記事本文) ── */
.article-body {
  max-width: 800px;
  margin-inline: auto;
}
.article-body h2 {
  font-size: clamp(var(--fs-xl), 3vw, var(--fs-3xl));
  color: var(--c-navy);
  padding-bottom: var(--sp-3);
  border-bottom: 3px solid var(--c-orange);
  display: inline-block;
  margin-bottom: var(--sp-6);
  line-height: 1.5;
}
.article-body h3 {
  font-size: clamp(var(--fs-lg), 2.5vw, var(--fs-2xl));
  color: var(--c-navy);
  margin: var(--sp-10) 0 var(--sp-4);
  padding-left: var(--sp-4);
  border-left: 4px solid var(--c-blue);
  line-height: 1.5;
}
.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--r-md);
  margin-bottom: var(--sp-6);
}
.article-body p {
  line-height: 1.9;
  margin-bottom: var(--sp-4);
}
.article-body a { color: var(--c-blue); }

/* ── Related articles ── */
.related-articles {
  max-width: 800px;
  margin: var(--sp-12) auto 0;
  padding-top: var(--sp-8);
  border-top: 1px solid var(--c-border);
}
.related-articles__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  margin-bottom: var(--sp-4);
}
.related-articles__list { display: flex; flex-direction: column; gap: var(--sp-2); list-style: none; }
.related-articles__list li { padding: var(--sp-2) 0; border-bottom: 1px dashed var(--c-border); }
.related-articles__list li:last-child { border-bottom: none; }
.related-articles__list a { color: var(--c-blue); font-size: var(--fs-base); line-height: 1.6; }
.related-articles__list a:hover { color: var(--c-navy); }

/* ── Back to list ── */
.back-to-list-wrap { max-width: 800px; margin: var(--sp-8) auto 0; }
.back-to-list {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--c-navy);
  font-weight: var(--fw-medium);
  font-size: var(--fs-sm);
  text-decoration: none;
  padding: var(--sp-3) var(--sp-5);
  border: 2px solid var(--c-navy);
  border-radius: var(--r-md);
  transition: background var(--trans-fast), color var(--trans-fast);
}
.back-to-list::before { content: '←'; margin-right: var(--sp-1); }
.back-to-list:hover { background: var(--c-navy); color: var(--c-white); text-decoration: none; }

/* ── Blog cards ── */
.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-6);
  margin-block: var(--sp-8);
}
.blog-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform var(--trans-fast), box-shadow var(--trans-fast);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.blog-card__body {
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--sp-3);
}
.blog-card__title {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  line-height: 1.55;
}
.blog-card__title a { color: var(--c-navy); text-decoration: none; }
.blog-card__title a:hover { color: var(--c-blue); text-decoration: none; }
.blog-card__desc {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: 1.75;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__more {
  align-self: flex-start;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--c-blue);
  text-decoration: none;
  transition: color var(--trans-fast);
}
.blog-card__more::after { content: ' →'; }
.blog-card__more:hover { color: var(--c-navy); text-decoration: none; }

/* ── Policy list (プライバシーポリシー用) ── */
.policy-list {
  list-style: disc;
  padding-left: var(--sp-8);
  margin-block: var(--sp-3);
}
.policy-list li {
  margin-bottom: var(--sp-3);
  line-height: 1.85;
}

/* ── Benefit list (箇条書き強調) ── */
.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-block: var(--sp-4);
}
.benefit-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: var(--c-gray-50);
  border-left: 4px solid var(--c-orange);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-weight: var(--fw-medium);
}
.benefit-list li::before {
  content: '✓';
  color: var(--c-orange);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}

/* ── Price cards (主要解体料金) ── */
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
}
@media (max-width: 768px) { .price-cards { grid-template-columns: 1fr; } }

.price-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.price-card__head {
  background: var(--c-navy);
  color: var(--c-white);
  font-weight: var(--fw-bold);
  text-align: center;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--fs-base);
  line-height: 1.5;
}
.price-detail-table {
  width: 100%;
  border-collapse: collapse;
}
.price-detail-table th {
  background: var(--c-gray-100);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  padding: var(--sp-2) var(--sp-3);
  text-align: center;
  border-bottom: 1px solid var(--c-border);
}
.price-detail-table td {
  padding: var(--sp-3);
  border-bottom: 1px solid var(--c-border);
  text-align: center;
  font-size: var(--fs-sm);
}
.price-detail-table tr:last-child td { border-bottom: none; }
.price-detail-table tbody tr:nth-child(odd) td { background: var(--c-white); }
.price-detail-table tbody tr:nth-child(even) td { background: var(--c-gray-50); }
.price-detail-table .price-val {
  font-weight: var(--fw-bold);
  color: var(--c-navy);
}
.price-card__note {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  text-align: center;
  padding: var(--sp-3) var(--sp-4);
  border-top: 1px solid var(--c-border);
  background: var(--c-gray-50);
  line-height: 1.6;
}

/* ── Misc table (その他の料金表) ── */
.misc-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid var(--c-navy);
  margin-bottom: var(--sp-4);
}
.misc-table th {
  background: var(--c-navy);
  color: var(--c-white);
  font-weight: var(--fw-bold);
  padding: var(--sp-3) var(--sp-4);
  text-align: center;
  font-size: var(--fs-sm);
}
.misc-table td {
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--c-border);
  text-align: center;
  font-size: var(--fs-base);
  vertical-align: middle;
}
.misc-table tbody tr:nth-child(even) td { background: var(--c-gray-50); }
.misc-table .price-val { font-weight: var(--fw-bold); color: var(--c-navy); }
.misc-table .free-val  { font-weight: var(--fw-bold); color: var(--c-orange); }
@media (max-width: 640px) {
  .misc-table thead { display: none; }
  .misc-table,
  .misc-table tbody,
  .misc-table tr,
  .misc-table td { display: block; width: 100%; box-sizing: border-box; }
  .misc-table tbody tr {
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    margin-bottom: var(--sp-3);
    padding: var(--sp-2) var(--sp-4);
    background: var(--c-white);
  }
  .misc-table tbody tr:nth-child(even) td { background: transparent; }
  .misc-table td {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-bottom: 1px dashed var(--c-border);
    padding: var(--sp-2) 0;
    text-align: right;
    gap: var(--sp-3);
  }
  .misc-table td:last-child { border-bottom: none; }
  .misc-table td::before {
    content: attr(data-label);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    color: var(--c-text-muted);
    flex-shrink: 0;
    text-align: left;
  }
}

/* ── Flow steps ── */
.flow-steps {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-block: var(--sp-8);
}
.flow-step {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-navy);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 0 var(--sp-4);
  align-items: start;
}
.flow-step__num {
  width: 48px;
  height: 48px;
  background: var(--c-navy);
  color: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
  flex-shrink: 0;
  margin-top: 4px;
  line-height: 1;
}
.flow-step__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  margin-bottom: var(--sp-3);
}
.flow-step__body { line-height: 1.85; }
.flow-step__body p { margin-bottom: var(--sp-2); }
.flow-step__body p:last-child { margin-bottom: 0; }
.flow-step__note {
  background: var(--c-gray-50);
  border-left: 3px solid var(--c-orange);
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-top: var(--sp-3);
}

/* ── Share buttons ── */
.share-section { margin-block: var(--sp-8); padding-top: var(--sp-6); border-top: 1px solid var(--c-border); }
.share-section__title { font-size: var(--fs-sm); color: var(--c-text-muted); margin-bottom: var(--sp-3); }
.share-list { display: flex; gap: var(--sp-3); flex-wrap: wrap; list-style: none; }
.share-btn {
  display: inline-flex;
  align-items: center;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  text-decoration: none;
  transition: opacity var(--trans-fast);
  color: var(--c-white);
}
.share-btn:hover { opacity: .82; text-decoration: none; color: var(--c-white); }
.share-btn--fb { background: #1877f2; }
.share-btn--tw { background: #1da1f2; }
.share-btn--ln { background: #06c755; }
.share-btn--ht { background: #00a4de; }


/* ── Tel Text ── */
.tel-text {
  display: inline-block;
  margin-top: .6rem;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: .04em;
  color: #ff7a00;
  text-decoration: none;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}
.tel-text:hover { text-decoration: underline; }

.tel-person-note {
  margin-top: .8rem;
  font-weight: 800;
  color: var(--color-text, #1f2937);
}

/* 濃紺・暗色背景では白文字 */
.contact-card .tel-person-note,
.section--navy .tel-person-note,
.section--dark .tel-person-note {
  color: #fff;
}

.contact-card .tel-text {
  margin-top: .5rem;
}

/* 会社概要テーブル内のTEL欄は通常サイズ */
.info-table .tel-text {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--c-navy, #0f4c81);
  text-shadow: none;
  margin-top: 0;
  letter-spacing: normal;
  line-height: inherit;
}

/* ── Premium Contact CTA ── */
.premium-contact {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 122, 0, .16), transparent 32%),
    linear-gradient(135deg, #08172b 0%, #132b4f 48%, #08172b 100%);
}

.premium-contact__inner {
  max-width: 1080px;
}

.premium-contact__header {
  text-align: center;
  color: #fff;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.premium-contact__eyebrow {
  display: inline-block;
  margin-bottom: .8rem;
  color: #ff7a00;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.premium-contact__title {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.35;
  font-weight: 900;
}

.premium-contact__lead {
  margin: 1.3rem auto 0;
  max-width: 720px;
  color: rgba(255, 255, 255, .86);
  line-height: 1.9;
  font-weight: 600;
}

.premium-contact__lead strong {
  color: #ffb4a8;
}

.premium-contact__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.premium-phone {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(1.8rem, 5vw, 3rem);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .06));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
  backdrop-filter: blur(10px);
}

.premium-phone__label {
  margin: 0 0 .8rem;
  color: rgba(255, 255, 255, .82);
  font-weight: 800;
  letter-spacing: .08em;
}

.premium-phone__number {
  display: inline-block;
  color: #ff7a00;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: .04em;
  text-decoration: none;
  white-space: nowrap;
  text-shadow: 0 10px 28px rgba(0, 0, 0, .32);
}

.premium-phone__number:hover {
  text-decoration: underline;
}

.premium-phone__person {
  margin: 1rem 0 0;
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
}

.premium-contact__subgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: clamp(1.6rem, 4vw, 2.4rem) auto 0;
  max-width: 900px;
}

.premium-mini-card {
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  text-align: center;
  color: #fff;
}

.premium-mini-card__title {
  margin: 0 0 .8rem;
  font-weight: 900;
}

.premium-mini-card__text {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, .78);
}

.premium-mini-card__link {
  display: inline-block;
  margin-bottom: .8rem;
  color: #fff;
  font-weight: 800;
}

.premium-line-qr {
  display: block;
  width: min(180px, 60vw);
  height: auto;
  margin: 1rem auto 0;
  border-radius: 14px;
  background: #fff;
}

@media (max-width: 767px) {
  .premium-contact {
    padding: 3.5rem 0;
  }

  .premium-contact__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .premium-phone {
    border-radius: 20px;
    padding: 1.6rem 1rem;
  }

  .premium-phone__number {
    font-size: clamp(2.1rem, 10vw, 3rem);
    letter-spacing: .02em;
  }

  .premium-contact__subgrid {
    grid-template-columns: 1fr;
  }

  .premium-line-qr {
    width: min(150px, 54vw);
  }
}

/* ── Contact Form ── */
.contact-form-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.contact-phone-bar {
  background: rgba(15, 76, 129, .06);
  border: 1px solid rgba(15, 76, 129, .18);
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}
.contact-phone-bar__label { font-size: .82rem; color: #6b7280; margin: 0 0 .3rem; }
.contact-phone-bar__number {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 900;
  color: #ff7a00;
  text-decoration: none;
  display: inline-block;
  letter-spacing: .04em;
}
.contact-phone-bar__number:hover { text-decoration: underline; }
.contact-phone-bar__person { font-size: .85rem; color: #374151; font-weight: 700; margin: .3rem 0 0; }

.contact-form-card {
  background: #fff;
  border-radius: 18px;
  padding: clamp(1.8rem, 5vw, 3rem);
  box-shadow: 0 4px 32px rgba(0, 0, 0, .1);
}

.contact-form__intro {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #f1f5f9;
}
.contact-form__intro-title {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 900;
  color: #0f4c81;
  margin: 0 0 .8rem;
}
.contact-form__intro-lead {
  font-size: .92rem;
  line-height: 1.85;
  color: #4b5563;
  margin: 0;
}

.form-group { margin-bottom: 1.6rem; }

.form-label {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  font-size: .88rem;
  color: #1f2937;
  margin-bottom: .5rem;
}
.badge-required {
  background: #ef4444;
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  padding: .12rem .45rem;
  border-radius: 4px;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.badge-optional {
  background: #9ca3af;
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: .12rem .45rem;
  border-radius: 4px;
  flex-shrink: 0;
}

.form-input,
.form-select,
.form-textarea {
  display: block;
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--ff-sans, 'Noto Sans JP', sans-serif);
  color: #1f2937;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #0f4c81;
  box-shadow: 0 0 0 3px rgba(15, 76, 129, .14);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%236b7280' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .8rem center;
  background-size: 16px;
  padding-right: 2.4rem;
  cursor: pointer;
}
.form-textarea { min-height: 160px; resize: vertical; line-height: 1.75; }

.form-radio-group,
.form-check-group {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .2rem;
}
.form-radio-label {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .95rem;
  color: #374151;
  cursor: pointer;
  padding: .5rem .9rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  transition: border-color .15s, background .15s;
}
.form-radio-label:has(input:checked) {
  border-color: #0f4c81;
  background: rgba(15, 76, 129, .06);
}
.form-radio-label input {
  width: 17px; height: 17px;
  accent-color: #0f4c81;
  cursor: pointer;
  flex-shrink: 0;
}

.form-file {
  display: block;
  width: 100%;
  padding: .75rem 1rem;
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  font-size: .9rem;
  color: #6b7280;
  background: #f9fafb;
  cursor: pointer;
  box-sizing: border-box;
  transition: border-color .2s, background .2s;
}
.form-file:hover { border-color: #0f4c81; background: #eef4fb; }

.form-help {
  font-size: .78rem;
  color: #6b7280;
  margin: .35rem 0 0;
}

.form-error-box {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 2rem;
  color: #991b1b;
}
.form-error-box__title { font-weight: 800; margin: 0 0 .6rem; font-size: 1rem; }
.form-error-box ul { padding-left: 1.2rem; margin: 0; }
.form-error-box li { font-size: .88rem; margin-bottom: .3rem; }

.form-success-wrap {
  text-align: center;
  padding: 4rem 2rem;
}
.form-success-wrap__icon { font-size: 3.5rem; margin-bottom: 1rem; }
.form-success-wrap__title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #0f4c81;
  margin: 0 0 1rem;
}
.form-success-wrap__text {
  color: #4b5563;
  line-height: 1.85;
  margin: 0 0 2rem;
}

.form-submit { text-align: center; margin-top: 2.5rem; }
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem 3rem;
  background: #ff7a00;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s, transform .15s;
  font-family: var(--ff-sans, 'Noto Sans JP', sans-serif);
  min-width: 260px;
  letter-spacing: .02em;
}
.btn-submit:hover { background: #e06000; transform: translateY(-2px); }

.hp-field { display: none !important; visibility: hidden !important; position: absolute; }

@media (max-width: 600px) {
  .form-radio-group, .form-check-group { gap: .5rem; }
  .form-radio-label { padding: .45rem .75rem; font-size: .9rem; }
  .btn-submit { min-width: 0; width: 100%; padding: 1rem; }
}