﻿@charset "UTF-8";

#contents_wrap header#pageHead {
    background: #fff;
}



#contents_wrap {
    box-sizing: border-box;
    font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue", "Segoe UI","Noto Sans JP",sans-serif;
}


#contents_wrap a {
    opacity: 1;
    text-decoration: none;
    transition: all .25s ease;
}

    #contents_wrap a:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        color: #ffff00;
    }

.wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px 80px;
    background: #fff7f1;
}

/*  メインビジュアル
--------------------------- */

#mv-area {
    padding: 0;
}

.main-visual-wrapper {
    position: relative;
    width: 100%;
    height: 510px; /* 背景の高さを固定 */
    overflow: hidden;
}

.main-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    height: 100%;
    background: url(../img/cc_mv-pc-bg.svg) center center / cover no-repeat;
    z-index: 1;
}

.main-visual-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 100%;
    width: auto;
    height: auto;
    z-index: 2;
}
#mainContents .sp {
    display: none;
}
#mainContents .pc {
    display: block;
}
.point-memo {
    font-size: 13px;
    color: #575757;
    width: 73%;
    display: block;
    margin: 0 auto;
    text-align: left;
    text-indent: -1em;
    margin-bottom: 12px;
    line-height: 1.5;
}

@media (min-width: 1400px) {
    .main-visual-bg {
        background: url(../img/bg-w.svg) center center / cover no-repeat;
    }

}

#about {
    background: #fff;
    padding: 90px 0;
}




.hero {
    background: var(--orange) url("img/kv_pc.jpg") center/cover no-repeat;
    height: 340px;
    position: relative;
}

    .hero__inner {
        max-width: 960px;
        margin: 0 auto;
        padding: 40px 16px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #fff;
    }

    .hero__title {
        font-size: 40px;
        letter-spacing: .3em;
    }

    /* =====================
      section base
    ====================== */

    .section-inner {
        max-width: 840px;
        margin: 0 auto;
    }

.bubble-section .section-inner {
    margin-top: -140px;
}

.section-title {
    text-align: center;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 61px;
    letter-spacing: .08em;
}

.section-lead {
    text-align: center;
    font-size: 19px;
    line-height: 2.6;
    margin-bottom: 105px;
    letter-spacing: 0.6px;
}

/* =========================== */
/* 通常のグリッド配置（PC/SP共通） */
/* =========================== */
.btn-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
    gap: 10px;
    row-gap: 10px;
    column-gap: 10px;
    grid-gap: 10px;
}

.btn-main {
    font-size:20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff9a32;
    color: #fff;
    font-weight: bold;
    padding: 20px 10px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    height: 70px;
}

/* =========================== */
/* 固定ナビの初期状態 */
/* =========================== */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 999;
    padding: 8px;
    box-shadow: 0 0 0 transparent;
    transform: translateY(-120%);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    /* 固定時に表示 */
    .sticky-nav.is-active {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
#sticky-nav .btn-main {
    height: 52px;
    padding: 0px 12px;
}
/* =====================
      フキダシセクション見出し
    ====================== */
.headline-bg {
    background: url(../img/headline-bg.svg)no-repeat;
    height: 258px;
    background-size: cover;
}

.bubble {
    max-width: 680px;
    margin: 0 auto;
    background: #ffff66;
    border-radius: 20px;
    padding: 18px 22px 24px;
    position: relative;
    text-align: center;
    box-shadow: 0px 4px 0px 4px rgb(255 153 51);
}

    .bubble::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -17px;
        transform: translateX(-50%);
        border-width: 18px 16px 0 16px;
        border-style: solid;
        border-color: #ffff66 transparent transparent transparent;
        filter: drop-shadow(0px 8px 0px rgba(255, 153, 51));
    }

    .bubble-title {
        font-size: 20px;
        margin-bottom: 4px;
        letter-spacing: .12em;
    }
.corner-tit {
    margin: 0 auto;
}

.rankup-tit {
    width: 80%;
}
.rank-bene-tit {
    width: 59%;
}

.faq-tit {
    width: 59%;
}
.bubble-lead {
    font-size: 18px;
    line-height: 1.9;
    letter-spacing: -1.1px;
}

/* ===== FAQレイアウト ===== */

.faq-wrapper {
    max-width: 840px;
    margin: 40px auto 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    align-items: start;
}

/* PC→2カラム / SP→1カラム */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* 質問＋回答全体 */
.faq-item {
    align-self: start;
}

/* 質問部（オレンジのボックス） */
.faq-q {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    line-height: 1.4;
    border: none;
    background: #ff9933;
    color: #fff;
    cursor: pointer;
    text-align: left;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    text-indent: -1.8em;
    padding-left: 43px;
}

.faq-q-label {
    display: inline-block;
    margin-right: 8px;
}

/* ▼アイコン（CSSだけで描画） */
.faq-toggle-icon {
    width: 14px;
    height: 14px;
    position: absolute;
    top: 50%;
    right: 3px;
}

    .faq-toggle-icon::before {
        content: "";
        position: absolute;
        right: 0px;
        top: 50%;
        width: 0;
        height: 0;
        transform: translate(-50%, -50%);
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid #fff;
        transition: transform 0.2s ease;
    }

/* Answer部 */
.faq-a {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s ease, opacity .25s ease;
}

/* 開いている状態 */
.faq-item.is-open .faq-a {
    display: block;
    max-height: 500px;
    opacity: 1;
    background: #ffdbb6;
    color: #000000;
    padding: 18px;
    font-size: 16px;
    line-height: 1.5;
    text-indent: -1.65em;
    padding-left: 43px;
}

.faq-item.is-open .faq-toggle-icon::before {
    transform: translate(-50%, -50%) rotate(180deg); /* ▲ */
}


    /* =====================
      ランクアップ・マイページ例
    ====================== */

.rank-chart {
    margin: 40px auto 24px;
    max-width: 770px;
    border-radius: var(--radius-lg);
    padding: 16px;
    background: #fff;
    box-shadow: 1px 1px 3px 2px #d9d9d9;
    border-radius: 16px;
}

    .rank-chart__img {
        border-radius: 12px;
        padding: 16px;
        text-align: center;
        font-size: 12px;
        color: #b77a8b;
    }
img.pc.rank-image-pc {
    width: 100%;
}
.status-box {
    background: #FFF;
    margin-bottom: 100px;
}

.status-tit {
    display: block;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;
}


.status-lead {
    margin: 0 auto 20px;
    background: #ffd7d5;
    color: #000000;
    font-size: 16px;
    width: 60%;
    line-height: 1.5;
    padding: 12px;
    border-radius: 6px;
}

.status-img {
    border: 2px solid #ff9966;
    border-radius: 13px;
    width: 95%;
    margin: 0 auto;
}

img.allrank-bene-img {
    margin: 40px auto 100px;
    width:100%;
}

/* =====================
      特典ひろば（表形式）
    ====================== */
.benefit-table {
    margin-top: 40px;
}

    .benefit-row {
        display: grid;
        grid-template-columns: 140px 1fr;
        gap: 12px;
        padding: 12px 16px;
        align-items: stretch;
    }

        .benefit-row:nth-child(odd) {
            background: rgba(255,255,255,0.7);
        }

    .benefit-rank {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .benefit-rank__icon {
        width: 52px;
        height: 52px;
        border-radius: 999px;
        background: #fff;
        box-shadow: var(--card-shadow);
    }

    .benefit-rank__name {
        font-size: 14px;
        font-weight: 600;
    }

    .benefit-cells {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
        font-size: 11px;
    }

    .benefit-cell {
        border-radius: 10px;
        border: 1px solid #e0d4cb;
        background: #fff;
        padding: 8px 6px;
        text-align: center;
        position: relative;
    }

    .benefit-cell--inactive {
        background: #eeeeee;
        color: #999;
    }

    /* =====================
      特典1・2・3
    ====================== */

.ribbon-tit {
    text-align: center;
    margin-top: -100px;
    padding-top: 100px;
}

    .ribbon-tit img {
        margin: 0 auto;
    }

.feature-card {
    max-width: 720px;
    margin: -40px auto 40px;
    border-radius: 16px;
    background: #fff;
    padding: 24px 26px 32px;
    box-shadow: var(--card-shadow);
    text-align: center;
    box-shadow: 1px 1px 3px 2px #d9d9d9;
}

.feature-card__badge {
    margin: 60px auto 25px;
}
img.shop-image.pc {
    width: 100%;
}
img.feature-card__badge.badge-icon-sale {
    width: 92px;
    height: 92px;
    margin: 43px auto 2px;
}
img.feature-card__badge.badge-icon-cpn {
    width: 72px;
    height: 72px;
    margin: 52px auto 0;
}
img.feature-card__badge.badge-icon-point {
    width: 86px;
    height: 86px;
    margin: 46px auto 5px;
}

.feature-card__lead {
    font-size: 19px;
    margin-bottom: 16px;
    line-height: 1.8;
}



    .feature-card__image {
        margin-top: 20px;
    }

.access-earlybox {
    background: #fff4ed;
    width: 80%;
    margin: 0 auto;
    padding: 26px 0;
}

p.ex-tit {
    font-size: 21px;
    font-weight: 500;
    margin: 0 0 16px;
}
ul.access-early-ul {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    width: fit-content;
    margin: 0 auto;
    padding: 0;
    line-height: 16px;
}
.access-early-li {
    list-style: none;
    font-weight: 600;
    margin-bottom: 18px;
    border-left:unset;
}
span.pc.dc {
    display: inline-block;
}

span.access-number {
    font-size: 20px;
}
    .access-early-li::before{
        content:"■";
    }

    .access-early-li .early-time {
        color: #ff9a32;
    }

    .access-early-li:last-child {
        margin-bottom: 0;
    }

.cpn-card {
    width: 85%;
    margin: 0 auto;
}

.sale-bene-memo {
    margin: 25px 0 16px;
    font-size: 17px;
    line-height: 1.5;
    border-top: 1px dotted #a1a1a1;
    padding-top: 20px;
}
#contents_wrap p.sale-bene-memo a {
    text-decoration: underline;
    color: #ff905a;
    font-weight: 600;
}
.sale-bene-memo span {
    color: #ff9a32;
    font-weight: bold;
}
img.sp.sale-bene-image {
    width: 91%;
}
    img.pc.sale-bene-image, img.sp.sale-bene-image {
    margin: 0 auto;
}
/* =====================
      ポイント交換 & ボタン行
    ====================== */
.info-card {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    padding: 24px 26px 28px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border-radius: 16px;
}

    .info-card__text {
        font-size: 13px;
        line-height: 1.9;
        margin-bottom: 20px;
    }

    .info-card__btn-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    /* =====================
      FAQ
    ====================== */

.faq-wrapper {
    max-width: 840px;
    margin: 40px auto 0;
    border-radius: var(--radius-lg);
    background: #fff;
    padding: 24px 26px 30px;
    box-shadow: 1px 1px 3px 2px #d9d9d9;
    border-radius: 16px;
}
.faq-subtitle {
    color: #ff9a32;
    padding: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    margin-bottom: 30px;
    border-bottom: dotted #ffa66a 3px;
    padding-bottom: 30px;
}
    .faq-grid:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .faq-item {
        background: #ff9933;
        padding: 0;
        font-size: 12px;
        color: #fff;
        align-items: center;
    }

        .faq-item span {
            flex: 1;
        }

    /* =====================
      クーポン協力企業
    ====================== */

.company-area {
    background: var(--orange);
    padding: 40px 16px 80px;
    color: #fff;
    background: #ff9933;
}

    .company-inner {
        max-width: 960px;
        margin: 0 auto;
        text-align: center;
    }

.company-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 24px;
    letter-spacing: .12em;
    text-align: center;
}

.company-grid {
    margin: 0 auto 90px;
    max-width: 640px;
    background: transparent;
    padding: 14px;
    border-radius: 12px;
}

/* グリッド本体 */
.company-grid__inner {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr)); /* PC：5列 */
    gap: 6px;
}

/* ロゴセル（正方形・中央寄せ） */
.company-cell {
    background: #fff;
    position: relative;
    aspect-ratio: 1 / 1; /* ← 正方形を割合で維持 */
    padding: 8px;
    display: flex;
    align-items: center; /* 縦中央 */
    justify-content: center; /* 横中央 */
}

    .company-cell img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
    }

    .company-cell::after {
        content: "";
        position: absolute;
        inset: 2px;
        border: 2px solid #ffa94f;
    }

    .company-notes {
        text-align: left;
        font-size: 11px;
        line-height: 1.8;
        max-width: 640px;
        margin: 0 auto;
    }
        .company-notes dt {
            font-size: 14px;
        }

        .company-notes dd {
            margin-inline-start: unset;
            font-size: 14px;
            text-indent: -1em;
            padding-left: 1em;
            margin-bottom: 4px;
            line-height: 1.3;
        }
        .process {
            margin: 70px 0 19px;
            font-size: 17px;
        }

            .registbox {
                border: 3px solid #ff9a32;
                margin: 100px auto;
            }

.btn-circlebox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 99%;
    margin: 0 auto;
}
.btn-circle {
    border-radius: 999px;
    background: #ff9a32;
    flex: 1;
    text-align: center;
    padding: 26px 0;
    color: #fff;
    text-decoration: none;
    box-sizing: border-box;
    font-size: 17px;
}
.registbox__text {
    color: #303030;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.9;
    margin-bottom: 30px;
}


/* =====================
　　 PCのみ
====================== */
@media (min-width: 768px) {
    .sticky-layout {
        display: flex !important;
        flex-wrap: nowrap;
        gap: 6px;
    }

        .sticky-layout .btn-main {
            flex: 1;
            height: 56px;
            padding: 12px 8px;
            font-size: 0.9rem;
        }
    .update-memo {
        font-size: 17px;
        color: #ff9933;
        line-height: 1.5;
        border: solid 1px #ff9933;
        width: 576px;
        margin: 0 auto 20px;
        padding: 10px 0;
        background: #fff;
        border-radius: 10px;
    }
        .update-memo p {
            font-size: 20px;
            margin: 4px 0;
            font-weight: 600;
        }

}



    /* =====================
      スマホのみ
    ====================== */

    @media (max-width: 768px) {
        #mainContents .pc {
            display: none;
        }

        #mainContents .sp {
            display: block;
        }

        .section-inner {
            width: 94%;
        }


        .wrapper {
            padding: 0 0 56px;
        }


        .main-visual-wrapper {
            position: relative;
            width: 100%;
            height: 412px; /* 背景の高さを固定 */
            overflow: inherit;
        }
        #sticky-nav .btn-main {
            padding: 0;
        }

        .main-visual-title {
            position: absolute;
            top: 53%;
            left: 50%;
            transform: translate(-50%, -50%);
            max-height: 100%;
            height: auto;
            width: 100%;
            z-index: 2;
        }
        .main-visual-bg {
            position: absolute;
            left: 0;
            min-width: 100%;
            height: 100%;
            background: url(../img/mv_sp-bg.svg) center center / cover no-repeat;
            z-index: 1;
        }
        .headline-bg {
            height: 81px;
        }
        #about {
            padding: 50px 0;
        }

        .status-tit {
            display: block;
            font-size: 20px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 5px;
        }
        .status-lead {
            width: 85%;
            margin: 0 auto 20px;
            font-size: 15px;
            border-radius: 0;
            text-align:left;
        }
        .rank-chart__img {
            padding: 10px 0;
            width: 100%;
        }
        .section-title {
            font-size: 18px;
            margin-bottom: 14px;
        }
        .rankup-tit {
            width: 98%;
        }
        .rank-bene-tit {
            width: 94%;
        }
        .section-lead {
            font-size: 13px;
            text-align: left;
            margin-bottom: 50px;
        }


        .btn-main,
        .btn-sub {
            font-size: 12px;
            padding: 10px 0;
            min-width: 0;
            box-sizing: border-box;
        }

        .bubble-section {
            background: linear-gradient(to bottom, var(--orange) 0, var(--orange) 80px, transparent 80px);
        }
            .bubble-section .section-inner {
                margin-top: -49px;
            }
        .bubble {
            width: 94%;
            padding: 14px 7px 2px;
        }
            .bubble h2 {
                margin: 0;
            }
            .bubble-lead {
                text-align: center;
                font-size: 14px;
                line-height: 1.6;
                letter-spacing: -0.7px;
            }
        img.allrank-bene-img {
            margin: 40px auto 24px;
            width: 100%;
        }

        .rank-chart__img img {
            width: 92%;
            margin: 0 auto;
        }
        .bubble-title {
            font-size: 17px;
            line-height: 0;
        }

        .rank-chart,
        .feature-card,
        .info-card,
        .faq-wrapper {
            padding: 18px 0 20px;
            /*width: 100%;*/
            box-shadow: 1px 1px 3px 1px #c9c9c9;
            border-radius: 8px;
        }
        .feature-card {
            margin: -50px auto 40px;
        }
        .update-memo p {
            font-size: 15px;
            margin: 4px 0;
            font-weight: 600;
        }
        .update-memo {
            font-size: 13px;
            color: #ff8000;
            line-height: 1.5;
            width: 97%;
            border-radius: 11px;
            margin: 0 auto 10px;
            padding: 11px 0;
            background: #ffffff;
        }
        .feature-card.sale .update-memo {
            border: 1px solid;
            margin: 0 auto 20px;
            border-radius: unset;
            width: 90%;
        }

        .benefit-row {
            grid-template-columns: 1fr;
            padding: 14px 10px;
        }

        .benefit-cells {
            grid-template-columns: repeat(2,minmax(0,1fr));
        }

        .ribbon-title {
            font-size: 14px;
            min-width: 220px;
        }

        .ribbon-tit {
            width: 90%;
            margin: -130px auto 0;
            padding-top: 130px;
        }
            .ribbon-tit img {
                width: 100%;
            }
        .access-earlybox {
            background: #fff4ed;
            width: 91%;
            margin: 0 auto;
            padding: 17px 0 6px;
        }
        ul.access-early-ul {
            width: 90%;
        }
        .sale-bene-memo {
            font-size: 15px;
        }
        .process {
            font-size: 14px;
            line-height: 1.5;
        }
        p.ex-tit {
            text-align: left;
        }
        .access-early-li {
            border-left: 5px solid;
            padding-left: 10px;
            line-height: 1.5;
        }
            .access-early-li::before{
                content:unset;
            }
        .feature-card__lead {
            font-size: 16px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .faq-subtitle {
            padding-left: 15px;
        }

        .faq-grid {
            grid-template-columns: 1fr;
            margin-bottom: 50px;
        }
        .faq-item {
            width: 94%;
            margin: 0 auto;
            padding-bottom: 2px;
        }
        .faq-a {

            padding: 12px 0 14px -36px;
        }
        .faq-item.is-open .faq-a {
            line-height: 1.5;
            text-indent: -1.7em;
            padding: 8px 8px 8px 44px;
            font-size: 15px;
        }
        .company-notes dt {
            margin-bottom: 3px;
        }
        .company-notes dd {
            margin-bottom: 4px;
        }
        .cpn-card {
            width: 94%;
        }
        .shop-image.sp {
            width: 90%;
            margin: 0 auto;
        }

        .company-grid{
            padding:0;
        }

        .company-grid__inner {
            grid-template-columns: repeat(4, minmax(0, 1fr)); /* SP：4列 */
            gap:0;
        }

        /* スマホ時は少し小さく */
        .company-cell {
            width: 100%;
            height: 100%;
            padding: 0;
        }

            .company-cell img {
                max-width: 60px;
                max-height: 60px;
                object-fit: contain;
            }

        .registbox__text {
            font-size: 14px;
        }
        .btn-circlebox {
            flex-direction: column;
            gap: 11px;
        }
        .btn-circle {
            font-size: 14px;
            width: 92%;
            padding: 21px 0;
        }
    }


/* =====================
      狭小スマホのみ
    ====================== */

@media (max-width: 350px) {
    .feature-card {
        margin: -44px auto 40px;
    }
}


    /* =========================================
   ◆ 中間サイズ（タブレット想定）
   ========================================= */

    /* 768px〜829px 調整（元コード流用） */
    @media screen and (min-width: 480px) and (max-width: 829px) {

        .main-visual-bg {
            background: url(../img/cc_mv-pc-bg.svg) center center / cover no-repeat;
        }
    }
