/* カラー変数 */
:root {
    --color-main: #002244;
    --df-max-w: 1024px;
    --font-en: bahnschrift, sans-serif;
}

.header_main {
    position: relative;
    z-index: 998;
    padding: 0 48px;
    @media (max-width: 1440px) {
        padding: 0 40px;
    }
    @media (max-width: 1400px) {
        padding: 0 32px;
    }
    @media (max-width: 1250px) {
        padding: 0 24px;
    }
    @media (max-width: 500px) {
        padding: 0 12px;
    }
    .inner {
        padding: 14px 0 10px 0;
        height: 72px;
        display: flex;
        justify-content: space-between;
        @media (max-width: 500px) {
            padding: 8px 0 10px 0;
            height: 68px;
        }
        .logo {
            height: 100%;
            display: flex;
            align-items: center;
            a {
                height: 100%;
                display: block;
                img {
                    height: 100%;
                    width: auto;
                }
            }
        }
        .cta_nav {
            height: 100%;
            @media (max-width: 1100px) {
                display: none;
            }
            ul {
                height: 100%;
                display: flex;
                gap: 24px;
                font-weight: 700;
                li {
                    display: flex;
                    align-items: center;
                    @media (max-width: 1300px) {
                        font-size: 14px;
                    }
                    .shop_name {
                        margin-right: 8px;
                        padding: 0.74em 0.85em;
                        display: flex;
                        align-items: center;
                        background: var(--color-main);
                        color: #fff;
                        border-radius: 4px;
                    }
                    .date {
                        line-height: 1.4em;
                    }
                }
            }
        }
    }
    .header_nav {
        @media (max-width: 1100px) {
            display: none;
        }
        ul.header_nav_menu {
            display: flex;
            justify-content: center;
            li {
                a {
                    position: relative;
                    z-index: 10;
                    padding: 24px 48px;
                    display: block;
                    color: #000;
                    font-weight: 700;
                    &::after {
                        position: absolute;
                        bottom: 0.5em;
                        left: 0;
                        right: 0;
                        margin: auto;
                        width: 0;
                        height: 2px;
                        content: "";
                        display: block;
                        background: var(--color-main);
                        transition: width 0.3s ease;
                    }
                    &:hover {
                        color: var(--color-main);
                        &::after {
                            width: calc(100% - 96px);
                        }
                    }
                }
            }
        }
    }
}
.header_fixed_nav {
    position: fixed;
    top: -100px;
    left: 0;
    z-index: 999;
    width: 100%;
    background: #002244;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        top 0.7s ease;
    @media (max-width: 1100px) {
        display: none;
    }
    &.active {
        top: 0;
        opacity: 1;
        visibility: visible;
    }
    ul.header_fixed_nav_menu {
        display: flex;
        justify-content: center;
        align-items: center;
        li {
            a {
                padding: 24px 48px;
                display: block;
                color: #fff;
                font-weight: 700;
            }
        }
    }
}
.ham_btn {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999999;
    height: 72px;
    aspect-ratio: 1.2 / 1;
    display: none;
    align-items: center;
    justify-content: center;
    @media (max-width: 1100px) {
        display: flex;
    }
    @media (max-width: 500px) {
        height: 68px;
    }
    &.active {
        .in {
            div {
                background: #fff;
                @media (max-width: 500px) {
                    background: #002244;
                }
                &:nth-of-type(1) {
                    bottom: 0;
                    transform: rotate(45deg);
                }
                &:nth-of-type(2) {
                    opacity: 0;
                }
                &:nth-of-type(3) {
                    top: 0;
                    transform: rotate(-45deg);
                }
            }
        }
    }
    .in {
        position: relative;
        width: 40%;
        height: 33%;
        div {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            margin: auto;
            width: 100%;
            height: 4px;
            border-radius: 2em;
            background: #002244;
            transition: all 0.5s ease;
            &:nth-of-type(1) {
                bottom: calc(100% - 4px);
            }
            &:nth-of-type(3) {
                top: calc(100% - 4px);
            }
        }
    }
}
.header_drawer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
    &.active {
        opacity: 1;
        visibility: visible;
        .header_drawer_inner {
            left: 0;
        }
        .header_drawer_bg {
            opacity: 1;
        }
    }
    .header_drawer_inner {
        position: absolute;
        top: 0;
        left: -100%;
        padding-top: 100px;
        width: calc(100% - 80px);
        height: 100%;
        max-width: 600px;
        background: #fff;
        transition: left 0.6s ease;
        @media (max-width: 500px) {
            width: 100%;
        }
        ul.header_drawer_menu {
            li {
                a {
                    padding: 24px;
                    display: block;
                    text-align: center;
                    font-size: 18px;
                    color: #002244;
                    font-weight: 700;
                    @media (max-width: 500px) {
                        font-size: 16px;
                    }
                }
            }
        }
    }
    .header_drawer_bg {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        opacity: 0;
        transition: opacity 0.6s ease;
    }
}
/* ttl_ptn_1 */
.ttl_ptn_1 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5em;
    text-align: center;
    color: #e34e00;
    @media (max-width: 500px) {
        font-size: 18px;
    }
    .sub {
        margin-bottom: 0.8em;
        display: block;
        font-family: var(--font-en);
        font-style: normal;
    }
    .main {
        display: block;
        &.pc {
            @media (max-width: 700px) {
                display: none;
            }
        }
        &.sp {
            @media (min-width: 701px) {
                display: none;
            }
        }
    }
}
/* ttl_ptn_1_2 */
.ttl_ptn_1_2 {
    .sub {
        margin-bottom: 1em;
        display: block;
        font-size: 16px;
        font-family: var(--font-en);
        font-weight: 600;
        font-style: normal;
        color: #e34e00;
        text-align: center;
    }
    .main {
        display: block;
        font-size: 24px;
        font-weight: 1000;
        text-align: center;
        line-height: 1.5em;
        color: #fff;
        paint-order: stroke fill;
        -webkit-text-stroke-width: 6px;
        -webkit-text-stroke-color: #bf0000;
        letter-spacing: 0.08em;
        @media (max-width: 500px) {
            font-size: 18px;
            -webkit-text-stroke-width: 5px;
        }
        &.bd_none {
            -webkit-text-stroke-width: 0;
            font-weight: 700;
            color: #000;
            letter-spacing: 0.04em;
        }
        &.pc {
            @media (max-width: 700px) {
                display: none;
            }
        }
        &.sp {
            @media (min-width: 701px) {
                display: none;
            }
        }
    }
}
/* ttl_ptn_2 */
.ttl_ptn_2 {
    padding-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    .text {
        position: relative;
        z-index: 1;
        min-width: 222px;
        height: 36px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 900;
        font-size: 16px;
        color: #fff;
        text-align: center;
        background: linear-gradient(180deg, #e50000, #e34f00);
        line-height: 1.6em;
        border-radius: 3em;
        &::after {
            position: absolute;
            top: calc(100% - 4px);
            right: 20%;
            left: 0;
            z-index: -1;
            margin: auto;
            height: 16px;
            width: 11px;
            content: "";
            display: block;
            background: #e34f00;
            clip-path: polygon(0 0, 100% 0, 100% 0%, 50% 100%, 0 0%);
            transform: rotate(12deg);
        }
    }
    .text_2 {
        margin-top: 20px;
        width: 100%;
        display: block;
        font-size: 24px;
        font-weight: 700;
        text-align: center;
        line-height: 1.5em;
        color: #e34e00;
        letter-spacing: 0.08em;
        @media (max-width: 500px) {
            font-size: 18px;
        }
        &.bd_none {
            -webkit-text-stroke-width: 0;
            font-weight: 500;
            color: #000;
            letter-spacing: 0.04em;
        }
        &.pc {
            @media (max-width: 700px) {
                display: none;
            }
        }
        &.sp {
            @media (min-width: 701px) {
                display: none;
            }
        }
    }
}
/* ttl_ptn_3 */
.ttl_ptn_3 {
    text-align: center;
    color: #e34e00;
}
/* ttl_ptn_4 */
.ttl_ptn_4 {
    margin: 1.5em 0;
    padding: 0.8em 1em;
    background: #002244;
    color: #fff;
    text-align: center;
    font-size: 20px;
    border-radius: 4px;
    line-height: 1.4em;
    @media (max-width: 700px) {
        font-size: 18px;
    }
    @media (max-width: 500px) {
        font-size: 16px;
    }
}
/* btn_ptn_1 */
.btn_ptn_1 {
    display: flex;
    justify-content: center;
    a {
        position: relative;
        z-index: 10;
        min-height: 60px;
        min-width: 280px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        font-weight: 900;
        color: #fff;
        border-radius: 4px;
        transition: color 0.4s;
        &::before {
            position: absolute;
            top: 0;
            left: 0;
            z-index: -2;
            width: 100%;
            height: 100%;
            content: "";
            display: block;
            border: 1px solid #e50000;
            background: #fff;
            border-radius: 4px;
        }
        &::after {
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
            width: 100%;
            height: 100%;
            content: "";
            display: block;
            background: linear-gradient(90deg, #e50000, #e34f00);
            transition: opacity 0.4s;
            border-radius: 4px;
        }
        &:hover {
            color: #bf0000;
            &::after {
                opacity: 0;
            }
        }
    }
}
/* top_fv_ptn_1 */
.top_fv_ptn_1 {
    margin-bottom: 210px;
    @media (max-width: 700px) {
        margin-bottom: 120px;
    }
    @media (max-width: 600px) {
        margin-bottom: 80px;
    }
    @media (max-width: 500px) {
        margin-bottom: 60px;
    }

    .wrap {
        margin: 0 auto;
        max-width: 1440px;
        display: grid;
        grid-template-columns: 55% 45%;
        font-size: 16px;
        @media (max-width: 1440px) {
            font-size: 1.2vw;
        }
        @media (max-width: 700px) {
            font-size: 2.1vw;
            display: block;
        }
        .left {
            padding-top: 2em;
            @media (max-width: 700px) {
                padding-top: 1em;
                width: 100%;
            }
            h2 {
                padding-left: 1em;
                font-size: 3em;
                line-height: 1.8em;
                letter-spacing: 0.07em;
                @media (max-width: 700px) {
                    padding-left: 0.6em;
                    letter-spacing: 0.1em;
                    line-height: 2em;
                }
            }
            .catchphrase {
                margin-top: 0.5em;
                padding-left: 1.5em;
                width: 86%;
                height: 2.5em;
                display: flex;
                align-items: center;
                font-size: 2em;
                font-weight: 700;
                color: #fff;
                background: linear-gradient(90deg, #e50101, #ffad79);
                clip-path: polygon(0 0, 95.5% 0, 100% 50%, 95.5% 100%, 0 100%);
                @media (max-width: 700px) {
                    width: 95%;
                    padding-left: 0.88em;
                }
            }
            .price {
                padding-left: 3em;
                display: flex;
                align-items: end;
                @media (max-width: 700px) {
                    padding-left: 2em;
                    margin-top: 4.3em;
                    flex-wrap: wrap;
                }
                .sub {
                    margin-right: 0.4em;
                    padding: 0.2em 0.3em;
                    font-size: 1.25em;
                    text-align: center;
                    font-weight: 700;
                    color: #fff;
                    line-height: 1.4em;
                    background: #bf0000;
                    border-radius: 8px;
                    white-space: nowrap;
                    @media (max-width: 700px) {
                        width: 60%;
                        font-size: 2.29em;
                        border-radius: 4px;
                    }
                }
                .main {
                    margin-right: 0.05em;
                    margin-bottom: -0.08em;
                    font-size: 9.25em;
                    letter-spacing: -0.04em;
                    font-family: var(--font-en);
                    font-weight: 900;
                    line-height: 1;
                    color: #e34e00;
                    white-space: nowrap;
                    @media (max-width: 700px) {
                        font-size: 11.25em;
                    }
                }
                .en {
                    font-weight: 900;
                    .tax {
                        font-size: 1.125em;
                        display: block;
                        line-height: 1;
                        white-space: nowrap;
                        @media (max-width: 700px) {
                            font-size: 2em;
                        }
                    }
                    .yen {
                        display: block;
                        font-size: 3.5em;
                        line-height: 1;
                        white-space: nowrap;
                        @media (max-width: 700px) {
                            font-size: 5.5em;
                        }
                    }
                }
            }
            .point {
                margin-top: 3em;
                padding-left: 3em;
                display: flex;
                align-items: center;
                @media (max-width: 700px) {
                    padding: 0;
                    gap: 1em;
                    justify-content: center;
                }
                li {
                    position: relative;
                    margin-right: 1.5em;
                    width: 12.25em;
                    @media (max-width: 700px) {
                        width: 13.75em;
                        margin: 0;
                    }
                    .specialty {
                        position: absolute;
                        top: 1em;
                        left: 0;
                        z-index: 10;
                        width: 100%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        font-size: 1.25em;
                        font-weight: 700;
                        text-align: center;
                        line-height: 1.7em;
                        letter-spacing: 0;
                        @media (max-width: 700px) {
                            font-size: 1.35em;
                        }
                    }
                    svg {
                        width: 100%;
                        height: auto;
                    }
                }
            }
        }
        .images {
            margin-top: 20px;
            position: relative;
            @media (max-width: 700px) {
                margin-left: auto;
                width: 70%;
                aspect-ratio: 1;
            }
            .image_1 {
                position: absolute;
                top: 3%;
                left: -19%;
                width: 41%;
                aspect-ratio: 1;
                @media (max-width: 700px) {
                    top: 0%;
                    width: 50%;
                }
            }
            .image_2 {
                position: absolute;
                top: 3%;
                left: 3%;
                width: 109%;
                aspect-ratio: 700 / 700;
                @media (max-width: 700px) {
                    top: 9%;
                    left: 13%;
                    width: 92%;
                }
            }
            img {
                width: 100%;
                height: 100%;
                border-radius: 50%;
                object-fit: cover;
            }
        }
    }
}
/* top_fv_ptn_2 */
.top_fv_ptn_2 {
    width: 100%;
    .image {
        width: 100%;
        img {
            width: 100%;
            height: auto;
        }
    }
}
/* price_top */
.price_top {
    padding: 80px 24px;
    background: #f8f8f8;
    @media (max-width: 500px) {
        padding: 48px 20px;
    }
    .wrap {
        margin: 0 auto;
        max-width: var(--df-max-w);
        p.lead_price {
            position: relative;
            margin-top: 48px;
            padding: 0.66em 0 1.33em 0;
            width: 100%;
            display: flex;
            align-items: end;
            justify-content: center;
            background: linear-gradient(90deg, #e50000, #e34f00);
            color: #fff;
            font-size: 24px;
            font-weight: 700;
            line-height: 1.4em;
            border-radius: 8px;
            @media (max-width: 1000px) {
                padding: 0.96em 0 1.63em 0;
                font-size: 20px;
            }
            @media (max-width: 700px) {
                font-size: 3vw;
            }
            @media (max-width: 700px) {
                margin-top: 32px;
            }
            .text {
                margin-bottom: -0.2em;
                font-size: 1.3333em;
                line-height: 1.3125em;
            }
            &::after {
                position: absolute;
                top: 0.291em;
                left: 0.291em;
                z-index: 1;
                width: calc(100% - 0.582em);
                height: calc(100% - 0.582em);
                content: "";
                display: block;
                border: 0.125em solid #fff;
                border-radius: 0.3333333em;
            }
            .price {
                position: relative;
                z-index: 10;
                margin: 0 0.1em;
                font-size: 5em;
                letter-spacing: -0.03em;
                font-weight: 700;
                font-family: var(--font-en);
                line-height: 0.77;
            }
            .tax {
                position: relative;
                z-index: 10;
                display: block;
                font-size: 0.83em;
                line-height: 1.2em;
            }
            .en {
                position: relative;
                z-index: 10;
                font-size: 2em;
                line-height: 1;
            }
        }
        .price_list {
            margin: 32px 0;
            width: 100%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            @media (max-width: 1000px) {
                grid-template-columns: repeat(2, 1fr);
            }
            @media (max-width: 600px) {
                margin-top: 24px;
                gap: 8px;
            }
            @media (max-width: 500px) {
                margin: 20px -8px 32px -8px;
                width: calc(100% + 16px);
                gap: 4px;
            }
            li {
                background: #fff;
                border: 4px solid #e50101;
                border-radius: 16px;
                box-shadow: 0 3px 16px rgba(0, 0, 0, 0.16);
                @media (max-width: 600px) {
                    border-width: 2px;
                }
                @media (max-width: 500px) {
                    border-radius: 8px;
                }
                h3 {
                    height: 60px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background: #e50101;
                    color: #fff;
                    font-size: 20px;
                    border-radius: 10px 10px 0 0;
                    @media (max-width: 600px) {
                        height: 48px;
                        font-size: 16px;
                    }
                    @media (max-width: 500px) {
                        height: 32px;
                        font-size: 12px;
                        border-radius: 6px 6px 0 0;
                    }
                }
                .in {
                    padding: 16px;
                    padding-bottom: 20px;
                    @media (max-width: 500px) {
                        padding: 8px;
                    }
                    .description {
                        min-height: 3em;
                        display: block;
                        line-height: 1.6em;
                        text-align: center;
                        font-weight: 600;
                        @media (max-width: 600px) {
                            font-size: 12px;
                        }
                        @media (max-width: 400px) {
                            font-size: 11px;
                        }
                    }
                    .price_wrap {
                        margin-top: 16px;
                        display: flex;
                        justify-content: center;
                        align-items: end;
                        .price {
                            font-family: var(--font-en);
                            font-size: 72px;
                            font-weight: 700;
                            letter-spacing: -0.03em;
                            line-height: 0.77;
                            @media (max-width: 600px) {
                                font-size: 48px;
                            }
                            @media (max-width: 500px) {
                                font-size: 32px;
                            }
                        }
                        .tax {
                            display: block;
                            font-size: 14px;
                            line-height: 1.2em;
                            @media (max-width: 600px) {
                                font-size: 10px;
                            }
                        }
                        .en {
                            display: block;
                            font-size: 32px;
                            line-height: 1;
                            font-weight: 700;
                            text-align: center;
                            @media (max-width: 600px) {
                                font-size: 22px;
                            }
                        }
                    }
                    .btn_wrap {
                        margin-top: 32px;
                        display: flex;
                        justify-content: center;
                        @media (max-width: 600px) {
                            margin-top: 20px;
                        }
                        .btn {
                            position: relative;
                            z-index: 10;
                            min-width: 160px;
                            height: 48px;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            border-radius: 4px;
                            color: #fff;
                            font-weight: 700;
                            transition: color 0.4s;
                            @media (max-width: 600px) {
                                min-width: 120px;
                                height: 40px;
                                font-size: 14px;
                            }
                            &::before {
                                position: absolute;
                                top: 0;
                                left: 0;
                                z-index: -2;
                                width: 100%;
                                height: 100%;
                                content: "";
                                display: block;
                                border: 1px solid #e50000;
                                background: #fff;
                                border-radius: 4px;
                            }
                            &::after {
                                position: absolute;
                                top: 0;
                                left: 0;
                                z-index: -1;
                                width: 100%;
                                height: 100%;
                                content: "";
                                display: block;
                                background: linear-gradient(90deg, #e50000, #e34f00);
                                transition: opacity 0.4s;
                                border-radius: 4px;
                            }
                            &:hover {
                                color: #bf0000;
                                &::after {
                                    opacity: 0;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
/* voice_page */
.voice_page {
    padding: 80px 0;
    background: #fffef8;
    .voice_list {
        padding-top: 0;
    }
}
/* voice_list */
.voice_list {
    padding: 64px 24px;
    background: #fffef8;
    @media (max-width: 500px) {
        padding: 64px 20px;
    }
    .wrap {
        margin: 0 auto;
        max-width: var(--df-max-w);
    }
}
.more_btn_wrap {
    margin-top: 56px;
    display: flex;
    justify-content: center;
    .btn {
        position: relative;
        z-index: 10;
        padding: 16px 2em;
        min-width: 240px;
        min-height: 48px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 700;
        border-radius: 4px;
        color: #fff;
        transition: color 0.4s;
        &::before {
            position: absolute;
            top: 0;
            left: 0;
            z-index: -2;
            width: 100%;
            height: 100%;
            content: "";
            display: block;
            border: 1px solid #e50000;
            background: #fff;
            border-radius: 4px;
        }
        &::after {
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
            width: 100%;
            height: 100%;
            content: "";
            display: block;
            background: linear-gradient(90deg, #e50000, #e34f00);
            transition: opacity 0.4s;
            border-radius: 4px;
        }
        &:hover {
            color: #bf0000;
            &::after {
                opacity: 0;
            }
        }
    }
}
.voice_list_items {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    @media (max-width: 900px) {
        grid-template-columns: repeat(2, 1fr);
    }
    @media (max-width: 800px) {
        gap: 16px;
    }
    @media (max-width: 580px) {
        margin-top: 24px;
        grid-template-columns: repeat(1, 1fr);
    }
    li {
        position: relative;
        padding: 0 20px;
        padding-bottom: 80px;
        background: #fff;
        border: 3px solid #e50101;
        border-radius: 16px;
        box-shadow: 0 3px 16px rgba(0, 0, 0, 0.16);
        .cat {
            padding: 40px 0;
            display: flex;
            justify-content: center;
            .text {
                padding: 0 1em;
                min-width: calc(100% - 40px);
                height: 64px;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                background: #bf0000;
                color: #fff;
                line-height: 1.1;
                font-size: 20px;
                font-weight: 700;
                border-radius: 4px;
                @media (max-width: 1000px) {
                    min-width: calc(100% - 24px);
                }
                @media (max-width: 700px) {
                    font-size: 20px;
                }
            }
        }
        .in {
            padding: 16px 0 40px 0;
            border-top: 1px solid #e50101;
            .date {
                font-size: 14px;
            }
            .sub_title {
                margin-top: 0.8em;
                line-height: 1.4em;
                font-size: 20px;
                font-weight: 600;
                @media (max-width: 700px) {
                    font-size: 18px;
                }
            }
            p.comment {
                margin-top: 16px;
                line-height: 2em;
                font-size: 14px;
            }
            p.from_content {
                position: absolute;
                bottom: 40px;
                left: 0;
                right: 0;
                z-index: 10;
                margin: auto;
                height: 48px;
                width: 240px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-weight: 700;
                text-align: center;
                color: #fff;
                a {
                    height: 100%;
                    width: 100%;
                    color: #fff;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    transition: color 0.4s;
                }
                &::after,
                &::before {
                    position: absolute;
                    top: 0;
                    left: 0;
                    z-index: -1;
                    width: 100%;
                    height: 100%;
                    content: "";
                    display: block;
                    background: linear-gradient(90deg, #e34f00, #e50000);
                    border-radius: 4px;
                    transition: opacity 0.4s;
                }
                &::after {
                    z-index: -2;
                    background: none;
                    border: 2px solid #e50000;
                    background: #fff;
                }
                &:has(a) {
                    &:hover {
                        a {
                            color: #bf0000;
                        }
                        &::before {
                            opacity: 0;
                        }
                    }
                }
            }
        }
    }
}
.no_voices_message,
.no_voices {
    margin-top: 2em;
    text-align: center;
}
/* voice_pagination */
.voice_pagination {
    .wrap {
        .page-numbers {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            li {
                height: 2.857em;
                font-size: 14px;
                @media (max-width: 600px) {
                    font-size: 12px;
                }
                .page-numbers {
                    padding: 0 1.1em;
                    height: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: #bf0101;
                    font-weight: 600;
                    transition:
                        background 0.3s ease,
                        color 0.3s ease;
                    &.current {
                        border: 1px solid #bf0101;
                        pointer-events: none;
                    }
                    &.next,
                    &.prev {
                        background: #101010;
                        color: #fff;
                        border: none;
                    }
                    &:hover {
                        background: #bf0101;
                        color: #fff;
                    }
                }
            }
        }
    }
}
/* point_section */
.point_section {
    padding: 112px 24px;
    background: #fff5ed;
    @media (max-width: 500px) {
        padding: 64px 20px;
    }
    .wrap {
        margin: 0 auto;
        max-width: var(--df-max-w);
        .point_list {
            margin-top: 64px;
            @media (max-width: 1000px) {
                margin-top: 40px;
            }
            > li {
                padding: 20px;
                border: 4px solid #042244;
                background: #fff;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 44px;
                box-shadow: 0 3px 16px rgba(0, 0, 0, 0.16);
                @media (max-width: 1000px) {
                    gap: 24px;
                }
                @media (max-width: 800px) {
                    grid-template-columns: repeat(1, 1fr);
                }
                + li {
                    margin-top: 40px;
                    @media (max-width: 600px) {
                        margin-top: 24px;
                    }
                }
                .text_in {
                    display: flex;
                    flex-wrap: wrap;
                    align-items: start;
                    align-content: start;
                    .no {
                        margin-top: -24px;
                        padding: 8px 4px 12px 4px;
                        font-family: var(--font-en);
                        font-weight: 700;
                        color: #fff;
                        text-align: center;
                        background: linear-gradient(90deg, #ffad79, #e50101);
                        clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
                        position: relative;
                        @media (max-width: 500px) {
                            margin-left: -10px;
                        }
                        .text {
                            display: block;
                            font-size: 20px;
                            line-height: 1;
                        }
                        .num {
                            display: block;
                            font-size: 32px;
                            line-height: 1em;
                        }
                    }
                    h3 {
                        margin-top: 0.5em;
                        width: 100%;
                        font-size: 20px;
                        font-weight: 700;
                        line-height: 1.4em;
                        @media (max-width: 1000px) {
                            font-size: 20px;
                        }
                        @media (max-width: 800px) {
                            margin-top: 0;
                            padding-left: 0.8em;
                            width: calc(100% - 72px);
                            font-size: 24px;
                        }
                        @media (max-width: 600px) {
                            font-size: 20px;
                        }
                        @media (max-width: 500px) {
                            margin-top: -4px;
                            width: calc(100% - 62px);
                            font-size: 18px;
                        }
                        &::after {
                            margin-top: 8px;
                            margin-left: -20px;
                            height: 2px;
                            width: calc(100% + 20px);
                            content: "";
                            display: block;
                            background: #042244;
                            @media (max-width: 800px) {
                                display: none;
                            }
                        }
                    }
                    p {
                        padding-top: 1em;
                        line-height: 2.2em;
                    }
                }
                .image {
                    img {
                        width: 100%;
                        height: auto;
                    }
                }
            }
        }
    }
}
/* flow_section */
.flow_section {
    padding: 100px 24px;
    max-width: 100%;
    width: 100%;
    background: #fffef8;
    overflow: hidden;
    @media (max-width: 1100px) {
        padding: 80px 0;
    }
    @media (max-width: 500px) {
        padding: 64px 0;
    }
    .wrap {
        margin: 0 auto;
        max-width: 1300px;
        width: 100%;
        @media (max-width: 1100px) {
            padding-left: 16px;
            overflow-x: scroll;
        }
        @media (max-width: 500px) {
            padding-left: 12px;
        }
        .flow_info {
            margin-top: 64px;
            display: flex;
            justify-content: space-between;
            gap: 24px;
            @media (max-width: 1100px) {
                padding-right: 60px;
                width: 1110px;
            }
            @media (max-width: 900px) {
                margin-top: 40px;
            }
            li {
                padding: 32px;
                padding-right: 100px;
                width: 100%;
                max-width: 420px;
                flex-wrap: wrap;
                display: flex;
                align-content: space-between;

                color: #fff;
                background: linear-gradient(180deg, #e50101, #ffad79);
                clip-path: polygon(0 0, 78% 0, 100% 50%, 78% 100%, 0 100%);
                box-shadow: 0 3px 16px rgba(0, 0, 0, 0.16);
                @media (max-width: 1250px) {
                    padding: 24px;
                    padding-right: 80px;
                }
                &:last-of-type {
                    padding-right: 32px;
                    width: 100%;
                    max-width: 380px;

                    clip-path: initial;
                    @media (max-width: 1250px) {
                        padding: 24px;
                    }
                }
                .text_in {
                    width: 100%;
                    h3 {
                        display: flex;
                        align-items: center;
                        .no {
                            .text {
                                display: block;
                                font-size: 18px;
                                width: 50px;
                                height: 28px;
                                background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 30"><defs><path id="arc" d="M 8 22 Q 30 8 52 22"/></defs><text font-family="bahnschrift" font-size="12" font-weight="bold" fill="%23ffffff"><textPath href="%23arc" startOffset="50%" text-anchor="middle">STEP</textPath></text></svg>')
                                    no-repeat center;
                                background-size: 180% 180%;
                                text-indent: -9999px;
                                fill: #fff;
                            }
                            .num {
                                margin-top: -0.35em;
                                display: block;
                                text-align: center;
                                font-size: 40px;
                                font-family: var(--font-en);
                                font-weight: 700;
                                line-height: 1em;
                            }
                        }
                        .text_main {
                            padding-left: 0.5em;
                            font-size: 20px;
                            line-height: 1.4;
                            @media (max-width: 1200px) {
                                font-size: 18px;
                            }
                        }
                    }
                    p {
                        margin-top: 2em;
                        line-height: 2em;
                        font-size: 18px;
                        @media (max-width: 1200px) {
                            font-size: 16px;
                        }
                    }
                }
                .image {
                    margin-top: 64px;
                    max-width: 166px;
                    max-height: 150px;
                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                        opacity: 0.4;
                    }
                }
            }
        }
    }
}
/* shop_info_section */
.shop_info_section {
    padding: 80px 24px;
    background: #fffef8;
    @media (max-width: 500px) {
        padding: 80px 20px;
    }
    .wrap {
        margin: 0 auto;
        max-width: var(--df-max-w);
        .shop_nav {
            margin-top: 64px;
            .nav_list {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
                @media (max-width: 900px) {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 16px;
                }
                @media (max-width: 600px) {
                    grid-template-columns: 1fr;
                    gap: 8px;
                }

                li {
                    list-style: none;
                }
                a {
                    height: 60px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border: 2px solid #bf0101;
                    background: #fff;
                    color: #010101;
                    font-weight: 700;
                    border-radius: 4px;
                    transition:
                        color 0.3s,
                        background 0.3s;
                    &:hover {
                        background: #bf0101;
                        color: #fff;
                    }
                }
            }
        }
        .shop_info_list {
            margin-top: 60px;
            list-style: none;
            @media (max-width: 900px) {
                margin-top: 40px;
            }

            .shop_item {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                background: #002245;
                color: #fff;
                @media (max-width: 800px) {
                    grid-template-columns: 1fr;
                }
                + .shop_item {
                    margin-top: 60px;
                    @media (max-width: 900px) {
                        margin-top: 40px;
                    }
                    @media (max-width: 600px) {
                        margin-top: 32px;
                    }
                    @media (max-width: 500px) {
                        margin-top: 24px;
                    }
                }
                .left {
                    padding: 24px;
                    padding-right: 10px;
                    display: flex;
                    flex-wrap: wrap;
                    align-content: space-between;
                    @media (max-width: 800px) {
                        padding: 24px;
                    }
                    .text_in {
                        h3,
                        h2 {
                            margin: 0.8em 0;
                            font-size: 32px;
                            line-height: 1.5em;
                            font-weight: 700;
                            @media (max-width: 1200px) {
                                font-size: 28px;
                            }
                            @media (max-width: 900px) {
                                font-size: 24px;
                            }
                            @media (max-width: 600px) {
                                font-size: 22px;
                            }
                        }
                        p {
                            font-size: 20px;
                            line-height: 1.8em;
                            font-weight: 400;
                            @media (max-width: 900px) {
                                font-size: 18px;
                            }
                            @media (max-width: 500px) {
                                font-size: 16px;
                            }
                        }
                    }
                    .cta_wrap {
                        margin-top: 40px;
                        padding-bottom: 12px;
                        width: 100%;
                        display: flex;
                        justify-content: center;
                        @media (max-width: 800px) {
                            padding-bottom: 0;
                        }
                        .btn {
                            position: relative;
                            z-index: 10;
                            padding: 1em 2em;
                            min-width: 240px;
                            min-height: 48px;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            font-weight: 600;
                            color: #fff;
                            transition: color 0.4s;
                            &::before {
                                position: absolute;
                                top: 0;
                                left: 0;
                                z-index: -2;
                                width: 100%;
                                height: 100%;
                                content: "";
                                display: block;
                                border: 1px solid #e50000;
                                background: #fff;
                                border-radius: 4px;
                            }
                            &::after {
                                position: absolute;
                                top: 0;
                                left: 0;
                                z-index: -1;
                                width: 100%;
                                height: 100%;
                                content: "";
                                display: block;
                                background: linear-gradient(90deg, #e50000, #e34f00);
                                transition: opacity 0.4s;
                                border-radius: 4px;
                            }
                            &:hover {
                                color: #bf0000;
                                &::after {
                                    opacity: 0;
                                }
                            }
                        }
                    }
                }
                .image {
                    padding: 20px;
                    padding-left: 10px;
                    @media (max-width: 800px) {
                        padding: 20px;
                        padding-top: 8px;
                    }
                    img {
                        width: 100%;
                        height: auto;
                    }
                    .none_image {
                        width: 100%;
                        aspect-ratio: 280 / 248;
                        background: #efefef;
                    }
                }
            }
        }
    }
}
/* footer_before_cta */
.footer_before_cta,
.cta_tel_section {
    margin: 80px 0;
    padding: 0 24px;
    @media (max-width: 500px) {
        padding: 0 12px;
    }
    .wrap {
        margin: 0 auto;
        max-width: var(--df-max-w);
        .cta_wrap {
            margin: 32px 0;
            display: flex;
            justify-content: center;
            a.btn {
                position: relative;
                z-index: 10;
                padding: 24px;
                height: 80px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 4px;
                font-size: 20px;
                line-height: 1.3em;
                color: #fff;
                font-weight: 700;
                box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
                overflow: hidden;
                transition: color 0.4s;
                @media (max-width: 500px) {
                    font-size: 18px;
                }
                @media (max-width: 400px) {
                    padding: 20px;
                    font-size: 17px;
                }
                .icon {
                    margin-right: 20px;
                    width: 40px;
                    @media (max-width: 500px) {
                        margin-right: 16px;
                        width: 32px;
                    }
                    svg {
                        fill: #fff;
                        width: 100%;
                        height: auto;
                        transition: fill 0.4s;
                    }
                }
                .text {
                    padding: 0 1em;
                    width: calc(100% - 60px);
                    white-space: nowrap;
                    @media (max-width: 500px) {
                        width: calc(100% - 48px);
                    }
                }
                &::before {
                    position: absolute;
                    top: 0;
                    left: 0;
                    z-index: -2;
                    width: 100%;
                    height: 100%;
                    content: "";
                    display: block;
                    border: 1px solid #e50000;
                    border-radius: 4px;
                }
                &::after {
                    position: absolute;
                    top: 0;
                    left: 0;
                    z-index: -1;
                    width: 100%;
                    height: 100%;
                    content: "";
                    display: block;
                    background: linear-gradient(90deg, #e50000, #e34f00);
                    transition: opacity 0.4s;
                }
                &:hover {
                    color: #bf0000;
                    &::after {
                        opacity: 0;
                    }
                    svg {
                        fill: #bf0000;
                    }
                }
            }
        }
        .shop_cta_list {
            margin-top: 56px;
            padding: 0 24px;
            display: flex;
            justify-content: center;
            gap: 32px 120px;
            flex-wrap: wrap;
            @media (max-width: 1000px) {
                justify-content: center;
            }
            @media (max-width: 400px) {
                padding: 0 12px;
            }
            li {
                max-width: 400px;
                width: 100%;
                text-align: center;
                h3 {
                    padding: 4px 1em;
                    background: #101010;
                    color: #fff;
                    text-align: center;
                    font-size: 20px;
                    line-height: 1.4;
                    font-weight: 600;
                    clip-path: polygon(2.3% 0%, 100% 0%, 97.7% 100%, 0% 100%);
                    @media (max-width: 500px) {
                        font-size: 18px;
                    }
                }
                .tel {
                    margin-top: 10px;
                    width: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-size: 40px;
                    font-weight: 700;
                    color: #101010;
                    font-family: var(--font-en);
                    @media (max-width: 500px) {
                        font-size: 36px;
                    }
                    .icon {
                        margin-right: 8px;
                        width: 28px;
                        svg {
                            width: 100%;
                            height: auto;
                        }
                    }
                }
                p {
                    margin-top: 12px;
                    width: 100%;
                    font-weight: 400;
                }
            }
        }
    }
}
/* footer_main */
.footer_main {
    background: #bf0000;
    color: #fff;
    text-align: center;
    .footer_nav {
        padding: 40px;
        .footer_nav_menu {
            display: flex;
            justify-content: center;
            @media (max-width: 900px) {
                display: block;
            }
            li {
                a {
                    padding: 16px 24px;
                    display: block;
                    color: #fff;
                    font-weight: 700;
                }
            }
        }
    }
    .footer_info {
        padding: 0 4px 12px 4px;
        line-height: 1.4em;
        @media (max-width: 700px) {
            font-size: 14px;
        }
        @media (max-width: 600px) {
            font-size: 12px;
        }
    }
}
/* price_list_section */
.price_list_section {
    margin: 80px 0;
    padding: 0 24px;
    @media (max-width: 500px) {
        padding: 0 20px;
    }
    .wrap {
        margin: 0 auto;
        max-width: var(--df-max-w);
        .price_list_nav {
            margin-top: 64px;
            @media (max-width: 900px) {
                margin-top: 40px;
            }
            @media (max-width: 500px) {
                margin-top: 32px;
            }
            .nav_list {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
                @media (max-width: 900px) {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 16px;
                }
                @media (max-width: 500px) {
                    grid-template-columns: 1fr;
                    gap: 8px;
                }

                li {
                    list-style: none;
                }
                a {
                    height: 60px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border: 2px solid #bf0101;
                    color: #bf0101;
                    font-weight: 600;
                    border-radius: 4px;
                    transition:
                        color 0.3s,
                        background 0.3s;
                    @media (max-width: 600px) {
                        height: 56px;
                        font-size: 14px;
                    }
                    @media (max-width: 500px) {
                        height: 48px;
                    }
                    &:hover {
                        color: #fff;
                        background: #bf0000;
                    }
                }
            }
        }
        .price_category {
            padding-top: 120px;
            @media (max-width: 900px) {
                padding-top: 104px;
            }
            @media (max-width: 500px) {
                padding-top: 72px;
            }
            h2 {
                padding: 0.2em 1em;
                background: linear-gradient(90deg, #e50000, #e34f00);
                color: #fff;
                font-size: 24px;
                font-weight: 700;
                line-height: 1.5em;
                border-radius: 4px;
                @media (max-width: 500px) {
                    font-size: 20px;
                    text-align: center;
                }
            }
            .price_detail {
                padding: 24px;
                display: flex;
                flex-wrap: wrap;
                @media (max-width: 700px) {
                    padding: 24px 4px;
                }
                .image {
                    width: 280px;
                    text-align: center;
                    font-weight: 700;
                    line-height: 1.6em;
                    @media (max-width: 900px) {
                        width: 100%;
                    }
                    > div {
                        margin-bottom: 8px;
                        width: 100%;
                        background: #efefef;
                        img {
                            width: 100%;
                            height: auto;
                        }
                    }
                }
                .price_table_wrap {
                    padding-left: 24px;
                    width: calc(100% - 280px);
                    @media (max-width: 900px) {
                        margin-top: 32px;
                        padding: 0;
                        width: 100%;
                    }
                    .price_table {
                        border: 1px solid #002244;
                        > div {
                            display: grid;
                            grid-template-columns: 240px calc(100% - 240px);
                            @media (max-width: 700px) {
                                grid-template-columns: 180px calc(100% - 180px);
                            }
                            @media (max-width: 500px) {
                                grid-template-columns: 140px calc(100% - 140px);
                            }
                            dt {
                                padding: 8px 8px;
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                background: #002244;
                                color: #fff;
                                font-size: 20px;
                                font-weight: 700;
                                line-height: 1.6em;
                                text-align: center;
                                @media (max-width: 1200px) {
                                    font-size: 18px;
                                }
                                @media (max-width: 700px) {
                                    font-size: 16px;
                                }
                                @media (max-width: 500px) {
                                    font-size: 14px;
                                }
                            }
                            dd {
                                padding: 8px 1em;
                                text-align: right;
                                font-size: 24px;
                                line-height: 1.6em;
                                border-bottom: 1px solid #002244;
                                @media (max-width: 1200px) {
                                    font-size: 20px;
                                }
                                @media (max-width: 500px) {
                                    font-size: 16px;
                                }
                                &.red {
                                    color: #bf0000;
                                }
                                &.total_price {
                                    font-size: 32px;
                                    color: #bf0000;
                                    @media (max-width: 1200px) {
                                        font-size: 28px;
                                    }
                                    @media (max-width: 500px) {
                                        font-size: 20px;
                                    }
                                }
                            }
                        }
                    }
                    .notes_section {
                        margin-top: 8px;
                        line-height: 1.6em;
                        color: #bf0000;
                        font-weight: 700;
                        text-align: right;
                    }
                }
            }
        }
    }
}
/* tenpo_page */
.tenpo_page {
    padding-top: 80px;
    @media (max-width: 500px) {
        padding-top: 60px;
    }
}
/* tenpo_detail */
.tenpo_detail {
    margin: 120px 0;
    padding: 0 24px;
    @media (max-width: 500px) {
        margin: 80px 0;
        padding: 0 20px;
    }
    .wrap {
        margin: 0 auto;
        max-width: var(--df-max-w);
        h1 {
            padding: 0.4em 1em;
            font-size: 20px;
            font-weight: 700;
            background: #002244;
            color: #fff;
            line-height: 1.4em;
        }
        .tenpo_info {
            margin-top: 56px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            @media (max-width: 900px) {
                margin-top: 40px;
                grid-template-columns: 1fr;
            }
            .text_in {
                padding-right: 24px;
                @media (max-width: 900px) {
                    padding: 0 8px;
                }
                h2 {
                    font-size: 24px;
                    line-height: 1.4em;
                    color: #002244;
                    font-weight: 700;
                    @media (max-width: 600px) {
                        font-size: 20px;
                    }
                }
                dl {
                    margin-top: 56px;
                    display: grid;
                    grid-template-columns: 147px calc(100% - 147px);
                    @media (max-width: 900px) {
                        margin-top: 32px;
                    }
                    @media (max-width: 600px) {
                        grid-template-columns: 120px calc(100% - 120px);
                    }
                    dt,
                    dd {
                        padding: 1em 0;
                        line-height: 1.8em;
                        @media (max-width: 600px) {
                            font-size: 14px;
                        }
                        &:first-of-type {
                            padding-top: 0;
                        }
                        a {
                            color: #002244;
                        }
                    }
                    dt {
                        font-weight: 700;
                    }
                }
            }
            .map {
                width: 100%;
                aspect-ratio: 1;
                @media (max-width: 900px) {
                    margin-top: 24px;
                    height: 300px;
                    aspect-ratio: initial;
                }
                iframe {
                    width: 100%;
                    height: 100%;
                    border: none;
                }
            }
        }
    }
}
/* tenpo_gallery */
.tenpo_gallery {
    margin: 80px 0;
    padding: 0 24px;
    @media (max-width: 500px) {
        padding: 0 20px;
    }
    .wrap {
        margin: 0 auto;
        max-width: var(--df-max-w);
        h2 {
            padding: 0.4em 1em;
            font-size: 24px;
            font-weight: 700;
            border-bottom: 3px solid #002244;
            line-height: 1.4em;
        }
        .images {
            margin-top: 40px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            @media (max-width: 900px) {
                grid-template-columns: repeat(2, 1fr);
            }
            @media (max-width: 800px) {
                gap: 16px;
            }
            @media (max-width: 600px) {
                margin-top: 16px;
                gap: 8px;
            }
            li {
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }
        }
    }
}
/* tenpo_message */
.tenpo_message {
    margin: 80px 0;
    padding: 0 24px;
    @media (max-width: 500px) {
        padding: 0 20px;
    }
    .wrap {
        margin: 0 auto;
        max-width: var(--df-max-w);
        p.message {
            margin-top: 1em;
            line-height: 2.4em;
            @media (max-width: 500px) {
                font-size: 15px;
            }
        }
        p.tenpo_name {
            margin-top: 1em;
            font-weight: 700;
            font-size: 20px;
            line-height: 1.4em;
            text-align: right;
            @media (max-width: 600px) {
                font-size: 18px;
            }
        }
    }
}
/* faq_page */
.faq_page {
    margin: 80px 0;
}
/* faq_list */
.faq_list {
    padding: 0 24px;
    @media (max-width: 500px) {
        padding: 0 20px;
    }
    .wrap {
        margin: 0 auto;
        max-width: var(--df-max-w);
        .faq_items {
            margin-top: 56px;
            @media (max-width: 500px) {
                margin-top: 32px;
            }
            .row {
                + .row {
                    margin-top: 48px;
                    @media (max-width: 700px) {
                        margin-top: 24px;
                    }
                    @media (max-width: 500px) {
                        margin-top: 16px;
                    }
                }
                dt {
                    position: relative;
                    padding: 1em 32px;
                    padding-right: 64px;
                    background: #1a1a1a;
                    font-size: 20px;
                    cursor: pointer;
                    @media (max-width: 700px) {
                        padding: 1em 20px;
                        padding-right: 48px;
                        font-size: 18px;
                    }
                    @media (max-width: 500px) {
                        padding: 1em 12px;
                        padding-right: 40px;
                        font-size: 16px;
                    }
                    h2 {
                        display: flex;
                        align-items: start;
                        color: #fff;
                        line-height: 1.5em;
                        .q_mark {
                            width: 1.8em;
                        }
                        .question_text {
                            width: calc(100% - 1.5em);
                        }
                    }
                    &.active {
                        .open_close_btn {
                            &::after {
                                transform: rotate(90deg);
                            }
                        }
                    }
                    .open_close_btn {
                        position: absolute;
                        top: 1.2em;
                        right: 1em;
                        z-index: 2;
                        margin: auto;
                        width: 24px;
                        height: 24px;
                        @media (max-width: 500px) {
                            top: 0;
                            bottom: 0;
                            right: 0.5em;
                            width: 16px;
                            height: 16px;
                        }
                        &::before,
                        &::after {
                            position: absolute;
                            top: 0;
                            left: 0;
                            bottom: 0;
                            right: 0;
                            height: 100%;
                            width: 4px;
                            content: "";
                            display: block;
                            background: #fff;
                            border-radius: 1em;
                            transition: 0.3s;
                            @media (max-width: 500px) {
                                width: 2px;
                            }
                        }
                        &::before {
                            transform: rotate(90deg);
                        }
                    }
                }
                dd {
                    padding: 1.2em 32px;
                    padding-bottom: 0;
                    display: none;
                    @media (max-width: 700px) {
                        padding: 1.2em 20px;
                        padding-bottom: 0;
                    }
                    @media (max-width: 500px) {
                        padding: 1.2em 12px;
                        padding-right: 8px;
                    }
                    .text {
                        display: flex;
                        .a_mark {
                            padding-top: 0.2em;
                            width: 2em;
                            color: #bf0000;
                            font-size: 20px;
                            @media (max-width: 700px) {
                                width: 1.5em;
                            }
                        }
                        p {
                            width: calc(100% - 2em);
                            line-height: 2em;
                            font-size: 14px;
                            @media (max-width: 700px) {
                                width: calc(100% - 1.5em);
                            }
                        }
                    }
                }
            }
        }
    }
}
/* campaign_section */
.campaign_section {
    margin: 120px 0;
    padding: 0 24px;
    @media (max-width: 500px) {
        margin: 64px 0;
        padding: 0 20px;
    }
    .wrap {
        max-width: var(--df-max-w);
        width: 100%;
        margin: 0 auto;
        .banner_images {
            margin-top: 60px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
            @media (max-width: 1200px) {
                gap: 32px;
            }
            @media (max-width: 600px) {
                margin-top: 48px;
                grid-template-columns: repeat(1, 1fr);
            }
            .banner {
                width: 100%;
                display: block;
                img {
                    width: 100%;
                    height: auto;
                }
            }
        }
    }
}
/* great_benefits_section */
.great_benefits_section {
    position: relative;
    margin: 80px 0;
    padding: 0 24px;
    @media (max-width: 500px) {
        padding: 0 20px;
    }
    #great_benefits{
        position: absolute;
        top: -100px;
    }
    .wrap {
        margin: 0 auto;
        max-width: var(--df-max-w);
        .great_benefits {
            margin-top: 60px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            list-style: none;
            @media (max-width: 1200px) {
                gap: 16px;
            }
            @media (max-width: 900px) {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
            @media (max-width: 600px) {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            @media (max-width: 450px) {
                grid-template-columns: repeat(1, 1fr);
                gap: 12px;
            }

            li {
                @media (max-width: 900px) {
                    flex: initial;
                    width: 100%;
                }
                img {
                    width: 100%;
                    height: auto;
                }
            }
        }
    }
}
/* pay_info_section */
.pay_info_section {
    margin: 80px 0;
    padding: 0 24px;
    @media (max-width: 500px) {
        padding: 0 20px;
    }
    .wrap {
        margin: 0 auto;
        padding: 40px;
        max-width: 944px;
        border-radius: 16px;
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
        @media (max-width: 600px) {
            padding: 40px 24px 32px 24px;
        }
        @media (max-width: 500px) {
            padding: 32px 16px 24px 16px;
        }
        h2 {
            font-size: 24px;
            font-weight: 700;
            line-height: 1.4em;
            text-align: center;
            @media (max-width: 700px) {
                font-size: 20px;
            }
            @media (max-width: 500px) {
                font-size: 18px;
            }
        }
        h3 {
            margin: 20px auto 8px auto;
            padding: 0 1em;
            max-width: 800px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            background: #002244;
            border-radius: 4em;
            @media (max-width: 500px) {
                font-size: 12px;
            }
        }
        .image {
            margin-top: 16px;
            padding: 0 16px;
            display: flex;
            justify-content: center;
            img {
                width: 100%;
                max-width: 345px;
                height: auto;
            }
        }
        .qr_ng{
            margin-top: 1em;
            color: #cf4646;
            line-height: 1.6em;
            text-align: center;
            font-size: 0.9em;
        }
    }
}
/* page_thanks */
.page_thanks {
    margin: 40px 0 120px 0;
    padding: 0 24px;
    .wrap {
        max-width: var(--df-max-w);
        margin: 0 auto;
        .thanks_message {
            margin-top: 56px;
            margin-bottom: 60px;
            text-align: center;
            p {
                line-height: 1.8em;
                @media (max-width: 500px) {
                    font-size: 14px;
                }
                + p {
                    margin-top: 1.5em;
                }
            }
        }
    }
}
/* flow_cta */
.flow_cta {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 999;
    width: 288px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s,
        visibility 0.3s;
    @media (max-width: 700px) {
        bottom: 8px;
        right: 0;
        left: 0;
        margin: 0 auto;
        padding: 0 16px;
        max-width: 400px;
        width: 100%;
    }
    &.active {
        opacity: 1;
        visibility: visible;
    }
    &.hidden_lock {
        display: none;
    }
    .image {
        display: block;
        height: 100%;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
        img {
            width: 100%;
            height: auto;
        }
    }
    .close_btn {
        position: absolute;
        top: -8px;
        left: -8px;
        z-index: 10;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #bf0000;
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
        @media (max-width: 700px) {
            display: none;
        }
        div {
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            margin: auto;
            height: 2px;
            width: 10px;
            background: #fff;
            transform: rotate(45deg);
            &:nth-of-type(2) {
                transform: rotate(-45deg);
            }
        }
    }
}
/* flow_popup_cta */
.flow_popup_cta {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 0 16px;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s,
        visibility 0.3s;
    @media (max-width: 700px) {
        display: flex;
    }
    &.active {
        opacity: 1;
        visibility: visible;
    }
    &.hidden_lock {
        display: none;
    }
    .wrap {
        position: relative;
        max-width: 480px;
        &.hidden_lock {
            display: none;
        }
        .image {
            display: block;
            height: 100%;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
            img {
                width: 100%;
                height: auto;
            }
        }
        .close_btn {
            position: absolute;
            top: -20px;
            left: -20px;
            z-index: 10;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #650404;
            box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
            @media (max-width: 600px) {
                top: -10px;
                left: -10px;
            }
            div {
                position: absolute;
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;
                margin: auto;
                height: 2px;
                width: 50%;
                background: #fff;
                transform: rotate(45deg);
                &:nth-of-type(2) {
                    transform: rotate(-45deg);
                }
            }
        }
    }
}
/* page_contact */
.page_contact {
    margin: 80px 0;
}

/* ------
show_scroll_icon
------ */
.show_scroll_icon {
    position: relative;
    z-index: 100;
    height: 0;
    display: none;
    @media (max-width: 700px) {
        display: block;
    }
    .show_scroll_icon_in {
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        margin: auto;
        width: 100%;
        display: flex;
        justify-content: center;
        opacity: 0;
        animation: anime_show_scroll_icon_in 3.5s forwards;
        animation-delay: 0.5s;
        visibility: hidden;
        .scroll_icon {
            margin-top: 120px;
            padding: 24px;
            width: 200px;
            height: 200px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            align-content: center;
            justify-content: center;
            background: #002244;
            color: #fff;
            text-align: center;
            font-size: 14px;
            outline-offset: -4px;
            outline: 1px solid #fff;
            p {
                margin-bottom: 12px;
                width: 100%;
                line-height: 1.4em;
            }
            svg {
                width: 50%;
                height: auto;
                fill: #fff;
                animation: anime_show_scroll_icon_svg 3s ease 0s forwards;
                animation-delay: 0.7s;
                transform: translateX(20px);
            }
        }
    }
}
@keyframes anime_show_scroll_icon_in {
    0% {
        opacity: 0;
        visibility: hidden;
    }
    10% {
        opacity: 1;
        visibility: visible;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes anime_show_scroll_icon_svg {
    0% {
        transform: translateX(20px);
    }
    20% {
        transform: translateX(-20px);
    }
    40% {
        transform: translateX(20px);
    }
    50% {
        transform: translateX(-20px);
    }
    70% {
        transform: translateX(20px);
    }
    80% {
        transform: translateX(-20px);
    }
    100% {
        transform: translateX(0);
    }
}
