/* ===== BATH&POWDERROOM ===== */

.bath {
  color: #e8e0d0;
  max-width: 1200px;
  width: 80%;
  margin: 0 auto;
}

/* ----- ヘッダー ----- */
.bath-header {
  padding: 1% 0%;
  border-top: 1px solid #a9a082; margin: 0% auto 3%;
  border-bottom: 1px solid #a9a082; 
}

.bath-header__title {
  font-size: clamp(1.0rem, 1.4vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #e8e0d0;
  margin: 0;
}

/* ----- 上段：3列（左50% 中25% 右25% gap1.5%） ----- */
.bath-upper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1.5%;
  width: 100%;
}

/* 左：メイン写真 50% */
.bath-upper__main {
  flex: 0 0 calc(50% - 0.75%);
  min-width: 0;
}

.bath-upper__main img {
  width: 100%;
  height: auto;
  display: block;
}

/* 中・右：各25% */
.bath-upper__col {
  flex: 0 0 calc(25% - 0.75%);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.bath-upper__col-img img {
  width: 100%;
  height: auto;
  display: block;
}

.bath-upper__col-text {
  padding: 0 5% 5% 0;
  text-align: left;
  flex: 1;
}

.bath-upper__col-title {
  font-size: clamp(0.82rem, 1.05vw, 0.98rem);
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.04em;
  color: #e8e0d0;
  margin: 0 0 6% 0;
}

.bath-upper__col-desc {
  font-size: clamp(0.72rem, 0.88vw, 0.82rem);
  line-height: 1.9;
  color: rgba(232, 224, 208, 0.8);
  margin: 0 0 3% 0;
}

.bath-upper__col-note {
  font-size: clamp(0.62rem, 0.75vw, 0.70rem);
  color: rgba(232, 224, 208, 0.5);
  margin: 0;
  letter-spacing: 0.02em;
}

/* ----- 下段：横4列（gap1.5% × 3本） ----- */
.bath-lower {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1.5%;
  width: 100%;margin-top: 1.5%
}

.bath-lower__img,
.bath-lower__text,
.bath-lower__spacer {
  flex: 0 0 calc((100% - 4.5%) / 4);
  min-width: 0;
  box-sizing: border-box;
}

/* 写真列 */
.bath-lower__img {
  position: relative;
}

.bath-lower__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* テキスト列 */
.bath-lower__text {
  padding: 0 3% 5% 0;
  text-align: left;
}

.bath-lower__title {
  font-size: clamp(0.82rem, 1.05vw, 0.98rem);
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.04em;
  color: #e8e0d0;
  margin: 0 0 5% 0;
}

.bath-lower__desc {
  font-size: clamp(0.72rem, 0.88vw, 0.82rem);
  line-height: 1.9;
  color: rgba(232, 224, 208, 0.8);
  margin: 0 0 3% 0;
}

.bath-lower__note {
  font-size: clamp(0.62rem, 0.75vw, 0.70rem);
  color: rgba(232, 224, 208, 0.5);
  margin: 0;
  letter-spacing: 0.02em;
}

/* 空白スペーサー */
.bath-lower__spacer {
  background: transparent;
}

/* ===== SP（767px以下） ===== */
@media screen and (max-width: 767px) {

  .bath-header {
    padding: 3.5% 4%;
  }

  .bath-header__title {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
  }

  /* 上段：縦1列 */
  .bath-upper {
    display: block;
    width: 100%;
  }

  .bath-upper__main {
    display: block;
    width: 100%;
    margin: 30px auto;
    flex: none;
  }

  .bath-upper__col {
    display: block;
    width: 100%;
    margin: 0 auto;
    flex: none;
  }

  .bath-upper__col-text {
    padding: 4% 0 4% 0;
  }

  .bath-upper__col-title {
    font-size: clamp(0.88rem, 4.0vw, 1.05rem);
    margin: 0 0 4% 0;
  }

  .bath-upper__col-desc {
    font-size: clamp(0.78rem, 3.4vw, 0.9rem);
  }

  /* 下段：縦1列 */
  .bath-lower {
    display: block;
    width: 100%;
  }

  .bath-lower__img,
  .bath-lower__text {
    display: block;
    width: 100%;
    flex: none;
  }

  .bath-lower__spacer {
    display: none;
  }

  .bath-lower__text {
    padding: 4% 0 4% 0;
  }

  .bath-lower__title {
    font-size: clamp(0.88rem, 4.0vw, 1.05rem);
    margin: 0 0 4% 0;
  }

  .bath-lower__desc {
    font-size: clamp(0.78rem, 3.4vw, 0.9rem);
  }

  .bath-lower__note {
    font-size: clamp(0.65rem, 2.8vw, 0.72rem);
  }
}

/* ===== /BATH&POWDERROOM ===== */
