@charset "utf-8";

a {
    color: var(--orange);
    font-size: .95em;
}

/* === 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)); /* typo修正: minmin -> minmax */
    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 {
    color: #ffffff;
    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;
    }
}