/* Start custom CSS for html, class: .elementor-element-8bca791 *//* 基本スタイル */
:root {
    --main-color: #FF0000;
    /* YouTubeレッド */
    --accent-color: #ffc107;
    /* オレンジ */
    --text-color: #333333;
    --bg-color-light: #FFFFFF;
    --bg-color-dark: #f5f5f5;
    --border-color: #e0e0e0;
}
.fixed-cta{
    display: none;
}
body {
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    margin: 0;
    color: var(--text-color) !important;
    background-color: var(--bg-color-light);
    line-height: 1.8;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

h1,
h2,
h3 {
    font-weight: 700;
    color: var(--text-color) !important;
    line-height: 1.4;
    border: none !important;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    background: none !important;
}

h1::after ,
h2::after {
        content: none !important;
}

h2 .highlight {
    background: linear-gradient(transparent 60%, var(--main-color) 60% 90%, transparent 90%);
    background-size: 100% 1.2em;
    /* マーカーの高さを調整 */
    padding: 0 0.2em;
}

p {
    font-size: 1rem;
}

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

section:not(.elementor-section-height-default) {
    padding: 60px 0;
}

main.lp section:nth-of-type(odd) {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    background-color: var(--bg-color-dark);
}

ul {
    border: none !important;
    background: none !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
}

li {
    font-weight: normal !important;
    margin: 0 !important;
}

li::after {
    content: none !important;
}

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

/* ファーストビュー */
.hero {
    background-color: var(--bg-color-light);
    padding: 80px 20px;
    text-align: center;
}

.hero .catch-copy {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--main-color);
    margin: 0;
    line-height: 1.3;
}

.hero .main-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 10px 0 20px;
}

.hero .sub-copy {
    background-color: var(--bg-color-dark);
    display: inline-block;
    padding: 15px 25px;
    border-radius: 8px;
    margin: 20px 0;
}

.hero .sub-copy p {
    margin: 5px 0;
    font-weight: 500;
}

.mockup-img {
    max-width: 100%;
    width: 700px;
    height: auto;
    margin: 30px auto;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* CTAボタン */
.cta-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
}

.cta-button:hover {
    color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.cta-button.primary {
    background-color: var(--accent-color);
}

.cta-button.secondary {
    color: #fff;
    background-color: var(--main-color);
}

.cta-label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 5px;
}

/* 新規登録特典 */
.benefit-section {
    background-color: #fffde7;
    border: 2px dashed var(--accent-color);
    border-radius: 12px;
    padding: 30px;
    margin-top: 50px;
}

.benefit-section h3 {
    color: var(--accent-color) !important;
    text-align: center;
    font-size: 1.5rem;
    margin-top: 0;
}

.benefit-section .flow-list {
    max-width: 380px;
    padding: 0 !important;
    margin: 0 auto !important;
    counter-reset: benefit-counter !important;
    border: none !important;
    background: none !important;
}

.benefit-section .flow-list li {
    list-style: none !important;
    position: relative !important;
    padding-left: 35px;
    margin-bottom: 15px !important;
    font-weight: 500 !important;
    border-bottom: 1px dashed var(--accent-color);
}

.benefit-section .flow-list li::before {
    counter-increment: benefit-counter !important;
    content: counter(benefit-counter) !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 25px !important;
    height: 25px !important;
    background-color: var(--accent-color);
    color: white !important;
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    font-weight: 700;
}

.benefit-note {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.benefit-note p {
    margin: 5px 0;
}

.benefit-note .price-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--main-color);
}

/* 問題提起セクション */
.problem-list {
    list-style: none;
    padding: 0;
    max-width: 500px;
    margin: 0 auto;
}

.problem-list li {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23333"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1.5 13.5l-3-3 1.41-1.41L10.5 13.59 16.09 8l1.41 1.41-7 7z" opacity="0.1"/></svg>') no-repeat left center;
    background-size: 24px;
    padding: 15px 15px 15px 40px;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 2px dashed #a1a1a1;
}

.problem-list li:last-child {
    border-bottom: none;
}

/* 解決策・商品紹介・ベネフィット */
.feature-grid,
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.feature-card,
.benefit-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.feature-card .icon,
.benefit-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff0000, #ff6600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-card .icon i,
.benefit-card .icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3,
.benefit-card h3 {
    font-size: 1.3rem;
    text-align: center;
    margin-top: 0 !important;
    margin-bottom: 10px !important;
}

.benefit-card ul {
    text-align: left;
    padding-left: 20px;
}

.benefit-card li {
    margin-bottom: 8px;
    color: #666;
}

.benefit-card strong {
    color: #ff0000;
}

/* 対象者セクション */
.target-list {
    list-style: none;
    padding: 0 !important;
    margin: 0 auto !important;
    max-width: 580px;
}

.target-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    position: relative;
}

.target-list li i {
    padding-right: 1em;
}

/* 使用方法セクション */
.flow-section {
    background: white;
}

.flow-steps {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step::after {
    content: "";
    position: absolute;
    top: 50px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: #ff0000;
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff0000, #ff6600);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 auto 30px;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* 価格セクション */
.price-box {
    background-color: #fff;
    border: 3px solid var(--main-color);
    border-radius: 12px;
    padding: 40px;
    margin: 0 auto 40px;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.15);
}

.price-box .price-label {
    font-size: 1.1rem;
    font-weight: 500;
}

.price-box .price-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--main-color);
    margin: 10px 0;
    line-height: 1;
}

.price-box .price-value span {
    font-size: 1.5rem;
    font-weight: 700;
}

.price-box .price-note {
    font-weight: 500;
}

.price-box .coconala-benefit {
    background-color: var(--accent-color);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 700;
    font-size: 1.2rem;
}

/* 注意事項・FAQ */
.notice-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

.notice-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.notice-list li::before {
    content: '※';
    position: absolute;
    left: 0;
    color: var(--main-color);
    font-weight: 700;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-q {
    font-weight: 700;
    position: relative;
    padding-left: 35px;
}

.faq-q::before {
    content: 'Q.';
    position: absolute;
    left: 0;
    color: var(--main-color);
    font-size: 1.2rem;
}

.faq-a {
    position: relative;
    padding-left: 35px;
    margin-top: 10px;
}

.faq-a::before {
    content: 'A.';
    position: absolute;
    left: 0;
    color: var(--text-color);
    font-weight: 700;
}

/* フッター */
.footer {
    text-align: center;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    h2 {
        font-size: 1.8rem;
    }

    .hero .catch-copy {
        font-size: 2rem;
    }

    .hero .main-title {
        font-size: 1.5rem;
    }

    .price-box .price-value {
        font-size: 2.5rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .container {
        padding: 0 20px;
    }

    section {
        padding: 40px 0;
    }

    .benefit-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .flow-steps {
        flex-direction: column;
        gap: 60px;
    }

    .step::after {
        display: none;
    }
}/* End custom CSS */