@charset "UTF-8";

/* ============================================================================
   about.css - 会社概要ページ専用スタイル
   ============================================================================

   読み込み順: sanitize.css → global.css → about.css
   設計方針  : モバイルファースト / global.cssのCSS変数を使用 / ゴールドアクセント不使用
   対応環境  : モバイル / タブレット（768px〜） / PC（1024px〜）

   ============================================================================ */


/* ============================================================================
   1. ページラッパー
   ============================================================================ */

.about-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-sans);
}


/* ============================================================================
   2. ヒーローエリア
   ============================================================================ */

.about-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: max(40vw, 220px);
  background-image: url("../.../../../../images/about-hero-dubai-skyline.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* オーバーレイ */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.60);
}

/* ヒーロー内コンテナ */
.about-hero__inner {
  position: relative;
  z-index: var(--z-base);
  text-align: center;
  padding: var(--space-6) var(--space-4);
}

/* ページタイトル */
.about-hero__title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  letter-spacing: 0.08em;
  line-height: var(--line-height-tight);
  margin: 0;
}

/* キャプション（任意） */
.about-hero__caption {
  display: block;
  margin-top: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-gray-300);
  letter-spacing: 0.12em;
  font-weight: var(--font-weight-light);
}

@media (min-width: 768px) {
  .about-hero {
    min-height: 360px;
  }

  .about-hero__title {
    letter-spacing: 0.12em;
  }
}


/* ============================================================================
   3. コンテンツエリア（シングルカラム中央寄せ）
   ============================================================================ */

.about-content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-top: var(--space-10);
  padding-bottom: var(--space-16);
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

@media (min-width: 768px) {
  .about-content {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }
}


/* ============================================================================
   4. セクション共通
   ============================================================================ */

.about-section {
  padding-bottom: var(--space-10);
  margin-bottom: var(--space-10);
  border-bottom: 1px solid var(--color-border);
}

/* 最終セクションはボーダー・マージン不要 */
.about-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* セクション見出し */
.about-section__heading {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  letter-spacing: 0.04em;
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--color-border);
}

/* 本文 */
.about-section p {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-3);
}

.about-section p:last-child {
  margin-bottom: 0;
}


/* ============================================================================
   5. 活動理念セクション
   ============================================================================ */

/* 左ボーダーで引用感を演出（色はモノクロ：--color-text-muted） */
.about-section--philosophy {
  border-left: 3px solid var(--color-text-muted);
  padding-left: var(--space-5);
}

/* キャッチコピー行 */
.about-philosophy__tagline {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  letter-spacing: 0.04em;
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-3);
}

@media (min-width: 768px) {
  .about-philosophy__tagline {
    font-size: var(--font-size-xl);
  }
}


/* ============================================================================
   6. Google マップ
   ============================================================================ */

.about-map {
  position: relative;
  width: 100%;
  /* 4:3 アスペクト比 */
  padding-top: 75%;
  margin-top: var(--space-6);
  overflow: hidden;
}

.about-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (min-width: 768px) {
  .about-map {
    /* 16:9 アスペクト比 */
    padding-top: 56.25%;
  }
}


/* ============================================================================
   7. テーブル（事業概要・事業責任者）
   ============================================================================ */

.about-table {
  width: 100%;
  border-collapse: collapse;
}

/* モバイル: th・td を縦積み（block） */
.about-table tr,
.about-table th,
.about-table td {
  display: block;
  width: 100%;
}

.about-table tr {
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--color-border);
}

.about-table tr:first-child {
  border-top: 1px solid var(--color-border);
}

.about-table th {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 0.25rem;
  border: none;
}

.about-table td {
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  border: none;
  padding: 0;
}

.about-contact__cta {
  display: flex;
  justify-content: center;
}

/* 768px以上: 横並びテーブル */
@media (min-width: 768px) {
  .about-table tr,
  .about-table th,
  .about-table td {
    display: table-row;
    display: revert;
    width: auto;
  }

  .about-table tr {
    padding: 0;
    border-top: none;
    border-bottom: none;
  }

  .about-table tr:first-child {
    border-top: none;
  }

  .about-table tr + tr th,
  .about-table tr + tr td {
    border-top: 1px solid var(--color-border);
  }

  .about-table th {
    width: 30%;
    text-align: left;
    text-transform: none;
    font-size: var(--font-size-base);
    letter-spacing: 0;
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-medium);
    padding: var(--space-2) var(--space-3) var(--space-2) 0;
    vertical-align: top;
    border-bottom: none;
  }

  .about-table td {
    padding: var(--space-2) 0 var(--space-2) var(--space-3);
    border-bottom: none;
    vertical-align: top;
  }
}

/* ============================================================================
   7. お問い合わせ
   ============================================================================ */

#contact p{
  margin-bottom: 2em;
}

.about-contact__cta {
  display: flex;
  justify-content: center;
}

.about-contact__cta a{
  width: 200px;
}