@import url('https://fonts.googleapis.com/css2?family=Kosugi&family=Noto+Sans+JP:wght@100..900&display=swap');

/* 以前のカラーカスタム（既存の変数を活かす） */
:root {
    --color-dark: #222831;
    --color-accent: #00ADB5;
    --color-safe: #36D1DC;
    --color-cheap: #FFD369;
    --color-bg-light: #F7F7F7;
}


/* CSS Reset（簡潔版） */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* フォント */
body {
    font-family: 'Noto Sans JP', sans-serif;
    background: #fff;
    color: var(--color-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* セクション基本スタイル */

/* タイトル */
h1 {
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    color: #111827;
    margin-bottom: 3.5rem;
}

h3 {
    font-weight: 700;
    font-size: 1.25rem;
    color: #b91c1c;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
}

/* モバイルでは非表示（初期値は表示） */
/* .mobile-display-none {
    display: inline;
} */

@media(max-width: 768px) {
    .pc-display-only {
        display: none !important;
    }

    h2 {
        margin-bottom: 1rem;
    }
}


/* ヘッダー / コンテナ */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(2, 20, 40, 0.06);
    z-index: 60;
    padding: 0 1rem;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

/* ロゴ */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-family: 'Lato', sans-serif;
}

.logo-text {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    color: #222;
    font-size: 18px;
}

/* ナビ（デスクトップ） */
.desktop-nav {
    display: none;
    gap: 20px;
    align-items: center;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    padding: 6px 8px;
}

.nav-link:hover {
    color: var(--color-accent);
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 24px;
    font-weight: 700;
}

.btn--accent {
    background: var(--color-accent);
    color: #fff;
}


/* ハンバーガー */
.nav-toggle {
    background: transparent;
    border: 0;
    padding: 8px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.header-right {
    display: flex;
}

.header-cta-button {
    display: block;
    background: #f43f5e;
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.5rem 0.5rem;
    border-radius: 0.5rem;
    max-width: 450px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    margin: auto;
}

.nav-icon {
    width: 45px;
    height: 45px;
    color: #f43f5e;
}

.nav-icon--hidden {
    display: none !important;
}

/* モバイルメニュー（初期は非表示） */
.mobile-menu {
    display: block;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(2, 20, 40, 0.04);
    transform-origin: top;
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease, padding 300ms ease;
}

.mobile-menu.open {
    max-height: 1000px;
    /* 十分大きくして開く */
    padding: 14px 0;
}

.mobile-menu-inner {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-link {
    padding: 10px 12px;
    text-decoration: none;
    color: #1f2937;
    border-radius: 8px;
    display: block;
}

.mobile-link:hover {
    background: #f3f7fb;
}

.mobile-cta {
    text-align: center;
    background: var(--color-accent);
    color: #fff;
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 700;
}



/* ボタン共通 */
.btn--large {
    padding: 14px 28px;
    border-radius: 9999px;
    box-shadow: 0 12px 30px rgba(0, 173, 181, 0.2);
}


/* 既存のデザイン用クラス（再利用） */
.bg-main-hero {
    background: linear-gradient(135deg, rgba(3, 37, 65, 0.95) 0%, rgba(0, 173, 181, 0.95) 100%);
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px;
}

.card {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* セクション全体 */
#hero {
    background-color: #edfffb;
    /* 背景色をダークに */
    color: #000000;
    padding: 5rem 1rem 3rem 1rem;
    text-align: center;
}


.mobile-br {
    display: none;
}

/* 10だけ大きく */
.highlight-number {
    font-size: 5rem;
    display: inline-block;
}

/* 払いすぎ 上点線 */
.overpay {
    position: relative;
    display: inline-block;
    color: #ff0000;
    font-size: 3.2rem;
}

.overpay::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 14px;
    width: 83%;
    border-top: 20px dotted #ff0000;
}

/* サブテキスト */
.subtext {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 4rem;
    line-height: 1.6;
}

.highlight-price {
    font-size: 3rem;
    color: #9015fa;
    font-weight: 900;
}

@media (max-width: 768px) {
    .mobile-br {
        display: inline;
    }

    #hero {
        padding: 2rem 1rem 2rem 1rem;
    }

    #hero h1 {
        margin: 1rem auto;
    }

    .overpay-wrap {
        line-height: 2.6;
        /* ← 好きな値に調整（例：1.6〜2.4） */
        display: inline-block;
    }

    .overpay::before {
        content: "";
        position: absolute;
        top: 21px;
        left: 6px;
        width: 92%;
        border-top: 16px dotted #ff0000;
    }

    /* サブテキスト */
    .subtext {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .highlight-price {
        font-size: 2rem;
        color: #9015fa;
        font-weight: 800;
    }

}


.icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
    color: #dc2626;
}



/* コンテナ */
.features {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 4rem;
}

/* 各カード */
.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 230px;
}

/* アイコン円 */
.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #f43f5e;
    /* 赤系 */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

/* テキストボックス */
.text-box {
    margin-top: -25px;
    /* アイコン中央あたりからボックス開始 */
    background-color: #ffffff;
    padding: 1rem;
    padding-top: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    width: 100%;
    height: 120px;
    /* 高さ固定 */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* テキスト */
.text-box p {
    font-size: 1.5rem;
    /* サイズ変更 */
    font-weight: 700;
    margin: 0;
}

/* ハイライト部分 */
.text-box p span {
    color: #f43f5e;
    font-weight: 900;
}

@media (max-width: 768px) {

    /* テキストボックス */
    .features {
        display: flex;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    /* アイコン円 */
    .icon-circle {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}



/* セクション全体 */
#problems {
    background-color: #ffffff;
    padding: 2rem 1rem;
    text-align: center;
}

#problems .h2-highlight {
    position: relative;
    color: #ff4d4f;
    /* アクセントカラー */
    font-weight: 900;
    font-size: 3rem;

}

#problems .h2-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #ff4d4f, #ff9a6c);
    border-radius: 2px;
}

.mobile-br {
    display: none;
}

@media (max-width: 768px) {
    #problems {
        background-color: #ffffff;
        padding: 2rem 1rem 4rem 1rem;
        text-align: center;
    }

    .mobile-br {
        display: inline;
    }
}

/* グリッド */
.problems-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

/* 各カード */
.problem-card {
    width: 260px;
    display: flex;
    justify-content: center;
    position: relative;
}

/* 吹き出し型ボックス */
.speech-bubble {
    background: #f9fafb;
    border-radius: 2rem;
    padding: 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 吹き出しの三角形 */
.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px 15px 0 15px;
    border-style: solid;
    border-color: #f9fafb transparent transparent transparent;

}

/* タイトル */
.speech-bubble h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* テキスト */
.speech-bubble p {
    line-height: 1.6;
}

/* レスポンシブ */
@media(max-width: 768px) {
    .problems-grid {
        flex-direction: column;
        align-items: center;
    }
}



/* セクションごとの微妙な青系トーン */
#problems {
    background-color: #f0f9ff;
}

#faq {
    background-color: #eef9ff;
}

#contact {
    background: linear-gradient(180deg, #ffffff 0%, #f6fdff 100%);
}

/* レスポンシブ：デスクトップでデスクトップナビを表示し、モバイルメニューは非表示 */
@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }
}

/* ヘッダー上の余白分を本文に確保 */
body::before {
    content: "";
    display: block;
    height: 68px;
}

/* セクション全体 */
#solutions {
    background-color: #fff4e4;
    /* bg-color-bg-light */
    padding: 3rem 1rem;
}

/* h2 全体の強調 */
#solutions h2 {
    /* 大きめで存在感アップ */
    font-weight: 900;
    /* 力強く */
    line-height: 1.3;
    color: #002244;
    /* 文字全体の濃い紺で信頼感 */
    text-align: center;
    margin-bottom: 2.5rem;
}

/* キーワード強調 */
#solutions h2 .highlight {
    position: relative;
    color: #000;
    /* 蛍光ペンに負けないよう、黒でしっかり */
    font-size: 2.6rem;
    /* h2よりさらに少し大きくして主役感 */
    font-weight: 900;
    padding: 0 0.2em;
    /* 少しゆとり */
    z-index: 1;
}

/* 蛍光ペン風 下線 */
#solutions h2 .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.1em;
    width: 100%;
    height: 0.55em;
    /* 蛍光ペン感UP */
    background: rgba(255, 255, 0, 0.55);
    /* 少し濃くして目立たせる */
    z-index: -1;
    /* 文字の下に */
    border-radius: 0.15em;
}

/* ----------------------------------
   PC（デフォルト）デザイン
---------------------------------- */
.solutions-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* カード共通 */
.solution-card {
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 1.8rem 1.5rem;
    width: 250px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.solution-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .4rem;
}

.solution-card p {
    line-height: 1.6;
}

/* 色テーマ */
.solution-card.cheap .icon-wrap {
    background: #fff5e6;
    color: #d97706;
}

.solution-card.cheap h3 {
    color: #d97706;
    font-size: 1.5rem;
}

.solution-card.safe .icon-wrap {
    background: #e8f1ff;
    color: #2563eb;
}

.solution-card.safe h3 {
    color: #2563eb;
    font-size: 1.5rem;
}


.solution-card.secure .icon-wrap {
    background: #e9f9ee;
    color: #16a34a;
}

.solution-card.secure h3 {
    color: #16a34a;
    font-size: 1.5rem;
}

/* 注意書き */
.site-support-note {
    margin-top: 3rem;
    background: #f5faff;
    border: 4px solid #0077cc;
    padding: 1rem 1.2rem;
    border-radius: .4rem;
    color: #1a2a4a;
    line-height: 1.6;
    text-align: center;
}

/* =====================================
   SPデザイン（スマホ）
===================================== */
@media screen and (max-width: 768px) {

    .solutions-grid {
        flex-direction: column;
        gap: 1.4rem;
    }

    .solution-card {
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
        padding: 1.2rem;
        text-align: left;
        gap: 1rem;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
        border: 1px solid #eef1f6;
    }

    .icon-wrap {
        width: 96px;
        height: 49px;
        font-size: 1.4rem;

        margin: auto;
    }

    .solution-card h3 {
        font-size: 1.1rem;
    }

    .solution-card p {
        font-size: 0.93rem;
    }

    .site-support-note {
        margin-top: 2rem;
        background: #eef6ff;
    }
}

/* ───── できること・できないこと（おしゃれ版） ───── */
.capability-section {
    padding: 4rem 1.5rem;
    background: #f9fafb;
    /* 全体が柔らかくなる */
}

.capability-section h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    position: relative;
}

.capability-section h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4f8cff, #6fc8ff);
    display: block;
    margin: 0.6rem auto 0;
    border-radius: 2px;
}

.capability-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: 30px;
}

/* カード全体 */
.capability-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* グラデーションの薄い縁取り（今っぽさ演出） */
.capability-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(145deg, rgba(79, 140, 255, 0.2), rgba(111, 200, 255, 0.15));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}


/* 見出し */
.capability-card h3 {
    font-size: 1.25rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.02em;
    font-weight: 700;
    color: #222;
}

/* アイコンを少しおしゃれに */
.capability-card h3 i {
    font-size: 1.3rem;
    color: #4f8cff;
    opacity: 0.9;
}

/* リスト */
.capability-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capability-card li {
    padding: 9px 0;
    font-size: 0.97rem;
    letter-spacing: 0.01em;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.capability-card li:last-child {
    border-bottom: none;
}

/* OK（できる） */
.capability-card li.ok {
    color: #0a7f42;
    font-weight: 600;
}

/* NG（できない） */
.capability-card li.ng {
    color: #d64540;
    opacity: 0.85;
    font-weight: 500;
}


@media screen and (max-width: 768px) {
    .capability-grid {
        grid-template-columns: 1fr;
    }


}




/* ===========================
   FAQ 全体
=========================== */
#faq {
    background-color: #ffffff;
    padding: 3rem 1rem;
}

/* FAQ 見出しデザイン */
#faq h2 {
    font-weight: 800;
    color: #1a2a4a;
    /* 深めの紺色で信頼感 */
    margin-bottom: 4rem;
    position: relative;
    line-height: 1.3;
}

/* 下の細ライン（控えめな品の良い装飾） */
#faq h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 90%;
    /* 下線の長さ */
    height: 2px;
    background: rgba(0, 0, 0, 0.8);
    transform: translateX(-50%);
    /* 中央揃え */
    border-radius: 2px;
}


/* ===========================
   FAQ リスト
=========================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

/* ===========================
   FAQ カード
=========================== */
.faq-item {
    background: #ffffff;
    padding: 2.4rem 2rem;
    border-radius: 1.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item:hover::before {
    width: 12px;
}

/* ===========================
   Q タイトル
=========================== */
.faq-item h3 {
    font-weight: 800;
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.faq-item h3::before {
    content: "Q";
    display: inline-block;
    background: var(--color-accent);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    padding: 0.25rem 0.6rem;
    border-radius: 0.4rem;
    margin-right: 0.6rem;
}

/* ===========================
   ハイライト回答
=========================== */
.answer-highlight {
    font-weight: 800;
    font-size: 1.5rem;
    color: #f43f5e;
    margin-bottom: 0.7rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    text-align: left;
}

.answer-highlight::before {
    content: "A";
    display: inline-block;
    background: #f43f5e;
    color: white;
    font-weight: 900;
    font-size: 1rem;
    padding: 0.3rem 0.7rem;
    border-radius: 0.4rem;
    margin-right: 0.6rem;
}

/* 赤文字 */
.answer-highlight .text-red {
    color: #dc2626;
}

/* ===========================
   説明テキスト
=========================== */
.answer-text {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    padding-left: 2.1rem;
    /* Aラベルの分だけずらす */
    text-align: left;
}

/* ===========================
   レスポンシブ
=========================== */
@media (min-width: 768px) {

    .answer-highlight {
        font-size: 1.6rem;
    }
}



#pricing {
    background-color: #111827;
    /* bg-color-dark */
    color: #fff;
    padding: 5rem 1rem;
    text-align: center;
}

#pricing h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

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

.mobile-br {
    display: none;
}

@media (max-width: 768px) {

    .mobile-br {
        display: inline;
    }

    #pricing h2 {
        font-size: 1.5rem;
    }
}

.divider {
    width: 80px;
    height: 4px;
    background-color: #f43f5e;
    /* accent color */
    margin: 0 auto 3rem auto;
    border-radius: 9999px;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    color: #1f2937;
}

/* ================================
   PRICE CARD — BASE DESIGN
================================ */
.price-card {
    background: #ffffff;
    padding: 1.8rem 2.2rem;
    border-radius: 1.7rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    position: relative;
    flex: 1 1 300px;
    max-width: 350px;
    text-align: left;
    transition: .3s ease;
    border: 1px solid #f3f4f6;
}

/* ================================
   FEATURED — 金色で目立たせる
================================ */
.price-card.featured {
    border: 4px solid #fbbf24;
    box-shadow: 0 14px 32px rgba(251, 191, 36, 0.25);
}

/* “おすすめ” のバッジ */
.featured-label {
    position: absolute;
    top: -1.2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fbbf24;
    color: #111827;
    font-weight: 900;
    font-size: 1.2rem;
    padding: 0.35rem 1.7rem;
    border-radius: 9999px;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
    letter-spacing: .02em;
    white-space: nowrap;
}

/* ================================
   PRICE TEXT
================================ */
.price-subtitle {
    font-weight: 700;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.6rem;
}

/* カテゴリ（スタンダードプラン） */
.price-card .price-category {
    font-size: 1.1rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.price-title {
    font-size: 2.45rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #111827;
    line-height: 1.2;
}

.featured-price {
    color: #f43f5e;
    /* 赤で主要プランを強調 */
}

.price-desc {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.7rem;
    color: #374151;
}

/* ================================
   LIST
================================ */
.price-list {
    list-style: none;
    padding-top: 1.2rem;
    border-top: 1px solid #e5e7eb;
    margin-top: 1rem;
}

.price-list li {
    margin-bottom: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    color: #1f2937;
}

/* チェックマーク */
.check {
    color: #f43f5e;
    margin-right: 0.6rem;
    font-weight: 900;
    font-size: 1rem;
}

/* 未対応項目 */
.not-included {
    color: #9ca3af;
    font-weight: 500;
}


.spot-note {
    margin-top: 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}

.accent-text {
    color: #f43f5e;
}

@media(max-width: 768px) {
    .price-card.featured {
        order: -1;
        /* 他のカードより先に表示 */
    }

    .spot-note {
        margin-top: 1rem;
    }
}



#cta {
    background: linear-gradient(135deg, #fef3f2, #fff1f3);
    padding: 5rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 100, 120, 0.15) 0%, transparent 60%);
    animation: rotate 15s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* 内部コンテンツ */
.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

/* 見出し */
#cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #111827;
}

#cta .highlight {
    background: linear-gradient(120deg, #f43f5e, #e11d48);
    color: #fff;
    padding: 0 0.8rem;
    border-radius: 0.3rem;
}

/* サブテキスト */
#cta .subtext {
    font-size: 1.05rem;
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ボタン */
.cta-button {
    display: block;
    background: linear-gradient(135deg, #f43f5e, #e11d48);
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    padding: 1.2rem 3rem;
    border-radius: 0.75rem;
    max-width: 450px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-align: center;
    margin: 2rem auto;
}

.cta-button::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(45deg) translate(-100%, -100%);
    transition: all 0.5s ease;
}

.cta-button:hover::after {
    transform: rotate(45deg) translate(0%, 0%);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

/* 注意書き */
.cta .note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
}

/* SP調整 */
@media(max-width: 768px) {
    #cta h2 {
        font-size: 2rem;
        line-height: 1.5;
    }

    .cta-button {
        font-size: 1.15rem;
        padding: 1rem 2.5rem;
    }
}


.note {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}


/* モバイル用レイアウト */
@media (max-width: 768px) {


    /* ナビゲーション */
    .desktop-nav {
        display: none;
        /* デスクトップナビを非表示 */
    }

    .mobile-menu {
        display: block;
        /* モバイルメニューを表示 */
    }

    /* セクション基本スタイル */
    section {
        padding: 20px;
        /* セクションの余白 */
    }

    /* タイトル */
    h1 {
        font-size: 1.8rem;
        /* タイトルのサイズ */
        margin-bottom: 1rem;
        /* タイトルの下の余白 */
    }

    h2 {
        font-size: 1.5rem;
        /* h2のサイズを調整 */
    }

    /* ボタン */
    .btn {
        width: 100%;
        /* ボタンを全幅に */
        padding: 12px;
        /* ボタンのパディング */
    }

    /* グリッド */
    .problems-grid,
    .solutions-grid,
    .pricing-grid {
        flex-direction: column;
        /* グリッドを縦に並べる */
        align-items: center;
        /* 中央揃え */
    }

    /* 各カード */
    .problem-card,
    .solution-card,
    .price-card {
        width: 90%;
        /* カードの幅を90%に */
        margin-bottom: 20px;
        /* カードの下の余白 */
    }

    /* フォーム */
    form input[type="text"],
    form input[type="email"],
    form input[type="tel"],
    form textarea {
        width: 100%;
        /* フォーム要素を全幅に */
        padding: 12px 14px;
        /* フォーム要素のパディング */
        border-radius: 8px;
        /* フォーム要素の角を丸く */
        border: 1px solid rgba(3, 37, 65, 0.06);
        /* フォーム要素のボーダー */
        font-size: 15px;
        /* フォーム要素のフォントサイズ */
    }

    /* CTAセクション */
    #cta {
        padding: 3rem 1rem;
        /* CTAセクションのパディングを調整 */
    }

    /* FAQセクション */
    #faq {
        padding: 2.5rem 1rem;
        /* FAQセクションのパディングを調整 */
    }

    /* 価格プランセクション */
    #pricing {
        padding: 3rem 1rem;
        /* 価格プランセクションのパディングを調整 */
    }


}

/* フッター全体 */
.site-footer {
    background-color: #ffffff;
    color: #374151;
    padding: 1.5rem 1rem;
    text-align: center;
    font-size: 0.875rem;
    border-top: 1px solid #e5e7eb;
}

/* 内部コンテナ */
.site-footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.8;
}

/* コピーライト */
.footer-copy {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

/* 運営会社リンク */
.footer-company {
    font-size: 0.8rem;
    color: #6b7280;
}

.footer-company a {
    color: #f43f5e;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-company a:hover {
    color: #e11d48;
}

/* SP対応 */
@media screen and (max-width: 768px) {
    .site-footer {
        font-size: 0.8rem;
        padding: 1rem 1rem;
    }

    .footer-company {
        margin-top: 0.3rem;
    }
}