@charset "utf-8";

/* === Feature Background Story Section === */
.feature_background_story_section {
    background-color: #F8F8F8; /* Heroセクションと合わせた明るいライトグレーの背景 */
    color: #333333; /* 濃いグレー系のテキスト */
    overflow: hidden;
    padding: 100px 0;
    position: relative;
}

/* Story Section Background Layers */
.story_section_bg_layers {
    height: 100%;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.story_bg_layer {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.story_bg_gradient_1 {
    /* 明るい背景に合う淡いオレンジ系のグラデーション */
    background: radial-gradient(ellipse at 70% 30%, rgba(255, 160, 0, 0.1) 0%, transparent 60%);
    opacity: 0.9; /* わずかに強調 */
}
.story_bg_abstract_lines .abstract_lines_svg {
    height: 100%;
    left: 0;
    opacity: 0.7; /* 明るい背景で視認性を上げるため少し強調 */
    position: absolute;
    top: 0;
    width: 100%;
}
.story_bg_noise_overlay { /* 非常に微細なノイズパターン */
    /* 背景が明るくなったため、ノイズも黒でごく薄く */
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 1; /* ノイズのopacityはSVG内で調整済み */
}


.story_content_wrapper {
    margin: 0 auto;
    max-width: 1100px; /* コンテンツ幅 */
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.story_section_header {
    margin-bottom: 60px;
    text-align: center;
}
.story_main_title {
    color: #1A1A1A; /* メインタイトルは非常に濃い色 */
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 2.8em;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 20px;
}
.story_subtitle {
    color: #555555; /* サブタイトルは濃いめのグレー */
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.1em;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 1100px;
    opacity: 1; /* 明るい背景なので透過は不要 */
    text-align: center; /* センター揃えに戻しました。必要であれば左揃えにしてください。 */
}

.story_key_points_grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* レスポンシブなカラム */
    margin-bottom: 70px;
}

.key_point_card {
    background-color: #FFFFFF; /* 不透明な白のカード背景 */
    border-radius: 8px;
    border-left: 4px solid #FF8C00; /* HeroのCTAボタンと合わせたオレンジのアクセントカラー */
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* 控えめな影 */
}
.key_point_card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1); /* ホバーで少し影を濃く */
    transform: translateY(-5px);
}
.key_point_icon_area {
    margin-bottom: 15px;
    text-align: left; /* アイコンを左寄せ */
}
.key_point_icon {
    color: #FFB040; /* Heroのカードアイコンと合わせたオレンジ系に */
    height: 32px;
    width: 32px;
}
.key_point_title {
    color: #1A1A1A; /* カードタイトルも濃い色に */
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.3em;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
}
.key_point_description {
    color: #555555; /* カード説明もサブタイトルと同じ濃い色に */
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.95em;
    line-height: 1.65; /* 行間調整 */
    opacity: 1; /* 明るい背景なので透過は不要 */
}

.story_conclusion_area {
    background-color: #F0F0F0; /* 明るい背景に馴染む淡いグレー（Heroのカードよりわずかに濃く） */
    border-radius: 8px;
    margin-top: 50px;
    padding: 30px;
    text-align: center;
}
.conclusion_title {
    color: #1A1A1A; /* タイトルも濃い色に */
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
}
.conclusion_text {
    color: #555555; /* テキストも濃い色に */
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1em;
    line-height: 1.75; /* 行間調整 */
    margin-bottom: 30px;
    opacity: 1; /* 明るい背景なので透過は不要 */
    text-align: center; /* センター揃えに戻しました。必要であれば左揃えにしてください。 */
}
.cta_button_story_feature {
    /* HeroのCTAボタンと同じオレンジグラデーションに統一 */
    background: linear-gradient(to right, #FF8C00, #FFD700);
    border-radius: 25px;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1em;
    font-weight: 500;
    padding: 12px 30px;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.2s ease;
}
.cta_button_story_feature:hover {
    opacity: 0.9;
    transform: scale(1.03);
}


/* === Responsive Adjustments for Story Section === */
@media (max-width: 768px) {
    .feature_background_story_section {
        padding: 80px 0;
    }
    .story_main_title {
        font-size: 2.3em;
    }
    .story_subtitle {
        font-size: 1em;
    }
    .story_key_points_grid {
        gap: 30px;
        margin-bottom: 50px;
    }
    .key_point_card {
        padding: 20px;
    }
    .key_point_title {
        font-size: 1.2em;
    }
    .conclusion_title {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .feature_background_story_section {
        padding: 60px 0;
    }
    .story_content_wrapper {
        padding: 0 15px;
    }
    .story_main_title {
        font-size: 2em;
    }
    .story_key_points_grid {
        grid-template-columns: 1fr; /* モバイルでは1カラム */
    }
    .key_point_title {
        font-size: 1.15em;
    }
    .conclusion_text {
        font-size: 0.95em;
    }
    .cta_button_story_feature {
        font-size: 0.95em;
        padding: 10px 25px;
    }
}


/* === Recommended Articles Section === */
.recommended_articles_section {
    background-color: #F8F8F8; /* Heroセクションと合わせた明るいライトグレーのベース */
    color: #333333; /* 濃いグレーのテキスト */
    overflow: hidden; /* 背景要素のため */
    padding: 80px 0;
    position: relative;
}

/* Background Elements */
.section_background_elements {
    height: 100%;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.bg_shape {
    border-radius: 50%;
    opacity: 0.1; /* 透明度を維持しつつ、色が明るくなったので目立たせる */
    position: absolute;
}
.bg_shape.shape_1 {
    /* 淡いオレンジ系のグラデーション */
    background: radial-gradient(circle, rgba(255, 120, 0, 0.08) 0%, transparent 70%);
    height: 600px;
    left: -200px;
    top: -150px;
    width: 600px;
}
.bg_shape.shape_2 {
    /* 淡いオレンジ系のグラデーション */
    background: radial-gradient(circle, rgba(255, 160, 0, 0.05) 0%, transparent 70%);
    bottom: -250px;
    height: 500px;
    right: -180px;
    width: 500px;
}
.bg_pattern_overlay { /* 微細なドットやラインのパターン */
    /* 背景が明るくなったため、ノイズも黒でごく薄く */
    background-image:
        linear-gradient(rgba(0,0,0,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.015) 1px, transparent 1px);
    background-size: 20px 20px;
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%;
}

.recommended_content_wrapper {
    margin: 0 auto;
    max-width: 1140px; /* コンテンツ幅 */
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.recommended_section_first {
    margin-bottom: 50px;
    text-align: center;
}
.section_main_title {
    color: #1A1A1A; /* 非常に濃いグレーのテキスト色 */
    font-family: 'Noto Sans JP', sans-serif; /* フォントは適宜変更 */
    font-size: 2.5em;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}
.section_intro_text {
    color: #555555; /* 濃いめのグレーテキスト色 */
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.05em;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 700px;
    opacity: 1; /* 明るい背景なので透過は不要 */
}

.recommended_articles_grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* レスポンシブな3カラム */
}

.article_card_recommended {
    background-color: #FFFFFF; /* 不透明な白のカード背景 */
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.08); /* 明るい背景に合わせた薄いボーダー */
    box-shadow: 0 8px 20px rgba(0,0,0,0.08); /* 影を調整 */
    display: flex; /* card_link_wrapper を拡張するため */
    flex-direction: column; /* card_link_wrapper を拡張するため */
    overflow: hidden; /* 角丸のため */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.article_card_recommended:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.15); /* ホバー時の影を調整 */
    transform: translateY(-8px);
}

.card_link_wrapper { /* カード全体をリンクにするラッパー */
    color: inherit;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* カードの高さを揃えるために重要 */
    text-decoration: none;
}

.card_image_area {
    height: 50px; /* 画像エリアの高さ固定 */
    overflow: hidden;
    position: relative;
}
.card_thumbnail {
    height: 100%;
    object-fit: cover; /* 画像をエリアに合わせてトリミング */
    transition: transform 0.4s ease;
    width: 100%;
}
.card_link_wrapper:hover .card_thumbnail {
    transform: scale(1.05);
}
.article_category_badge {
    background-color: var(--orange); /* Heroのheadline_superと同じオレンジのアクセントカラー */
    border-radius: 4px;
    bottom: 10px;
    color: #ffffff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.75em;
    font-weight: 500;
    left: 10px;
    padding: 4px 8px;
    position: absolute;
    text-transform: uppercase;
}

.card_content_area {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* このエリアが可変の高さを埋める */
    padding: 20px;
}
.card_article_title {
    color: #1A1A1A; /* 非常に濃いグレーのテキスト色 */
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.25em;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 10px 0;
    /* 2行で省略する場合 (オプション)
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: calc(1.25em * 1.4 * 2);
    */
}
.card_article_excerpt {
    color: #555555; /* 濃いめのグレーテキスト色 */
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 1; /* 明るい背景なので透過は不要 */
    /* 3行で省略する場合 (オプション)
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: calc(0.9em * 1.6 * 3);
    */
}

.recommender_info {
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.08); /* ボーダーを濃い色に */
    display: flex;
    gap: 12px;
    margin-top: auto; /* これが重要: コメントをカード下部に配置 */
    padding-top: 15px;
}
.recommender_info svg { /* SVGアイコンの色をCSSで制御 */
    fill: #FFB040; /* Heroのカードアイコンと合わせたオレンジ系に */
}
.recommender_avatar {
    border-radius: 50%;
    height: 40px;
    object-fit: cover;
    width: 40px;
}
.recommender_text {
    /* スタイル */
}
.recommender_name {
    color: #777777; /* Heroのstat_labelと同じ落ち着いたグレー */
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8em;
    font-weight: 500;
}
.recommender_comment {
    color: #555555; /* 濃いめのグレーテキスト色 */
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.85em;
    font-style: italic;
    line-height: 1.5;
    margin: 2px 0 0 0;
    opacity: 1; /* 明るい背景なので透過は不要 */
}

.card_footer_area {
    border-top: 1px solid rgba(0,0,0,0.08); /* ボーダーを濃い色に */
    padding: 15px 20px;
    text-align: right;
}
.read_more_button {
    background-color: #F0F0F0; /* ボタンの通常時背景を明るいグレーに */
    border-radius: 20px;
    color: #1A1A1A; /* 通常時テキストを濃いグレーに */
    cursor: pointer;
    display: inline-block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.85em;
    font-weight: 500;
    padding: 8px 18px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.card_link_wrapper:hover .read_more_button {
    /* HeroのCTAと同じオレンジグラデーションに統一 */
    background: linear-gradient(to right, #FF8C00, #FFD700);
    color: #ffffff;
}


/* === Responsive Adjustments for Recommended Articles === */
@media (max-width: 768px) {
    .recommended_articles_section {
        padding: 60px 0;
    }
    .section_main_title {
        font-size: 2em;
    }
    .section_intro_text {
        font-size: 1em;
    }
    .recommended_articles_grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* モバイルでは最小幅を少し小さく */
        gap: 25px;
    }
    .card_article_title {
        font-size: 1.15em;
    }
}

@media (max-width: 480px) {
    .recommended_articles_section {
        padding: 50px 0;
    }
    .recommended_content_wrapper {
        padding: 0 15px;
    }
    .section_main_title {
        font-size: 1.8em;
    }
    .recommended_articles_grid {
        /* 1カラムにする場合は以下を有効化 */
        /* grid-template-columns: 1fr; */
        gap: 20px;
    }
    .card_image_area {
        height: 180px;
    }
    .recommender_info {
        flex-direction: column; /* モバイルではアバターとテキストを縦積み */
        align-items: flex-start;
        gap: 8px;
    }
}