@charset "utf-8";

/* === Layered Hero Section === */
.hero_section_layered {
    align-items: center;
    background-color: #F8F8F8; /* 明るいライトグレーのベース（清潔感と親しみやすさ） */
    color: #333333; /* 濃いグレーのテキスト */
    display: flex;
    justify-content: center;
    min-height: 100vh; /* フルハイト */
    overflow: hidden; /* 背景レイヤーのため */
    padding: 150px 20px 100px;
    position: relative;
    width: 100%;
}

/* Background Layers */
.hero_background_layer_group {
    height: 100%;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

.bg_layer {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.bg_layer.layer_1 {
    /* 複数重ねた円形グラデーションで、柔らかく奥行きのある光を表現（オレンジ系をより淡く） */
    background-image:
        radial-gradient(circle at 10% 80%, rgba(255, 120, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 20%, rgba(255, 160, 0, 0.05) 0%, transparent 60%);
    opacity: 1; /* グラデーション自体が淡いので不透明に */
}
.bg_layer.layer_2 {
    /* さらに別の円形グラデーションを重ねて、複雑さと広がりを出す（暖かいグレー系をより淡く） */
    background-image:
        radial-gradient(ellipse at 50% -20%, rgba(150, 150, 150, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 0% 50%, rgba(80, 80, 80, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 100% 50%, rgba(80, 80, 80, 0.03) 0%, transparent 60%);
    opacity: 1; /* グラデーション自体が淡いので不透明に */
}
.bg_layer.layer_3 .bg_svg_pattern {
    height: 100%;
    left: 0;
    opacity: 0.5; /* グリッドパターンの透明度を微調整 */
    position: absolute;
    top: 0;
    width: 100%;
}

/* SVGグリッドの色をCSSで制御 */
.bg_layer.layer_3 #smallGrid path {
    stroke: rgba(0,0,0,0.015); /* 細い線の色を背景に馴染ませる */
}
.bg_layer.layer_3 #grid path {
    stroke: rgba(0,0,0,0.03); /* 太い線の色も調整 */
}


.hero_content_wrapper_layered {
    display: flex;
    flex-direction: column;
    gap: 30px; /* 要素間の大きなスペース */
    height: 100%;
    justify-content: space-between; /* ヘッダー、メイン、フッターを配置 */
    max-width: 1100px;
    position: relative;
    width: 100%;
    z-index: 2;
}

/* Main Content */
.hero_main_content_layered {
    align-items: center; /* 縦方向中央揃え */
    display: grid;
    gap: 50px;
    grid-template-columns: 1.2fr 0.8fr; /* テキスト列とビジュアル列の比率 */
    width: 100%;
}

.headline_main {
    font-size: .9em; /* hero_headline_layered に対する相対サイズ */
}

.headline_main span {
    display: block;
}


.hero_text_column {
    max-width: 650px;
}
.headline_super {
    color: var(--orange); /* 鮮やかなオレンジのアクセントカラー */
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.35em; /* headline_main に対する相対サイズ */
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.hero_headline_layered {
    color: #1A1A1A; /* 非常に濃いグレーのテキスト色 */
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 3.8em; /* ベースのフォントサイズ */
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
}
.hero_intro_layered {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.05em;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555555; /* 濃いめのグレーテキスト色 */
}
.hero_stats_bar {
    border-top: 1px solid rgba(0,0,0,0.1); /* ボーダーを濃い色に */
    display: flex;
    gap: 20px;
    padding-top: 20px;
}
.stat_item_layered {
    text-align: left;
}
.stat_number {
    color: #1A1A1A; /* 非常に濃いグレーのテキスト色 */
    display: block;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.8em;
    font-weight: 700;
}
.stat_label {
    color: #777777; /* 落ち着いたグレー */
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8em;
    font-weight: 400;
}

.hero_visual_column {
    align-items: center;
    display: flex;
    justify-content: center;
}
.interactive_card_layered {
    background-color: #FFFFFF; /* 不透明な白のカード背景 */
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08); /* ボーダーを濃い色に */
    box-shadow: 0 8px 20px rgba(0,0,0,0.08); /* 影を調整 */
    padding: 30px;
    text-align: center;
    max-width: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.interactive_card_layered:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15); /* ホバー時の影を調整 */
}
.card_icon_area_layered {
    margin-bottom: 10px;
}
.card_main_icon_layered {
    display: inline-block;
    height: 96px; /* 64px から 96px に変更 */
    width: 96px;  /* 64px から 96px に変更 */
}
.card_main_icon_layered g { /* アイコンの色をCSSで制御 */
    fill: #FF8C00; /* カードアイコンもオレンジのアクセントカラーに */
}

/* アイコンのアニメーションは元の設定通りに維持 */
.icon_pulse_element { /* SVG内のアニメーション用 */
    animation: pulse_icon 2.5s infinite ease-in-out;
}
@keyframes pulse_icon {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.7; }
}

.card_title_layered {
    color: #1A1A1A; /* 非常に濃いグレーのテキスト色 */
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 10px;
}
.card_text_layered {
    color: #555555; /* 濃いめのグレーテキスト色 */
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9em;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 25px;
}
.cta_button_layered {
    /* 活気と視認性のあるオレンジのグラデーション */
    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: 0.95em;
    font-weight: 500;
    padding: 12px 30px;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.2s ease;
}
.cta_button_layered:hover {
    color: #ffffff;
    opacity: 0.9;
    transform: scale(1.05);
}

/* Footer */
.hero_last_layered {
    border-top: 1px solid rgba(0,0,0,0.08); /* ボーダーを濃い色に */
    padding: 20px 0;
    text-align: center;
    width: 100%;
}
.last_text_layered {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9em;
    font-weight: 400;
    color: #555555; /* 濃いめのグレーテキスト色 */
}
.last_link_layered {
    color: var(--orange); /* アクセントカラーに合わせる */
    font-weight: 500;
    text-decoration: underline;
}
.last_link_layered:hover {
    text-decoration: none;
}


/* レスポンシブ対応 (Layered Hero Section) */
@media (max-width: 1024px) {
    .hero_headline_layered {
        font-size: 3.2em;
    }
    .hero_main_content_layered {
        grid-template-columns: 1fr; /* 1カラムレイアウトに */
        gap: 40px;
        text-align: center; /* テキストを中央揃え */
    }
    .hero_text_column {
        order: 1; /* ビジュアルカードの下にテキスト */
        margin: auto auto;
        max-width: 90%;
    }
    .hero_visual_column {
        order: 2;
        margin-bottom: 20px;
    }
    .hero_intro_layered {
        margin-left: auto;
        margin-right: auto;
    }
    .hero_stats_bar {
        justify-content: center;
    }
    .stat_item_layered {
        text-align: center;
    }
    .interactive_card_layered {
        margin-left: auto;
        margin-right: auto;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .hero_section_layered {
        padding: 30px 15px;
    }
    .hero_headline_layered {
        font-size: 2.6em;
    }
    .hero_intro_layered {
        font-size: 1em;
    }
    .stat_number {
        font-size: 1.6em;
    }
}

@media (max-width: 480px) {
    .hero_headline_layered {
        font-size: 2.2em;
    }
    .hero_stats_bar {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .interactive_card_layered {
        padding: 25px;
    }
    .card_title_layered {
        font-size: 1.2em;
    }
}