/* ============================================
   dx-tour.css - DX見学ページ固有スタイル
   ============================================ */

/* イントロ（ページ見出し+説明文）
   XD: padding-top 95px */
.dx-tour-intro {
  padding-top: 95px;
}

/* 説明文ラッパー: 見出しと同じ左右padding(316px)で配置 */
.dx-tour-intro__desc-wrap {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 316px;
  box-sizing: border-box;
}

/* 説明文: Noto Sans JP Bold 20px / line-height:40px / letter-spacing:1px / #000
   ※SERVICEの line-height:60px と異なるので注意 */
.dx-tour-intro__description {
  font-family: var(--font-ja);
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 1px;
  color: #000;
  margin: 35px 0 0 0;
}

/* ============================================
   SCHEDULE セクション
   ============================================ */
.dx-schedule {
  background: #F5F1E4;
  padding: 80px 0 0; /* bottom padding は inner 内で吸収し、赤線をベージュ下端にタッチ */
  margin-top: 100px;
}

.dx-schedule__inner {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 316px 80px; /* 下 80px 余白（ベージュ下端） */
  box-sizing: border-box;
}

/* 赤い縦ライン: inner内に配置
   XD: 長方形87 W:20 H:1490 X:381 (badge X:316 + 65) → badge center 391 = line center
   ライン太さ20px → left:391-10=381px (inner の border-box 原点から) */
.dx-schedule__inner::before {
  content: "";
  position: absolute;
  left: 381px;
  top: 235px; /* SCHEDULEタイトル(100) + margin-bottom(60) + バッジ中心(75) */
  bottom: 0; /* inner下端 = ベージュ下端に一致 */
  width: 20px;
  background: #E60012;
  z-index: 0;
}

/* SCHEDULE 大見出し: Barlow ExtraBold 100px / #6CABC3 */
.dx-schedule__title {
  font-family: var(--font-barlow);
  font-weight: 800;
  font-size: 100px;
  line-height: 1;
  color: #6CABC3;
  text-align: center;
  margin: 0 0 60px;
  letter-spacing: 2px;
}

/* タイムライン本体 */
.dx-schedule__timeline {
  position: relative;
}

.dx-schedule__item {
  position: relative;
  display: grid;
  /* XD: badge 150px / body 1fr / image 566px */
  grid-template-columns: 150px 1fr 566px;
  gap: 40px;
  align-items: start; /* 上端揃え */
  margin-bottom: 100px;
}

.dx-schedule__item:last-child {
  margin-bottom: 0;
}

/* バッジ: XD 150×150、画像上端(image top)より27px上に配置 */
.dx-schedule__badge {
  position: relative;
  z-index: 1;
  width: 150px;
  height: 150px;
  /* XD: バッジY:1048、画像Y:1075 → バッジは画像上端から -27px */
  margin-top: -27px;
}

.dx-schedule__badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* body(タイトル+説明): 画像上端から17px下 */
.dx-schedule__body {
  padding: 17px 20px 0;
}

/* タイトル: Noto Sans JP Black 45px / #6CABC3 */
.dx-schedule__item-title {
  font-family: var(--font-ja);
  font-weight: 900;
  font-size: 45px;
  line-height: 1.3;
  color: #6CABC3;
  margin: 0 0 20px;
}

/* 説明文: Noto Sans JP Medium 20px / line-height:40px (XD実測) */
.dx-schedule__item-desc {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 20px;
  line-height: 40px;
  color: #000;
  margin: 0;
}

.dx-schedule__image {
  width: 566px;
}

.dx-schedule__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ============================================
   工場見学概要 セクション
   ============================================ */
.dx-tour-info {
  background: #fff;
  padding: 187px 0 100px;
}

.dx-tour-info__inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 316px;
  box-sizing: border-box;
}

.dx-tour-info__title {
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  letter-spacing: 5px;
  color: #000;
  text-align: center;
  margin: 0 0 125px;
}

.dx-tour-info__list {
  margin: 0;
  padding: 0;
  border-top: 1px solid #ccc;
}

.dx-tour-info__row {
  display: grid;
  grid-template-columns: 469px 1fr;
  align-items: center;
  min-height: 180px;
  padding: 30px 0 30px 25px; /* 内容が多い行(お申し込みの流れ)でも上下に余白を確保 */
  border-bottom: 1px solid #ccc;
}

.dx-tour-info__label {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.5;
  color: #000;
  margin: 0;
}

.dx-tour-info__value {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.5;
  color: #000;
  margin: 0;
}

/* ============================================
   SP対応
   ============================================ */
@media (max-width: 991.98px) {
  /* イントロ: 見出し(共通page-heading 40/20)＋説明文をSERVICEと同様に */
  .dx-tour-intro {
    padding-top: 56px;
  }
  .dx-tour-intro__desc-wrap {
    padding: 0 20px;
  }
  .dx-tour-intro__description {
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.5px;
    margin-top: 50px;
  }

  .dx-schedule {
    padding: 60px 0;
    margin-top: 60px;
  }
  /* 赤い縦ライン(PC位置)はSPでは非表示 */
  .dx-schedule__inner::before {
    display: none;
  }
  .dx-schedule__inner,
  .dx-tour-info__inner {
    padding: 0 24px;
  }
  .dx-schedule__title {
    font-size: 50px;            /* SCHEDULE 50px */
    margin-bottom: 40px;
  }
  /* 1アイテム: バッジ＋見出しを1行、説明文・画像は全幅 */
  .dx-schedule__item {
    grid-template-columns: 100px 1fr;
    gap: 0 16px;
    align-items: center;
    margin-bottom: 40px;
  }
  .dx-schedule__badge {
    grid-column: 1;
    grid-row: 1;
    width: 100px;             /* Circle 100px */
    height: 100px;
    margin-top: 0;             /* PCの-27px解除 */
  }
  .dx-schedule__body {
    display: contents;         /* title/descをアイテムグリッドに展開 */
  }
  .dx-schedule__item-title {
    grid-column: 2;
    grid-row: 1;
    font-size: 30px;           /* DXノウハウ講座: Noto Sans JP Black 30px */
    margin: 0;
  }
  .dx-schedule__item-desc {
    grid-column: 1 / -1;       /* 説明文は全幅 */
    grid-row: 2;
    font-size: 15px;           /* Noto Sans JP Medium 15px */
    line-height: 30px;
    margin-top: 12px;
  }
  .dx-schedule__image {
    grid-column: 1 / -1;       /* 画像は全幅 */
    grid-row: 3;
    width: 100%;
    margin-top: 16px;
  }

  .dx-tour-info {
    padding: 60px 0;
  }
  .dx-tour-info__inner {
    padding: 0 20px;
  }
  .dx-tour-info__title {
    font-family: var(--font-nav);   /* M PLUS 1p Bold */
    font-weight: 700;
    font-size: 26px;                /* 工場見学概要 26px */
    margin-bottom: 30px;
  }
  /* 表: ラベル(グレー帯)→値 の縦積み。罫線 #707070 */
  .dx-tour-info__list {
    border-top-color: #707070;
  }
  .dx-tour-info__row {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    padding: 0;
    border-bottom-color: #707070;
  }
  .dx-tour-info__label {
    background: #E3E0E0;            /* 見出し行 背景 */
    font-family: var(--font-ja);
    font-weight: 500;
    font-size: 18px;               /* Noto Sans JP Medium 18px */
    padding: 30px 20px;            /* 上下30px */
  }
  .dx-tour-info__value {
    font-family: var(--font-ja);
    font-weight: 500;
    font-size: 18px;               /* Noto Sans JP Medium 18px */
    padding: 30px 20px;            /* 上下30px */
  }
}
