/* ==========================================================================
   地方競馬AI — サイトリニューアル用スタイル
   旧テーマ(l-header/l-footer/sec-*)の見た目には依存せず、"cka-" 名前空間で
   完結させる。JSフック(.l-hMenu/.l-menu/.l-mClose/.go-top)のクラス名のみ
   既存の common.min.js の開閉ロジックのために残す。
   ========================================================================== */

:root {
    --cka-green: #0f2e1c;
    --cka-green-mid: #163d24;
    --cka-green-dark: #081b10;
    --cka-gold: #c9a961;
    --cka-gold-light: #e6cf8f;
    --cka-cream: #f7f4ea;
    --cka-text: #24291f;
    --cka-radius: 14px;
}

body.cka-body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
    color: var(--cka-text);
    background: #fff;
}

.cka * {
    box-sizing: border-box;
}

/* Utilities -------------------------------------------------------------- */
.pc-only {
    display: block;
}
.sp-only {
    display: none;
}
@media (max-width: 767px) {
    .pc-only {
        display: none !important;
    }
    .sp-only {
        display: block !important;
    }
}
li.pc-only {
    display: inline-block;
}
@media (max-width: 767px) {
    li.pc-only {
        display: none !important;
    }
}

.cka .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 25px;
}

.cka .cka-hd {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    letter-spacing: 0.24em;
    color: var(--cka-gold);
    font-size: 12px;
    font-weight: 700;
    margin: 0 0 8px;
}
.cka .cka-hd::before,
.cka .cka-hd::after {
    content: "";
    width: 16px;
    height: 16px;
    flex: none;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><rect x='0' y='0' width='4' height='4'/><rect x='8' y='0' width='4' height='4'/><rect x='4' y='4' width='4' height='4'/><rect x='12' y='4' width='4' height='4'/><rect x='0' y='8' width='4' height='4'/><rect x='8' y='8' width='4' height='4'/><rect x='4' y='12' width='4' height='4'/><rect x='12' y='12' width='4' height='4'/></svg>") center / contain no-repeat;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><rect x='0' y='0' width='4' height='4'/><rect x='8' y='0' width='4' height='4'/><rect x='4' y='4' width='4' height='4'/><rect x='12' y='4' width='4' height='4'/><rect x='0' y='8' width='4' height='4'/><rect x='8' y='8' width='4' height='4'/><rect x='4' y='12' width='4' height='4'/><rect x='12' y='12' width='4' height='4'/></svg>") center / contain no-repeat;
    opacity: 0.85;
}

.cka .cka-ttl {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: var(--cka-green);
    margin: 0 0 44px;
}

/* ==========================================================================
   Header / navigation
   ========================================================================== */
.cka-nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--cka-green);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.cka-nav__inner {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 25px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.cka-nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
}
.cka-nav__brand-mark {
    color: var(--cka-gold);
    display: flex;
}
.cka-nav__brand-txt {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}
.cka-nav__brand-txt small {
    display: block;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.14em;
    color: var(--cka-gold-light);
}
.cka-nav__gnavi {
    flex: 1;
    display: flex;
    justify-content: center;
}
.cka-nav__gnavi ul {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.cka-nav__gnavi a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    padding-bottom: 4px;
}
.cka-nav__gnavi a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--cka-gold);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}
.cka-nav__gnavi a:hover::after {
    transform: scaleX(1);
}
.cka-nav__cta {
    background: linear-gradient(90deg, var(--cka-gold) 0%, var(--cka-gold-light) 100%);
    color: var(--cka-green-dark);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    padding: 11px 24px;
    border-radius: 999px;
    white-space: nowrap;
}

.cka-nav__burger {
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
}
.cka-nav__burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}
.cka-nav__burger span:nth-child(1) { top: 0; }
.cka-nav__burger span:nth-child(2) { top: 10px; }
.cka-nav__burger span:nth-child(3) { top: 20px; }
.cka-nav__burger.is-active span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
}
.cka-nav__burger.is-active span:nth-child(2) {
    opacity: 0;
}
.cka-nav__burger.is-active span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
}
/* ドロワー表示中はヘッダー側のボタン(×に変形したもの)を隠し、
   閉じる操作をドロワー内の「閉じる」ボタン1箇所に統一する。 */
body.is-layerOn .cka-nav__burger {
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 1023px) {
    .cka-nav__gnavi,
    .cka-nav__cta {
        display: none;
    }
    .cka-nav__burger {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}
@media (min-width: 1024px) {
    .cka-nav__burger {
        display: none;
    }
}

/* Mobile drawer ------------------------------------------------------------*/
.cka-drawer {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: auto;
    width: min(78vw, 300px);
    height: auto;
    max-height: calc(100vh - 72px);
    background: var(--cka-green);
    z-index: 300;
    padding: 28px 28px 32px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    border-radius: 0 0 0 var(--cka-radius);
    box-shadow: -10px 14px 34px rgba(0, 0, 0, 0.3);
}
.cka-drawer.is-active {
    transform: translateX(0);
}
.cka-drawer__nav {
    list-style: none;
    margin: 8px 0 28px;
    padding: 0;
}
.cka-drawer__nav li + li {
    margin-top: 22px;
}
.cka-drawer__nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
}
.cka-drawer__cta {
    display: block;
    text-align: center;
    background: linear-gradient(90deg, var(--cka-gold) 0%, var(--cka-gold-light) 100%);
    color: var(--cka-green-dark);
    font-weight: 700;
    text-decoration: none;
    padding: 14px;
    border-radius: 999px;
}
.cka-drawer__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 30px;
    height: 22px;
    margin: 0;
    cursor: pointer;
}
.cka-drawer__close::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 22px;
    margin: 0;
    background-color: #fff;
    background-image: none;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 22'><path d='M5 3L25 19M25 3L5 19' stroke='black' stroke-width='2.6' stroke-linecap='round' fill='none'/></svg>") center / contain no-repeat;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 22'><path d='M5 3L25 19M25 3L5 19' stroke='black' stroke-width='2.6' stroke-linecap='round' fill='none'/></svg>") center / contain no-repeat;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.cka-hero {
    position: relative;
    background: radial-gradient(120% 140% at 85% 10%, var(--cka-green-mid) 0%, var(--cka-green) 45%, var(--cka-green-dark) 100%);
    color: #fff;
    padding: 88px 0 96px;
    overflow: hidden;
}
.cka-hero__glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 85%, rgba(201, 169, 97, 0.18) 0%, transparent 60%),
        repeating-linear-gradient(100deg, rgba(230, 207, 143, 0.05) 0 2px, transparent 2px 90px);
    pointer-events: none;
}
.cka-hero__inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 56px;
}
.cka-hero__copy {
    flex: 1.1;
}
.cka-hero__eyebrow {
    color: var(--cka-gold-light);
    letter-spacing: 0.32em;
    font-size: 13px;
    margin: 0 0 16px;
}
.cka-hero__ttl {
    font-size: 34px;
    line-height: 1.55;
    font-weight: 700;
    margin: 0 0 36px;
}
.cka-hero__pillars {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}
.cka-hero__pillars li {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 169, 97, 0.6);
    color: var(--cka-gold-light);
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
}
.cka-hero__pillars-no {
    color: var(--cka-gold);
    margin-right: 6px;
    font-family: "Playfair Display", serif;
}
.cka-hero__visual {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}
.cka-hero__mainvisual {
    position: relative;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
}
.cka-hero__mainvisual img {
    display: block;
    width: 100%;
    height: auto;
}
.cka-hero__badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 169, 97, 0.6);
    border-radius: 999px;
    padding: 8px 16px;
    color: var(--cka-gold-light);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    backdrop-filter: blur(4px);
}
.cka-hero__badge-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cka-gold-light), var(--cka-gold));
    color: var(--cka-green-dark);
    font-size: 10px;
    font-weight: 800;
}
.cka-hero__badge--1 { top: 6%; left: 0; }
.cka-hero__badge--2 { top: 46%; left: 26%; }
.cka-hero__badge--3 { bottom: 10%; right: 2%; }
@media (max-width: 900px) {
    .cka-hero__inner {
        flex-direction: column;
        text-align: center;
    }
    .cka-hero__pillars {
        justify-content: center;
    }
    .cka-hero__ttl {
        font-size: 24px;
    }
    .cka-hero__mainvisual {
        max-width: 420px;
        margin: 24px auto 0;
    }
    .cka-hero__badge {
        font-size: 10px;
        padding: 5px 10px;
    }
    .cka-hero__badge-no {
        width: 16px;
        height: 16px;
        font-size: 9px;
    }
    .cka-hero__badge--1 { top: 2%; left: 0; }
    .cka-hero__badge--2 { top: 44%; left: 20%; }
    .cka-hero__badge--3 { bottom: 6%; right: 0; }
}

/* ==========================================================================
   AIの特徴
   ========================================================================== */
.cka-features {
    background: var(--cka-cream);
    padding: 80px 0;
}
.cka-features__body {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 56px;
}
.cka-features__visual {
    flex: 0 0 300px;
}
.cka-features__card {
    background: linear-gradient(160deg, var(--cka-green-mid) 0%, var(--cka-green-dark) 100%);
    border: 1px solid rgba(201, 169, 97, 0.35);
    border-radius: var(--cka-radius);
    padding: 26px 28px;
    box-shadow: 0 20px 50px rgba(15, 46, 28, 0.25);
}
.cka-features__card-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--cka-gold-light);
    margin: 0 0 18px;
}
.cka-features__card-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    padding: 14px 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
}
.cka-features__card-row:first-of-type {
    border-top: none;
}
.cka-features__card-icon {
    flex: none;
    width: 22px;
    height: 22px;
    background-color: var(--cka-gold);
}
.cka-features__card-icon--clock {
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='9' fill='none' stroke='black' stroke-width='2'/><path d='M12 7v5l3.5 2' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='9' fill='none' stroke='black' stroke-width='2'/><path d='M12 7v5l3.5 2' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
}
.cka-features__card-icon--data {
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect x='3' y='10' width='4' height='11' rx='1'/><rect x='10' y='4' width='4' height='17' rx='1'/><rect x='17' y='13' width='4' height='8' rx='1'/></svg>") center / contain no-repeat;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect x='3' y='10' width='4' height='11' rx='1'/><rect x='10' y='4' width='4' height='17' rx='1'/><rect x='17' y='13' width='4' height='8' rx='1'/></svg>") center / contain no-repeat;
}
.cka-features__card-icon--trophy {
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 3h12v3a6 6 0 0 1-4.5 5.81V14a1.5 1.5 0 0 0 1.5 1.5h1v2H8v-2h1A1.5 1.5 0 0 0 10.5 14v-2.19A6 6 0 0 1 6 6V3z'/><path d='M6 4H3v2a4 4 0 0 0 3.2 3.92' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round'/><path d='M18 4h3v2a4 4 0 0 1-3.2 3.92' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round'/><rect x='7' y='19' width='10' height='2' rx='1'/></svg>") center / contain no-repeat;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 3h12v3a6 6 0 0 1-4.5 5.81V14a1.5 1.5 0 0 0 1.5 1.5h1v2H8v-2h1A1.5 1.5 0 0 0 10.5 14v-2.19A6 6 0 0 1 6 6V3z'/><path d='M6 4H3v2a4 4 0 0 0 3.2 3.92' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round'/><path d='M18 4h3v2a4 4 0 0 1-3.2 3.92' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round'/><rect x='7' y='19' width='10' height='2' rx='1'/></svg>") center / contain no-repeat;
}
.cka-features__text {
    flex: 1;
    min-width: 0;
}
.cka-features__sub {
    font-size: 20px;
    font-weight: 700;
    color: var(--cka-green);
    margin: 0 0 20px;
    text-align: left;
}
.cka-features__lead {
    font-size: 15px;
    line-height: 1.9;
    color: var(--cka-text);
    margin: 0 0 32px;
}
@media (max-width: 900px) {
    .cka-features__body {
        flex-direction: column;
        gap: 32px;
    }
    .cka-features__visual {
        flex: none;
        width: 100%;
        max-width: 320px;
    }
    .cka-features__sub {
        text-align: center;
    }
}
.cka-features__lst {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 20px;
}
.cka-features__lst li {
    position: relative;
    background: #fff;
    border-left: 4px solid var(--cka-gold);
    border-radius: 8px;
    padding: 22px 26px 22px 66px;
}
.cka-features__lst li::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 22px;
    width: 26px;
    height: 26px;
    background-color: var(--cka-gold);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2a8 8 0 0 0-8 8v9.5a1.5 1.5 0 0 0 1.5 1.5h1a1.5 1.5 0 0 0 1.5-1.5V13a4 4 0 0 1 8 0v6.5a1.5 1.5 0 0 0 1.5 1.5h1a1.5 1.5 0 0 0 1.5-1.5V10a8 8 0 0 0-8-8z'/></svg>") center / contain no-repeat;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2a8 8 0 0 0-8 8v9.5a1.5 1.5 0 0 0 1.5 1.5h1a1.5 1.5 0 0 0 1.5-1.5V13a4 4 0 0 1 8 0v6.5a1.5 1.5 0 0 0 1.5 1.5h1a1.5 1.5 0 0 0 1.5-1.5V10a8 8 0 0 0-8-8z'/></svg>") center / contain no-repeat;
}
.cka-features__lst-ttl {
    font-weight: 700;
    color: var(--cka-green);
    margin: 0 0 8px;
}
.cka-features__lst-txt {
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
    color: var(--cka-text);
}

/* ==========================================================================
   的中実績
   ========================================================================== */
.cka-results {
    padding: 80px 0;
    background: #fff;
}
.cka-results__stat {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin: 0 0 36px;
}
.cka-results__stat-num {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--cka-green);
    line-height: 1;
}
.cka-results__stat-unit {
    font-size: 16px;
    font-weight: 700;
    color: var(--cka-green);
}
.cka-results__stat-txt {
    font-size: 14px;
    color: #666;
    margin-left: 4px;
}
.cka-results__lst {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cka-results__row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 8px;
    border-bottom: 1px solid #eee;
}
.cka-results__row-year {
    flex: none;
    width: 56px;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--cka-gold);
    margin: 0;
}
.cka-results__row-main {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 14px;
}
.cka-results__row-meta {
    font-size: 14px;
    color: #666;
    margin: 0;
    white-space: nowrap;
}
.cka-results__row-pill {
    background: linear-gradient(90deg, var(--cka-gold) 0%, var(--cka-gold-light) 100%);
    color: var(--cka-green-dark);
    font-weight: 700;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 999px;
    margin: 0;
    white-space: nowrap;
}
.cka-results__row-check {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: #2e9e4a;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}
@media (max-width: 600px) {
    .cka-results__row {
        flex-wrap: wrap;
    }
    .cka-results__row-main {
        width: 100%;
    }
}

/* ==========================================================================
   プラン
   ========================================================================== */
.cka-plan {
    position: relative;
    padding: 80px 0;
    background: var(--cka-green-dark);
    overflow: hidden;
}
.cka-plan::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(100deg, rgba(230, 207, 143, 0.05) 0 2px, transparent 2px 90px);
    pointer-events: none;
}
.cka-plan .container {
    position: relative;
}
.cka-plan .cka-hd {
    color: var(--cka-gold-light);
}
.cka-plan .cka-ttl {
    color: #fff;
}
.cka-plan__lst .slick-slide {
    padding: 0 16px;
    box-sizing: border-box;
}
.cka-plan__card {
    background: #fff;
    border-radius: var(--cka-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.cka-plan__card-hd {
    background: linear-gradient(90deg, var(--cka-gold) 0%, var(--cka-gold-light) 100%);
    padding: 20px;
    text-align: center;
}
.cka-plan__card-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--cka-green-dark);
    margin: 0;
}
.cka-plan__card-body {
    padding: 24px;
}
.cka-plan__card-deadline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fdf1e2;
    border: 1px solid rgba(201, 169, 97, 0.5);
    border-radius: 999px;
    padding: 8px 16px;
    margin: 0 0 18px;
    font-size: 12px;
}
.cka-plan__card-deadline-label {
    color: #b5451f;
    font-weight: 700;
}
.cka-plan__card-deadline-label::before {
    content: "\23F0\A0";
}
.cka-plan__card-deadline-time {
    color: var(--cka-text);
    font-weight: 700;
}
.cka-plan__card-price {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--cka-green);
    margin: 0 0 16px;
}
.cka-plan__card-meta {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    font-size: 13px;
    color: #555;
}
.cka-plan__card-meta li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed #ddd;
}
.cka-plan__card-meta li span {
    color: #888;
}
.cka-plan__card-note {
    font-size: 11px;
    line-height: 1.7;
    color: #888;
    margin: 0 0 20px;
}
.cka-plan__card-btns {
    display: grid;
    gap: 10px;
}
.cka-plan__card-btn {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    background: #2e9e4a;
    color: #fff;
}
.cka-plan__card-btn--sub {
    background: #3f8a4c;
}

/* ==========================================================================
   LINE / SNS
   ========================================================================== */
.cka-sns {
    padding: 64px 0 88px;
    background: #fff;
}
.cka-sns__lst {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0;
    padding: 0;
}
.cka-sns__item {
    text-align: center;
    border: 1px solid #eee;
    border-radius: var(--cka-radius);
    padding: 30px 16px;
}
.cka-sns__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.cka-sns__icon--line {
    background: #06c755;
}
.cka-sns__icon--instagram {
    background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.cka-sns__icon--x {
    background: #000;
}
.cka-sns__ttl {
    font-weight: 700;
    color: var(--cka-green);
    margin: 0 0 6px;
}
.cka-sns__txt {
    font-size: 13px;
    color: #666;
    margin: 0 0 16px;
}
.cka-sns__btn {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 999px;
    background: var(--cka-green);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}
@media (max-width: 767px) {
    .cka-sns__lst {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.cka-footer {
    background: var(--cka-green-dark);
    color: rgba(255, 255, 255, 0.85);
    padding-top: 0;
}
.cka-footer__cta {
    max-width: 640px;
    margin: 0 auto;
    transform: translateY(-40px);
    background: linear-gradient(135deg, var(--cka-green-mid) 0%, var(--cka-green) 100%);
    border: 1px solid rgba(201, 169, 97, 0.4);
    border-radius: var(--cka-radius);
    text-align: center;
    padding: 40px 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.cka-footer__cta-eyebrow {
    color: var(--cka-gold);
    letter-spacing: 0.3em;
    font-size: 12px;
    font-weight: 700;
    margin: 0 0 10px;
}
.cka-footer__cta-ttl {
    color: #fff;
    font-size: 22px;
    margin: 0 0 10px;
}
.cka-footer__cta-txt {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 22px;
}
.cka-footer__cta-btn {
    display: inline-block;
    padding: 12px 40px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cka-gold) 0%, var(--cka-gold-light) 100%);
    color: var(--cka-green-dark);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
}
.cka-footer__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 25px 40px;
    text-align: center;
}
.cka-footer__brand {
    display: inline-block;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    margin-bottom: 16px;
}
.cka-footer__legal {
    list-style: none;
    display: flex;
    gap: 24px;
    justify-content: center;
    padding: 0;
    margin: 0 0 16px;
    font-size: 12px;
    flex-wrap: wrap;
}
.cka-footer__legal a {
    color: inherit;
    opacity: 0.75;
    text-decoration: none;
}
.cka-footer__copy {
    font-size: 11px;
    opacity: 0.5;
    margin: 0;
}

/* Back to top ---------------------------------------------------------------*/
.cka-totop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--cka-green);
    border: 1px solid var(--cka-gold);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    cursor: pointer;
    z-index: 150;
}
.cka-totop::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--cka-gold);
    border-right: 2px solid var(--cka-gold);
    transform: translate(-50%, -30%) rotate(-45deg);
}
.cka-totop.is-active {
    opacity: 1;
    visibility: visible;
}

/* Mobile sticky CTA bar ------------------------------------------------------*/
.cka-mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 250;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(8, 27, 16, 0.92);
    backdrop-filter: blur(6px);
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.25);
}
.cka-mobile-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(90deg, var(--cka-gold) 0%, var(--cka-gold-light) 100%);
    color: var(--cka-green-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 13px;
    border-radius: 999px;
}
@media (max-width: 767px) {
    body.cka-body {
        padding-bottom: 64px;
    }
    .cka-totop {
        bottom: 76px;
    }
}

/* ==========================================================================
   下層ページ共通ヒーロー（利用規約・プライバシー・特商法）
   ========================================================================== */
.cka-page-hero {
    background: linear-gradient(135deg, var(--cka-green-mid) 0%, var(--cka-green-dark) 100%);
    color: #fff;
    padding: 56px 0;
    text-align: center;
    margin-bottom: 48px;
}
.cka-page-hero__jp {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px;
}
.cka-page-hero__en {
    color: var(--cka-gold-light);
    letter-spacing: 0.2em;
    font-size: 12px;
    margin: 0;
}

/* ==========================================================================
   特商法ページ
   ========================================================================== */
.notion_mobile_notice {
    text-align: center;
    padding: 80px 20px;
    color: #666;
}
.cka-notion__table {
    width: 100%;
    max-width: 900px;
    border-collapse: collapse;
    margin: 0 auto 24px;
    font-size: 14px;
}
.cka-notion__table tr {
    border-bottom: 1px solid #eee;
}
.cka-notion__table td {
    padding: 16px 12px;
    vertical-align: top;
}
.cka-notion__table td:first-child {
    width: 240px;
    color: var(--cka-green);
    font-weight: 700;
}
.cka-notion__note {
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: 12px;
    color: #888;
}

/* ==========================================================================
   利用規約 / プライバシーポリシー：no-code 編集コンテンツ
   ========================================================================== */
.cka-legal-content {
    max-width: 900px;
    margin: 0 auto 80px;
    line-height: 1.9;
}

#notion-table {
    margin-bottom: 80px;
}

#terms,
#privacy {
    padding: 60px 20px 80px;
}