@charset "utf-8";

/* reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: normal;
}
body {
    color: #000;
    font-family: "Noto Sans JP", "Yu Gothic", YuGothic, "Helvetica Neue", "ヒラギノ角ゴ ProN W3",
        Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    position: relative;
    overscroll-behavior: none;
    -webkit-text-size-adjust: 100%;
}
ul,
ol {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
a {
    text-decoration: none;
}
.-bold {
    font-weight: bold;
}
.-line {
    text-decoration: underline solid 2px var(--red);
    text-underline-offset: 4px;
}

/* 表示 */
.visible_pc {
    display: none;
}
.visible_sp {
    display: block;
}
@media screen and (min-width: 768px) {
    .visible_pc {
        display: block;
    }
    .visible_sp {
        display: none;
    }
}

/* color */
:root {
    --red: #e71f38;
    --paypay: #e71f39;
    --gold: #a78f54;
    --blue: #0089ff;
    --gold_bg: #f4eddc;
    --white_bg: #fffcf5;
    --box_bg: #e6d5ab; /* intro__item,th */
}

/* utility */
.u-mt8 {
    margin-top: 8px;
}

/* container */
.l-inner {
    width: 89%;
    margin-left: auto;
    margin-right: auto;
}
.l-container {
    padding-top: 16px;
    border-radius: 50px 50px 0 0;
}
.l-container.-gold {
    background: var(--gold_bg);
}
.l-container.-white {
    background: var(--white_bg);
}

/* body */
@media screen and (min-width: 768px) {
    body {
        position: relative;
        background-color: var(--red);
    }
}

/* p-bg */
@media screen and (min-width: 768px) {
    .p-bg {
        position: fixed;
        top: calc(50%);
        left: calc(50%);
        transform: translate(-50%, -50%);
        width: calc(100vw - 48px);
        height: calc(100vh - 48px);
        background-color: var(--white_bg);
        z-index: 0;
        border-radius: 30px;
    }
    .p-bg:before {
        content: "";
        position: absolute;
        top: -24px;
        left: -24px;
        width: 100vw;
        height: calc(100vh + 64px);
        background: url(../img/bg_money_pc.webp) center 10px / cover no-repeat;
        z-index: 10;
    }
    .p-bg__dog {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: 1200px;
        height: 143px;
        background: url(../img/img_wank04.webp) center bottom / contain no-repeat;
        z-index: 5;
    }
}

/* wrapper */
@media screen and (min-width: 768px) {
    .wrapper {
        display: flex;
        justify-content: flex-end;
        position: relative;
        width: calc(100% - 48px - 24px);
        height: 100vh;
        margin-left: auto;
        margin-right: auto;
        overflow: hidden;
        z-index: 0;
    }
}

@media screen and (min-width: 950px) {
    .wrapper {
        justify-content: center;
    }
}

/* p-appeal */
.p-appeal {
    display: none;
}

@media screen and (min-width: 950px) {
    .p-appeal {
        max-width: 660px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-grow: 1;
        z-index: 100;
    }

    .p-appeal__logo {
        width: 100%;
        max-width: 190px;
        margin-bottom: calc(42px - 12px);
    }

    .p-appeal__title {
        width: 100%;
        max-width: 300px;
        margin-bottom: 40px;
    }

    .p-appeal__app {
        text-align: center;
    }

    .p-appeal__app > span {
        display: inline-block;
        margin-bottom: 12px;
    }

    .p-appeal__app .p-intro__note {
        width: max-content;
        margin-left: auto;
        margin-right: auto;
    }
}

/* main */
@media screen and (min-width: 768px) {
    main {
        flex-shrink: 0;
        width: 375px;
        height: calc(100% - 60px);
        margin-top: 60px;
        background-color: #fff;
        border: 3px solid var(--gold);
        border-bottom: none;
        border-radius: 40px 40px 0 0;
        overflow: scroll;
        box-shadow: 0 0 28px rgba(0, 0, 0, 0.16);
        z-index: 0;
    }
}

/* p-toc */
.p-toc {
    display: none;
}
@media screen and (min-width: 768px) {
    .p-toc {
        display: block;
        position: relative;
        top: 20%;
        z-index: 100;
    }
    .p-toc ul {
        display: flex;
        flex-direction: column;
        row-gap: 16px;
        width: 228px;
        background: var(--gold_bg);
        border-radius: 0 30px 30px 0;
        padding: 38px 34px;
    }
    .p-toc ul li a {
        color: var(--red);
        opacity: 0.4;
        font-weight: bold;
        transition: 0.2s;
    }
    .p-toc ul li a:hover {
        opacity: 1;
    }
    .p-toc ul li a.is-active {
        position: relative;
        opacity: 1;
    }
    .p-toc ul li a.is-active::before {
        position: absolute;
        top: 8px;
        left: -16px;
        content: "";
        display: inline-block;
        width: 8px;
        height: 8px;
        background-color: var(--red);
        border-radius: 50%;
    }
}

/* header */
header {
    text-align: left;
    padding: 8px 16px;
    background: #fff;
}
header h1 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 135px;
}

/* kv */
.p-kv {
    margin-bottom: 40px;
}
.p-kv__qr {
    text-align: center;
}

/* cta */
.p-cta {
    text-align: center;
    padding-bottom: 4px;
}
.p-cta__button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    width: 281px;
    height: 58px;
    line-height: 58px;
    border-radius: 29px;
    background: var(--red);
    box-shadow: 0 4px 0 #910013;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    transition: 0.2s;
}
.p-cta__button:after {
    display: inline-block;
    content: "";
    width: 32px;
    height: 32px;
    background: url(../img/icon_arrow.webp) center/contain no-repeat;
    position: absolute;
    right: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
}
@media (hover: hover) {
    .p-cta__button:hover {
        transform: translateY(4px);
        box-shadow: none;
    }
}
@media screen and (min-width: 768px) {
    .p-cta__button {
        display: none;
    }
}

/* intro */
.p-intro {
    margin-bottom: 60px;
}
.p-intro h2 {
    text-align: center;
    padding: 2px 0 22px;
    background: url(../img/bg_paypay.webp) center top 2px / cover no-repeat;
}
.p-intro__list--title {
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
    width: 100%;
    padding: 8px 0;
    border-radius: 6px 6px 0 0;
    background: var(--gold);
    position: relative;
    transition: 0.2s;
}
.p-intro__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 17px;
    background: var(--box_bg);
}
.p-intro__item {
    width: 100%;
    padding: 16px 27px 30px 23px;
    position: relative;
}
.p-intro__item:not(:last-of-type)::after {
    position: absolute;
    left: 50%;
    bottom: 0;
    background: radial-gradient(circle farthest-side, #fff, #fff 60%, transparent 60%, transparent);
    background-size: 10px 10px;
    content: "";
    height: 10px;
    width: 90%;
    transform: translateX(-50%);
}
.p-intro__item dt.-sub {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 8px;
}
.p-intro__item dt.-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}
.p-intro__item dt.-main span {
    display: inline-block;
    width: 46px;
}
.p-intro__note {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}
.p-intro__note li {
    color: #555555;
    font-size: 12px;
    padding-left: calc(1rem + 8px);
    position: relative;
}
.p-intro__note li:before {
    content: "※";
    position: absolute;
    left: 0;
}

/* about */
.p-about {
    background: linear-gradient(180deg, #fff, var(--gold_bg));
    padding-bottom: 80px;
}
.p-about .l-container {
    overflow: hidden;
    padding-top: 0;
}
.p-about__title {
    background: url(../img/bg_money.webp) center bottom 20px / 100% no-repeat;
    margin-bottom: 20px;
    padding-top: 16px;
}
.p-about__title h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.p-about__title h2 .title--wank {
    display: inline-block;
    width: 110px;
}
.p-about__title h2 + p {
    max-width: 250px;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.7;
    text-align: center;
    margin: 20px auto 0;
}

/* merit */
.p-merit {
    border-radius: 20px;
    margin-bottom: 30px;
}
.p-merit__title {
    text-align: center;
    padding: 17px 0;
    border-radius: 20px 20px 0 0;
    background: var(--gold);
}
.p-merit__list {
    padding: 40px 25px 50px;
    background: #fff;
    border-radius: 0 0 20px 20px;
    border: 2px solid var(--gold);
}
.p-merit__list,
.p-merit__list dl,
.p-merit__list dt {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.p-merit__list {
    row-gap: 40px;
}
.p-merit__list dl {
    row-gap: 12px;
}
.p-merit__list dt {
    row-gap: 10px;
}
.p-merit__list dt .title--icon {
    display: block;
    width: 115px;
}
.p-merit__list dd p {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 8px;
}
.p-merit__list dd .p-intro__note {
    align-items: center;
}

/* apply */
.p-apply {
    padding-bottom: 40px;
    background: linear-gradient(180deg, var(--gold_bg), var(--white_bg));
}
.p-apply .p-about__title {
    background: url(../img/bg_money02.webp) center/315px auto no-repeat;
}
.p-apply .p-about__title h2 .title--wank {
    margin-bottom: 24px;
}
dl.p-app__dl {
    margin-bottom: 48px;
}
div.p-app__dl {
    margin-bottom: 32px;
}
.p-app__dl dt {
    text-align: center;
    margin-bottom: 12px;
}
.p-app__dl dd {
    text-align: right;
    padding: 15px;
    background: var(--gold_bg);
    border-radius: 10px;
    position: relative;
}
.p-app__dl dd:before {
    display: inline-block;
    content: "";
    width: 146px;
    height: 243px;
    background: url(../img/img_phone.webp) center/contain no-repeat;
    position: absolute;
    top: 0;
    left: calc(-1 * (100vw - (100vw * 0.89)) / 2);
}
@media screen and (min-width: 768px) {
    .p-app__dl dd:before {
        left: -21px;
        transform: translateX(0);
    }
}
.p-app__dl dd ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
    padding-left: calc((100vw - (100vw * 0.89)) / 2 + 48px);
}
@media screen and (min-width: 768px) {
    .p-app__dl dd ul {
        padding-left: 96px;
    }
}

/* tab */
.p-tab {
    border-radius: 10px 10px 20px 20px;
}
.p-tab__list {
    display: flex;
    justify-content: space-between;
    border-radius: 10px 10px 0 0;
}
.p-tab__item {
    color: #555;
    font-size: 13px;
    font-weight: normal;
    line-height: 1.4;
    text-align: center;
    width: 48%;
    padding: 10px 0 12px;
    background: #f2f2f2;
    border-radius: 10px 10px 0 0;
    border: 2px solid #ccc;
    border-bottom: none;
    cursor: pointer;
    transition: 0.2s;
}
.p-tab__item.is-active {
    color: #fff;
    font-weight: bold;
    background: var(--red);
    border-color: var(--red);
}
.p-tab__cont {
    display: none;
    padding: 20px 0 40px;
    background: #fff;
    border: 2px solid var(--red);
    border-radius: 0 0 20px 20px;
}
.p-tab__cont.is-active {
    display: block;
}
@media (hover: hover) {
    .p-tab__item:hover:not(.is-active) {
        opacity: 0.8;
    }
}

.p-tab__slide--item {
    text-align: center;
}
.p-tab__slide--item figure {
    display: inline-block;
    width: 260px;
}
.p-tab__slide--item span {
    display: block;
    font-size: 20px;
    font-weight: bold;
}
.p-tab__slide--item p {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.5;
}
.p-tab__slide {
    padding-bottom: 44px;
}
.swiper-button-next.p-tab__slide--next,
.swiper-button-prev.p-tab__slide--prev {
    width: 50px;
    height: 50px;
}
.swiper-button-next.p-tab__slide--next:after,
.swiper-button-prev.p-tab__slide--prev:after {
    display: inline-block;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../img/slide_btn.webp) center/contain no-repeat;
}
.swiper-button-prev.p-tab__slide--prev:after {
    transform: scale(-1, 1);
}
.swiper-button-next.p-tab__slide--next.swiper-button-disabled:after,
.swiper-button-prev.p-tab__slide--prev.swiper-button-disabled:after {
    opacity: 0.2;
}
.p-tab__slide--pagenation .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #e2e2e2;
    opacity: 1;
}
.p-tab__slide--pagenation .swiper-pagination-bullet-active {
    background: var(--red);
}
.p-tab__slide .p-tab__slide--wrap + .p-tab__slide--pagenation {
    bottom: 0;
}
.p-tab__slide--item .p-tab__slide--complete {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: normal;
    background: var(--red);
    color: #fff;
}

/* target */
.p-target {
    padding-bottom: 46px;
    background: var(--white_bg);
}
.p-target p {
    font-size: 16px;
    line-height: 1.7;
    font-weight: normal;
}
.p-target p,
.p-target__list ol {
    margin-bottom: 16px;
}
.p-target__list {
    margin-bottom: 40px;
}
.p-target__list:first-child {
    margin-bottom: 20px;
}
.p-target__list dt {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 16px;
    background: var(--box_bg);
    border-radius: 8px;
}
.p-target__list ol li {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.4;
    text-indent: -1rem;
    margin-left: 1rem;
}
.p-target__list ol li:not(:last-of-type) {
    margin-bottom: 10px;
}
.p-target__list ol li span {
    margin-right: 8px;
}

/* paypay uketori */
.p-paypay {
    border-radius: 20px;
}
.p-paypay dt {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0 10px 64px;
    background: var(--paypay);
    border-radius: 20px 20px 0 0;
    position: relative;
}
.p-paypay dt:before {
    display: inline-block;
    content: "";
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--paypay);
    background: url(../img/icon_paypay.webp) center/contain no-repeat;
    position: absolute;
    left: 42px;
    bottom: 10px;
}
.p-paypay dd {
    padding: 20px 0 30px;
    background: #fff;
    border: 2px solid var(--paypay);
    border-radius: 0 0 20px 20px;
}

/* p-faq */
.p-faq .l-container {
    padding-bottom: 80px;
}

.p-faq__title {
    margin-bottom: 32px;
}

.p-faq__title h2 {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.p-faq__title h2 .title--wank {
    display: inline-block;
    width: 110px;
    margin-bottom: 24px;
}

.p-faq__list {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    margin-bottom: 40px;
}

.p-faq__acc {
    border-radius: 10px;
    background: var(--white_bg);
    padding: 16px 28px;
}

.p-faq__acc summary {
    display: flex;
    column-gap: 20px;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.p-faq__acc summary::-webkit-details-marker {
    display: none;
}

.p-faq__acc summary .icon {
    position: relative;
    width: 24px;
    height: 24px;
    background-color: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

.p-faq__acc summary .icon::before {
    display: inline-block;
    content: "";
    width: 12px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.p-faq__acc summary .icon::after {
    display: inline-block;
    content: "";
    width: 12px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(90deg);
}

.p-faq__acc[open] .icon::after {
    transform: rotate(0deg);
}

.p-faq__acc--cont {
    content-visibility: visible;
    visibility: visible;
    overflow: visible;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid var(--gold);
}

.p-faq__acc--cont,
.p-faq__acc--cont .p-intro__note li {
    font-weight: normal;
}

/* p-important */
.p-important {
    position: relative;
}

.p-important__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--gold_bg) 100%);
    pointer-events: none;
}

.p-important__title {
    text-align: center;
    margin-bottom: 20px;
}

.p-important__notice {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--box_bg);
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    margin-bottom: 24px;
}

.p-important__notice--title {
    padding: 16px;
    font-size: 14px;
    font-weight: bold;
    background-color: var(--box_bg);
}

.p-important__notice--text {
    padding: 16px;
    background-color: var(--white_bg);
}

.p-important__notice--text p {
    font-size: 14px;
    font-weight: normal;
}

.p-important__notice--text:has(.p-intro__note) p {
    margin-bottom: 8px;
}

.p-important__notice--link {
    color: var(--blue);
    text-decoration: underline;
}

.p-important__notes {
    padding-bottom: 28px;
}

.p-important__note {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    list-style: disc;
    padding-left: 1.2em;
    margin-bottom: 8px;
}

.p-important__note li {
    font-size: 14px;
    font-weight: normal;
}

.p-important__note--title {
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 8px;
}

.p-more {
    position: relative;
    width: 224px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid var(--red);
    border-radius: 200px;
    background-color: #fff;
    cursor: pointer;
}

.p-more .p-more__text {
    color: var(--red);
    margin-right: 8px;
}

.p-more .icon {
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: var(--red);
    border-radius: 50%;
    right: 48px;
}

.p-more .icon::before {
    display: inline-block;
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    top: calc(50% - 3px);
    left: calc(50% - 3px);
    vertical-align: middle;
    line-height: 1;
    border: 2px solid #fff;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-25%) rotate(135deg);
}

.p-more.is-open .icon::before {
    transform: translateY(25%) rotate(315deg);
}

/* footer */
footer {
    padding: 25px 0;
    background: #fff;
}
.content__box,
.ncb_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
    text-align: center;
}
.ncb_logo img {
    width: 135px;
}
.ncb_address,
.copyright {
    font-size: 12px;
}
