@charset "UTF-8";
/* about.html 固有スタイル */

/*---------------------------------
ページヒーロー
---------------------------------*/

.page_hero--about {
  background-image: url(../../images/about/hero_main.jpg);
  background-position: center 30%;
}

/*---------------------------------
ポリシー導入バンド
---------------------------------*/

.about_lead {
  background: var(--base_color);
  padding: 4rem 0;
  text-align: center;
  color: #fff;
}

.about_lead_en {
  font-size: 0.78rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.6em;
}

.about_lead_title {
  font-size: 1.9rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .about_lead { padding: 2.8rem 0; }
  .about_lead_title { font-size: 1.4rem; }
}

/*---------------------------------
スプリットセクション（デザイン/施工Quality）
---------------------------------*/

.about_split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}


.about_split__num {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--base_color);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: -0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.about_split__title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #222;
  letter-spacing: 0.08em;
  margin: 0 0 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--base_color);
  display: inline-block;
}

.about_split__body {
  color: #555;
  line-height: 2;
  font-size: 0.95rem;
}

.about_split__img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

@media screen and (max-width: 960px) {
  .about_split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about_split--rev {
    direction: ltr;
  }
  .about_split__img img {
    height: 260px;
  }
  .about_split__num {
    font-size: 2.8rem;
  }
}

/*---------------------------------
フォトストリップ（3枚横並び）
---------------------------------*/

.about_photo_strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  line-height: 0;
}

.about_photo_strip img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 768px) {
  .about_photo_strip {
    grid-template-columns: 1fr;
  }
  .about_photo_strip img {
    height: 200px;
  }
}

/*---------------------------------
シーンバナーセクション（コスパ/ご縁/樹や草花）
---------------------------------*/

.about_scene {
  position: relative;
  overflow: hidden;
}

.about_scene_bg {
  position: relative;
  width: 100%;
  height: 340px;
  background-size: cover;
  background-position: center;
}

.about_scene_bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 48, 0.42);
}

.about_scene_content {
  padding: 3.5rem 0;
  background: #fff;
}

.about_scene_content--gray {
  background: #f9f9f9;
}

.about_scene__num {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--base_color);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: -0.4rem;
  font-family: 'Montserrat', sans-serif;
}

.about_scene__title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #222;
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--base_color);
}

.about_scene__body {
  color: #555;
  line-height: 2;
  font-size: 0.95rem;
  max-width: 780px;
}

@media screen and (max-width: 768px) {
  .about_scene_bg {
    height: 220px;
  }
  .about_scene_content {
    padding: 2.5rem 0;
  }
  .about_scene__title {
    font-size: 1.2rem;
  }
}

/*---------------------------------
植栽フォトグリッド
---------------------------------*/

.about_tile_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.about_tile_grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

@media screen and (max-width: 768px) {
  .about_tile_grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }
  .about_tile_grid img {
    height: 160px;
  }
}
