/* ===============================
   じしゃモバ沖縄 LP 基本設定
=============================== */

:root {
    --pink-bg: #F57D7D80;
    --blue-bg: #f3f8ff;

    --pink-main: #F47C86;
    --blue-main: #1576E5;

    --text-main: #333333;
    --text-sub: #666666;

    --card-bg: #ffffff;
    --border-color: #dbeafe;
    --radius: 18px;
    --shadow: 0 8px 20px rgba(21, 118, 229, 0.10);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: sans-serif;
    color: var(--text-main);
    background: #ffffff;
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* ===============================
   共通レイアウト
=============================== */

main {
    width: 100%;
}

section {
    padding: 60px 20px;
}

section>* {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}


/* ===============================
   ヘッダー
=============================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e5eaf0;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-logo {
    display: block;
}

.header-logo img {
    height: 80px;
    width: auto;
    display: block;
}

.header-line-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 12px;
    background: linear-gradient(180deg, #08d85f 0%, #06C755 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 24px;
    line-height: 1.3;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(6, 199, 85, 0.35);
    border: none;
}

.header-line-button:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}


/* ===============================
   ヒーロー画像
=============================== */

.hero-section {
    padding: 0;
}

.hero-section>* {
    max-width: none;
}

.hero-section img {
    width: 100%;
    margin-top: -20px;
}


/* ===============================
   about 自社ローン式スマホ販売とは
=============================== */

.about-section {
    background: #ffffff;
    padding: 70px 20px 40px;
}

.about-section h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 auto 32px;
    color: var(--blue-main);
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    line-height: 1.4;
}

.about-section h2::before,
.about-section h2::after {
    content: "";
    width: 70px;
    height: 3px;
    background: var(--blue-main);
    border-radius: 999px;
}

.about-section p {
    font-size: 20px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.03em;
}

.about-section p+p {
    margin-top: 26px;
    font-size: 18px;
    font-weight: 500;
    color: #e60000;
}


/* ===============================
   recommend こんな方におすすめ
=============================== */

.recommend-section {
    background: #ffffff;
    padding: 0 20px 80px;
}

.recommend-section h2 {
    margin: 0 auto 24px;
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.4;
}

.recommend-section h2::before {
    content: "＼";
    margin-right: 12px;
    color: #000000;
    font-weight: 900;
}

.recommend-section h2::after {
    content: "／";
    margin-left: 12px;
    color: #000000;
    font-weight: 900;
}

.recommend-section ul {
    max-width: 780px;
    margin: 0 auto;
    padding: 32px 60px;
    background: #ffffff;
    border: 3px solid var(--blue-main);
    border-radius: 16px;
    list-style: none;
    box-shadow: 0 8px 18px rgba(21, 118, 229, 0.12);
}

.recommend-section li {
    position: relative;
    padding-left: 44px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.9;
    margin-bottom: 10px;
}

.recommend-section li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 22px;
    height: 22px;
    border: 3px solid #111111;
    background: #ffffff;
}

.recommend-section li::after {
    content: "✓";
    position: absolute;
    left: 5px;
    top: -3px;
    color: #e60000;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    text-shadow: 1px 1px 0 #111111;
}

.recommend-section li:last-child {
    margin-bottom: 0;
}


/* ===============================
   merit じしゃモバのメリット
=============================== */

.merit-section {
    background: var(--blue-bg);
    padding: 70px 20px;
}

.merit-section h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 auto 80px;
    color: var(--blue-main);
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    line-height: 1.4;
}

.merit-section h2::before,
.merit-section h2::after {
    content: "";
    width: 70px;
    height: 3px;
    background: var(--blue-main);
    border-radius: 999px;
}

.merit-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.merit-card {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.merit-card::before {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--pink-main);
    color: #ffffff;
    font-size: 34px;
    font-weight: 800;
    line-height: 72px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 6px 14px rgba(244, 124, 134, 0.35);
}

.merit-card:nth-child(1)::before {
    content: "1";
}

.merit-card:nth-child(2)::before {
    content: "2";
}

.merit-card:nth-child(3)::before {
    content: "3";
}

.merit-card:nth-child(4)::before {
    content: "4";
}

.merit-card img {
    width: 100%;
}

.merit-card p {
    padding: 24px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.8;
}


/* ===============================
   flow ご利用の流れ
=============================== */

.flow-section {
    background: #ffffff;
    padding: 70px 20px;
}

.flow-section h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 auto 50px;
    color: var(--blue-main);
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    line-height: 1.4;
}

.flow-section h2::before,
.flow-section h2::after {
    content: "";
    width: 70px;
    height: 3px;
    background: var(--blue-main);
    border-radius: 999px;
}

.flow-list {
    display: grid;
    gap: 28px;
}

.step-card {
    display: flex;
    align-items: center;
    gap: 28px;
    background: #ffffff;
    border: 3px solid var(--blue-main);
    border-radius: 18px;
    padding: 26px 32px;
    box-shadow: var(--shadow);
}

.step-icon {
    flex: 0 0 160px;
}

.step-icon img {
    width: 160px;
    height: auto;
}

.step-text {
    flex: 1;
}

.step-label {
    display: inline-block;
    margin: 0 0 8px;
    padding: 4px 14px;
    border-radius: 999px;
    background: var(--pink-main);
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
}

.step-text h3 {
    margin: 0 0 10px;
    color: var(--blue-main);
    font-size: 24px;
    font-weight: 800;
}

.step-text p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
}


/* ===============================
   FAQ よくある質問
=============================== */

.faq-section {
    background: var(--blue-bg);
    padding: 70px 20px;
}

.faq-section h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 auto 50px;
    color: var(--blue-main);
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    line-height: 1.4;
}

.faq-section h2::before,
.faq-section h2::after {
    content: "";
    width: 70px;
    height: 3px;
    background: var(--blue-main);
    border-radius: 999px;
}

.faq-list {
    display: grid;
    gap: 20px;
}

.faq-item {
    background: #ffffff;
    border: 2px solid var(--blue-main);
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    margin: 0 0 12px;
    color: var(--blue-main);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.6;
}

.faq-item p {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.9;
}

/* ===============================
   operator 運営情報
=============================== */

.operator-section {
    background: #ffffff;
    padding: 70px 20px 50px;
}

.operator-section h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 auto 50px;
    color: var(--text-main);
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    line-height: 1.4;
}

.operator-section h2::before,
.operator-section h2::after {
    content: "";
    width: 70px;
    height: 3px;
    background: var(--text-main);
    border-radius: 999px;
}

.operator-table {
    max-width: 760px;
    margin: 0 auto;
}

.operator-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid #cccccc;
}

.operator-label {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-main);
}

.operator-value {
    font-size: 17px;
    font-weight: 500;
    color: var(--text-main);
}

.operator-note {
    max-width: 760px;
    margin: 24px auto 0;
    font-size: 14px;
    color: var(--text-sub);
    line-height: 1.8;
}
/* ===============================
   privacy 個人情報保護方針
=============================== */

.privacy-section {
    background: #ffffff;
    padding: 80px 20px;
}

.privacy-section h1 {
    max-width: 900px;
    margin: 0 auto 40px;
    color: var(--blue-main);
    font-size: 32px;
    font-weight: 800;
    text-align: center;
}

.privacy-section h2 {
    max-width: 900px;
    margin: 36px auto 14px;
    color: var(--blue-main);
    font-size: 22px;
    font-weight: 800;
}

.privacy-section p,
.privacy-section ul {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    line-height: 2;
}

.privacy-section ul {
    padding-left: 24px;
}

.privacy-section li {
    margin-bottom: 6px;
}

.privacy-date {
    margin-top: 40px;
    color: var(--text-sub);
    font-size: 14px;
    text-align: right;
}
/* ===============================
   footer フッター
=============================== */

.site-footer {
    background: #ffffff;
    border-top: 1px solid #e5eaf0;
    padding: 56px 20px 44px;
    text-align: center;
}

.footer-logo {
    margin: 0 0 22px !important;
}

.footer-logo img {
    height: 52px;
    width: auto;
    margin: 0 auto;
    display: block;
}

.site-footer p {
    margin: 0;
}

.site-footer p:has(a) {
    margin-bottom: 14px;
}

.site-footer a {
    color: var(--text-sub);
    font-size: 14px;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--blue-main);
}

.copyright {
    margin-top: 0 !important;
    color: var(--text-sub);
    font-size: 12px;
}


/* ===============================
   スマホ表示調整
=============================== */

.sp-br {
    display: none;
}

@media (max-width: 768px) {
    .sp-br {
        display: inline;
    }

    section {
        padding: 50px 20px;
    }

    .header-inner {
        padding: 6px 12px;
        gap: 8px;
    }

    .header-logo img {
        height: 38px;
    }

    .header-line-button {
        padding: 8px 12px;
        font-size: 13px;
        border-radius: 8px;
        box-shadow: 0 5px 12px rgba(6, 199, 85, 0.28);
    }

    .hero-section {
        padding: 0;
    }

    .hero-section img {
        margin-top: 0;
    }

    .about-section h2,
    .merit-section h2,
    .flow-section h2,
    .faq-section h2 {
        font-size: 26px;
        gap: 12px;
    }

    .about-section h2::before,
    .about-section h2::after,
    .merit-section h2::before,
    .merit-section h2::after,
    .flow-section h2::before,
    .flow-section h2::after,
    .faq-section h2::before,
    .faq-section h2::after {
        width: 42px;
    }

    .about-section p {
        font-size: 16px;
        line-height: 2;
    }

    .about-section p+p {
        font-size: 14px;
    }

    .recommend-section {
        padding: 0 20px 60px;
    }

    .recommend-section h2 {
        font-size: 26px;
    }

    .recommend-section ul {
        padding: 26px 28px;
    }

    .recommend-section li {
        font-size: 17px;
        padding-left: 40px;
    }

    .merit-list {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .merit-card p {
        font-size: 16px;
    }

    .step-card {
        flex-direction: column;
        text-align: center;
        padding: 28px 22px;
    }

    .step-icon {
        flex: none;
    }

    .step-icon img {
        width: 120px;
        margin: 0 auto;
    }

    .step-text h3 {
        font-size: 22px;
    }

    .step-text p {
        font-size: 16px;
    }

    .faq-item {
        padding: 22px 20px;
    }

    .faq-item h3 {
        font-size: 18px;
    }

    .faq-item p {
        font-size: 15px;
    }

    .footer-logo img {
        height: 42px;
    }

    .operator-section {
        padding: 50px 20px 36px;
    }

    .operator-section h2 {
        font-size: 26px;
        gap: 12px;
        margin-bottom: 34px;
    }

    .operator-section h2::before,
    .operator-section h2::after {
        width: 42px;
    }

    .operator-row {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 16px 0;
    }

    .operator-label {
        font-size: 15px;
    }

    .operator-value {
        font-size: 15px;
    }

    .operator-note {
        font-size: 13px;
    }
}