@charset "UTF-8";
/*---------------------------
access.css  ガーラ・レジデンス川口 アクセスページ
---------------------------*/

:root {
  --access-navy: #1a3b6b;
  --access-navy-dark: #0e2a4f;
  --access-gold: #c4a86b;
  --access-bg-gray: #f5f5f5;
  --access-bg-beige: #f7f4ef;
  --access-text: #231815;
  --access-text-sub: #666;
  --access-border: #ccc;
  --access-topics-bg: #eef3f8;
}


/*---------------------------
メインビジュアル
---------------------------*/
#accessMainvisual {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

/* display制御はcommon.cssの.br-pc/.br-spに委譲。単一画像の場合はblockで表示 */
#accessMainvisual .access_mv_img img {
  width: 100%;
}

#accessMainvisual .access_mv_txt {
  position: absolute;
  left: 5%;
  bottom: 12%;
  z-index: 5;
}

#accessMainvisual .access_mv_en {
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 48px;
  letter-spacing: 0.15em;
  color: #fff;
  line-height: 1;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

/* Tab */
@media screen and (max-width: 1170px) {
  #accessMainvisual .access_mv_en {
    font-size: 4.1vw;
  }
}

/* sp */
@media only screen and (max-width: 768px) {
  #accessMainvisual .access_mv_txt {
    left: 4%;
    bottom: 8%;
  }

  #accessMainvisual .access_mv_en {
    font-size: 7.8vw;
  }
}


/*---------------------------
セクションタイトル共通
---------------------------*/
#trainAccess {
  margin-top: 0;
  padding-top: 0;
}

#trainAccess .access_sec_ttl {
  padding: 1.8em 0;
  margin: 0;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#busAccess .access_sec_ttl {
  padding-top: 4.5em;
  padding-bottom: 4.5em;
}

.access_sec_ttl {
  text-align: center;
  padding: 3em 0 3em;
  background: url(../images/access/ttl_bg.png) no-repeat center center;
  background-size: 100% auto;
}

.access_sec_ttl .sec_en {
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  letter-spacing: 0.2em;
  color: var(--access-navy);
  line-height: 1;
  position: relative;
  display: inline-block;
}

.access_sec_ttl .sec_en::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--access-navy);
  margin: 0.8em auto 0;
}

/* セクションタイトル画像版（train_ttl.png / car_ttl.png） */
.access_sec_ttl .sec_en_img {
  display: inline-block;
}

.access_sec_ttl .sec_en_img img {
  height: 36px;
  width: auto;
  display: block;
  margin: 0 auto;
}


/* Tab */
@media screen and (max-width: 1170px) {
  .access_sec_ttl .sec_en {
    font-size: 2.735vw;
  }
}

/* sp */
@media only screen and (max-width: 768px) {
  .access_sec_ttl {
    padding: 2.5em 0;
  }

  #busAccess .access_sec_ttl,
  #carAccess .access_sec_ttl {
    padding: 1.5em 0;
    background-size: 100% 100%;
    margin-bottom: 2em;
  }

  .access_sec_ttl .sec_en {
    font-size: 5.5vw;
  }

  .access_sec_ttl .sec_en_img img {
    height: 24px;
  }
}


/*---------------------------
TRAIN ACCESS - リード文（グレー背景帯）
---------------------------*/
.train_lead_wrap {
  background: var(--access-bg-gray);
  padding: 3em 0;
  margin-bottom: 3em;
}

.train_lead {
  text-align: center;
}

.train_lead_ttl {
  font-size: 26px;
  line-height: 1.7;
  letter-spacing: 0.1em;
  margin-bottom: 1.2em;
  color: var(--access-text);
}

.train_lead_txt {
  font-size: 14px;
  line-height: 2.0;
  letter-spacing: 0.05em;
  color: var(--access-text);
}

/* Tab */
@media screen and (max-width: 1170px) {
  .train_lead_ttl {
    font-size: 2.222vw;
  }

  .train_lead_txt {
    font-size: 1.196vw;
  }
}

/* sp */
@media only screen and (max-width: 768px) {
  .train_lead_wrap {
    padding: 2em 0;
    margin-bottom: 2em;
  }

  .train_lead_ttl {
    font-size: 4.8vw;
    line-height: 1.6;
  }

  .train_lead_txt {
    font-size: 3.125vw;
    line-height: 1.8;
  }
}


/*---------------------------
TRAIN ACCESS - 所要時間カード（3+2段組み）
---------------------------*/
.train_time_cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 4em;
}

.time_card {
  width: calc((100% - 40px) / 3);
  overflow: hidden;
}

/* 4枚目・5枚目は下段中央寄せのため幅を上段に合わせる */
.time_card:nth-child(n+4) {
  width: calc((100% - 40px) / 3);
}

.time_card_img {
  width: 100%;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}

.time_card_img img {
  width: 100%;
  display: block;
}

.time_card_img_cap {
  font-size: 12px;
  letter-spacing: 1px;
  color: #231815;
  text-align: right;
  padding: 3px 0;
  line-height: 1.4;
}

.time_card_info {
  background: var(--access-navy);
  color: #fff;
  text-align: center;
  padding: 10px 8px 12px;
  border-radius: 0 0 4px 4px;
}

.time_card_dest {
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.12em;
  margin-bottom: 2px;
  line-height: 1;
}

.time_card_min {
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.time_card_min .min_num {
  font-size: 30px;
  letter-spacing: 0.02em;
}

.time_card_min .min_unit {
  font-size: 13px;
  margin-left: 2px;
}

/* Tab */
@media screen and (max-width: 1170px) {
  .time_card_dest {
    font-size: 1.196vw;
  }

  .time_card_min .min_num {
    font-size: 2.564vw;
  }
}

/* sp */
@media only screen and (max-width: 768px) {
  .train_time_cards {
    gap: 10px;
    margin-bottom: 2.5em;
  }

  .time_card {
    width: calc((100% - 10px) / 2);
  }

  .time_card:nth-child(n+4) {
    width: calc((100% - 10px) / 2);
  }

  .time_card_dest {
    font-size: 3vw;
  }

  .time_card_min .min_num {
    font-size: 6.5vw;
  }

  .time_card_min .min_unit {
    font-size: 3vw;
  }
}


/*---------------------------
TRAIN ACCESS - 路線概念図
---------------------------*/
.route_map_area {
  margin-bottom: 4em;
}

.route_map_img {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.route_map_img img {
  width: 100%;
  display: block;
}

/* sp */
@media only screen and (max-width: 768px) {
  .route_map_area {
    margin-bottom: 2.5em;
  }
}


/*---------------------------
TRAIN ACCESS - 路線概念図＋所要時間 横並び
---------------------------*/
.route_combined_area {
  background: linear-gradient(to top, #bde0f0 0%, #ffffff 65%);
  padding: 4em 0;
}

.route_combined_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3em;
}

.route_combined_map {
  flex: 0 0 47%;
}

.route_combined_map img {
  width: 100%;
  display: block;
}

.route_combined_time {
  flex: 0 0 38%;
}

.route_combined_time img {
  width: 100%;
  display: block;
}

/* sp */
@media only screen and (max-width: 768px) {
  .route_combined_area {
    background: linear-gradient(to bottom, #bde0f0 0%, #ffffff 100%);
    padding: 2.5em 0;
  }

  .route_combined_inner {
    flex-direction: column;
    gap: 2em;
  }

  .route_combined_map {
    flex: none;
    width: 100%;
  }

  .route_combined_time {
    flex: none;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .route_combined_time img {
    width: auto;
    max-width: 100%;
  }
}


/*---------------------------
TRAIN ACCESS - 注釈テキスト
---------------------------*/
.train_access_notes {
  margin-top: 1.2em;
  padding: 0 0.5em;
}

.train_access_notes p {
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: var(--access-text-sub);
}

/* sp */
@media only screen and (max-width: 768px) {
  .train_access_notes p {
    font-size: 2.2vw;
  }
}


/*---------------------------
TRAIN ACCESS - 所要時間テーブル
---------------------------*/
.train_timetable_area {
  margin-bottom: 4em;
}

.timetable_head {
  background: var(--access-navy);
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  font-size: 16px;
  letter-spacing: 0.1em;
}

/* 交通アクセス図（左）と時刻表（右）の横並びレイアウト */
.timetable_layout {
  display: flex;
  gap: 0;
  align-items: stretch;
}

.timetable_img {
  width: 200px;
  min-width: 200px;
  flex-shrink: 0;
}

.timetable_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
}

/* 時刻表データ画像（trainaccess02.png） */
.timetable_data_img {
  flex: 1;
}

.timetable_data_img img {
  width: 100%;
  display: block;
}

.timetable {
  flex: 1;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.timetable th,
.timetable td {
  padding: 12px 14px;
  border: 1px solid var(--access-border);
  vertical-align: middle;
}

.timetable th {
  background: var(--access-bg-gray);
  font-weight: 300;
  text-align: left;
  white-space: nowrap;
  width: 140px;
  font-size: 15px;
  letter-spacing: 0.05em;
}

.timetable .time_commute {
  text-align: center;
  white-space: nowrap;
  width: 130px;
  font-size: 15px;
}

.timetable .time_daytime {
  text-align: center;
  white-space: nowrap;
  width: 130px;
  font-size: 13px;
  color: var(--access-text-sub);
}

.timetable .time_num {
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  color: var(--access-navy);
  letter-spacing: 0.02em;
}

.timetable .time_detail {
  font-size: 12px;
  line-height: 1.5;
  color: var(--access-text-sub);
}

.timetable .time_detail p {
  text-align: left;
}

/* Tab */
@media screen and (max-width: 1170px) {
  .timetable {
    font-size: 1.196vw;
  }

  .timetable th {
    font-size: 1.282vw;
    width: 12%;
  }

  .timetable .time_commute {
    font-size: 1.282vw;
    width: 11%;
  }

  .timetable .time_daytime {
    font-size: 1.111vw;
    width: 11%;
  }

  .timetable .time_num {
    font-size: 2.051vw;
  }

  .timetable .time_detail {
    font-size: 1.025vw;
  }
}

/* sp */
@media only screen and (max-width: 768px) {
  .train_timetable_area {
    margin-bottom: 2.5em;
  }

  .timetable_layout {
    flex-direction: column;
  }

  .timetable_img {
    width: 100%;
    min-width: auto;
    margin-bottom: 10px;
  }

  .timetable_head {
    font-size: 3.4vw;
    padding: 10px 12px;
  }

  .timetable {
    font-size: 3vw;
    display: block;
  }

  .timetable tbody {
    display: block;
  }

  .timetable tr {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--access-border);
    padding: 10px 0;
  }

  .timetable th,
  .timetable td {
    border: none;
    padding: 4px 10px;
  }

  .timetable th {
    width: 100%;
    font-size: 3.6vw;
    background: none;
    font-weight: 400;
    padding-bottom: 2px;
  }

  .timetable .time_commute {
    width: auto;
    font-size: 3.4vw;
    text-align: left;
  }

  .timetable .time_daytime {
    width: auto;
    font-size: 2.8vw;
    text-align: left;
  }

  .timetable .time_num {
    font-size: 5.2vw;
  }

  .timetable .time_detail {
    width: 100%;
    font-size: 2.6vw;
  }
}


/*---------------------------
TOPICS共通（CSS装飾枠）
---------------------------*/
.topics_area {
  padding: 3em 0;
}

.topics_box {
  position: relative;
  padding: 3.5em 3.5em 2.5em;
  border-radius: 6px;
  border: 1px solid #c4a86b;
  box-shadow: 0 2px 20px rgba(180, 210, 215, 0.3);
}

/* TOPICSリボン */
.topics_box::before {
  content: "TOPICS";
  position: absolute;
  top: -10px;
  left: -10px;
  background: linear-gradient(to right, #b8922a 0%, #d4b040 20%, #f0d070 50%, #d4b040 75%, #a87e28 100%);
  color: #3d2b0e;
  font-family: "adobe-garamond-pro", serif;
  font-size: 18px;
  letter-spacing: 0.25em;
  padding: 12px 48px 12px 24px;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  border-radius: 5px 0 0 0;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.35));
  z-index: 1;
}

/* リボン折り返し影 */
.topics_box::after {
  content: "";
  position: absolute;
  top: 32px;
  left: -10px;
  border-style: solid;
  border-width: 0 10px 10px 0;
  border-color: transparent #7a5510 transparent transparent;
  z-index: 1;
}

/* 水色背景版（南北線延伸） */
.topics_box--blue {
  background-color: #edf7f8;
}

/* ランキング背景版：背景は外側ラッパーに設定して横幅いっぱいに */
.topics_area.topics_ranking {
  padding-top: 0;
  background-image: url(../images/access/usp_bg_pc.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top center;
}

.topics_box--ranking {
  background: none;
  border: none;
  box-shadow: none;
}

.topics_box--ranking::before,
.topics_box--ranking::after {
  display: none;
}

/* ベージュ背景版（上野東京ライン） */
.topics_box--beige {
  background-color: #fdf0e6;
}

/* TOPICSラベル非表示（::beforeで代替） */
.topics_label {
  display: none;
}

/* sp */
@media only screen and (max-width: 768px) {
  .topics_area {
    padding: 2em 0;
  }

  .topics_box {
    padding: 2.5em 1.5em 1.8em;
  }

}


/*---------------------------
TOPICS - 住みたい沿線ランキング
---------------------------*/
.topics_area.topics_ranking .topics_content {
  padding-top: 20px;
}

.topics_ranking_ttl {
  font-size: 22px;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-bottom: 0.6em;
  color: #fff;
  text-align: center;
}

.topics_ranking_ttl .txt_emphasis {
  font-size: 1.25em;
}

.topics_ranking_txt {
  color: #fff;
  font-size: 13px;
  line-height: 1.9;
  text-align: center;
  margin-bottom: 2em;
}

.topics_ranking_body {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5em;
}

.topics_ranking_badge {
  flex: 0 0 24%;
}

.topics_ranking_badge img {
  width: 100%;
  display: block;
}

.topics_ranking_table {
  flex: 1;
}

.topics_ranking_table img {
  width: 100%;
  display: block;
}

/* Tab */
@media screen and (max-width: 1170px) {
  .topics_ranking_ttl {
    font-size: 1.88vw;
  }

  .topics_ranking_txt {
    font-size: 1.11vw;
  }
}

/* sp */
@media only screen and (max-width: 768px) {
  .topics_ranking_ttl {
    font-size: 4.2vw;
  }

  .topics_ranking_txt {
    font-size: 3.2vw;
    text-align: left;
  }

  .topics_ranking_body {
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
  }

  .topics_ranking_badge,
  .topics_ranking_table {
    flex: none;
    width: 85%;
  }

  .topics_ranking_badge {
    width: 88%;
  }

  .topics_ranking_table {
    width: 100%;
  }

  .topics_area.topics_ranking {
    background-size: cover;
    background-position: center center;
  }
}


/*---------------------------
TRAIN ACCESS - 京浜東北線の実力
---------------------------*/
.keihin_area {
  text-align: center;
  padding: 3em 0;
}

.keihin_ttl {
  font-size: 22px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin-bottom: 2em;
  color: var(--access-text);
}

.keihin_txt {
  font-size: 14px;
  line-height: 2.0;
  letter-spacing: 0.05em;
  margin-bottom: 2em;
  color: var(--access-text);
}

.keihin_imgs {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.keihin_img_wrap {
  width: 100%;
}

.keihin_scroll_hint {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--access-text-sub);
  text-align: right;
  margin-top: 6px;
}

.keihin_img {
  position: relative;
  width: 100%;
  overflow-x: visible;
}

.keihin_img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.keihin_scroll_hint {
  display: none;
}

/* Tab */
@media screen and (max-width: 1170px) {
  .keihin_ttl {
    font-size: 1.88vw;
  }

  .keihin_txt {
    font-size: 1.196vw;
  }
}

/* sp */
@media only screen and (max-width: 768px) {
  .keihin_area {
    padding: 2em 0;
  }

  .keihin_ttl {
    font-size: 4.2vw;
    line-height: 1.6;
  }

  .keihin_txt {
    font-size: 3.125vw;
    line-height: 1.8;
  }

  .keihin_imgs {
    flex-direction: column;
    gap: 14px;
  }

  .keihin_img {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }


  .keihin_img img {
    width: 1100px;
    max-width: none;
  }

  .keihin_img::-webkit-scrollbar {
    height: 8px;
  }

  .keihin_img::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 2px;
  }

  .keihin_img::-webkit-scrollbar-thumb {
    background: var(--access-navy);
    border-radius: 2px;
  }

  .keihin_scroll_hint {
    display: block;
  }
}


/*---------------------------
TOPICS - 上野東京ライン停車計画
---------------------------*/
.topics_ueno_ttl {
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-top: 1.5em;
  margin-bottom: 1em;
  color: var(--access-text);
}

.topics_ueno_txt {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-bottom: 1.5em;
  color: var(--access-text);
}

.topics_citation {
  font-size: 11px;
  color: var(--access-text-sub);
}

.topics_ueno_layout {
  display: flex;
  align-items: center;
  gap: 2.5em;
}

.topics_ueno_left {
  flex: 0 0 38%;
  padding-left: 2em;
}

.topics_ueno_right {
  flex: 1;
}

.topics_ueno_imgs {
  display: flex;
  gap: 16px;
}

.topics_ueno_img {
  width: calc((100% - 16px) / 2);
}

.topics_ueno_img img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

.topics_ueno_img .cap_n {
  position: relative;
  font-size: 11px;
  margin-top: 0.4em;
}

.topics_ueno_img .cap_n.wh {
  color: #231815;
  text-shadow: none;
}

/* Tab */
@media screen and (max-width: 1170px) {
  .topics_ueno_ttl {
    font-size: 1.709vw;
  }

  .topics_ueno_txt {
    font-size: 1.196vw;
  }
}

/* sp */
@media only screen and (max-width: 768px) {
  .topics_ueno_ttl {
    font-size: 3.8vw;
  }

  .topics_ueno_txt {
    font-size: 3.125vw;
  }

  .topics_ueno_layout {
    flex-direction: column;
    gap: 1.2em;
  }

  .topics_ueno_left {
    flex: none;
    width: 100%;
    padding-left: 0;
  }

  .topics_ueno_right {
    flex: none;
    width: 100%;
  }

  .topics_ueno_imgs {
    flex-direction: row;
    gap: 10px;
  }

  .topics_ueno_img {
    width: calc(50% - 5px);
    flex: 0 0 calc(50% - 5px);
  }

  .topics_ueno_img .cap_n {
    font-size: 10px;
  }
}


/*---------------------------
TRAIN ACCESS - 川口元郷駅セクション
---------------------------*/
.motogo_area {
  text-align: center;
  padding: 2em 0 2.5em;
}

.motogo_ttl {
  font-size: 22px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin-bottom: 1.2em;
  color: var(--access-text);
  text-align: left;
  margin-left: 2em;
  margin-right: auto;
}

.motogo_txt {
  font-size: 14px;
  line-height: 2.0;
  letter-spacing: 0.05em;
  color: var(--access-text);
  text-align: left;
  margin-left: 2em;
}

/* Tab */
@media screen and (max-width: 1170px) {
  .motogo_ttl {
    font-size: 1.88vw;
  }

  .motogo_txt {
    font-size: 1.196vw;
  }
}

/* sp */
@media only screen and (max-width: 768px) {
  .motogo_area {
    padding: 1.5em 0 2em;
  }

  .motogo_ttl {
    font-size: 4.2vw;
    line-height: 1.6;
    text-align: center;
    margin-left: 0;
  }

  .motogo_txt {
    font-size: 3.125vw;
    line-height: 1.8;
    text-align: left;
    margin-left: 0;
  }
}


/* 川口元郷 イントロ（テキスト＋電車写真） */
.motogo_intro {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2em;
  margin-top: 1.5em;
  padding-left: 2em;
}

.motogo_intro_txt {
  flex-shrink: 0;
}

/* kawamoto.pngは電車写真+路線図の複合画像 */
.motogo_intro_img {
  width: 68%;
  max-width: 680px;
  flex-shrink: 0;
}

.motogo_intro_img img {
  width: 100%;
  display: block;
}

/* sp */
@media only screen and (max-width: 768px) {
  .motogo_intro {
    flex-direction: column;
    gap: 2em;
    padding-left: 0;
  }

  .motogo_intro_img {
    width: 90%;
    max-width: none;
    margin-left: 0;
    margin-bottom: 2em;
  }
}


/*---------------------------
TRAIN ACCESS - 川口元郷 所要時間カード
---------------------------*/
.motogo_cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 3em;
}

.motogo_card {
  width: calc((100% - 40px) / 3);
  max-width: 360px;
  overflow: hidden;
}

.motogo_card_img {
  width: 100%;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}

.motogo_card_img img {
  width: 100%;
  display: block;
}

.motogo_card_info {
  color: var(--access-text);
  text-align: left;
  padding: 12px 4px 14px;
}

.motogo_card_dest {
  font-size: 15px;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
  line-height: 1.2;
}

.motogo_card_time {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.motogo_card_type {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--access-navy);
}

.motogo_card_min {
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  line-height: 1.2;
  color: var(--access-navy);
}

.motogo_card_min .min_num {
  font-size: 32px;
  letter-spacing: 0.02em;
}

.motogo_card_min .min_unit {
  font-size: 14px;
  margin-left: 2px;
}

.motogo_card_sub {
  font-size: 12px;
  color: var(--access-text-sub);
}

.motogo_card_detail {
  font-size: 11px;
  color: var(--access-text-sub);
  line-height: 1.6;
  margin-top: 8px;
}

.motogo_cards_cap {
  font-size: 12px;
  text-align: right;
  color: var(--access-text-sub);
  margin-top: 6px;
}

/* Tab */
@media screen and (max-width: 1170px) {
  .motogo_card_dest {
    font-size: 1.282vw;
  }

  .motogo_card_min .min_num {
    font-size: 2.735vw;
  }
}

/* sp */
@media only screen and (max-width: 768px) {
  .motogo_cards {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 2em;
  }

  .motogo_card {
    width: 100%;
    max-width: none;
    display: flex;
  }

  .motogo_card_img {
    width: 45%;
    border-radius: 4px 0 0 4px;
  }

  .motogo_card_info {
    width: 55%;
    border-radius: 0 4px 4px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .motogo_card_dest {
    font-size: 3.4vw;
    display: block;
  }

  .motogo_card_time {
    display: block;
    text-align: left;
  }

  .motogo_card_type,
  .motogo_card_min {
    display: inline;
  }

  .motogo_card_sub {
    display: inline;
  }

  .motogo_card_min .min_num {
    font-size: 7vw;
  }
}


/*---------------------------
TRAIN ACCESS - 川口元郷 所要時間テーブル
---------------------------*/
.motogo_timetable_area {
  margin-bottom: 3em;
}

/* sp */
@media only screen and (max-width: 768px) {
  .motogo_timetable_area {
    margin-bottom: 2em;
  }
}


/*---------------------------
TRAIN ACCESS - 川口元郷 路線図
---------------------------*/
.motogo_route_area {
  margin-bottom: 3em;
}

.motogo_route_img {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.motogo_route_img img {
  width: 100%;
  display: block;
}

/* sp */
@media only screen and (max-width: 768px) {
  .motogo_route_area {
    margin-bottom: 2em;
  }
}


/*---------------------------
TOPICS - 南北線延伸計画
---------------------------*/
.topics_namboku_ttl {
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-bottom: 1em;
  color: var(--access-text);
}

.topics_namboku_txt {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-bottom: 1.5em;
  color: var(--access-text);
}

.topics_namboku_imgs {
  display: flex;
  gap: 20px;
}

.topics_namboku_img {
  width: calc((100% - 20px) / 2);
}

.topics_namboku_img img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

/* Tab */
@media screen and (max-width: 1170px) {
  .topics_namboku_ttl {
    font-size: 1.709vw;
  }

  .topics_namboku_txt {
    font-size: 1.196vw;
  }
}

/* sp */
@media only screen and (max-width: 768px) {
  .topics_namboku_ttl {
    font-size: 3.8vw;
  }

  .topics_namboku_txt {
    font-size: 3.125vw;
  }

  .topics_namboku_imgs {
    flex-direction: column;
    gap: 14px;
  }

  .topics_namboku_img {
    width: 100%;
  }
}


/*---------------------------
BUS ACCESS - メインレイアウト（左：テキスト＋写真 / 右：ルート図）
---------------------------*/
.bus_main_area {
  display: flex;
  align-items: flex-start;
  gap: 3em;
  margin-bottom: 3em;
}

.bus_main_left {
  flex: 0 0 38%;
}

.bus_main_photo {
  margin-top: 1.5em;
}

.bus_main_photo img {
  width: 100%;
  display: block;
}

.bus_main_right {
  flex: 1;
}

.bus_main_right img {
  width: 100%;
  display: block;
}

/* sp */
@media only screen and (max-width: 768px) {
  .bus_main_area {
    flex-direction: column;
    gap: 1.5em;
  }

  .bus_main_left {
    flex: none;
    width: 100%;
  }
}


/*---------------------------
BUS ACCESS - リード文
---------------------------*/
.bus_lead {
  text-align: center;
  margin-bottom: 3em;
}

.bus_lead_ttl {
  font-size: 22px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin-bottom: 1.2em;
  color: var(--access-text);
  text-align: left;
}

.bus_lead_txt {
  font-size: 14px;
  line-height: 2.0;
  letter-spacing: 0.05em;
  color: var(--access-text);
  text-align: left;
}

/* Tab */
@media screen and (max-width: 1170px) {
  .bus_lead_ttl {
    font-size: 1.88vw;
  }

  .bus_lead_txt {
    font-size: 1.196vw;
  }
}

/* sp */
@media only screen and (max-width: 768px) {
  .bus_lead {
    margin-bottom: 2em;
  }

  .bus_lead_ttl {
    font-size: 4.2vw;
    line-height: 1.6;
    text-align: center;
  }

  .bus_lead_txt {
    font-size: 3.125vw;
    line-height: 1.8;
    text-align: left;
  }
}


/*---------------------------
BUS ACCESS - バス本数・所要時間
---------------------------*/
.bus_info_area {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 3em;
}

.bus_info_left {
  width: 40%;
}

.bus_info_ttl_img {
  margin-bottom: 1.5em;
}

.bus_info_ttl_img img {
  width: 100%;
  display: block;
}

.bus_count_area {
  text-align: center;
}

.bus_count_label {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin-bottom: 0.8em;
  color: var(--access-text);
}

.bus_count_num {
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--access-text);
}

.bus_count_num .bus_num {
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 60px;
  color: var(--access-navy);
  letter-spacing: 0.02em;
  line-height: 1;
}

.bus_info_right {
  width: 60%;
}

.bus_route_imgs {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.bus_route_img {
  width: calc((100% - 12px) / 2);
}

.bus_route_img img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

.bus_time_area {
  text-align: center;
}

.bus_time {
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--access-text);
}

.bus_time .bus_time_num {
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 36px;
  color: var(--access-navy);
}

/* Tab */
@media screen and (max-width: 1170px) {
  .bus_count_num .bus_num {
    font-size: 5.128vw;
  }

  .bus_time .bus_time_num {
    font-size: 3.076vw;
  }
}

/* sp */
@media only screen and (max-width: 768px) {
  .bus_info_area {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 2em;
  }

  .bus_info_left {
    width: 100%;
  }

  .bus_info_right {
    width: 100%;
  }

  .bus_count_num .bus_num {
    font-size: 13vw;
  }

  .bus_time .bus_time_num {
    font-size: 8vw;
  }
}


/*---------------------------
BUS ACCESS - バス停マップ
---------------------------*/
.bus_map_area {
  margin-top: 4em;
  margin-bottom: 3em;
}

.bus_map_ttl {
  font-size: 18px;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 1.5em;
  color: var(--access-text);
}

.bus_map_img {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.bus_map_img img {
  width: 100%;
  display: block;
}

/* Tab */
@media screen and (max-width: 1170px) {
  .bus_map_ttl {
    font-size: 1.538vw;
  }
}

/* sp */
@media only screen and (max-width: 768px) {
  .bus_map_area {
    margin-bottom: 2em;
  }

  .bus_map_ttl {
    font-size: 3.8vw;
  }
}


/*---------------------------
CAR ACCESS - メインレイアウト（左：テキスト＋写真 / 右：画像）
---------------------------*/
.car_main_area {
  display: flex;
  align-items: flex-start;
  gap: 3em;
  margin-bottom: 3em;
}

.car_main_left {
  flex: 0 0 43%;
}

.car_main_photo {
  margin-top: 1.5em;
}

.car_main_photo img {
  width: 100%;
  display: block;
}

.car_main_right {
  flex: 1;
}

.car_main_right img {
  width: 100%;
  display: block;
}

/* sp */
@media only screen and (max-width: 768px) {
  .car_main_area {
    flex-direction: column;
    gap: 1.5em;
  }

  .car_main_left {
    flex: none;
    width: 100%;
  }
}


/*---------------------------
CAR ACCESS - リード文
---------------------------*/
.car_lead {
  text-align: center;
  margin-bottom: 3em;
}

.car_lead_ttl {
  font-size: 22px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin-bottom: 1.2em;
  color: var(--access-text);
}

.car_lead_txt {
  font-size: 14px;
  line-height: 2.0;
  letter-spacing: 0.05em;
  color: var(--access-text);
}

/* Tab */
@media screen and (max-width: 1170px) {
  .car_lead_ttl {
    font-size: 1.88vw;
  }

  .car_lead_txt {
    font-size: 1.196vw;
  }
}

/* sp */
@media only screen and (max-width: 768px) {
  .car_lead {
    margin-bottom: 2em;
  }

  .car_lead_ttl {
    font-size: 4.2vw;
    line-height: 1.6;
    text-align: center;
  }

  .car_lead_txt {
    font-size: 3.125vw;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 2em;
  }
}


/*---------------------------
CAR ACCESS - IC情報
---------------------------*/
.car_ic_area {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 3em;
}

.car_ic_info {
  width: 100%;
  margin-bottom: 1.5em;
}

.car_ic_item {
  margin-bottom: 1.5em;
}

.car_ic_item:last-child {
  margin-bottom: 0;
}

.car_ic_name {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-bottom: 0.5em;
  color: var(--access-text);
}

.car_ic_name span {
  font-size: 13px;
  color: var(--access-text-sub);
}

.car_ic_time {
  font-size: 15px;
  letter-spacing: 0.03em;
  color: var(--access-text);
}

.car_ic_time .car_num {
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 36px;
  color: var(--access-navy);
}

.car_ic_time .car_dist {
  font-size: 13px;
  color: var(--access-text-sub);
  margin-left: 0.5em;
}

.car_ic_imgs {
  width: 60%;
  display: flex;
  gap: 12px;
}

.car_ic_img {
  width: calc((100% - 12px) / 2);
}

.car_ic_img img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

/* Tab */
@media screen and (max-width: 1170px) {
  .car_ic_time .car_num {
    font-size: 3.076vw;
  }
}

/* sp */
@media only screen and (max-width: 768px) {
  .car_ic_area {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 2em;
  }

  .car_ic_info {
    width: 100%;
    display: flex;
    gap: 16px;
  }

  .car_ic_item {
    width: 50%;
    margin-bottom: 0;
  }

  .car_ic_name {
    font-size: 3.4vw;
  }

  .car_ic_time .car_num {
    font-size: 8vw;
  }

  .car_ic_imgs {
    width: 100%;
  }
}


/*---------------------------
CAR ACCESS - 各方面への所要時間（2×2グリッド）
---------------------------*/
.car_dest_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.car_dest_name_line {
  margin-top: 0.1em;
}

.car_dest_ic_label {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--access-text-sub);
  white-space: nowrap;
}

.car_dest_item {
  text-align: left;
}

.car_dest_img {
  margin-bottom: 1em;
  border-radius: 4px;
  overflow: hidden;
}

.car_dest_img img {
  width: 100%;
  display: block;
}

.car_dest_name {
  font-size: 16px;
  letter-spacing: 0.08em;
  margin-bottom: 0.3em;
  color: var(--access-text);
}

.car_dest_time {
  font-size: 15px;
  letter-spacing: 0.03em;
  margin-bottom: 0.5em;
  color: var(--access-text);
}

.car_dest_time .car_num {
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 36px;
  color: var(--access-navy);
}

.car_dest_detail {
  font-size: 11px;
  line-height: 1.5;
  color: var(--access-text-sub);
  letter-spacing: 0.02em;
}

.car_dest_caption {
  font-size: 11px;
  color: var(--access-text-sub);
  text-align: right;
  margin-top: 4px;
}

/* Tab */
@media screen and (max-width: 1170px) {
  .car_dest_name {
    font-size: 1.367vw;
  }

  .car_dest_time .car_num {
    font-size: 3.076vw;
  }

  .car_dest_detail {
    font-size: 0.94vw;
  }
}

/* sp */
@media only screen and (max-width: 768px) {
  .car_dest_grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .car_dest_name {
    font-size: 3.6vw;
  }

  .car_dest_time .car_num {
    font-size: 8vw;
  }

  .car_dest_detail {
    font-size: 2.6vw;
  }
}


/*---------------------------
フッター注釈（access固有の余白調整）
---------------------------*/
#access .footer_BtnLink {
  display: block;
  width: 100%;
  margin: 0;
  padding-top: 4em;
  gap: 0;
}

#access .footer_BtnLink li {
  width: 100%;
  margin: 0;
}

#access .footer_BtnLink .btn_entryLink {
  width: 100%;
}

#access .footer_BtnLink .btn_entryLink a {
  border-radius: 0;
  background: linear-gradient(90deg, #e2d2aa 0%, #d8c18f 42%, #f3ecdc 100%);
  color: #0f3f7c !important;
  border: 0;
}

/* sp */
@media only screen and (max-width: 768px) {
  #access .footer_BtnLink {
    padding-top: 2.5em;
  }
}
