/* ========================================
   COCOiLO 共通ヘッダー・フッター + 会員登録LP
   設置先：/sale2607_NEW/
======================================== */

/* ========================================
   01. 変数
======================================== */
:root {
    --lp-pink: #e4007f;
    --lp-green: #05b51f;
    --lp-dark: #171717;
    --lp-muted: #666;
    --lp-soft: #f2f0f8;
    --lp-line: #e8e8e8;
    --lp-gold: #b88a36;
    --lp-gold-light: #d4b06a;
    --lp-max: 960px;
    --lp-narrow: 680px;
}

/* ========================================
   02. 共通
======================================== */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--lp-dark);
    background: #fff;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Hiragino Kaku Gothic ProN",
        "Yu Gothic",
        Meiryo,
        sans-serif;
    line-height: 1.85;
    letter-spacing: .04em;
}

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

a {
    color: inherit;
}

/* ========================================
   03. 共通ヘッダー
   header.php 用
======================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid #eee;
    backdrop-filter: blur(8px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px 18px;
}

.logo {
    flex: 0 0 auto;
}

.logo a {
    display: block;
    line-height: 1;
}

.logo-img {
    width: 148px;
    height: auto;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex: 1;
}

.nav a {
    color: #333;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.nav a:hover {
    color: var(--lp-pink);
}

.header-actions {
    flex: 0 0 auto;
}

.login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 18px;
    color: #fff;
    background: #333;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 6px auto;
    background: #333;
    border-radius: 999px;
}

/* ========================================
   04. LP共通
======================================== */
.lp-main {
    overflow: hidden;
}

.lp-container,
.lp-hero-inner {
    width: 100%;
    max-width: var(--lp-max);
    margin: 0 auto;
}

.lp-narrow {
    max-width: var(--lp-narrow);
}

.lp-section {
    position: relative;
    padding: 88px 20px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, .05);
}

/* ピンク線は出さない */
.lp-section::before,
.lp-section h2::after {
    display: none !important;
    content: none !important;
}

.lp-section h2 {
    display: block;
    margin: 0 0 36px;
    padding: 0;
    color: #333;
    text-align: center;
    font-size: clamp(30px, 4.2vw, 44px);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: .02em;
}

.lp-section-text {
    margin: 18px auto;
    color: #333;
    font-size: 17px;
}

/* ========================================
   05. ファーストビュー
======================================== */
.lp-hero {
    padding: 44px 18px 56px;
    text-align: center;
    background:
        radial-gradient(circle at top left, rgba(228, 0, 127, .08), transparent 34%),
        linear-gradient(180deg, #fff 0%, #fff7fb 55%, #f4fff6 100%);
}

.lp-eyebrow {
    margin: 0 0 8px;
    color: var(--lp-pink);
    font-size: 16px;
    font-weight: 900;
}

.lp-hero h1 {
    max-width: 100%;
    margin: 0 auto 16px;
    color: var(--lp-pink);
    font-size: clamp(30px, 6vw, 56px);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: .02em;
}

.lp-hero h1 span {
    white-space: nowrap;
}

.lp-lead {
    max-width: 720px;
    margin: 0 auto 22px;
    font-size: clamp(17px, 2.4vw, 22px);
    font-weight: 700;
}

.lp-hero-image {
    display: block;
    margin: 0 auto 28px;
    border-radius: 14px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .12);
}

/* ========================================
   06. ポイント
======================================== */
.lp-point-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 820px;
    margin: 0 auto 32px;
}

.lp-point-grid div {
    padding: 18px 12px;
    background: #fff;
    border: 2px solid #ffe1f0;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(228, 0, 127, .10);
}

.lp-point-grid span {
    display: block;
    font-size: 30px;
    line-height: 1.2;
}

.lp-point-grid strong {
    font-size: 19px;
}

/* ========================================
   07. ボタン
======================================== */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    text-decoration: none;
    transition: .2s;
}

.lp-btn:hover {
    transform: translateY(-2px);
}

/* 会員登録ボタン：ゴールド */
.lp-btn-main{

    background:linear-gradient(
        180deg,
        #ffb347 0%,
        #ff8c00 100%
    ) !important;

    color:#fff;

    font-size:36px;      /* 32 → 36 */
    font-weight:900;

    min-height:90px;     /* 高さ追加 */

    padding:24px 60px;   /* 上下24px 左右60px */

    border:1px solid #e67700;

    border-radius:16px;

    text-decoration:none;

    box-shadow:
        0 12px 30px rgba(255,140,0,.35),
        0 6px 12px rgba(0,0,0,.15);

    transition:.25s;
}
.lp-btn-main:hover{

    transform:translateY(-4px);

    box-shadow:
        0 18px 40px rgba(197,109,150,.45),
        0 10px 20px rgba(0,0,0,.18),
        inset 0 1px 0 rgba(255,255,255,.5);
}

/* LINEボタン：緑 */
.lp-btn-line {
    width: min(100%, 360px);
    color: #fff;
    background:
        linear-gradient(
            180deg,
            #19d93a 0%,
            var(--lp-green) 100%
        );
    border: 1px solid #06961c;
    box-shadow:
        0 10px 24px rgba(5, 181, 31, .28),
        inset 0 1px 0 rgba(255, 255, 255, .45);
}

.lp-btn-large {
    width: min(100%, 560px);
    min-height: 74px;
    font-size: clamp(22px, 3.5vw, 32px);
}

/* ========================================
   08. 会員特典
======================================== */
.lp-member-benefits {
    background:
        linear-gradient(180deg, #fff2f9 0%, #fffafd 100%);
}

.lp-member-benefits .lp-container {
    padding: 34px 24px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid #ffd5ea;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(228, 0, 127, .10);
}

.lp-wide-img {
    display: block;
    margin: 0 auto 28px;
    border-radius: 12px;
}

.lp-benefit-list {
    counter-reset: item;
    max-width: 760px;
    margin: 28px auto;
    padding: 0;
    list-style: none;
    text-align: left;
}

.lp-benefit-list li {
    position: relative;
    margin: 0 0 18px;
    padding: 22px 22px 22px 72px;
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .05);
}

.lp-benefit-list li::before {
    counter-increment: item;
    content: counter(item);
    position: absolute;
    top: 22px;
    left: 22px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #fff;
    background: #1166cc;
    border-radius: 50%;
    font-weight: 900;
}

.lp-benefit-list strong {
    display: block;
    font-size: 22px;
}

.lp-benefit-list span {
    display: block;
    color: #333;
    font-size: 17px;
}

/* ========================================
   09. 品質訴求
======================================== */
.lp-quality {
    background:
        linear-gradient(180deg, #eeeaf8 0%, #f8f6ff 100%);
}

.lp-quality .lp-container {
    padding: 34px 24px;
    background: rgba(255, 255, 255, .62);
    border: 1px solid #ddd7f1;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(78, 64, 126, .12);
}

.lp-quality h2 {
    font-size: clamp(28px, 4vw, 40px);
}

.lp-quality-list {
    max-width: 620px;
    margin: 10px auto 0;
    padding: 0;
    list-style: none;
}

.lp-quality-list li {
    margin: 12px 0;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #e4def6;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(78, 64, 126, .08);
    font-weight: 800;
}

/* ========================================
   10. お客様の声
======================================== */
.lp-voices {
    background:
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.lp-voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.lp-voice-grid img {
    width: 100%;
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: 10px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .10);
}

.section-en {
    margin: 0 0 10px;
    text-align: center;
    color: #c56d96;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .3em;
}

.lp-voice-subtitle {
    margin: 0 auto 40px;
    color: #666;
    text-align: center;
    font-size: 20px;
    line-height: 1.8;
}

/* ========================================
   11. 会員登録メリット
======================================== */
.lp-register-merit {
    background:
        linear-gradient(180deg, #eef8ff 0%, #f8fcff 100%);
}

.lp-register-merit .lp-container {
    padding: 38px 24px;
    background: #fff;
    border: 1px solid #d8ecff;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(39, 123, 190, .10);
}

.lp-check-list {
    display: inline-block;
    margin: 0;
    padding: 30px 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    list-style: none;
    text-align: left;
}

.lp-check-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;

    margin: 14px 0;
    padding-left: 0;

    font-size: clamp(21px, 3vw, 28px);
    font-weight: 800;
}

.lp-check-list li::before {
    content: "✓";

    position: static;
    flex: 0 0 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    color: #fff;
    background: #6a8cff;

    border-radius: 8px;

    font-size: 28px;
    font-weight: 900;
    line-height: 1;

    box-shadow: 0 4px 12px rgba(106,140,255,.25);
}

/* ========================================
   12. ランク制度
======================================== */
.lp-rank-section {
    background:
        linear-gradient(180deg, #fff8e9 0%, #fffdf5 100%);
}

.lp-rank-section .lp-container {
    padding: 38px 24px;
    background: rgba(255, 255, 255, .75);
    border: 1px solid #f0dc9d;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(174, 128, 22, .12);
}

.lp-rank-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 24px 0;
    padding: 25px;
    background: #fff;
    border: 1px solid #ead596;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(174, 128, 22, .10);
    text-align: left;
}

.lp-rank-card img {
    width: 160px;
    border-radius: 4px;
}

.lp-rank-card p {
    margin: 0;
    font-size: 17px;
}

.lp-rank-card strong {
    display: block;
    font-size: 21px;
}

/* ========================================
   13. FAQ
======================================== */
.lp-faq {
    background:
        linear-gradient(180deg, #f2f2f2 0%, #fafafa 100%);
}

.lp-faq details{
    background:#ffffff;

    border:1px solid #d8d8d8;

    border-radius:14px;

    box-shadow:
        0 6px 16px rgba(0,0,0,.05);
}

.lp-faq summary{
    position:relative;

    list-style:none;

    padding:20px 60px 20px 20px;

    cursor:pointer;

    font-size:20px;
    font-weight:700;
}

.lp-faq details p {
    margin: 0;
    padding: 0 18px 18px;
    color: #333;
}

.lp-faq summary::after{
    content:"+";

    position:absolute;

    right:20px;
    top:50%;

    transform:translateY(-50%);

    font-size:32px;
    font-weight:700;

    color:#999;
}

.lp-faq details[open] summary::after{
    content:"−";
}
.lp-faq details{
    margin-bottom:15px;

    border:1px solid #ddd;

    border-radius:12px;

    overflow:hidden;

    background:#fff;

    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.lp-faq .lp-container{
    text-align:left;
}

.lp-faq h2{
    display:block;
    text-align:center;
}

.lp-faq summary{
    text-align:left;
}

.lp-faq details p{
    text-align:left;
}

/* ========================================
   14. LINE連携
======================================== */
.lp-line-guide {
    background:
        linear-gradient(180deg, #ecfff0 0%, #f8fff9 100%);
}

.lp-line-guide .lp-container {
    padding: 38px 24px;
    background: #fff;
    border: 1px solid #ccefd2;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(5, 181, 31, .10);
}

/* ========================================
   15. 最終CTA
======================================== */
.lp-final-cta {
    padding: 96px 20px 130px;
    text-align: center;
    background:
        radial-gradient(circle at top, rgba(184, 138, 54, .18), transparent 35%),
        linear-gradient(180deg, #fff 0%, #fff8ea 45%, #fff1c8 100%);
}

.lp-final-cta .lp-container {
    padding: 46px 24px;
    background: rgba(255, 255, 255, .82);
    border: 2px solid #ead596;
    border-radius: 32px;
    box-shadow: 0 24px 70px rgba(184, 138, 54, .18);
}

.lp-final-cta h2 {
    margin: 0;
    font-size: clamp(36px, 7vw, 60px);
    line-height: 1.2;
}

.lp-discount-text {
    margin: 22px 0 0;
    font-size: clamp(20px, 3vw, 27px);
    font-weight: 900;
    line-height: 1.65;
}

.lp-off {
    margin: 6px 0;
    color: var(--lp-pink);
    font-size: clamp(64px, 12vw, 120px);
    font-weight: 1000;
    line-height: 1;
    text-shadow: 0 8px 22px rgba(228, 0, 127, .18);
}

.lp-speed {
    margin: 0 0 18px;
    font-size: clamp(24px, 4vw, 38px);
}

.lp-line-note {
    margin: 54px auto 18px;
    color: #333;
}

/* ========================================
   16. 固定CTA
======================================== */
.lp-sticky-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2000;
    display: none;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .94);
    border-top: 1px solid var(--lp-line);
}

.lp-sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 520px;
    min-height: 54px;
    margin: 0 auto;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
}

/* ========================================
   17. 共通フッター
   footer.php 用
======================================== */
.footer {
    background: #2f2f2f;
    color: #fff;
    text-align: center;
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 44px 18px 22px;
}

.footer-logo-img {
    width: 150px;
    height: auto;
    border-radius: 8px;
}

.footer-logo p {
    margin: 14px 0 24px;
    color: #eee;
    font-size: 14px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 22px;
}

.footer-row a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.footer-row a:hover {
    text-decoration: underline;
}

.footer-copy {
    padding: 14px 18px;
    background: #242424;
}

.footer-copy p {
    margin: 0;
    color: #ddd;
    font-size: 12px;
}

/* ========================================
   18. スマホ調整
======================================== */
@media (max-width: 900px) {
    .header-inner {
        position: relative;
        justify-content: center;
        min-height: 62px;
    }

    .menu-toggle {
        position: absolute;
        left: 12px;
        display: block;
    }

    .header-actions {
        position: absolute;
        right: 12px;
    }

    .login-btn {
        min-height: 34px;
        padding: 7px 12px;
        font-size: 12px;
    }

    .nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        border-top: 1px solid #eee;
        box-shadow: 0 12px 24px rgba(0, 0, 0, .08);
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 14px 18px;
        border-bottom: 1px solid #f1f1f1;
        font-size: 15px;
        text-align: center;
    }
}

@media (max-width: 720px) {
    body {
        line-height: 1.8;
    }

    .logo-img {
        width: 128px;
    }

    .lp-hero {
        padding: 30px 14px 44px;
    }

    .lp-hero h1 {
        font-size: 28px;
    }

    .lp-lead {
        font-size: 16px;
    }

    .lp-point-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 300px;
    }

    .lp-point-grid div {
        padding: 16px;
    }

    .lp-point-grid strong {
        font-size: 21px;
    }

    .lp-section {
        padding: 62px 14px;
    }

    .lp-section h2 {
        margin-bottom: 30px;
        font-size: 28px;
    }

    .lp-member-benefits .lp-container,
    .lp-quality .lp-container,
    .lp-register-merit .lp-container,
    .lp-rank-section .lp-container,
    .lp-line-guide .lp-container,
    .lp-final-cta .lp-container {
        padding: 26px 14px;
        border-radius: 20px;
    }

    .lp-benefit-list li {
        padding: 18px 16px 18px 62px;
    }

    .lp-benefit-list strong {
        font-size: 21px;
    }

    .lp-benefit-list span {
        font-size: 16px;
    }

    .lp-voice-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lp-check-list {
        display: block;
        padding: 24px 22px;
    }

    .lp-check-list li {
        font-size: 22px;
    }

    .lp-rank-card {
        gap: 12px;
        padding: 16px;
    }

    .lp-rank-card img {
        width: 42%;
    }

    .lp-rank-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    .lp-rank-card strong {
        font-size: 18px;
    }

    .lp-final-cta {
        padding: 70px 14px 120px;
    }

    .lp-btn-main {
        width: 100%;
        font-size: 19px;
    }

    .lp-sticky-cta {
        display: block;
    }

    .footer-inner {
        padding-bottom: 86px;
    }
}

/* ========================================
   19. PC調整
======================================== */
@media (min-width: 1100px) {
    .lp-container,
    .lp-hero-inner {
        max-width: 1040px;
    }

    .lp-wide-img {
        max-width: 560px;
    }

    .lp-quality .lp-wide-img {
        max-width: 520px;
    }
}


.lp-voice-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.lp-voice-card {
    padding: 40px 30px;
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(0,0,0,.08);
    text-align: center;
}

.lp-voice-label {
    margin: 0 0 20px;
    color: #999;
    font-family: serif;
    font-size: 30px;
    letter-spacing: .12em;
}
.lp-voice-name {
    margin: 0;
    font-weight: 900;
    font-size: 22px;
}

.lp-voice-stars {
    margin: 12px 0 20px;
    color: #d4a23a;
    font-size: 28px;
    letter-spacing: .1em;
}

.lp-voice-text {
    margin: 0;
    color: #333;
    font-size: 20px;
    line-height: 2;
    font-weight: 500;
}

@media (max-width: 720px){

.lp-voice-card{

    padding:40px 35px;

    background:#fff;

    border:1px solid #e5e5e5;

    border-radius:20px;

    box-shadow:
        0 12px 30px rgba(0,0,0,.08);

    text-align:center;

    min-height:380px;
}
    .lp-voice-label{
        font-size:28px;
    }

    .lp-voice-name{
        font-size:22px;
    }

    .lp-voice-stars{
        font-size:26px;
    }

    .lp-voice-text{
        font-size:20px;
        line-height:1.9;
    }


}

/* お客様の声だけ横幅を広げる */
.lp-voices .lp-container {
    max-width: 1800px !important;
}

/* お客様の声カードを横長にする */
.lp-voice-card-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
    max-width: 18000px !important;
    margin: 0 auto !important;
}

.lp-voice-card {
    min-height: 260px !important;
    padding: 34px 34px !important;
}

/* スマホだけ1列 */
@media (max-width: 720px) {
    .lp-voice-card-grid {
        grid-template-columns: 1fr !important;
        max-width: 560px !important;
    }

    .lp-voice-card {
        min-height: auto !important;
    }
}


.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:1s;
}

.fade-up.is-show{
    opacity:1;
    transform:translateY(0);
}


.fade-only{
    opacity:0;
    transition:1.2s;
}

.fade-only.is-show{
    opacity:1;
}

.slide-up{
    opacity:0;
    transform:translateY(80px);
    transition:1s;
}

.slide-up.is-show{
    opacity:1;
    transform:translateY(0);
}

.zoom-in{
    opacity:0;
    transform:scale(.92);
    transition:1s;
}

.zoom-in.is-show{
    opacity:1;
    transform:scale(1);
}

.slide-right{
    opacity:0;
    transform:translateX(80px);
    transition:1s;
}

.slide-right.is-show{
    opacity:1;
    transform:translateX(0);
}