.b-002 {
  font-family: var(--font-family-serif);
}
/* b-002カスタム追加クラス */
.b-002 .hero-container {
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: stretch;
}

/* 左カラム */
.b-002 .hero-content {
  background: #fff;
  padding: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start; /* 全体を左寄せに */
  container-type: inline-size;
}

.b-002 .logo {
  width: 18rem; /* 100pxから変更 */
  align-self: center; /* flex-startから変更 */
}

.b-002 .logo img {
  max-width: 100%;
  height: auto;
}

.b-002 .hero-main-content {
  align-self: center; /* 中央のキャッチコピーだけを中央揃えに */
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.b-002 .hero-title {
  font-size: 4.2rem; /* 38pxから変更 */
  font-weight: 300;
  color: #333;
  line-height: 1.7; /* 1.8から変更 */
  letter-spacing: var(--letter-spacing-widest);
  margin: 0;
  text-align: left;
  @container (max-width: 30rem) {
    font-size: 2.8rem; /* 48pxから変更 */
    line-height: 1.5; /* 1.6から変更 */
  }
}

.b-002 .hero-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 5rem; /* 20pxから変更 */
}

.b-002 .hero-nav li {
  font-size: var(--font-sm); /* 16pxから変更 */
  margin: var(--space-sm) 0; /* 12pxから変更 */
  color: #333;
  font-weight: 300;
  letter-spacing: var(--letter-spacing-widest);
}

/* 右カラム */
.b-002 .hero-image-area {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.b-002 .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.b-002 .cta-button {
  position: absolute;
  bottom: 80px;
  right: 80px;
  background: white;
  color: #333;
  width: 180px; /* 160pxから変更 */
  height: 180px; /* 160pxから変更 */
  border-radius: 50%;
  text-decoration: none;
  font-size: 15px; /* 14pxから変更 */
  font-weight: 400;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 1px;
}

.b-002 .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .b-002 .hero-container {
    grid-template-columns: 1fr; /* カラムをスタック */
  }

  .b-002 .hero-content {
    order: 2; /* 画像の下にコンテンツ */
    padding: 40px 20px;
    text-align: center;
    height: auto;
  }

  .b-002 .logo {
    align-self: center;
    margin-bottom: 4rem;
    font-size: 3.2rem;
  }

  .b-002 .hero-title {
    font-size: 2.8rem;
    margin-bottom: 4rem;
  }

  .b-002 .hero-nav {
    display: none; /* 縦書きナビを非表示にし、ハンバーガーメニューを使用 */
  }

  .b-002 .hero-image-area {
    order: 1; /* 画像を上に配置 */
    height: 60vh;
  }

  .b-002 .cta-button {
    bottom: 3rem;
    right: 3rem;
    width: 12rem;
    height: 12rem;
    font-size: var(--font-xs); /* 14pxから変更 */
  }
}
