/* ========================================
   共通設定・リセット
======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* 余白計算を分かりやすく */
}

:root {
  /* カラー変数：芸能サイトらしい華やかなアクセント */
  --main: #ff3d77;        /* メインカラー（ピンク系） */
  --sub: #7b2ff7;         /* サブカラー（パープル系） */
  --text: #2b2b33;        /* 基本の文字色 */
  --gray: #6b6b76;        /* 補足テキスト */
  --bg: #f7f7fa;          /* 背景色 */
  --white: #ffffff;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Meiryo", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

/* コンテンツ幅を整える共通コンテナ */
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
/* 記事本文用の細めコンテナ（読みやすさ重視） */
.container--narrow {
  max-width: 720px;
}

/* 各セクションの余白 */
.section {
  padding: 60px 0;
}

/* セクション見出し共通 */
.section__title {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 14px;
}
/* 見出し下のアクセントライン */
.section__title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, var(--main), var(--sub));
  border-radius: 3px;
}
.section__desc {
  text-align: center;
  color: var(--gray);
  margin-bottom: 32px;
}

/* タグの共通スタイル */
.tag {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--white);
  background: linear-gradient(90deg, var(--main), var(--sub));
  padding: 3px 12px;
  border-radius: 999px;
  margin-right: 6px;
}

/* ========================================
   ヘッダー
======================================== */
.header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky; /* スクロール時も上部に固定 */
  top: 0;
  z-index: 100;
}
.header__inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.header__logo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--main);
}
.header__logo span {
  color: var(--text);
}
.header__nav {
  display: flex;
  gap: 22px;
  overflow-x: auto; /* スマホで入りきらない場合は横スクロール */
}
.header__nav a {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s;
}
.header__nav a:hover {
  color: var(--main);
}

/* ========================================
   ヒーロー（メインビジュアル）
======================================== */
.hero {
  /* 芸能サイトらしい鮮やかなグラデーション背景 */
  background: linear-gradient(135deg, var(--sub), var(--main));
  color: var(--white);
  text-align: center;
  padding: 70px 20px;
}
.hero__label {
  font-size: 0.8rem;
  letter-spacing: 3px;
  opacity: 0.9;
  margin-bottom: 14px;
}
.hero__title {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 18px;
}
.hero__lead {
  font-size: 0.95rem;
  opacity: 0.95;
}

/* ========================================
   動画エリア
======================================== */
/* 動画を5つグリッド配置（スマホ1列／PC複数列） */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.video__frame {
  /* 16:9のアスペクト比を保つダミー枠 */
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
/* 各動画のタイトル */
.video__title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
}
.video__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, #3a3a44, #1e1e26);
  color: #cfcfd8;
}
/* 再生ボタン風の三角アイコン */
.video__play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 0 16px 26px;
  border-color: transparent transparent transparent var(--white);
  padding-left: 4px;
  filter: drop-shadow(0 0 12px rgba(255, 61, 119, 0.8));
}
.video__note {
  font-size: 0.85rem;
}
.video__caption {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 14px;
  text-align: center;
}

/* ========================================
   記事本文（ブログ風）
======================================== */
.article {
  background: var(--white);
}
.article__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.article__date {
  font-size: 0.8rem;
  color: var(--gray);
}
/* 記事タイトル（H2） */
.article__title {
  font-size: 1.5rem;
  line-height: 1.5;
  margin: 48px 0 20px; /* 記事ブロック間の余白 */
  padding-left: 14px;
  border-left: 5px solid var(--main); /* 左のアクセントバー */
}
/* 最初のH2は上の余白を詰める */
.article__meta + .article__title {
  margin-top: 0;
}

/* H2直下の画像埋め込み枠（本番では img に差し替え） */
.article__image {
  margin: 0 0 24px;
}
.image__placeholder {
  /* 16:9のアスペクト比を保つ画像ダミー枠 */
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: repeating-linear-gradient(
    45deg,
    #ececf2,
    #ececf2 12px,
    #f4f4f8 12px,
    #f4f4f8 24px
  ); /* 画像枠と分かるストライプ模様 */
  color: var(--gray);
  border: 1px dashed #cfcfda;
}
/* 画像アイコン風の装飾 */
.image__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--main), var(--sub));
  position: relative;
  opacity: 0.85;
}
.image__icon::after {
  /* アイコン内の丸（写真の太陽風） */
  content: "";
  position: absolute;
  top: 9px;
  right: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--white);
}
.image__note {
  font-size: 0.85rem;
}
.article__image-caption {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 8px;
  text-align: center;
}
/* 中見出し（H3） */
.article__subtitle {
  font-size: 1.15rem;
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px dashed #e3e3ea;
}
.article__body {
  margin-bottom: 16px;
  color: #3a3a44;
}
/* 引用ブロック */
.article__quote {
  background: var(--bg);
  border-left: 4px solid var(--sub);
  padding: 16px 20px;
  border-radius: 6px;
  margin: 28px 0;
  font-weight: 600;
  color: var(--sub);
}

/* ========================================
   コラムカード
======================================== */
.card-grid {
  display: grid;
  /* PCでは自動で複数列、スマホでは1列に */
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-6px); /* ホバーで浮き上がる演出 */
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
/* サムネイルのダミー（グラデで色分け） */
.card__thumb {
  height: 150px;
}
.card__thumb--a { background: linear-gradient(135deg, #ff6a88, #ff99ac); }
.card__thumb--b { background: linear-gradient(135deg, #7b2ff7, #9d63ff); }
.card__thumb--c { background: linear-gradient(135deg, #f7971e, #ffd200); }
.card__body {
  padding: 18px;
}
.card__title {
  font-size: 1.05rem;
  margin: 10px 0 8px;
  line-height: 1.5;
}
.card__text {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ========================================
   フッター
======================================== */
.footer {
  background: var(--text);
  color: var(--white);
  text-align: center;
  padding: 40px 0;
}
.footer__logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--main);
  margin-bottom: 10px;
}
.footer__logo span {
  color: var(--white);
}
.footer__copy {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ========================================
   レスポンシブ対応（PC＝大画面向けの調整）
   ※基本はスマホ優先。768px以上で文字を拡大
======================================== */
@media (min-width: 768px) {
  .hero {
    padding: 100px 20px;
  }
  .hero__title {
    font-size: 2.6rem;
  }
  .hero__lead {
    font-size: 1.05rem;
  }
  .section__title {
    font-size: 2rem;
  }
  .article__title {
    font-size: 1.9rem;
  }
  .article__subtitle {
    font-size: 1.35rem;
  }
}
