/* =============================================
 * style2026.css
 * エネコープ LP 2026 - ゼロベース新規CSS
 * ============================================= */

/* ----------------------------
 * 変数定義
 * ---------------------------- */
:root {
    --color-primary:   #00a23e;   /* エネコープグリーン */
    --color-primary-dark: #007a2e;
    --color-brown:     #86451e;   /* トドックブラウン */
    --color-brown-dark:#5c2e10;
    --color-white:     #ffffff;
    --color-offwhite:  #f5f7f5;
    --color-bg-gray:   #f0f4f2;
    --color-text:      #222222;
    --color-text-light:#666666;
    --color-border:    #d8e8dc;

    /* サービスカラー */
    --color-kerosene:  #d4531a;
    --color-gas:       #0077c2;
    --color-electric:  #e6a800;

    --font-base: 'Noto Sans JP', sans-serif;
    --radius-base: 12px;
    --radius-lg: 20px;
    --shadow-card: 0 4px 24px rgba(0,0,0,0.09);
    --shadow-btn:  0 4px 12px rgba(0,0,0,0.18);
    --transition: 0.25s ease;
    --header-height: 60px;
    --max-width: 1000px;
}

/* ----------------------------
 * リセット & ベース
 * ---------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: var(--header-height) 0 0 0;
    font-family: var(--font-base);
    color: var(--color-text);
    line-height: 1.8;
    background-color: var(--color-offwhite);
    font-size: 16px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    opacity: 0.82;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

/* ----------------------------
 * レイアウト共通
 * ---------------------------- */
.l-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ----------------------------
 * ボタン共通
 * ---------------------------- */

/* プライマリボタン（茶色） */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-brown);
    color: var(--color-white);
    font-size: 17px;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    box-shadow: 0 5px 0 var(--color-brown-dark), var(--shadow-btn);
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary:hover {
    opacity: 1;
    transform: translateY(3px);
    box-shadow: 0 2px 0 var(--color-brown-dark), 0 4px 10px rgba(0,0,0,0.15);
}

/* アウトラインボタン（グリーン） */
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    font-size: 15px;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline:hover {
    opacity: 1;
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* プレミアムボタンスタイル（kero-btn） */
.kero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #00c58e; /* 鮮やかなグリーンに変更 */
    color: #fff;
    font-size: clamp(14px, 2.5vw, 18px);
    font-weight: 900;
    padding: 10px 24px;
    border-radius: 40px;
    border: 3px solid #333;
    box-shadow: 0 4px 0 #333;
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: center;
    line-height: 1;
}
.kero-btn:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #333;
    opacity: 1;
}

/* ヘッダー用サイズ調整 */
.header-nav .kero-btn {
    font-size: 13px;
    padding: 14px 12px; /* 上下をさらに絞る */
    border-width: 2px;
    box-shadow: 0 2px 0 #333; /* シャドウも少し控えめに */
    line-height: 1;
}

/* テキストリンク */
.btn-text-link {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.btn-text-link:hover {
    color: var(--color-primary-dark);
    opacity: 1;
}

/* ----------------------------
 * セクション共通
 * ---------------------------- */
.section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

/* セクションヘッダー */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.section-header__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.3;
    margin-bottom: 16px;
}

.section-header__desc {
    font-size: 15px;
    color: var(--color-text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .section-header__title {
        font-size: 24px;
    }
}

/* ----------------------------
 * ヘッダー
 * ---------------------------- */
.header {
    min-height: 52px; /* 60pxから少しスリムに */
    height: auto;
    padding: 4px 15px; /* 上下パディングをさらに削減 */
    background: var(--color-white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* ロゴ */
.header-logo {
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header-logo svg {
    fill: currentColor;
    width: 90px;
    flex-shrink: 0;
}

.header-tagline {
    display: block;
    font-size: 10px;
    color: var(--color-primary);
}

@media (max-width: 600px) {
    .header-logo {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 2px;
    }
    .header-tagline {
        margin-bottom: 2px;
    }
}

/* ヘッダーナビ */
.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    /* height: 100%を削除し、flexの子要素として中央揃えされるように */
}

.header-nav-list {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (max-width: 960px) {
    .header-nav-list {
        display: none;
    }
}

.header-nav-list-child a {
    color: var(--color-text);
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.header-nav-list-child a:hover {
    color: var(--color-primary);
}

/* ヘッダー申込ボタン */
.header-nav .btn-primary {
    font-size: 13px;
    padding: 10px 20px;
    box-shadow: 0 3px 0 var(--color-brown-dark);
}

/* ハンバーガーボタン */
#hamburger {
    position: relative;
    width: 30px;
    height: 22px;
    cursor: pointer;
    display: none;
    margin-left: 16px;
    flex-shrink: 0;
}

@media (max-width: 960px) {
    #hamburger { display: block; }
}

.inner_line {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: var(--color-brown);
    border-radius: 3px;
    transition: 0.25s;
}
.line1 { top: 0; }
.line2 { top: 10px; }
.line3 { bottom: 0; }

.line1_tap { top: 10px; transform: rotate(45deg); }
.line2_tap { opacity: 0; }
.line3_tap { top: 10px; transform: rotate(-45deg); }

/* スクロールロック */
.lock { height: 100%; overflow: hidden; }

/* ----------------------------
 * モバイルメニューオーバーレイ
 * ---------------------------- */
.menu-nav {
    background: rgba(0, 162, 62, 0.96);
    height: 100vh;
    position: fixed;
    top: var(--header-height);
    right: 0;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 90;
}

.menu-nav.visible {
    opacity: 1;
    visibility: visible;
}

.menu-nav-list {
    text-align: center;
}

.menu-nav-list-child {
    margin-bottom: 36px;
    font-size: 20px;
}

.menu-nav-list-child:last-child { margin-bottom: 0; }

.menu-nav-list-child a {
    color: var(--color-white);
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.05em;
}

/* ----------------------------
 * Hero セクション（新デザイン）
 * ---------------------------- */
/* ヒーロー全体を1画面に収める */
.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* どのデバイスでも全画面 */
    height: 100dvh; 
    overflow: hidden;
    background: linear-gradient(to bottom, #54b3e5 0%, #ffffff 100%);
    display: flex;
    flex-direction: column;
}

/* 上部の波形（波の下を白く透過） */
.hero__wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15vh;
    z-index: 1;
}
.hero__wave svg {
    width: 100%;
    height: 100%;
}

.hero__content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    flex-grow: 1; /* 余まったスペースを確保 */
    display: flex;
    flex-direction: column;
    justify-content: center; /* 縦方向中央 */
}

.hero__lead {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
}

/* ズームエリア */
.hero__zoom-area {
    margin-bottom: 2vh;
    opacity: 0;
    transform: scale(0.3);
    will-change: transform, opacity;
}

/* ページロード時の「ドンッ！」アニメーション */
.hero__zoom-area.is-animated {
    animation: hero-dong 0.9s cubic-bezier(0.34, 1.8, 0.64, 1) forwards;
}

@keyframes hero-dong {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}


/* 先頭のキャッチコピー */
.hero__lead-catch {
    font-size: clamp(16px, 4.5vw, 48px); /* 画面幅に合わせて伸縮し、はみ出しを防ぐ */
    font-weight: 900;
    color: #333; /* スッキリとした黒に変更 */
    text-align: center;
    margin-bottom: 1vh;
    letter-spacing: 2px;
    white-space: nowrap; /* モバイルで絶対に改行させない */
}

.hero__zu-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero__zu-main {
    display: flex;
    align-items: center; /* 縦方向の中央で揃える */
    justify-content: center;
    position: relative;
    z-index: 10;
}

.hero__zu-wrapper {
    position: relative;
    z-index: 1; /* 「ず」を背面に */
}

.hero__zu-char {
    font-size: clamp(180px, 32vh, 350px); /* 巨大化 */
    font-weight: 900;
    line-height: 1;
    color: #f15a24;
    display: block;
    position: relative;
    z-index: 1;
}

/* 擬似要素を使って完全に滑らかな極太縁取りを「裏側」に描画する */
.hero__zu-char::before {
    content: "ず";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-text-stroke: 8px #333; /* 8px描画して、文字の下に隠れるので実質4pxの外枠 */
    color: transparent;
    pointer-events: none;
}

.hero__zu-trailing {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2; /* テキスト群を前面に */
    /* 「ず」の右側に食い込ませて、少し下げる（画通りの配置） */
    transform: translate(-15%, 18%);
}

.hero__tto {
    font-size: clamp(70px, 12vh, 150px);
    font-weight: 900;
    color: #f15a24;
    line-height: 1;
    margin: 0 0 10px 0;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.hero__tto::before {
    content: "～っと";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-text-stroke: 6px #333; /* 実質3pxの外枠 */
    color: transparent;
    pointer-events: none;
}

.hero__continue {
    font-size: clamp(28px, 5vh, 55px);
    font-weight: 700;
    color: #333;
    margin: 0 0 0 20px; /* 画像のように少し右にインデント */
    line-height: 1;
    white-space: nowrap;
}

/* 地面・丘エリア（最下部に固定） */
.hero__ground-container {
    margin: 0;
    width: 100%;
    height: clamp(200px, 35vh, 450px); /* 画面の高さに応じて地面の露出も変える */
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.hero__hill {
    width: 160%;
    height: 800px;
    background: #00c58e;
    border-top: 4px solid #333;
    border-radius: 50% 50% 0 0;
    position: absolute;
    top: 60px; /* 少し下げて、頂点の車が見えるようにする */
    left: -30%;
}

/* ベージュの道（パースと安定性重視） */
.hero__road {
    position: absolute;
    top: 0;
    left: 50%;
    width: 200px;
    height: 100%;
    background: #fff9e6;
    border-left: 3px solid #333;
    border-right: 3px solid #333;
    transform: translateX(-50%);
    /* 手前に向かって広がる台形 */
    clip-path: polygon(45% 0%, 55% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

/* 丘の上のオブジェクト全体の表示を確保 */
.hero__hill {
    overflow: visible !important; /* 子要素がはみ出しても消えないように */
}

/* 各オブジェクトの配置 */
.hero__obj {
    position: absolute;
    z-index: 5;
}

/* ----------------------------
   タンクローリー
   ---------------------------- */
/* 家・ビルのデザイン（画像ベースに変更） */
.hero__obj--img {
    height: auto;
    filter: drop-shadow(4px 4px 0 rgba(0,0,0,0.1));
    z-index: 5;
    position: absolute;
}

/* 左から右への街並み配置 */
/* 左側遠く（house1） */
.hero__obj--house1 {
    top: 80px; 
    left: 10%;
    width: clamp(70px, 9vw, 100px);
    z-index: 4;
}
/* 左側（house2） */
.hero__obj--house2 {
    top: 50px;
    left: 20%;
    width: clamp(60px, 8vw, 85px);
    z-index: 10;
}
/* 左側中（house3） */
.hero__obj--house3 {
    top: 45px;
    left: 31%;
    width: clamp(80px, 10vw, 110px);
    z-index: 6;
}
/* 中央寄り左（house4） */
.hero__obj--house4 {
    top: 42px;
    left: 40%;
    width: clamp(75px, 9vw, 100px);
    z-index: 8;
}

/* 中央寄り右（house5） */
.hero__obj--house5 {
    top: 55px;
    left: 60%;
    width: clamp(90px, 12vw, 120px);
    z-index: 8;
}
/* 右側中（house6） */
.hero__obj--house6 {
    top: 35px;
    left: 69%;
    width: clamp(55px, 7vw, 80px);
    z-index: 4;
}
/* 右側（house7） */
.hero__obj--house7 {
    top: 90px;
    left: 78%;
    width: clamp(100px, 14vw, 140px);
    z-index: 10;
}
/* 右側遠く（house8） */
.hero__obj--house8 {
    top: 110px;
    left: 88%;
    width: clamp(80px, 11vw, 115px);
    z-index: 4;
}

/* ----------------------------
   タンクローリー
   ---------------------------- */
.hero__tanklorry {
    position: absolute;
    top: 48px;
    left: 50%;
    width: 160px;
    z-index: 20;
    /* 地平線の頂点に静止 */
    transform: translate(-50%, -92%);
}

.hero__tanklorry-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 12px 10px rgba(0,0,0,0.15));
    /* エンジンの細かい振動（静止していても生きている感じを出すため維持） */
    animation: lorry-vibrate 0.3s ease-in-out infinite alternate;
}

@keyframes lorry-vibrate {
    0% { transform: translateY(0); }
    100% { transform: translateY(-2px); }
}

@keyframes rotate-ground-2d {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 地面の2D回転アニメーション */
@keyframes rotate-ground-2d {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 比較表 */
/* ヒーロー下部エリア */
.hero-bottom-area {
    padding: 40px 20px 20px;
    display: flex;
    justify-content: center;
    background: #fff;
}

.hero__content--bottom {
    width: 100%;
    max-width: 800px; /* はみ出し防止のため、コンテナの最大幅を広げる */
}

/* 比較エリア全体 */
.hero__comparison {
    width: 100%;
    text-align: center;
    background: #fff;
    border: 3px solid #333;
    border-radius: 24px;
    padding: 24px 20px 20px;
    box-shadow: 4px 6px 0 #333;
}

.hero__comp-intro {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #555;
    letter-spacing: 0.08em;
}

/* 3カード横並び */
.hero__comp-cards {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.hero__comp-card {
    flex: 1;
    min-width: 0;
    border-radius: 20px;
    padding: 30px 15px; /* さらに大きく */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border: 3px solid #333;
    box-shadow: 4px 5px 0 #333;
}

/* サービスカラー（全体と統一） */
.comp-card--kero {
    background-color: #1fc488;
    color: #fff;
}
.comp-card--gas {
    background-color: #5abde8;
    color: #fff;
}
.comp-card--elec {
    background-color: #fce249; /* 指定の黄に戻す */
    color: #fff; /* 文字は白に統一 */
}

/* カード内のラベル（サービス名） */
.hero__comp-card-label {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.05em;
    background: #fff; /* 白ベタで視認性UP */
    border-radius: 20px;
    padding: 5px 18px;
    margin-bottom: 15px;
    border: 2px solid #333; /* 黒枠でくっきりと */
    color: #333; /* 文字は黒で統一 */
    box-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}

/* 数字エリア */
.hero__comp-card-body {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    line-height: 1;
    margin-bottom: 4px;
}

.hero__comp-card-pre {
    font-size: 12px;
    font-weight: 900;
    background: rgba(0,0,0,0.15);
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 2px;
}
.comp-card--elec .hero__comp-card-pre {
    background: rgba(0,0,0,0.15); /* 他と同じ濃度に */
}

.hero__comp-card-num {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 5.5vw, 48px); /* PCでもはみ出さないように上限を調整 */
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.12); /* 埋もれないようにシャドウ */
}

.hero__comp-card-unit {
    font-size: 14px;
    font-weight: 900;
    margin-top: 10px;
}

.hero__comp-card-sub {
    font-size: 14px;
    font-weight: 900;
    padding-top: 4px;
    letter-spacing: 0.1em;
}

.hero__cta {
    margin-top: 28px;
    margin-bottom: 50px;
    text-align: center;
}

/* ボタンのカスタムスタイル */
.hero-btn-custom {
    display: inline-block;
    background: #f15a24;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 50px;
    border-radius: 40px;
    border: 2px solid #333;
    box-shadow: 2px 4px 0px #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

.hero-btn-custom:hover {
    transform: translateY(2px);
    box-shadow: 0px 2px 0px #333;
}

@media (max-width: 600px) {
    .hero__zu-char { font-size: 120px; }
    .hero__tto { font-size: 48px; }
    .hero__continue { font-size: 24px; }
}

@media (max-width: 480px) {
    .hero__comp-cards {
        flex-direction: column;
        gap: 15px;
    }
    .hero__comp-card {
        padding: 20px;
    }
    .hero__comp-card-num {
        font-size: 40px;
    }
}

/* ポイントセクションのレスポンシブ */
@media (max-width: 768px) {
    .points-grid-custom {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 10px;
    }
    .point-card-custom {
        width: 100%;
        max-width: 360px;
        padding: 30px 25px;
        box-shadow: 6px 8px 0 #333;
    }
    .point-card-custom__num {
        font-size: 60px;
    }
    .point-card-custom__text {
        font-size: 14px;
        margin-top: 8px;
    }
    /* モバイルでは透かしを少し薄くするか消す */
    .point-card-custom::after {
        font-size: 60px;
        opacity: 0.05;
    }
}

/* ----------------------------
 * ポイントセクション（新デザイン）
 * ---------------------------- */
.points-section--custom {
    background: #f5f7f5;
    padding: clamp(80px, 12vw, 120px) 0;
    position: relative;
    overflow: hidden;
}

.points-section__bg-diagonal {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        radial-gradient(ellipse at 10% 20%, rgba(31,196,136,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(85,189,235,0.07) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.points-header-custom {
    text-align: center;
    margin-bottom: 50px;
}

.points-title-custom {
    font-size: clamp(28px, 6vw, 40px);
    font-weight: 900;
    color: #222;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
}
.points-title-custom::after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: #1fc488;
    border-radius: 4px;
    margin-top: 8px;
}

/* ポイントカードの並び */
.points-grid-custom {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* 個別ポイントカード */
.point-card-custom {
    width: 77%;
    min-width: 0;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(16px, 2.5vw, 32px) clamp(16px, 2vw, 28px);
    border-radius: 20px;
    border: 3px solid #333;
    box-shadow: 5px 6px 0 #333;
    position: relative;
    overflow: visible; /* 文字切れ防止のためvisibleに */
}

.point-card-custom::after {
    /* 右下に大きなPTの透かし文字 */
    content: 'PT';
    position: absolute;
    bottom: -8px;
    right: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 80px;
    font-weight: 900;
    color: rgba(0,0,0,0.07);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -4px;
}

/* サービスカラー（全体と統一） */
.point-card-custom--kero {
    background-color: #1fc488;
}
.point-card-custom--elec {
    background-color: #fce249;
}
.point-card-custom--gas {
    background-color: #5abde8;
}

/* バッジ（サービス名） */
.point-card-custom__badge {
    background: #fff; /* 白ベタに変更 */
    border-radius: 20px;
    padding: 5px 18px;
    font-size: 13px;
    font-weight: 900;
    color: #333;
    border: 2px solid #333; /* 黒枠を追加 */
    box-shadow: 2px 2px 0 rgba(0,0,0,0.1);
    margin-bottom: auto;
    align-self: flex-start;
    white-space: nowrap; /* 改行を防ぐ */
}

.point-card-custom__body {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: auto;
}

/* ポイント数値 */
.point-card-custom__num {
    font-size: clamp(32px, 4vw, 64px); /* デスクトップでも可変に */
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px;
    display: block;
    white-space: nowrap; /* 意図しない改行を防ぐ */
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.12); /* シャドウを追加 */
}
.point-card-custom--elec .point-card-custom__num {
    color: #fff; /* ここも白に統一 */
}

.point-card-custom__text {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.95);
    margin-top: 6px;
    white-space: nowrap; /* プレゼントの改行を防ぐ */
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12); /* テキストにも軽くシャドウ */
}
.point-card-custom--elec .point-card-custom__text {
    color: rgba(255,255,255,0.95);
}

/* ----------------------------
 * 灯油セクション（新デザイン）
 * ---------------------------- */
.kero-section {
    background-color: #fff;
    padding: 100px 0;
}

.kero-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

/* タイトルエリア */
.kero-title-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    width: 100%;
}

.kero-title-icon {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: #1fc488;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 3px solid #333;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.1);
}

.kero-title-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.kero-title-text-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.kero-title-en {
    font-size: clamp(12px, 3.5vw, 16px);
    font-weight: 900;
    color: #1fc488;
    letter-spacing: 4px;
    margin-bottom: 8px;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.kero-title-ja {
    font-size: clamp(36px, 10vw, 48px);
    font-weight: 900;
    color: #111;
    margin: 0;
    letter-spacing: 2px;
    line-height: 1.2;
}

/* メイン画像 */
.kero-mainimg {
    width: 100%;
    border-radius: 16px;
    border: 3px solid #333;
    overflow: hidden;
    margin-bottom: 50px;
    background: #eef8fc; 
    box-shadow: 6px 6px 0 rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.kero-mainimg:hover {
    transform: translateY(-4px);
}

.kero-mainimg img {
    width: 100%;
    height: auto;
    display: block;
}

/* 配達実績エリア（スタイリッシュ・モダン） */
.kero-achieve {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.kero-achieve-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}

.kero-achieve-badge {
    background: #1fc488;
    color: #333;
    font-size: clamp(12px, 3.5vw, 15px);
    font-weight: 900;
    padding: 6px 16px;
    border-radius: 30px;
    border: 3px solid #333;
    box-shadow: 2px 2px 0 rgba(0,0,0,0.1);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.kero-achieve-title {
    font-size: clamp(18px, 5vw, 22px);
    font-weight: 900;
    color: #333;
    margin: 0;
    display: flex;
    align-items: baseline;
    letter-spacing: 1px;
}

.kero-achieve-num {
    font-size: clamp(50px, 12vw, 75px);
    font-family: 'Outfit', "Helvetica Neue", Arial, sans-serif;
    font-weight: 900;
    color: #1fc488;
    letter-spacing: -2px;
    line-height: 1;
    margin: 0 4px;
}

.kero-achieve-body {
    width: 100%;
    padding: 20px 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.kero-achieve-text {
    font-size: clamp(16px, 4.5vw, 18px);
    line-height: 2.2;
    color: #111;
    margin: 0;
    font-weight: 900;
    letter-spacing: 1.5px;
}

/* 還元ボックス（プレミアムデザイン） */
.kero-benefit {
    width: 100%;
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 60px;
    border-radius: 12px;
    border: 1px solid rgba(31, 196, 136, 0.2);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.kero-benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #1fc488, #5abde8);
}

.kero-benef-sup {
    display: block;
    font-size: clamp(12px, 3.5vw, 15px);
    font-weight: 900;
    color: #1fc488;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.kero-benef-main {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin: 0 0 15px;
    color: #333;
    font-size: clamp(20px, 5vw, 24px);
    font-weight: 900;
    letter-spacing: 1px;
}

.kero-benef-num {
    font-size: clamp(65px, 16vw, 85px);
    font-family: 'Outfit', "Helvetica Neue", Arial, sans-serif;
    font-weight: 900;
    color: #111;
    line-height: 0.8;
    margin: 0 8px;
    letter-spacing: -2px;
}

.kero-benef-unit {
    font-size: clamp(16px, 4vw, 20px);
    font-weight: 900;
}

.kero-benef-sub {
    display: inline-block;
    font-size: clamp(16px, 4.5vw, 22px);
    font-weight: 900;
    color: #fff;
    background: #222;
    padding: 8px 24px;
    border-radius: 40px;
    margin: 0;
    letter-spacing: 4px;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.15);
}

/* 安心3拍子エリア */
.kero-features {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

.kero-features-title {
    font-size: clamp(20px, 5vw, 26px);
    font-weight: bold;
    color: #333;
    margin-bottom: 100px; /* アイコンを突き出させるための余白 */
    position: relative;
    display: inline-block;
}

.kero-features-icons {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px;
    width: 100%;
}

.kero-features-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 31%;
}

.kero-feat-img {
    width: 80%;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

.kero-feat-text {
    font-size: clamp(14px, 3.5vw, 18px);
    font-weight: 900;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* キャンペーンボックス（プレミアム・スタイリッシュ：ブライト版） */
.kero-campaign {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 60px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    border: 2px solid #1fc488;
    box-shadow: 0 20px 40px rgba(31, 196, 136, 0.1);
    overflow: hidden;
}

.kero-campaign::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(31, 196, 136, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.kero-camp-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #1fc488;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    padding: 8px 32px;
    border-radius: 0 0 20px 20px;
    letter-spacing: 2px;
    white-space: nowrap;
}

.kero-camp-content {
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
}

.kero-camp-lead {
    font-size: clamp(14px, 4vw, 18px);
    font-weight: 900;
    color: #1fc488;
    margin-bottom: 12px;
    letter-spacing: 1.5px;
}

.kero-camp-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.kero-camp-num {
    font-size: clamp(80px, 18vw, 120px);
    font-family: 'Outfit', "Helvetica Neue", Arial, sans-serif;
    font-weight: 900;
    color: #111;
    line-height: 0.9;
    letter-spacing: -4px;
}

.kero-camp-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.kero-camp-unit {
    font-size: clamp(20px, 5vw, 24px);
    font-weight: 900;
    color: #1FC488;
    line-height: 1;
    margin-bottom: 4px;
}

.kero-camp-present {
    font-size: 10px;
    font-weight: 900;
    color: #bbb;
    letter-spacing: 3px;
    font-family: sans-serif;
}

.kero-camp-footer {
    width: 100%;
    padding-top: 25px;
    border-top: 1px solid rgba(31, 196, 136, 0.1);
}

.kero-camp-period {
    font-size: clamp(12px, 3.5vw, 14px);
    font-weight: 900;
    color: #666;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    letter-spacing: 1px;
}

.kero-camp-period-label {
    font-size: 9px;
    color: #1fc488;
    border: 1px solid #1fc488;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: sans-serif;
}

.kero-camp-sep {
    color: #1fc488;
    font-size: 10px;
}

/* ボタン（ヒーローCTAとデザインを統一） */
.kero-action {
    margin-top: 30px;
    margin-bottom: 21px;
    text-align: center;
}

.kero-btn {
    display: inline-block;
    background: #1fc488;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 50px;
    border-radius: 40px;
    border: 2px solid #333;
    box-shadow: 2px 4px 0px #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

.kero-btn:hover {
    opacity: 1;
    transform: translateY(2px);
    box-shadow: 0px 2px 0px #333;
}

/* ----------------------------
 * ガスのセクション（灯油デザイン踏襲）
 * ---------------------------- */
.gas-section {
    background-color: #f0faff; /* わずかに青みがかった背景で灯油セクションと差別化 */
    padding: 100px 0;
}

.gas-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

/* タイトルエリア */
.gas-title-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    width: 100%;
}

.gas-title-icon {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: #5abde8; /* ガスカラー */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 3px solid #333;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.1);
}

.gas-title-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.gas-title-text-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.gas-title-en {
    font-size: clamp(12px, 3.5vw, 16px);
    font-weight: 900;
    color: #5abde8;
    letter-spacing: 4px;
    margin-bottom: 8px;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.gas-title-ja {
    font-size: clamp(36px, 10vw, 48px);
    font-weight: 900;
    color: #111;
    margin: 0;
    letter-spacing: 2px;
    line-height: 1.2;
}

/* メイン画像 */
.gas-mainimg {
    width: 100%;
    border-radius: 16px;
    border: 3px solid #333;
    overflow: hidden;
    margin-bottom: 60px;
    background: #fff;
    box-shadow: 6px 6px 0 rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gas-mainimg:hover {
    transform: translateY(-4px);
}

.gas-mainimg img {
    width: 100%;
    height: auto;
    display: block;
}

/* 価値提案エリア（タイポグラフィ重視） */
.gas-value {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    text-align: center;
}

.gas-value-badge {
    background: #5abde8;
    color: #fff;
    font-size: clamp(12px, 3.5vw, 14px);
    font-weight: 900;
    padding: 6px 20px;
    border-radius: 30px;
    border: 3px solid #333;
    box-shadow: 2px 2px 0 rgba(0,0,0,0.1);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.gas-value-text {
    font-size: clamp(18px, 5vw, 24px);
    line-height: 1.8;
    color: #111;
    font-weight: 900;
    letter-spacing: 1px;
    margin: 0;
}

.gas-value-sub {
    font-size: clamp(14px, 3.5vw, 16px);
    line-height: 2;
    color: #444;
    margin-top: 15px;
    font-weight: 700;
}

/* 安心・安全エリア（アイコン並び） */
.gas-features {
    width: 100%;
    margin-bottom: 60px;
    text-align: center;
}

.gas-features-title {
    font-size: clamp(20px, 5vw, 26px);
    font-weight: 900;
    color: #333;
    margin-bottom: 80px;
}

.gas-features-icons {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: clamp(20px, 5vw, 60px);
    width: 100%;
}

.gas-features-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 31%;
}


.gas-feat-img {
    width: 80%;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

.gas-feat-text {
    font-size: clamp(14px, 3.5vw, 18px);
    font-weight: 900;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* キャンペーンボックス（ブライト版） */
.gas-campaign {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 60px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    border: 2px solid #5abde8;
    box-shadow: 0 20px 40px rgba(90, 189, 232, 0.1);
    overflow: hidden;
}

.gas-campaign::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(90, 189, 232, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.gas-camp-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #5abde8;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    padding: 8px 32px;
    border-radius: 0 0 20px 20px;
    letter-spacing: 2px;
    white-space: nowrap;
}

.gas-camp-content {
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
}

.gas-camp-lead {
    font-size: clamp(14px, 4vw, 18px);
    font-weight: 900;
    color: #5abde8;
    margin-bottom: 12px;
    letter-spacing: 1.5px;
}

.gas-camp-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.gas-camp-num {
    font-size: clamp(80px, 18vw, 120px);
    font-family: 'Outfit', "Helvetica Neue", Arial, sans-serif;
    font-weight: 900;
    color: #111;
    line-height: 0.9;
    letter-spacing: -4px;
}

.gas-camp-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.gas-camp-unit {
    font-size: clamp(20px, 5vw, 24px);
    font-weight: 900;
    color: #5abde8;
    line-height: 1;
    margin-bottom: 4px;
}

.gas-camp-present {
    font-size: 10px;
    font-weight: 900;
    color: #bbb;
    letter-spacing: 3px;
    font-family: sans-serif;
}

.gas-camp-footer {
    width: 100%;
    padding-top: 25px;
    border-top: 1px solid rgba(90, 189, 232, 0.1);
}

.gas-camp-period {
    font-size: clamp(12px, 3.5vw, 14px);
    font-weight: 900;
    color: #666;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    letter-spacing: 1px;
}

.gas-camp-period-label {
    font-size: 9px;
    color: #5abde8;
    border: 1px solid #5abde8;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: sans-serif;
}

.gas-camp-sep {
    color: #5abde8;
    font-size: 10px;
}

/* エリア情報エリア */
.gas-area {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 40px 30px;
    margin-bottom: 60px;
}

.gas-area-title {
    font-size: 22px;
    font-weight: 900;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 4px;
}

.gas-area-content {
    font-size: 13px;
    line-height: 1.8;
    color: #444;
}

.gas-area-item {
    margin-bottom: 20px;
}

.gas-area-item:last-child {
    margin-bottom: 0;
}

.gas-area-sub {
    font-weight: 900;
    display: block;
    margin-bottom: 5px;
    color: #5abde8;
}

/* CTAエリア */
.gas-action {
    text-align: center;
}

.gas-btn {
    display: inline-block;
    background: #5abde8;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 50px;
    border-radius: 40px;
    border: 2px solid #333;
    box-shadow: 2px 4px 0px #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

.gas-btn:hover {
    transform: translateY(2px);
    box-shadow: 0px 2px 0px #333;
}


/* ----------------------------
 * でんきのセクション（灯油・ガスデザイン踏襲）
 * ---------------------------- */
.ele-section {
    background-color: #fff;
    padding: 100px 0;
}

.ele-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

/* タイトルエリア */
.ele-title-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    width: 100%;
}

.ele-title-icon {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: #fce249; /* でんきイエロー */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 3px solid #333;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.1);
}

.ele-title-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.ele-title-text-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ele-title-ja {
    font-size: clamp(36px, 10vw, 48px);
    font-weight: 900;
    color: #111;
    margin: 0;
    letter-spacing: 2px;
    line-height: 1.2;
}

/* メイン画像 */
.ele-mainimg {
    width: 100%;
    border-radius: 16px;
    border: 3px solid #333;
    overflow: hidden;
    margin-bottom: 60px;
    background: #fff;
    box-shadow: 6px 6px 0 rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.ele-mainimg:hover {
    transform: translateY(-4px);
}

.ele-mainimg img {
    width: 100%;
    height: auto;
    display: block;
}

/* 価値提案エリア */
.ele-value {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    text-align: center;
}

.ele-value-text {
    font-size: clamp(20px, 6vw, 28px);
    line-height: 1.6;
    color: #111;
    font-weight: 900;
    letter-spacing: 1px;
    margin: 0 0 20px;
    position: relative;
    display: inline-block;
}

.ele-value-sub {
    font-size: clamp(14px, 3.5vw, 16px);
    line-height: 2;
    color: #444;
    font-weight: 700;
    margin-bottom: 40px;
}

/* 料金シミュレーションボタン */
.ele-sim-lead {
    font-size: 14px;
    font-weight: 900;
    color: #666;
    margin-bottom: 12px;
}

.ele-sim-btn {
    display: inline-block;
    background: #fce249;
    color: #333;
    font-size: clamp(16px, 4vw, 18px);
    font-weight: 900;
    padding: 18px 60px;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid #333;
    box-shadow: 0 4px 0 #333;
    margin-bottom: 20px;
}

.ele-sim-btn:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #333;
}

/* えらべるメニューエリア */
.ele-menus {
    width: 100%;
    margin-bottom: 60px;
    text-align: center;
}

.ele-menus-title {
    font-size: clamp(20px, 5vw, 26px);
    font-weight: 900;
    color: #333;
    margin-bottom: 50px;
}

.ele-menus-icons {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: clamp(20px, 5vw, 60px);
    width: 100%;
}

.ele-menus-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 31%;
}

.ele-menu-img {
    width: 80%;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

.ele-menu-text {
    font-size: clamp(14px, 3.5vw, 18px);
    font-weight: 900;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* キャンペーンボックス */
.ele-campaign {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 60px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    border: 2px solid #fce249;
    box-shadow: 0 20px 40px rgba(252, 226, 73, 0.15);
    overflow: hidden;
}

.ele-camp-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #fce249;
    color: #333;
    font-size: 11px;
    font-weight: 900;
    padding: 8px 32px;
    border-radius: 0 0 20px 20px;
    letter-spacing: 2px;
    white-space: nowrap;
}

.ele-camp-content {
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
}

.ele-camp-lead {
    font-size: clamp(14px, 4vw, 18px);
    font-weight: 900;
    color: #d9a000;
    margin-bottom: 12px;
    letter-spacing: 1.5px;
}

.ele-camp-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.ele-camp-num {
    font-size: clamp(80px, 18vw, 120px);
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    color: #111;
    line-height: 0.9;
    letter-spacing: -6px;
}

.ele-camp-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.ele-camp-unit {
    font-size: clamp(20px, 5vw, 24px);
    font-weight: 900;
    color: #d9a000;
    line-height: 1;
    margin-bottom: 4px;
}

.ele-camp-present {
    font-size: 10px;
    font-weight: 900;
    color: #bbb;
    letter-spacing: 3px;
}

.ele-camp-footer {
    width: 100%;
    padding-top: 25px;
    border-top: 1px solid rgba(252, 226, 73, 0.3);
}

.ele-camp-period {
    font-size: clamp(12px, 3.5vw, 14px);
    font-weight: 900;
    color: #666;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    letter-spacing: 1px;
}

.ele-camp-period-label {
    font-size: 9px;
    color: #d9a000;
    border: 1px solid #d9a000;
    padding: 2px 6px;
    border-radius: 4px;
}

.ele-camp-sep {
    color: #d9a000;
    font-size: 10px;
}

/* 注意書き */
.ele-note {
    font-size: 12px;
    color: #888;
    text-align: left;
    margin-bottom: 60px;
}

/* CTAエリア */
.ele-action {
    text-align: center;
}

.ele-btn {
    display: inline-block;
    background: #fce249;
    color: #333;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 50px;
    border-radius: 40px;
    border: 2px solid #333;
    box-shadow: 2px 4px 0px #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

.ele-btn:hover {
    transform: translateY(2px);
    box-shadow: 0px 2px 0px #333;
}

/* ==========================================================================
   セット割セクション (新規プレミアムデザイン)
   ========================================================================== */
.set-new-section {
    padding: 100px 0;
    background-color: #1fc488;
    color: #333;
    text-align: center;
}

.set-new-title {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 900;
    color: #fff !important;
    margin-bottom: 60px;
    letter-spacing: 0.1em;
}

.set-new-card {
    background: #fff !important;
    border-radius: 40px;
    padding: 60px 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    max-width: 800px;
    margin: 0 auto;
}

/* グループタイトル (3つまとめると / 2つまとめると) */
.set-group-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.set-group-title span {
    position: relative;
    padding-bottom: 8px;
    border-bottom: 3px solid #1fc488;
}

.set-icons-wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.set-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
}

.set-icon-circle {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    border: 3px solid #333 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15% !important;
    margin-bottom: 10px;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.1) !important;
    background: #fff;
    box-sizing: border-box;
}
.set-icon-circle img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}
.set-icon-circle.is-kero { background-color: #1fc488 !important; }
.set-icon-circle.is-gas  { background-color: #5abde8 !important; }
.set-icon-circle.is-elec { background-color: #fce249 !important; }

.set-icon-label {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.set-desc-sub {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.set-price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.set-price-label {
    font-size: 14px;
    background: #fce249;
    padding: 4px 8px;
    font-weight: 900;
    color: #333;
}

.set-price-num {
    font-family: 'Outfit', sans-serif !important;
    font-size: clamp(48px, 8vw, 64px) !important;
    color: #ea5506 !important;
    line-height: 1;
}

.set-price-unit {
    font-size: 24px;
    font-weight: 900;
    color: #333;
}

.set-price-highlight {
    font-size: 24px;
    font-weight: 900;
    color: #ea5506;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* 仕切り線 */
.set-card-divider {
    height: 1px;
    background: #eee;
    margin: 60px 0;
    position: relative;
}
.set-card-divider::after {
    content: 'かさねる';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 0 15px;
    font-size: 12px;
    color: #ccc;
    letter-spacing: 0.2em;
}

/* 2つまとめるとのレイアウト */
.set-flex-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.set-flex-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.set-vertical-line {
    width: 0;
    border-left: 2px dotted #ccc;
    height: 150px;
}

.set-icons-mini {
    display: flex;
    margin-bottom: 20px;
}
.set-icons-mini .set-icon-circle:last-child {
    margin-left: -20px;
}

.set-icon-circle.is-mini {
    width: 70px !important;
    height: 70px !important;
}

.set-desc-mini {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.set-price-mini {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.set-price-num-sm {
    font-family: 'Outfit', sans-serif !important;
    font-size: 36px !important;
    color: #ea5506 !important;
    line-height: 1;
}

.set-price-unit-sm {
    font-size: 18px;
    font-weight: 900;
    color: #333;
}

.set-price-badge {
    background: #ea5506 !important;
    color: #fff !important;
    padding: 2px 8px;
    font-size: 14px;
    font-weight: 900;
    border-radius: 4px;
}

/* 複雑な構成のアイコン */
.set-icons-complex {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.set-icon-circle.is-medium {
    width: 80px !important;
    height: 80px !important;
}
.set-icons-stacked {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.set-icon-circle.is-micro {
    width: 45px !important;
    height: 45px !important;
    padding: 10% !important;
}

.set-footer-text {
    margin-top: 50px;
    font-size: clamp(18px, 4.5vw, 24px);
    font-weight: 900;
    color: #fff;
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.15);
}

.set-footer-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5em; /* 金額を大幅に大きく */
    color: #fce249; /* でんきカラーの黄色で強調 */
    margin: 0 4px;
    vertical-align: -0.05em;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
}

/* ==========================================================================
   エネルギーサポート (新規プレミアムデザイン)
   ========================================================================== */
.support-new-section {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

.support-new-heading {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 900;
    color: #333 !important;
    margin-bottom: 60px;
}

.support-new-card {
    border: 3px solid #333 !important;
    border-radius: 40px !important;
    overflow: hidden !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    background: #fff !important;
    box-shadow: 10px 10px 0 rgba(0,0,0,0.05) !important;
}

.support-text-area {
    padding: 60px 40px;
}

.support-lead {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.support-zero-wrap {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
}

.support-zero {
    font-family: 'Outfit', sans-serif !important;
    font-size: 80px !important;
    color: #ea5506 !important;
    line-height: 1;
    position: relative;
    z-index: 1;
}
.support-zero::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: -5%;
    width: 110%;
    height: 25px;
    background: #fce249;
    z-index: -1;
}

.support-zero-text {
    font-size: 24px;
    font-weight: 900;
    color: #333;
}

.support-image-wrap {
    width: 100%;
}

.support-main-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.support-footer-cap {
    margin-top: 30px;
    font-size: 24px;
    font-weight: 900;
    color: #333 !important;
}

/* ----------------------------
 * Q&Aセクション (リニューアル)
 * ---------------------------- */
.qa-new-section {
    padding: 100px 0;
    background: #fff;
}

.qa-new-header {
    text-align: center;
    margin-bottom: 60px;
}

.qa-new-badge {
    display: inline-block;
    background: #00a23e;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    padding: 4px 16px;
    border-radius: 20px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.qa-new-title {
    font-size: clamp(28px, 6vw, 40px);
    font-weight: 900;
    color: #111;
}

.qa-new-list {
    max-width: 800px;
    margin: 0 auto;
}

.qa-new-item {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.qa-new-q {
    list-style: none;
    font-size: 18px;
    font-weight: 900;
    padding: 20px 40px 20px 10px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: color 0.3s;
}

.qa-new-q::-webkit-details-marker {
    display: none;
}

.qa-new-q:hover {
    color: #00a23e;
}

.qa-q-icon {
    font-family: 'Outfit', sans-serif;
    color: #00a23e;
    font-size: 24px;
}

.qa-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    width: 12px;
    height: 12px;
    border-top: 2px solid #ccc;
    border-right: 2px solid #ccc;
    transform: translateY(-50%) rotate(135deg);
    transition: transform 0.3s;
}

details[open] .qa-arrow {
    transform: translateY(-50%) rotate(-45deg);
}

.qa-new-a {
    padding: 0 10px 25px 49px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    font-weight: 500;
}

/* ----------------------------
 * 注意事項 & 最終CTA
 * ---------------------------- */
.notes-new-section {
    padding: 100px 0;
    background: #f5f8f6;
}

.notes-new-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin-bottom: 80px;
}

.notes-new-title {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notes-new-title::before {
    content: '!';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #999;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
}

.notes-new-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notes-new-list > li {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
    padding-left: 1.5em;
    position: relative;
}

.notes-new-list > li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: #ccc;
}

.notes-sub-list {
    list-style: none;
    padding: 10px 0 0 0;
}

.final-cta {
    text-align: center;
    padding: 60px 0;
}

.final-cta-lead {
    font-size: clamp(24px, 1vw, 36px);
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 40px;
}

.final-cta-btn-wrap {
    display: flex;
    justify-content: center;
}

/* ----------------------------
 * お問い合わせ
 * ---------------------------- */
.contact-new-area {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid #eee;
}

.contact-card {
    background: #f9fbf9;
    padding: 50px;
    border-radius: 30px;
    text-align: center;
}

.contact-card-title {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 40px;
}

.contact-tel-wrap {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 30px;
}

.contact-tel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-tel-label {
    font-size: 13px;
    font-weight: 700;
    color: #666;
}

.contact-tel {
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 900;
    color: #00a23e;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
}

.contact-time {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    font-weight: 500;
}

/* ----------------------------
 * フッター
 * ---------------------------- */
.footer {
    background: #222;
    padding: 80px 0 40px;
    color: #fff;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer-logo-wrap {
    text-align: center;
}

.footer-logo-svg {
    width: 150px;
    fill: #fff;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 12px;
    color: #888;
    letter-spacing: 2px;
}

.copyright {
    font-size: 11px;
    color: #555;
    letter-spacing: 1px;
}

/* ----------------------------
 * ページトップへ戻るボタン
 * ---------------------------- */
.fixbutton {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,162,62,0.4);
    transition: var(--transition);
}

.fixbutton::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--color-white);
    border-right: 2px solid var(--color-white);
    transform: rotate(-45deg) translateY(3px);
}

.fixbutton:hover {
    opacity: 1;
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

/* ----------------------------
 * アニメーション (Reveal)
 * ---------------------------- */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ----------------------------
 * ユーティリティ
 * ---------------------------- */
.sp-only { display: none; }

@media (max-width: 960px) {
    /* セット割: 2つまとめるとの縦並び対応 */
    .set-flex-row {
        flex-direction: column;
        gap: 40px;
    }
    .set-vertical-line {
        width: 80%;
        height: 0;
        border-left: none;
        border-top: 2px dotted #ccc;
    }
    /* サポートカード */
    .support-new-card {
        border-radius: 20px !important;
    }
    /* お問い合わせ */
    .contact-tel-wrap {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .sp-only { display: block; }
    .pc-only { display: none; }

    /* ガスアイコン */
    .gas-features-icons {
        gap: 20px;
    }
    .gas-features-item {
        width: 45% !important;
    }

    /* でんきメニューアイコン */
    .ele-menus-icons {
        gap: 20px;
    }
    .ele-menus-item {
        width: 45% !important;
    }

    /* セット割カードのパディング縮小 */
    .set-new-card {
        padding: 40px 20px !important;
    }
    .set-icons-wrap {
        gap: 10px;
    }
    .set-icon-item {
        width: 80px;
    }

    /* エネルギーサポートの文字サイズ */
    .support-text-area {
        padding: 40px 20px;
    }
    .support-zero {
        font-size: 60px !important;
    }
}
