/* ============================================================
   page-beautifullife.css — ビューティフルライフサポート
   ============================================================ */

.bls-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 80px;
}

/* ============================================================
   メインビジュアル
   ============================================================ */
.bls-hero {
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.bls-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   5つの事業ピラー
   ============================================================ */
.bls-pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  list-style: none;
  padding: 0;
  margin-bottom: 72px;
}

.bls-pillar {
  position: relative;
  overflow: hidden;
  cursor: default;
}

.bls-pillar-img {
  aspect-ratio: 2/3;
  overflow: hidden;
}

.bls-pillar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
  filter: brightness(0.82);
}

.bls-pillar:hover .bls-pillar-img img {
  transform: scale(1.06);
  filter: brightness(0.65);
}

.bls-pillar-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 10px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.bls-pillar-en {
  font-family: var(--font-display);
  font-size: clamp(10px, 1.1vw, 14px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: #fff;
  line-height: 1;
}

.bls-pillar-ja {
  font-family: var(--font-serif-jp);
  font-size: clamp(9px, 0.9vw, 11px);
  font-weight: 200;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.75);
}

/* ============================================================
   セクション共通
   ============================================================ */
.bls-section {
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid #e8e4e0;
}

.bls-section:last-child {
  border-bottom: none;
}

.bls-section-head {
  margin-bottom: 32px;
}

.bls-section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.28em;
  color: #800000;
  margin-bottom: 8px;
}

.bls-section-title {
  font-family: var(--font-serif-jp);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: #1a1a1a;
}

/* ============================================================
   本文
   ============================================================ */
.bls-text-body {
  max-width: 760px;
}

.bls-text-body p {
  font-size: 14px;
  line-height: 2.2;
  color: #444;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.bls-text-body p:last-child {
  margin-bottom: 0;
}

.bls-text-emphasis {
  font-family: var(--font-serif-jp);
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #1a1a1a !important;
  border-left: 3px solid #800000;
  padding-left: 16px;
  margin-top: 32px !important;
}

/* ============================================================
   役割カード
   ============================================================ */
.bls-roles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.bls-role-item {
  background: #faf9f7;
  border: 1px solid #e8e4e0;
  border-top: 3px solid #1a1a1a;
  border-radius: 2px;
  padding: 24px;
  transition: border-top-color 0.25s;
}

.bls-role-item:hover {
  border-top-color: #800000;
}

.bls-role-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e8e4e0;
}

.bls-role-en {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #1a1a1a;
}

.bls-role-ja {
  font-size: 12px;
  color: #800000;
  letter-spacing: 0.1em;
}

.bls-role-txt {
  font-size: 13px;
  line-height: 1.9;
  color: #555;
  letter-spacing: 0.04em;
}

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 768px) {
  .bls-pillars {
    grid-template-columns: repeat(3, 1fr);
  }

  .bls-roles {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .bls-pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }
}
