@charset "utf-8";

/* =================================================================*
   EVcosme ストーリー仕立てLP 専用CSS (evcosme_story.css)
   
   【ルール】
   1. クラス名はアンダーバー（_）繋ぎとし、v2等の表記は一切使用しません。
   2. プロパティの記述順は以下を厳格に遵守します：
      background -> border -> border-radius -> box-shadow -> display ->
      align-items -> justify-content -> width -> height -> padding ->
      margin -> text-align -> font-size -> font-weight -> line-height ->
      color -> position -> 位置情報(top/left等) -> その他(z-index/transform等)
   3. SP版（max-width: 640px）ではフォントサイズ等をvwで指定します。
==================================================================== */

/* --- 1. デザインシステム / 変数定義 --- */
:root {
    --ev_story_bg_color: #faf9f6;
    --ev_story_bg_accent: #f4f1eb;
    --ev_story_bg_dark: #2c2c2c;
    --ev_story_text_main: #2c2c2c;
    --ev_story_text_muted: #5a5a5a;
    --ev_story_accent_gold: #c5a880;
    --ev_story_accent_bronze: #805835;
    --ev_story_border_light: #e6e1da;
    --ev_story_font_serif: 'Noto Serif JP', Georgia, serif;
    --ev_story_font_sans: 'Montserrat', 'Noto Sans JP', sans-serif;
    --ev_story_transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* スムーズスクロール */
html {
    scroll-behavior: smooth;
}

/* メイン領域全体ラッパー */
.ev_story_main {
    background-color: var(--ev_story_bg_color) !important;
    font-family: var(--ev_story_font_sans) !important;
    line-height: 1.8 !important;
    color: var(--ev_story_text_main) !important;
    letter-spacing: 0.03em !important;
    -webkit-font-smoothing: antialiased;
}

/* レイアウト幅共通ラッパー */
.ev_story_wrapper {
    width: 100%;
    max-width: 1200px;
    padding: 0 4%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ev_story_wrapper.narrow {
    max-width: 800px;
}

/* 共通フォント・見出し設定 */
.ev_story_section_subtitle {
    margin-bottom: 15px;
    font-family: var(--ev_story_font_sans);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--ev_story_accent_gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
}

.ev_story_section_title {
    margin-bottom: 40px;
    font-family: var(--ev_story_font_serif);
    font-size: 36px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.05em;
}

.text-center .ev_story_section_title {
    text-align: center;
}

.ev_story_serif_text {
    font-family: var(--ev_story_font_serif);
    text-align: justify;
    text-justify: inter-ideograph;
    line-height: 2.2;
}

.ev_story_serif_text.paragraph {
    margin-bottom: 24px;
}

.ev_story_serif_text.font_bold {
    font-weight: 700;
}

.ev_story_text_highlight {
    border-bottom: 1px solid rgba(166, 124, 82, 0.4);
    padding-bottom: 2px;
    font-weight: 700;
    color: var(--ev_story_accent_bronze);
}

.ev_story_obsession .ev_story_text_highlight {
    border-bottom-color: rgba(220, 194, 166, 0.5);
    color: #dcc2a6;
}

.text-center {
    text-align: center;
}

.d_block {
    display: block;
}

.margin_auto {
    margin-left: auto;
    margin-right: auto;
}

.max_50 {
    max-width: 700px;
}

/* グリッドレイアウト */
.grid_2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.grid_3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.grid_4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.align_center {
    align-items: center;
}

/* ミニマルな高級ボタン */
.ev_story_btn_cta {
    background-color: var(--ev_story_bg_dark);
    border: 1px solid var(--ev_story_bg_dark);
    border-radius: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    font-family: var(--ev_story_font_sans);
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff !important;
    text-decoration: none;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
}

.ev_story_btn_cta i {
    margin-right: 10px;
}

.ev_story_btn_cta::before {
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    content: '';
}

.ev_story_btn_cta:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    color: var(--ev_story_bg_dark) !important;
    text-decoration: none;
}

.ev_story_btn_cta:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.ev_story_btn_cta * {
    position: relative;
    z-index: 2;
}

.ev_story_btn_cta.large {
    border-radius: 50px;
    padding: 22px 60px;
}

/* 追従購入ボタン（PC版：右端固定の縦書きバナー） */
.ev_story_floating_cta {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 999;
    transform: translateY(-50%);
}

.ev_story_floating_cta .ev_story_btn_cta {
    background: linear-gradient(135deg, #c41218 0%, #850003 100%);
    border: none;
    border-radius: 10px 0 0 10px;
    box-shadow: -4px 0 20px rgba(167, 0, 6, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: auto;
    padding: 25px 10px;
    color: #ffffff !important;
}

.ev_story_floating_cta .ev_story_btn_cta span {
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
    letter-spacing: 0.25em;
    font-size: 14px;
}

.ev_story_floating_cta .ev_story_btn_cta i {
    margin-right: 0;
    margin-bottom: 12px;
    writing-mode: horizontal-tb;
}

.ev_story_floating_cta .ev_story_btn_cta::before {
    display: none !important;
}

.ev_story_floating_cta .ev_story_btn_cta:hover {
    opacity: 0.9;
    color: #ffffff !important;
    transform: translateX(-2px);
}


/* --- 2. ヒーローセクション (ファーストビュー) --- */
.ev_story_hero {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

/* 華やかな背景光彩レイヤー（氷とゴールドのきらめき） */
.ev_story_hero::before {
    background:
        radial-gradient(circle at 80% 30%, rgba(197, 168, 128, 0.18) 0%, rgba(255, 255, 255, 0) 55%),
        radial-gradient(circle at 20% 70%, rgba(212, 163, 115, 0.12) 0%, rgba(255, 255, 255, 0) 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.6) 0%, rgba(244, 241, 235, 1) 100%) !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    animation: none !important;
    opacity: 0.95;
    z-index: 1;
    position: absolute;
    content: '';
}

/* 氷の結晶のような繊細な光芒を疑似要素で表現 */
.ev_story_hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(197, 168, 128, 0.08) 50%, rgba(255, 255, 255, 0) 70%);
    top: 15%;
    right: 10%;
    filter: blur(20px);
    z-index: 1;
    pointer-events: none;
}

.ev_story_hero_wrapper {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    gap: 0 40px;
}

.ev_story_hero_text {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    z-index: 2;
}

.ev_story_hero_sub {
    margin-bottom: 20px;
    font-family: var(--ev_story_font_sans);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--ev_story_accent_bronze);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: block;
}

.ev_story_hero_title {
    margin-bottom: 25px;
    font-family: var(--ev_story_font_serif);
    font-size: 42px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--ev_story_text_main);
    letter-spacing: 0.08em;
}

/* 「EV」に華やかなゴールドグラデーションを適用 */
.ev_story_hero_title span.g_text {
    background: linear-gradient(135deg, #805835 0%, #c5a880 50%, #805835 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    display: inline-block;
}

.ev_story_hero_lead {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    max-width: 580px;
    font-family: var(--ev_story_font_serif);
    font-size: 20px;
    line-height: 2.1;
    color: #3e3e3e;
    margin-top: 0;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

/* 写真フレーム：ゴールドの二重細枠（アウトライン付き）＋背後の発光 */
.ev_story_hero_visual {
    grid-column: 2;
    grid-row: 1 / span 2;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 460px;
    /* 重ね合わせの高さスケールを拡大 (380px -> 460px) */
    display: flex;
    justify-content: center;
}

/* ゴールドバッジ */
.ev_story_hero_badge {
    background: radial-gradient(circle at 30% 30%, #ffffff 0%, #f7f3eb 40%, #e6dfd3 80%, #d8cdba 100%);
    border: 2px solid var(--ev_story_accent_gold);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(197, 168, 128, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    padding: 0;
    margin: 0;
    text-align: center;
    position: absolute;
    top: -40px;
    right: -65px;
    left: auto;
    z-index: 10;
}

.ev_story_hero_badge .badge_sub {
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--ev_story_text_muted);
    font-family: var(--ev_story_font_sans);
}

.ev_story_hero_badge .badge_num {
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    color: var(--ev_story_accent_bronze);
    font-family: var(--ev_story_font_serif);
    letter-spacing: -0.02em;
}

.ev_story_hero_badge .badge_percent {
    margin-left: 2px;
    font-size: 24px;
    font-weight: 500;
}

.ev_story_hero_badge .badge_label {
    background: linear-gradient(135deg, var(--ev_story_accent_bronze) 0%, var(--ev_story_accent_gold) 100%);
    border-radius: 12px;
    padding: 3px 12px;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    font-family: var(--ev_story_font_sans);
    letter-spacing: 0.05em;
}

.ev_story_hero_badge .badge_note {
    font-size: 11px;
    line-height: 1;
    color: var(--ev_story_text_muted);
    position: absolute;
    bottom: 12px;
}



/* 背後のほのかなゴールドグロウ */
.ev_story_hero_visual::before {
    content: '';
    position: absolute;
    width: 95%;
    height: 95%;
    top: 2.5%;
    left: 2.5%;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

/* 共通フレームスタイル */
.ev_story_hero_img_frame {
    background: #ffffff;
    border: 1px solid #c5a880;
    /* ゴールド枠 */
    border-radius: 8px;
    padding: 10px;
    position: absolute;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* メイン画像（製品箱）：背後 */
.ev_story_hero_img_frame.main_img {
    width: 82%;
    /* 70%から82%へ大幅拡大 */
    top: 0;
    left: 0;
    z-index: 2;
    box-shadow: 0 20px 45px rgba(128, 88, 53, 0.08);
    outline: 1px solid rgba(197, 168, 128, 0.2);
    outline-offset: 8px;
}

/* サブ画像（製品アンプル）：手前 */
.ev_story_hero_img_frame.sub_img {
    width: 58%;
    /* 48%から58%へ大幅拡大 */
    bottom: 0;
    right: -25px;
    /* 右側へはみ出しダイナミックに */
    z-index: 3;
    box-shadow: 0 25px 55px rgba(128, 88, 53, 0.18);
    outline: 1px solid rgba(197, 168, 128, 0.25);
    outline-offset: 8px;
    transform: rotate(3deg);
    /* 立体感を出すための傾き */
}

.ev_story_hero_img {
    width: 100%;
    height: auto;
    display: block;
}


/* サイエンスバナー */
.ev_story_science_banner {
    background: linear-gradient(180deg, #faf9f6 0%, #ffffff 50%, #faf9f6 100%) !important;
    border-top: 1px solid var(--ev_story_border_light);
    border-bottom: 1px solid var(--ev_story_border_light);
    padding: 100px 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* 背景にほのかなゴールドのゆらぎ光彩を追加 */
.ev_story_science_banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    filter: blur(20px);
    z-index: -1;
    pointer-events: none;
}

.ev_story_science_box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(197, 168, 128, 0.2);
    border-radius: 8px;
    padding: 40px 35px;
    box-shadow: 0 15px 35px rgba(128, 88, 53, 0.03);
    transition: var(--ev_story_transition);
}

.ev_story_tag {
    display: inline-block;
    padding: 4px 10px;
    font-family: var(--ev_story_font_sans);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--ev_story_accent_bronze);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(197, 168, 128, 0.4);
    border-radius: 20px;
    margin-bottom: 20px;
    background: rgba(244, 241, 235, 0.5);
}

.ev_story_science_box h4 {
    margin-bottom: 15px;
    font-family: var(--ev_story_font_serif);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--ev_story_text_main);
}

.ev_story_science_box p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--ev_story_text_muted);
}

.ev_story_science_illustration {
    margin: 60px auto 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* イラストの背後のほのかな発光効果 */
.ev_story_science_illustration::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(30px);
    z-index: -1;
    pointer-events: none;
}

.ev_story_science_img {
    border: 1px solid #c5a880;
    /* ゴールド枠に変更 */
    border-radius: 8px;
    box-shadow: 0 20px 45px rgba(128, 88, 53, 0.06);
    display: block;
    width: 100%;
    max-width: 540px;
    height: auto;
    margin: 0 auto 20px;
    padding: 10px;
    background: #ffffff;
    outline: 1px solid rgba(197, 168, 128, 0.2);
    outline-offset: 8px;
    transition: var(--ev_story_transition);
}

.ev_story_science_caption {
    display: block;
    text-align: center;
    font-size: 12px;
    line-height: 1.5;
    color: var(--ev_story_text_muted);
    font-family: var(--ev_story_font_serif);
}



/* --- 3. フックセクション (警告メッセージ) --- */
.ev_story_hook {
    padding: 120px 0;
    position: relative;
}

.ev_story_hook_box {
    background-color: #ffffff;
    border: 1px solid var(--ev_story_accent_gold);
    border-radius: 4px;
    width: 100%;
    max-width: 680px;
    padding: 80px 60px;
    margin: 0 auto;
    text-align: left;
    position: relative;
}

.ev_story_hook_box::before {
    border: 1px dashed rgba(197, 168, 128, 0.4);
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    pointer-events: none;
    content: '';
}

.ev_story_hook_attention {
    margin-bottom: 30px;
    font-family: var(--ev_story_font_serif);
    font-size: 14px;
    line-height: 1.2;
    color: var(--ev_story_accent_bronze);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.ev_story_hook_title {
    margin-bottom: 25px;
    font-family: var(--ev_story_font_serif);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--ev_story_text_main);
    letter-spacing: 0.05em;
}

.ev_story_hook_subtext {
    font-family: var(--ev_story_font_serif);
    font-size: 14px;
    line-height: 1.8;
    color: var(--ev_story_text_muted);
}


/* --- 4. 開発ストーリーセクション (東大発ベンチャー) --- */
.ev_story_origin {
    background-color: var(--ev_story_bg_accent);
    padding: 140px 0;
    position: relative;
}

.ev_story_origin_content {
    max-width: 800px;
    margin: 0 auto;
}

.ev_story_serif_text_wrap {
    max-width: 700px;
    margin: 0 auto 60px;
}

.ev_story_origin .ev_story_visual_block {
    max-width: 700px;
    margin: 0 auto;
}

.ev_story_origin .ev_story_img_shadow_frame+.ev_story_img_shadow_frame {
    margin-top: 40px;
}

.ev_story_img_shadow_frame {
    background-color: #ffffff;
    padding: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    position: relative;
}

.ev_story_side_img {
    border-radius: 2px;
    width: 100%;
    height: auto;
    display: block;
}

.ev_story_img_caption {
    margin-top: 10px;
    text-align: right;
    font-family: var(--ev_story_font_serif);
    font-size: 12px;
    line-height: 1.2;
    color: var(--ev_story_text_muted);
    display: block;
}

/* 作り手の想い（引用ブロック） */
.ev_story_quote_blocks {
    max-width: 680px;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ev_story_quote_block {
    background-color: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--ev_story_border_light);
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    padding: 40px 45px;
    position: relative;
}

.ev_story_quote_text {
    text-align: justify;
    font-size: 20px;
    font-weight: 500;
    line-height: 2;
    text-justify: inter-ideograph;
    font-family: var(--ev_story_font_serif);
}

.ev_story_quote_text::before {
    font-size: 50px;
    line-height: 1;
    color: rgba(197, 168, 128, 0.3);
    position: absolute;
    top: 15px;
    left: 15px;
    content: '‘';
    font-family: Georgia, serif;
}

.ev_story_quote_text::after {
    font-size: 50px;
    line-height: 1;
    color: rgba(197, 168, 128, 0.3);
    position: absolute;
    bottom: -15px;
    right: 15px;
    content: '’';
    font-family: Georgia, serif;
}

/* 許可証のレイアウト */
.ev_story_license_section {
    border-top: 1px solid var(--ev_story_border_light);
    padding: 80px 0 0;
    margin-top: 100px;
}

.ev_story_license_images {
    max-width: 760px;
    margin: 0 auto 75px;
    gap: 30px;
}

.ev_story_license_card {
    background-color: #ffffff;
    border: 1px solid var(--ev_story_border_light);
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    padding: 24px;
}

.ev_story_license_img_wrapper {
    border: 1px solid var(--ev_story_border_light);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.ev_story_license_img {
    width: 100%;
    height: auto;
    display: block;
}

.ev_story_license_info {
    margin-top: 20px;
}

.ev_story_license_info h5 {
    margin-bottom: 8px;
    font-family: var(--ev_story_font_serif);
    font-weight: 500;
    line-height: 1.4;
}

.ev_story_license_number {
    margin-bottom: 4px;
    font-family: var(--ev_story_font_sans);
    font-size: 12px;
    color: var(--ev_story_accent_bronze);
    line-height: 1.2;
}

.ev_story_license_holder {
    font-size: 12px;
    color: var(--ev_story_text_muted);
    line-height: 1.2;
}

.ev_story_license_notice {
    font-family: var(--ev_story_font_serif);
    font-size: 12px;
    color: var(--ev_story_text_muted);
}


/* --- 5. 特徴セクション (2つの効果) --- */
.ev_story_features {
    padding: 140px 0;
}

.ev_story_feature_cards {
    margin-top: 60px;
}

.ev_story_feature_card {
    background-color: var(--ev_story_bg_accent);
    border: 1px solid var(--ev_story_border_light);
    border-radius: 6px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    transition: var(--ev_story_transition);
}

.ev_story_feature_badge {
    font-family: var(--ev_story_font_serif);
    font-size: 130px;
    line-height: 1;
    color: rgba(197, 168, 128, 0.15);
    position: absolute;
    top: -20px;
    right: -15px;
    pointer-events: none;
    font-style: italic;
}

.ev_story_feature_card h4 {
    margin-bottom: 20px;
    font-family: var(--ev_story_font_serif);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.05em;
    position: relative;
}

.ev_story_feature_card h4::after {
    background-color: var(--ev_story_accent_gold);
    width: 40px;
    height: 2px;
    margin-top: 12px;
    content: '';
    display: block;
}

.ev_story_reasons_box {
    background-color: #ffffff;
    border: 1px solid var(--ev_story_border_light);
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
    padding: 60px;
    position: relative;
}

.ev_story_reasons_title {
    font-family: var(--ev_story_font_serif);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.1em;
    margin: 100px auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.ev_story_reasons_title::before,
.ev_story_reasons_title::after {
    content: '';
    height: 1px;
    width: 40px;
    background-color: var(--ev_story_accent_gold);
    display: block;
}

/* --- 5.1. 理由解説セクション 改善案5用スタイル (PC) --- */
.ev_story_reason_section {
    padding: 40px 0;
}

.ev_story_reason_header {
    margin-bottom: 45px;
    text-align: center;
}

.reason_num {
    font-family: var(--ev_story_font_sans);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--ev_story_accent_gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.ev_story_reason_header h4 {
    font-family: var(--ev_story_font_serif);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.ev_story_reason_divider {
    background-color: var(--ev_story_border_light);
    height: 1px;
    margin: 60px 0;
}

.ev_story_ingredients_badge_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 50px auto 60px;
    max-width: 800px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(197, 168, 128, 0.04);
}

.ev_story_ing_badge_card {
    overflow: hidden;
    transition: var(--ev_story_transition);
    display: flex;
    flex-direction: column;
}

.ev_story_ing_badge_img_wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.ev_story_ing_badge_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--ev_story_transition);
}

/* .ev_story_ing_badge_body {
    display: none;
} */

/* pHビジュアル化 */
.ev_story_ph_visual_premium {
    width: 100%;
    max-width: 800px;
    margin: 30px auto 70px;
    padding: 85px 0 55px;
    position: relative;
}

.ev_story_ph_bar_premium {
    background: linear-gradient(to right, #ebd7bd 0%, #f5cfcb 50%, #c6c2db 100%);
    border-radius: 4px;
    width: 100%;
    height: 8px;
    position: relative;
}

.ev_story_ph_zone {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 18px;
}

.ev_story_ph_zone.acid_zone {
    align-items: flex-start;
    left: 0 !important;
    width: auto !important;
}

.ev_story_ph_zone.alkaline_zone {
    align-items: flex-end;
    left: auto !important;
    right: 0 !important;
    width: auto !important;
}

.zone_val {
    font-family: var(--ev_story_font_sans);
    font-size: 12px;
    font-weight: 500;
    color: var(--ev_story_text_muted);
}

.zone_label {
    font-size: 10px;
    color: var(--ev_story_text_muted);
    margin-top: 4px;
}

.ev_story_ph_pin_premium {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.pin_glow_ripple {
    background-color: #f2b9b4;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 10px rgba(242, 185, 180, 0.6);
}

.pin_glow_ripple::after {
    border: 1px solid #f2b9b4;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation: evStoryRipple 2.2s infinite ease-out;
    content: '';
}

@keyframes evStoryRipple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}

.pin_balloon {
    background-color: #fce5e3;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(197, 168, 128, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 170px;
    padding: 12px 10px;
    position: absolute;
    bottom: 27px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.pin_balloon::after {
    border-top: 6px solid #fce5e3;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    content: '';
}

.pin_brand {
    font-family: var(--ev_story_font_sans);
    font-size: 12px;
    color: #8c6361;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 4px;
}

.pin_val {
    font-family: var(--ev_story_font_sans);
    font-size: 20px;
    font-weight: 700;
    color: #5c3533;
    line-height: 1.2;
    margin-bottom: 6px;
}

.pin_desc {
    font-size: 10px;
    color: #8c6361;
    line-height: 1;
}


/* --- 6. こだわりセクション (悪夢・冷凍保存) --- */
.ev_story_obsession {
    background-color: var(--ev_story_bg_dark);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.ev_story_obsession::before {
    background: radial-gradient(circle, rgba(197, 168, 128, 0.04) 0%, rgba(0, 0, 0, 0) 70%);
    width: 800px;
    height: 800px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    content: '';
}

.ev_story_obsession .ev_story_section_title {
    color: #ffffff;
}

.ev_story_obsession .ev_story_serif_text {
    color: rgba(255, 255, 255, 0.85);
}

.ev_story_prose {
    border-left: 2px solid var(--ev_story_accent_gold);
    padding-left: 40px;
    margin: 40px 0;
    position: relative;
    z-index: 2;
}

.ev_story_container_obsession {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 80px;
    padding-top: 60px;
}

.ev_story_tube_desc_text {
    font-family: var(--ev_story_font_sans);
    font-size: 12px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.ev_story_obsession h4 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.7;
    color: #ffffff;
    font-family: var(--ev_story_font_serif);
    letter-spacing: 0.05em;
    word-break: keep-all;
    overflow-wrap: break-word;
}


/* --- 7. 香料なしセクション --- */
.ev_story_smell {
    background-image: linear-gradient(rgba(250, 249, 246, 0.85), rgba(250, 249, 246, 0.85)), url('../img/evcosme/smell_light_ocean.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 140px 0;
    position: relative;
    z-index: 2;
}

/* --- 8. 成分セクション (4成分・ミニマリズム) --- */
.ev_story_ingredients {
    background-color: var(--ev_story_bg_accent);
    padding: 140px 0;
}

.ev_story_ing_container {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

/* 左側：ヒト歯髄細胞順化培養液 */
.ev_story_ing_hero_card {
    background-color: #ffffff;
    border: 1px solid var(--ev_story_border_light);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    flex: 1.3;
    display: flex;
    flex-direction: column;
}

.ev_story_ing_hero_img_wrap {
    background-color: var(--ev_story_bg_accent);
    height: 320px;
    position: relative;
    overflow: hidden;
}

.ev_story_ing_hero_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ev_story_ing_hero_body {
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.ev_story_ing_hero_ratio {
    font-family: var(--ev_story_font_sans);
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
    color: var(--ev_story_accent_bronze);
    letter-spacing: -0.02em;
    border-bottom: 2px solid var(--ev_story_accent_gold);
    padding-bottom: 5px;
    flex-shrink: 0;
}

.ev_story_ing_hero_meta {
    flex-grow: 1;
}

.ev_story_ing_hero_meta h4 {
    margin-bottom: 12px;
    font-family: var(--ev_story_font_serif);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
}

.ev_story_ing_hero_meta p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--ev_story_text_muted);
}

/* 右側：サポート成分3種 */
.ev_story_ing_support_wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ev_story_ing_support_item {
    background-color: #ffffff;
    border: 1px solid var(--ev_story_border_light);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    padding: 15px;
    gap: 20px;
    display: flex;
    align-items: center;
}

.ev_story_ing_support_img_wrap {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.ev_story_ing_support_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ev_story_ing_support_body {
    padding: 0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-grow: 1;
}

.ev_story_ing_support_ratio {
    border-bottom: 1.5px solid var(--ev_story_accent_gold);
    display: inline-block;
    width: 70px;
    padding-bottom: 2px;
    text-align: center;
    font-family: var(--ev_story_font_sans);
    font-size: 34px;
    font-weight: 500;
    line-height: 1;
    color: var(--ev_story_accent_bronze);
    white-space: nowrap;
    flex-shrink: 0;
}

.ev_story_ing_support_meta {
    flex-grow: 1;
}

.ev_story_ing_support_meta h4 {
    margin-bottom: 6px;
    font-family: var(--ev_story_font_serif);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
}

.ev_story_ing_support_meta p {
    font-size: 12px;
    line-height: 1.6;
    color: var(--ev_story_text_muted);
}

.ev_story_science_details {
    border-top: 1px solid var(--ev_story_border_light);
    margin: 80px auto 0;
    padding-top: 60px;
    max-width: 800px;
}

.ev_story_details_box {
    margin-bottom: 50px;
}

.ev_story_details_box:last-child {
    margin-bottom: 0;
}

.ev_story_details_box h4 {
    margin-bottom: 20px;
    font-family: var(--ev_story_font_serif);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.7;
}

/* 全成分表示 */
.ev_story_ingredients_all {
    margin: 60px auto 0;
    background-color: #ffffff;
    border: 1px solid var(--ev_story_border_light);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    padding: 35px 40px;
    text-align: center;
    max-width: 620px;
}

.ev_story_ingredients_all_label {
    margin-bottom: 15px;
    font-family: var(--ev_story_font_sans);
    font-size: 12px;
    font-weight: 700;
    color: var(--ev_story_accent_bronze);
    letter-spacing: 0.15em;
    display: block;
}

.ev_story_ingredients_all_text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--ev_story_text_muted);
    letter-spacing: 0.05em;
    text-align: left;
}


/* --- 9. 使い方セクション --- */
.ev_story_usage {
    padding: 140px 0;
}

.ev_story_steps {
    margin-top: 60px;
}

.ev_story_step_card {
    background-color: #ffffff;
    border: 1px solid var(--ev_story_border_light);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* .ev_story_step_img_wrapper {
    display: none;
} */

.ev_story_step_card::before {
    content: "";
    position: absolute;
    right: 40px;
    top: 25px;
    font-size: 80px;
    font-weight: 700;
    font-family: var(--ev_story_font_serif);
    color: rgba(197, 168, 128, 0.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.ev_story_step_card:nth-child(1)::before {
    content: "01";
}

.ev_story_step_card:nth-child(2)::before {
    content: "02";
}

.ev_story_step_card:nth-child(3)::before {
    content: "03";
}

.ev_story_step_number {
    margin-bottom: 20px;
    font-family: var(--ev_story_font_sans);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--ev_story_accent_gold);
    letter-spacing: 0.15em;
    display: inline-block;
    border-left: 2px solid var(--ev_story_accent_gold);
    padding-left: 10px;
}

.ev_story_step_card h5 {
    margin-bottom: 15px;
    font-family: var(--ev_story_font_serif);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
}

.ev_story_step_card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--ev_story_text_muted);
}

.ev_story_step_card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 50%;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--ev_story_accent_gold);
    border-bottom: 2px solid var(--ev_story_accent_gold);
    transform: translateY(-50%) rotate(-45deg);
    z-index: 10;
}

/* クリーンルーム手作業生産 */
.ev_story_craft_box {
    border-top: 1px solid var(--ev_story_border_light);
    margin-top: 100px;
    padding-top: 80px;
}

.ev_story_craft_box h4 {
    margin-bottom: 20px;
    font-family: var(--ev_story_font_serif);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.05em;
}

/* --- 8.5 Monitor Review (枠なしミニマル3カラム) --- */
.ev_story_monitor_review {
    background-color: #faf7f4;
    background-image: radial-gradient(rgba(197, 168, 128, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    padding: 100px 0;
    border-top: 1px solid var(--ev_story_border_light);
    border-bottom: 1px solid var(--ev_story_border_light);
    position: relative;
}


.ev_story_monitor_item {
    position: relative;
    border: 1px solid var(--ev_story_accent_gold);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 15px 35px rgba(197, 168, 128, 0.06), 0 5px 15px rgba(0, 0, 0, 0.02);
}

@media only screen and (min-width: 641px) {
    .swiper.ev_story_monitor_swiper {
        overflow: visible;
    }

    .ev_story_monitor_grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 60px 40px !important;
        max-width: 1100px !important;
        margin: 0 auto !important;
        padding: 0 20px !important;
        /* Swiperフレックス挙動の無効化 */
        flex-wrap: wrap !important;
        flex-direction: row !important;
        transform: none !important;
        width: auto !important;
    }

    .ev_story_monitor_item {
        padding: 50px 30px 40px !important;
        /* Swiperスライドサイズ強制の無効化 */
        width: auto !important;
        height: auto !important;
        margin-right: 0 !important;
    }

    .ev_story_monitor_pagination {
        display: none !important;
    }
}

/* 引用符の装飾 */
.ev_story_monitor_item::before {
    content: "“";
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 40px;
    line-height: 1;
    font-family: var(--ev_story_font_serif, serif);
    color: var(--ev_story_accent_gold);
}

.ev_story_monitor_meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    margin-bottom: 0;
}

.ev_story_monitor_tag {
    font-size: 12px;
    font-weight: 500;
    color: var(--ev_story_accent_gold);
    border: 1px solid rgba(197, 168, 128, 0.4);
    padding: 1px 8px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.ev_story_monitor_job {
    font-size: 12px;
    color: var(--ev_story_text_muted);
    font-family: var(--ev_story_font_serif);
}

.ev_story_monitor_content {
    font-family: var(--ev_story_font_sans);
    line-height: 1.8;
}

.ev_story_monitor_lead {
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.03em;
}

.ev_story_monitor_text {
    font-size: 14px;
    color: var(--ev_story_text_muted);
    letter-spacing: 0.02em;
}

/* --- 10. 価格・CTAセクション --- */
.ev_story_pricing {
    background-color: var(--ev_story_bg_accent);
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

.ev_story_pricing_glow {
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.06) 0%, rgba(244, 241, 235, 0) 65%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.ev_story_pricing_card {
    background-color: #ffffff;
    border: 1px solid var(--ev_story_accent_gold);
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    max-width: 650px;
    margin: 60px auto 30px;
    padding: 60px 40px;
    position: relative;
    z-index: 2;
}

.ev_story_pricing_card::before {
    border: 1px dashed rgba(197, 168, 128, 0.4);
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    pointer-events: none;
    content: '';
}

.ev_story_pricing_card .ev_story_price_title {
    display: block;
    margin-bottom: 15px;
    font-family: var(--ev_story_font_serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--ev_story_accent_bronze);
    letter-spacing: 0.05em;
}

.ev_story_pricing_card .ev_story_price_lead {
    display: block;
    max-width: 540px;
    margin: 0 auto 30px;
    text-align: center;
    font-family: var(--ev_story_font_serif);
    font-size: 14px;
    line-height: 1.8;
    color: var(--ev_story_text_muted);
}

.ev_story_price_main {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-family: var(--ev_story_font_sans);
}

.ev_story_price_main .price_num {
    font-family: var(--ev_story_font_serif);
    font-size: clamp(42px, 6.5vw, 60px);
    line-height: 1;
    letter-spacing: -0.02em;
}

.ev_story_price_currency {
    margin-left: 10px;
    font-family: var(--ev_story_font_serif);
    font-size: 14px;
    line-height: 1.2;
    color: var(--ev_story_text_muted);
    letter-spacing: 0.05em;
}

.ev_story_price_spec {
    margin-bottom: 40px;
    font-size: 14px;
    line-height: 1.2;
    color: var(--ev_story_text_muted);
}

.ev_story_cta_wrap {
    margin-bottom: 20px;
}

.ev_story_pricing_disclaimer {
    max-width: 600px;
    margin: 20px auto 0;
    font-size: 12px;
    line-height: 1.6;
    color: var(--ev_story_text_muted);
    text-align: left;
    position: relative;
    z-index: 2;
}

.ev_story_disclaimer {
    margin-top: 30px;
    text-align: center;
    font-size: 12px;
    color: var(--ev_story_text_muted);
    font-family: var(--ev_story_font_serif);
}

/* 適正価格の理由 */
.ev_story_price_reason_box {
    background-color: transparent;
    border-top: 2px solid rgba(197, 168, 128, 0.45);
    border-bottom: 2px solid rgba(197, 168, 128, 0.45);
    margin: 50px auto;
    padding: 30px 40px;
}

/* 最後の一押しコピー */
.ev_story_price_closing {
    max-width: 800px;
    margin: 40px auto 50px;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.8;
    color: var(--ev_story_accent_bronze);
    letter-spacing: 0.05em;
    word-break: keep-all;
}


/* 安心バッジ */
.ev_story_price_badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.price_badge {
    background-color: #faf9f6;
    border: 1px solid var(--ev_story_border_light);
    border-radius: 3px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--ev_story_accent_bronze);
    letter-spacing: 0.05em;
}

/* CTAボタンのプレミアム化 */
.ev_story_pricing_card .ev_story_btn_cta.large {
    background: linear-gradient(135deg, #c41218 0%, #850003 100%);
    border: none;
    box-shadow: 0 8px 25px rgba(167, 0, 6, 0.25);
    color: #ffffff !important;
    transition: var(--ev_story_transition);
}

.ev_story_pricing_card .ev_story_btn_cta.large::before {
    display: none !important;
}

.ev_story_pricing_card .ev_story_btn_cta.large:hover {
    box-shadow: 0 12px 30px rgba(167, 0, 6, 0.35);
    opacity: 0.9;
    color: #ffffff !important;
    transform: translateY(-2px);
}




/* =================================================================*
   11. スマートフォン表示用レスポンシブ (max-width: 640px)
   既存の style.css (ブレイクポイント 640px) と整合性を合わせて調整
==================================================================== */
@media only screen and (max-width: 640px) {

    /* 共通レイアウト調整 */
    .ev_story_wrapper {
        padding: 0 5.33vw;
    }

    .grid_2 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9.375vw;
    }

    .grid_3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 6.25vw;
    }

    .grid_4 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 4.6875vw;
    }

    .ev_story_disclaimer {
        margin-top: 4.6875vw;
        font-size: 3.125vw;
        /* 20px相当 (20/640) */
    }

    /* 共通フォント・見出し */
    .ev_story_section_subtitle {
        margin-bottom: 2.34375vw;
        font-size: 3.125vw;
        /* 20px相当 (20/640) */
    }

    .ev_story_section_title {
        margin-bottom: 6.25vw;
        font-size: 6.25vw;
        /* 40px相当 (40/640) */
    }

    .ev_story_serif_text.paragraph {
        margin-bottom: 3.75vw;
    }

    /* 1. ヒーローセクション */
    .ev_story_hero {
        padding: 12vw 0 16vw !important;
    }

    .ev_story_hero::after {
        content: '';
        position: absolute;
        width: 150px;
        height: 150px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(197, 168, 128, 0.08) 50%, rgba(255, 255, 255, 0) 70%);
        top: 5%;
        right: -10%;
        filter: blur(20px);
        z-index: 1;
        pointer-events: none;
    }

    .ev_story_hero_wrapper {
        display: flex;
        flex-direction: column;
        gap: 6vw;
        text-align: center;
    }

    .ev_story_hero_text {
        grid-column: auto;
        grid-row: auto;
        padding-right: 0;
    }

    .ev_story_hero_sub {
        margin-bottom: 3.125vw;
        font-size: 3.125vw;
    }

    .ev_story_hero_title {
        margin-bottom: 0;
        font-size: 7.1875vw;
        line-height: 1.6;
    }

    .ev_story_hero_lead {
        grid-column: auto;
        grid-row: auto;
        margin: 0 auto;
        max-width: 90%;
        font-size: 4.0625vw;
        line-height: 1.9;
        margin-top: 0;
        text-align: justify;
        text-justify: inter-ideograph;
    }

    .ev_story_hero_visual {
        grid-column: auto;
        grid-row: auto;
        height: 68vw;
        /* スマホ用の重ね合わせ高さ確保 */
        margin-top: 0;
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .ev_story_hero_badge {
        border-width: 1px;
        width: 34vw;
        height: 34vw;
        position: absolute;
        top: -8vw;
        right: -20vw;
        left: auto;
    }

    .ev_story_hero_badge .badge_sub {
        margin-bottom: 0.8vw;
        font-size: max(10px, 2.2vw);
        line-height: 1.3;
    }

    .ev_story_hero_badge .badge_num {
        font-size: 8.5vw;
    }

    .ev_story_hero_badge .badge_percent {
        margin-left: 0.2vw;
        font-size: 4.2vw;
    }

    .ev_story_hero_badge .badge_label {
        border-radius: 2vw;
        padding: 0.5vw 2vw;
        margin-top: 0.8vw;
        font-size: max(10px, 2.2vw);
    }

    .ev_story_hero_badge .badge_note {
        font-size: max(10px, 2.0vw);
        color: var(--ev_story_text_muted);
        bottom: 2vw;
    }


    .ev_story_hero_img_frame {
        position: absolute;
        padding: 2vw;
        border-radius: 6px;
        background: #ffffff;
        border: 1px solid #c5a880;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .ev_story_hero_img_frame.main_img {
        width: 76%;
        top: 0;
        left: 0;
        outline: 1px solid rgba(197, 168, 128, 0.2);
        outline-offset: 6px;
        box-shadow: 0 15px 40px rgba(128, 88, 53, 0.08);
    }

    .ev_story_hero_img_frame.sub_img {
        width: 54%;
        bottom: 0;
        right: -5px;
        outline: 1px solid rgba(197, 168, 128, 0.25);
        outline-offset: 6px;
        transform: rotate(3deg);
        box-shadow: 0 20px 45px rgba(128, 88, 53, 0.15);
    }

    .ev_story_hero_img_frame.sub_img:hover {
        transform: translateY(-2px) rotate(2deg);
    }

    .ev_story_science_banner {
        padding: 12vw 0 !important;
    }

    .ev_story_science_banner .grid_2 {
        display: flex;
        flex-direction: column;
        gap: 6vw;
    }

    .ev_story_science_box {
        padding: 6vw 5vw;
        border-radius: 6px;
    }

    .ev_story_tag {
        padding: 1vw 2.5vw;
        font-size: 2.5vw;
        margin-bottom: 3vw;
    }

    .ev_story_science_box h4 {
        margin-bottom: 3vw;
        font-size: 4.375vw;
    }

    .ev_story_science_box p {
        font-size: 3.4375vw;
        line-height: 1.8;
    }

    .ev_story_science_illustration {
        margin: 10vw auto 0;
    }

    .ev_story_science_img {
        max-width: 84.375vw;
        margin: 0 auto 4vw;
        padding: 2vw;
        border-radius: 6px;
        outline: 1px solid rgba(197, 168, 128, 0.2);
        outline-offset: 6px;
    }

    .ev_story_science_caption {
        font-size: 3.125vw;
    }


    /* 2. フックセクション */
    .ev_story_hook {
        padding: 12.5vw 0;
    }

    .ev_story_hook_box {
        padding: 9.375vw 4.6875vw;
    }

    .ev_story_hook_attention {
        margin-bottom: 4.6875vw;
        font-size: 3.4375vw;
        /* 22px相当 (22/640) */
    }

    .ev_story_hook_title {
        margin-bottom: 3.90625vw;
        font-size: 5.0vw;
        /* 32px相当 (32/640) - PC 28px対応 */
        line-height: 1.7;
    }

    .ev_story_hook_subtext {
        font-size: 3.4375vw;
        /* 22px相当 (22/640) */
    }

    /* 3. 開発ストーリー */
    .ev_story_origin {
        padding: 12.5vw 0;
    }

    .ev_story_serif_text_wrap {
        margin-bottom: 9.375vw;
    }

    .ev_story_quote_blocks {
        margin: 7.8125vw auto;
        gap: 5vw;
    }

    .ev_story_quote_block {
        padding: 6vw 6vw 7vw;
    }

    .ev_story_quote_text {
        font-size: 4.0625vw;
        line-height: 1.8;
    }

    .ev_story_quote_text::before {
        font-size: 8vw;
        top: 2vw;
        left: 2vw;
    }

    .ev_story_quote_text::after {
        font-size: 8vw;
        bottom: -2vw;
        right: 2vw;
    }

    .ev_story_img_shadow_frame {
        padding: 1.875vw;
    }

    .ev_story_origin .ev_story_img_shadow_frame+.ev_story_img_shadow_frame {
        margin-top: 6vw;
    }

    .ev_story_img_caption {
        margin-top: 1.5625vw;
        font-size: 3.125vw;
        /* 20px相当 (20/640) */
    }

    .ev_story_license_section {
        padding: 7.8125vw 0 0;
        margin-top: 9.375vw;
    }

    .ev_story_license_header {
        margin-bottom: 12.5vw;
    }

    .ev_story_license_images {
        grid-template-columns: 1fr !important;
        gap: 6.0vw !important;
        max-width: 320px;
        margin: 0 auto 12.5vw;
    }

    .ev_story_license_card {
        padding: 3.0vw;
    }

    .ev_story_license_info {
        margin-top: 3.125vw;
    }

    .ev_story_license_info h5 {
        margin-bottom: 1.25vw;
    }

    .ev_story_license_number {
        margin-bottom: 0.625vw;
        font-size: 3.125vw;
        /* 20px相当 (20/640) */
    }

    .ev_story_license_holder {
        font-size: 3.125vw;
        /* 20px相当 (20/640) */
    }

    .ev_story_license_notice {
        font-size: 3.125vw;
        /* 20px相当 (20/640) */
    }

    /* 4. 特徴 */
    .ev_story_features {
        padding: 12.5vw 0;
    }

    .ev_story_feature_card {
        padding: 9.375vw 6.25vw;
    }

    .ev_story_feature_badge {
        font-size: 26vw;
        top: -3vw;
        right: -2vw;
    }

    .ev_story_feature_card h4 {
        margin-bottom: 3.125vw;
        font-size: 4.0625vw;
        /* 26px相当 (26/640) */
    }

    .ev_story_feature_card h4::after {
        width: 6.25vw;
        margin-top: 1.875vw;
    }

    .ev_story_reasons_box {
        padding: 6.25vw 4.6875vw;
    }

    .ev_story_reasons_title {
        font-size: 4.375vw;
        margin: 15vw auto 6vw;
    }

    .ev_story_reasons_title::before,
    .ev_story_reasons_title::after {
        width: 30px;
    }

    /* --- 5.1. 理由解説セクション 改善案5用スタイル (SP) --- */
    .ev_story_reason_section {
        padding: 6.25vw 0;
    }

    .ev_story_reason_header {
        margin-bottom: 6.25vw;
    }

    .reason_num {
        font-size: 3.125vw;
        /* 20px相当 (20/640) */
        margin-bottom: 1.5vw;
    }

    .ev_story_reason_header h4 {
        font-size: 4.375vw;
        /* 28px相当 (28/640) - PC 24px対応 */
    }

    .ev_story_reason_divider {
        margin: 9.375vw 0;
    }

    .ev_story_ingredients_badge_box {
        grid-template-columns: repeat(3, 1fr);
        margin: 6vw auto;
        width: 100%;
        border-radius: 6px;
        box-shadow: 0 6px 20px rgba(197, 168, 128, 0.03);
    }

    .ev_story_ing_badge_img_wrap {
        height: 18vw;
    }

    .ev_story_ing_badge_body {
        padding: 5vw;
    }

    .ev_story_ing_badge_card h5 {
        margin-bottom: 0;
    }

    .ev_story_ing_badge_card h5::after {
        margin-top: 2vw;
    }

    .ev_story_ing_badge_card p {
        font-size: 3.2vw;
        line-height: 1.6;
    }

    .ev_story_ph_visual_premium {
        margin: 6.25vw auto 10vw;
        padding: 22vw 0 15vw;
    }

    .ev_story_ph_zone {
        top: 5.6vw;
    }

    .zone_val {
        font-size: 11px;
    }

    .zone_label {
        font-size: 9px;
        margin-top: 1vw;
    }

    .pin_glow_ripple {
        width: 2.5vw;
        height: 2.5vw;
    }

    .pin_balloon {
        width: 32vw;
        padding: 2.5vw 2vw;
        bottom: 5vw;
    }

    .pin_balloon::after {
        border-top-width: 1.25vw;
        border-left-width: 1.25vw;
        border-right-width: 1.25vw;
        bottom: -1.25vw;
    }

    .pin_brand {
        font-size: 10px;
        margin-bottom: 0.5vw;
    }

    .pin_val {
        font-size: 16px;
        margin-bottom: 1.5vw;
    }

    .pin_desc {
        font-size: 8px;
    }

    /* 5. こだわり */
    .ev_story_obsession {
        padding: 12.5vw 0;
    }

    .ev_story_tube_desc_text {
        font-size: 3.125vw;
        /* 20px相当 (20/640) */
    }

    .ev_story_prose {
        padding-left: 3.125vw;
        margin: 6.25vw 0;
    }

    .ev_story_container_obsession {
        margin-top: 12.5vw;
        padding-top: 9.375vw;
    }

    .ev_story_obsession h4 {
        margin-bottom: 3.125vw;
        font-size: 4.375vw;
        /* 28px相当 (28/640) - PC 24px対応 */
    }

    .ev_story_smell {
        background-attachment: scroll;
        padding: 12.5vw 0;
    }

    /* 7. 4成分 */
    .ev_story_ingredients {
        padding: 12.5vw 0;
    }

    .ev_story_ing_container {
        flex-direction: column;
        gap: 5.33vw;
        margin-top: 9.375vw;
    }

    .ev_story_ing_hero_card {
        width: 100%;
    }

    .ev_story_ing_hero_img_wrap {
        height: 50vw;
    }

    .ev_story_ing_hero_body {
        padding: 6.25vw 5vw;
        flex-direction: column;
        gap: 3.75vw;
    }

    .ev_story_ing_hero_ratio {
        font-size: 8.4375vw;
        /* 54px相当 (54/640) */
        align-self: flex-start;
    }

    .ev_story_ing_hero_meta h4 {
        font-size: 4.0625vw;
        /* 26px相当 (26/640) */
        margin-bottom: 2vw;
    }

    .ev_story_ing_hero_meta p {
        font-size: 3.4375vw;
        /* 22px相当 (22/640) */
    }

    .ev_story_ing_support_wrap {
        width: 100%;
        gap: 3.75vw;
    }

    .ev_story_ing_support_item {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        gap: 0;
        display: flex;
    }

    .ev_story_ing_support_img_wrap {
        display: none;
    }

    .ev_story_ing_support_body {
        padding: 4.68vw 5vw;
        flex-direction: row;
        align-items: center;
        gap: 3vw;
    }

    .ev_story_ing_support_ratio {
        border-bottom: none;
        border-right: 1px solid var(--ev_story_accent_gold);
        display: inline-block;
        width: 18vw;
        padding-bottom: 0;
        padding-right: 2vw;
        text-align: center;
        font-size: 5.9375vw;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .ev_story_ing_support_meta h4 {
        font-size: 4.0625vw;
        /* 26px相当 (26/640) */
        margin-bottom: 1vw;
    }

    .ev_story_ing_support_meta p {
        font-size: 3.125vw;
        /* 20px相当 (20/640) */
    }

    .ev_story_science_details {
        margin-top: 12.5vw;
        padding-top: 9.375vw;
    }

    .ev_story_details_box h4 {
        margin-bottom: 3.125vw;
        font-size: 4.375vw;
        /* 28px相当 (28/640) - PC 24px対応 */
    }

    .ev_story_ingredients_all {
        margin-top: 9.375vw;
        padding: 6.25vw 5vw;
        max-width: 100%;
    }

    .ev_story_ingredients_all_label {
        margin-bottom: 2.34vw;
        font-size: 3.125vw;
        /* 20px相当 (20/640) */
    }

    .ev_story_ingredients_all_text {
        font-size: 3.4375vw;
        /* 22px相当 (22/640) */
    }

    /* 8. 使い方 */
    .ev_story_usage {
        padding: 12.5vw 0;
    }

    .ev_story_steps {
        margin-top: 9.375vw;
        gap: 10vw;
    }

    .ev_story_step_card {
        padding: 8vw 6.25vw;
    }

    .ev_story_step_number {
        margin-bottom: 2.34375vw;
        font-size: 3.125vw;
        /* 20px相当 (20/640) */
    }

    .ev_story_step_card::before {
        right: 8.0vw;
        top: 4.0vw;
        font-size: 16.0vw;
        /* 102px相当 (102/640) - PC 80pxのスマホ最適化サイズ */
    }

    .ev_story_step_info {
        padding: 0;
    }

    .ev_story_step_card h5 {
        margin-bottom: 2.34375vw;
        font-size: 4.0625vw;
        /* 26px相当 (26/640) */
    }

    .ev_story_step_card p {
        font-size: 3.4375vw;
        /* 22px相当 (22/640) */
    }

    .ev_story_step_card:not(:last-child)::after {
        right: auto;
        left: 50%;
        bottom: -6vw;
        top: auto;
        width: 3vw;
        height: 3vw;
        border-right: 2px solid var(--ev_story_accent_gold);
        border-bottom: 2px solid var(--ev_story_accent_gold);
        transform: translateX(-50%) rotate(45deg);
    }

    .ev_story_craft_box {
        margin-top: 9.375vw;
        padding-top: 6.25vw;
    }

    .ev_story_craft_box h4 {
        margin-bottom: 3.125vw;
        font-size: 4.375vw;
        /* 28px相当 (28/640) - PC 24px対応 */
    }

    /* 8.5 Monitor Review (SP) */
    .ev_story_monitor_review {
        padding: 12.5vw 0 16vw;
    }

    .ev_story_monitor_review .ev_story_wrapper {
        padding: 0;
    }

    .ev_story_monitor_review .ev_story_section_header {
        padding: 0 5.33vw;
    }

    .swiper.ev_story_monitor_swiper {
        padding: 4vw 0 8vw;
    }

    .ev_story_monitor_grid {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        flex-wrap: nowrap !important;
        flex-direction: row !important;
        width: 100% !important;
    }

    .ev_story_monitor_item {
        height: auto !important;
        box-sizing: border-box !important;
        flex-shrink: 0 !important;
        padding: 12vw 6vw 8vw !important;
    }

    .ev_story_monitor_pagination {
        display: flex !important;
        justify-content: center !important;
        bottom: 0 !important;
        gap: 2vw !important;
    }

    .ev_story_monitor_pagination .swiper-pagination-bullet {
        width: 2vw !important;
        height: 2vw !important;
        background: var(--ev_story_accent_gold) !important;
        opacity: 0.3 !important;
        margin: 0 !important;
    }

    .ev_story_monitor_pagination .swiper-pagination-bullet-active {
        opacity: 1 !important;
        background: var(--ev_story_accent_gold) !important;
        width: 4vw !important;
        border-radius: 2vw !important;
    }

    .ev_story_monitor_item::before {
        font-size: 8vw;
        top: 3vw;
        /* 内側に配置 */
        left: 5vw;
    }

    .ev_story_monitor_meta {
        margin-top: 5vw;
        margin-bottom: 0;
    }

    .ev_story_monitor_tag {
        font-size: 3.125vw;
        /* PC 12pxのマッピング値に統一 */
        padding: 0.5vw 2vw;
    }

    .ev_story_monitor_job {
        font-size: 3.125vw;
    }

    .ev_story_monitor_lead {
        margin-bottom: 2vw;
    }

    .ev_story_monitor_text {
        font-size: 3.4375vw;
    }

    /* 9. 価格・CTA */
    .ev_story_pricing {
        padding: 12.5vw 0 18.75vw;
    }

    .ev_story_pricing_card {
        margin: 9.375vw auto 4.6875vw;
        padding: 9.375vw 3.125vw;
    }

    .ev_story_pricing_card .ev_story_price_title {
        margin-bottom: 3.125vw;
        font-size: 4.0625vw;
    }

    .ev_story_pricing_card .ev_story_price_lead {
        margin-bottom: 6.25vw;
        padding: 0 4vw;
        /* text-align: left; */
        font-size: 3.4375vw;
        line-height: 1.6;
    }

    .ev_story_price_main {
        margin-bottom: 3.125vw;
    }

    .ev_story_price_main .price_num {
        font-size: 12.5vw;
    }

    .ev_story_price_currency {
        margin-left: 1.5625vw;
        font-size: 2.8125vw;
    }

    .ev_story_price_spec {
        margin-bottom: 6.25vw;
        font-size: 3.0vw;
        /* 22px相当 (22/640) - 1行に収めるため少し縮小 */
    }

    .ev_story_pricing_disclaimer {
        font-size: 3.125vw;
        /* 20px相当 (20/640) */
    }

    .ev_story_pricing_card .ev_story_btn_cta.large {
        padding: 5vw 9.375vw;
    }

    .ev_story_price_reason_box {
        padding: 4.68vw 0;
        margin: 7.8vw auto 6vw;
    }

    .ev_story_price_closing {
        margin: 12vw auto 15vw;
        font-size: 4.375vw;
    }


    .ev_story_price_reason_box .ev_story_serif_text {
        font-size: 3.75vw;
        line-height: 2.0;
    }

    .ev_story_price_badges {
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 2vw;
        margin-bottom: 8vw;
    }

    .price_badge {
        padding: 1.5vw 2.5vw;
        font-size: 3.125vw;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ev_story_floating_cta {
        top: auto;
        bottom: 20px;
        right: 0;
        left: 0;
        z-index: 999;
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 0 20px;
        transform: none;
    }

    .ev_story_floating_cta .ev_story_btn_cta {
        border-radius: 40px;
        box-shadow: 0 8px 25px rgba(167, 0, 6, 0.3);
        display: flex;
        flex-direction: row;
        width: 100%;
        max-width: 500px;
        padding: 20px 0;
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        letter-spacing: 0.1em;
    }

    .ev_story_floating_cta .ev_story_btn_cta span {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        white-space: nowrap;
        letter-spacing: 0.1em;
        font-size: 3.4375vw;
    }

    .ev_story_floating_cta .ev_story_btn_cta i {
        margin-right: 8px;
        margin-bottom: 0;
    }

    .ev_story_floating_cta .ev_story_btn_cta:hover {
        transform: translateY(-2px);
    }


}