/* ページ全体のコンテナ */
#innovation-story {
    max-width: 900px; /* 内容の幅を制限して読みやすく */
    margin: 40px auto; /* 上下左右中央に配置 */
    padding: 40px 30px;
    background-color: #fff; /* 背景を白に */
    border-radius: 8px; /* 角を少し丸く */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* 影で立体感を */
}

/* メインタイトル */
h1 {
    font-family: 'Playfair Display', serif; /* タイトルは少しエレガントなセリフ体を想定 */
    font-size: 2.8em; /* 大きめのフォントサイズ */
    color: #8B4513; /* 土や木を思わせる落ち着いたブラウン */
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 3px solid #D2B48C; /* アクセントライン */
    padding-bottom: 15px;
    letter-spacing: 0em; /* 少し字間を広げて上品に */
}

/* サブタイトル (各ステップのタイトル) */
h2 {
    font-size: 1.8em;
    color: #5F9EA0;
    margin-top: 20px;
    margin-bottom: 25px;
	line-height:36px;
    /* position: relative;  ← アイコンをHTMLに移動したため不要 */
    /* padding-left: 20px; ← アイコンをHTMLに移動したため不要 */
}
/* ★★★ 削除：h2::before の特殊文字設定を削除します ★★★ */
/*
h2::before {
    content: '??';
    color: #D2B48C;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    top: 0;
}
*/

/* ★★★ 追加：Font Awesome アイコンのスタイル設定 ★★★ */
h2 i {
    color: #D2B48C; /* アイコンの色はアクセントカラーに */
    margin-right: 15px; /* テキストとの間に少し隙間を作る */
    font-size: 1.1em; /* アイコンを少し大きめに */
}
/* 最後のまとめのタイトル */
h3 {
    font-size: 1.5em;
    color: #8B4513;
    margin-top: 40px;
    margin-bottom: 20px;

}

/* 段落 */
p {
    font-size: 1.05em;
    margin-bottom: 1.5em;
    color: #444;
}

/* 導入部分の太字テキスト */
.lead-text {
    font-size: 1.2em;
    font-weight: bold;
    color: #36454F; /* チャコールグレー */
    text-align: center;
    margin-bottom: 30px;
}

/* 強調文字 */
strong {
    color: #B8860B; /* 少し明るめのゴールドブラウン */
    font-weight: bold;
}

/* リンク（もしあれば） */
a {
    color: #fff;
    text-decoration: none;
    border-bottom: 0px dotted #5F9EA0;
    transition: color 0.3s ease;
}
a:hover {
    color: #fff;

}

/* レスポンシブデザイン：小さい画面での調整 */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    #innovation-story {
        margin: 20px auto;
        padding: 25px 20px;
    }
    h1 {
        font-size: 2em;
        margin-bottom: 30px;
    }
    h2 {
        font-size: 1.5em;
        margin-top: 40px;
    }
    .lead-text {
        font-size: 1.1em;
    }
    p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.6em;
        margin-bottom: 20px;
    }
    h2 {
        font-size: 1.3em;
        margin-top: 30px;
    }
}


  .video-figure {
    max-width: 100%;
    margin: 24px 0;
  }

  .video-wrapper {
    width: 100%;
    /* 保守的に16:9比をキープ。ブラウザがサポートしていれば aspect-ratio が使われる */
    aspect-ratio: 16 / 9;
    position: relative;
    background: #000;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  }

  .video-wrapper video {
    width: 50%;
    height: 50%;
    object-fit: cover; /* 見栄えを保つ */
    display: block;
  }

  .video-caption {
    font-size: 14px;
    color: #555;
    margin-top: 8px;
  }

  /* 横並び（大画面のみ）: .videos-row をコンテナに使う */
  .videos-row {
    display: grid;
    gap: 16px;
  }
  @media (min-width: 900px) {
    .videos-row {
      grid-template-columns: 1fr 1fr; /* 2列表示 */
    }
  }
