@charset "UTF-8";
/*---------------------------
plan_a2.css  A2タイプ 間取り詳細ページ
---------------------------*/

:root {
  --plan-navy: #1a3b6b;
  --plan-text: #231815;
  --plan-text-sub: #555;
  --plan-bg-grad-top: #ffffff;
  --plan-bg-grad-mid: #c5eaec;
  --plan-bg-grad-bot: #94ced9;
}


/*==========================
 メインコンテンツ背景
==========================*/
#planA2Detail {
  background: linear-gradient(180deg,
    var(--plan-bg-grad-top) 0%,
    var(--plan-bg-grad-mid) 90%,
    var(--plan-bg-grad-bot) 100%);
  padding: 5em 0 4em;
}


/*==========================
 2カラムレイアウト（左:情報 | 右:間取り図）
==========================*/
.a2d_layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

/* -------
   左カラム：タイプ情報
------- */
.a2d_info_col {
  flex: 0 0 340px;
  width: 340px;
}

.a2d_label_img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1.2em;
}

.a2d_area_block {
  margin-bottom: 1.8em;
}

.a2d_area_row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 3px;
  margin-bottom: 0.3em;
  line-height: 1.4;
}

.a2d_area_label {
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--plan-text);
}

.a2d_area_num {
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  letter-spacing: 0.02em;
  color: var(--plan-navy);
  line-height: 1;
}

.a2d_area_unit {
  font-family: "a-otf-ryumin-pr6n", serif;
  font-size: 16px;
  color: var(--plan-text);
}

.a2d_area_tsubo {
  font-size: 12px;
  color: var(--plan-text-sub);
  letter-spacing: 0.02em;
}

.a2d_features_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9em;
}

.a2d_features_list li {
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--plan-text);
}

/* -------
   右カラム：間取り図
------- */
.a2d_fp_col {
  flex: 1;
  min-width: 0;
}

.a2d_fp_img {
  width: 65%;
  height: auto;
  display: block;
  margin: 0 auto;
}


/*==========================
 凡例行（通風・採光・アウトフレーム）
==========================*/
.a2d_legend_row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-top: 0.9em;
}

.a2d_hanrei_list {
  display: flex;
  align-items: center;
  gap: 16px;
}

.a2d_hanrei_item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--plan-text);
}

.a2d_hanrei_icon {
  height: 14px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.a2d_wic_note {
  font-size: 11px;
  color: var(--plan-text-sub);
  letter-spacing: 0.03em;
  text-align: left;
  margin: 0;
}


/*==========================
 「プランページに戻る」ボタン
==========================*/
.a2d_back_wrap {
  text-align: center;
  padding: 3.5em 0 2.5em;
}

.a2d_back_btn,
.a2d_back_btn:link,
.a2d_back_btn:visited {
  display: inline-block;
  border: 1px solid var(--plan-text);
  color: var(--plan-text);
  font-size: 14px;
  letter-spacing: 0.12em;
  padding: 0.9em 5em;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
  font-family: "a-otf-ryumin-pr6n", serif;
  font-weight: 300;
}

.a2d_back_btn:hover {
  background: var(--plan-text);
  color: #fff;
}


/*==========================
 Tab レスポンシブ
==========================*/
@media screen and (max-width: 1170px) {
  .a2d_info_col {
    flex: 0 0 290px;
    width: 290px;
  }
  .a2d_layout { gap: 36px; }
}


/*==========================
 SP レスポンシブ
==========================*/
@media only screen and (max-width: 768px) {
  #planA2Detail { padding: 3em 0 2.5em; }

  .a2d_layout {
    flex-direction: column;
    gap: 0;
  }

  /* SP: 間取り図を先頭へ */
  .a2d_fp_col { order: 2; margin-top: 2em; }
  .a2d_info_col { order: 1; flex: none; width: 100%; }

  .a2d_label_img { width: 90%; margin: 0 auto 2em; }
  .a2d_area_block { padding-left: 5%; }
  .a2d_area_label { font-size: 3vw; }
  .a2d_area_num { font-size: 7vw; }
  .a2d_area_unit { font-size: 4vw; }
  .a2d_area_tsubo { font-size: 2.8vw; }
  .a2d_features_list { width: 90%; margin-left: auto; margin-right: auto; }
  .a2d_features_list li { font-size: 3.2vw; }
  .a2d_features_list li br { display: none; }

  .a2d_legend_row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .a2d_hanrei_list { gap: 10px; }
  .a2d_hanrei_item { font-size: 2.8vw; }
  .a2d_wic_note { font-size: 2.5vw; }

  .a2d_back_btn {
    font-size: 3.8vw;
    padding: 0.9em 2.5em;
  }
}
