/* =============================================================================
   01. グローバル変数・リセット
   ============================================================================= */
/* 全画面にフィルムグレインを重ねて、印刷物のような質感を出す */
/* =============================================================================
   02. タイポグラフィ・ページヒーロー（全 contact系／company で共通）
   ============================================================================= */
.page-hero {
  position: relative;
  padding: 160px 40px 80px;
  background: linear-gradient(180deg, var(--midnight) 0%, var(--deep-sea) 100%);
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94,196,182,.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .section-eyebrow {
  font-family: var(--ff-label);
  font-size: 13px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 16px;
}
.page-hero .section-heading {
  font-family: var(--ff-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  color: #fff;
  letter-spacing: 4px;
  line-height: 1.3;
  margin-bottom: 20px;
}
.page-hero .hero-sub {
  font-family: var(--ff-body);
  font-size: 15px;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* =============================================================================
   05. セクション共通ベース
   ============================================================================= */
.section {
  padding: 96px 40px;
}
.section--light { background: var(--cream); }
.section--sand  { background: var(--sand-light); }

.section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.section-lead-block {
  text-align: center;
  margin-bottom: 56px;
}
.section-lead-block .section-eyebrow {
  font-family: var(--ff-label);
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}
.section-lead-block .section-heading {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 1.4;
  color: var(--ink);
}

/* =============================================================================
   05-01. 会社概要テーブル（dl ベースで意味構造を保つ）
   dt を左ラベル、dd を右の値として、PC はグリッドで2カラム表示
   ============================================================================= */
.company-profile {
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: 4px;
  padding: 8px 32px;
  box-shadow: 0 4px 24px rgba(44, 36, 24, .04);
}

.company-profile dl {
  display: grid;
  grid-template-columns: 180px 1fr;  /* ラベル固定幅 / 値は残り全部 */
  gap: 0;
}

.company-profile dt,
.company-profile dd {
  padding: 20px 0;
  border-bottom: 1px solid var(--sand);
  display: flex;
  align-items: flex-start;
}

/* 最終行の下線は消す */
.company-profile dl > dt:nth-last-of-type(1),
.company-profile dl > dd:nth-last-of-type(1) {
  border-bottom: none;
}

.company-profile dt {
  font-family: var(--ff-label);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  padding-right: 16px;
}

.company-profile dd {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.8;
}

.company-profile dd a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(61, 139, 158, .3);
  transition: color .2s, border-color .2s;
}
.company-profile dd a:hover {
  color: var(--coral);
  border-bottom-color: var(--coral);
}

/* 未入力値のプレースホルダ表記（[要入力]）は一段薄く見せる */
.company-profile .tbd {
  color: var(--stone);
  font-style: italic;
  font-size: 13px;
}

/* =============================================================================
   05-02. 事業内容カード（3本柱）
   ============================================================================= */
.business-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.business-card {
  background: #fff;
  border-top: 3px solid var(--coral);
  padding: 32px 28px;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(44, 36, 24, .04);
}

.business-card-num {
  font-family: var(--ff-number);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--coral);
  margin-bottom: 10px;
  display: block;
}
.business-card-title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.business-card-sub {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 16px;
}
.business-card-body {
  font-size: 13.5px;
  color: var(--ink-light);
  line-height: 1.85;
}

/* =============================================================================
   05-03. アクセス（住所＋GoogleMaps遷移ボタン）
   ============================================================================= */
.access-box {
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: 4px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.access-box-info {
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--ink);
}
.access-box-info .access-zip {
  font-family: var(--ff-number);
  font-size: 12px;
  color: var(--stone);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}
.access-box-info .access-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.8;
  padding-top: 14px;
  border-top: 1px dashed var(--stone-light);
}

.access-box-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--ocean);
  color: #fff;
  font-family: var(--ff-label);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  transition: background .2s ease, transform .2s ease;
  white-space: nowrap;
}
.access-box-btn:hover {
  background: var(--coral);
  transform: translateY(-1px);
}
.access-box-btn svg {
  flex-shrink: 0;
}

/* =============================================================================
   91. ユーティリティ
   ============================================================================= */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =============================================================================
   99. レスポンシブ（max-width: 768px）
   ============================================================================= */
@media (max-width: 768px) {
  .page-hero { padding: 120px 20px 60px; }

  .section { padding: 64px 20px; }
  .section-lead-block { margin-bottom: 40px; }

  /* 会社概要テーブル：SP は縦積みでラベル上・値下に */
  .company-profile { padding: 4px 20px; }
  .company-profile dl { grid-template-columns: 1fr; }
  .company-profile dt {
    padding: 18px 0 4px;
    border-bottom: none;
  }
  .company-profile dd {
    padding: 0 0 18px;
  }

  /* 事業内容：SP は縦1列 */
  .business-cards { grid-template-columns: 1fr; }

  /* アクセス：SP はボタンを住所の下に */
  .access-box {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 20px;
  }
  .access-box-btn { justify-self: start; }
}

/* 320〜380px 極狭幅 */
@media (max-width: 380px) {
  .section { padding: 48px 16px; }
  .page-hero { padding: 100px 16px 40px; }
  .page-hero .section-heading { font-size: 28px !important; letter-spacing: 2px !important; }
  .page-hero .hero-sub { font-size: 13px; }
  .company-profile { padding: 4px 16px; }
  .company-profile dt { font-size: 11px; padding: 14px 0 2px; }
  .company-profile dd { font-size: 14px; padding: 0 0 14px; }
  .business-card { padding: 24px 20px; }
  .business-card-title { font-size: 18px; }
  .business-card-body { font-size: 13px; }
  .access-box { padding: 20px 16px; }
  .section-heading { font-size: 22px !important; }
}
