@charset "utf-8";

/* color */
:root {
    --p_black: #1A1A1A;
    --p_orange: #F07800;
    --p_blue: #405BAA;
    --orange2: #F5A201;
}
/* reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    color: #000;
    background: #FFF;
    font-family: 'Noto Sans JP', "Yu Gothic", YuGothic, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    font-weight: 500;
    line-height: 1.4;
    position: relative;
    -webkit-text-size-adjust: 100%;
    -webkit-print-color-adjust: exact;
}
ul,ol {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
a {
    text-decoration: none;
}
/* 表示 */
.visible_pc {
    display: none;
}
.visible_sp {
    display: block;
}
@media screen and (min-width: 768px) {
    .visible_pc {
        display: block;
    }
    .visible_sp {
        display: none;
    }
    body {
        background: #F8B300;
    } 
}

/* module */
.al-center {
    text-align: center;
}
ul.list:not(:last-of-type) {
    margin-bottom: 20px;
}
ul.list:has( + ul.note ) {
    margin-bottom: 10px;
}
ul.list > li {
    font-size: 16px;
    padding-left: 15px;
    position: relative;
}
ul.list > li:not(:first-of-type) {
    margin-top: 10px;
}
ul.list > li::before {
    display: inline-block;
    content: "";
    width: 10px;
    height: 10px;
    margin-right: 5px;
    background: #645A59;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 6.2px;
}
ul.note:has( + .strong ) {
    margin-bottom: 10px;
}
ul.note > li, ul.note--b > li {
    font-size: 14px;
}
ul.note > li::before,
ul.note--b > li::before {
    margin-right: 5px;
    font-family: "Roboto",sans-serif;
}
ul.note > li {
    text-indent: -20px;
    margin-top: 10px;
    margin-left: 20px;
}
ul.note > li::before {
    content: "※";
}
ul.note--b {
    font-size: 14px;
    counter-reset: note 0;
}
ul.note--b > li {
    counter-increment: note 1;
    text-indent: -22px;
    margin-left: 22px;
}
ul.note--b > li::before {
    content: "※" counter(note);
}
.strong {
    margin-bottom: 10px;
}
ol.list--num {
    counter-reset: num 0;
}
ol.list--num > li {
    counter-increment: num 1;
    text-indent: -20px;
    margin-top: 10px;
    margin-left: 20px;
}
ol.list--num > li::before {
    font-family: "Roboto",sans-serif;
    font-weight: 900;
    content: counter(num) ".";
    padding-right: 5px;
}
ul.nest--a li {
    text-indent: -12px;
    margin-top: 10px;
    margin-left: 12px;
}
ul.nest--a li::before {
    content: "-";
    color: #645A59;
    font-weight: 900;
    padding-right: 5px;
}
ul.nest--b {
    counter-reset: num2 0;
}
ul.nest--b > li {
    counter-increment: num2 1;
    text-indent: -18px;
    margin-left: 18px;
    margin-top: 10px;
}
ul.nest--b > li::before {
    content: counter(num2,lower-alpha) ".";
    font-family: "Roboto",sans-serif;
    font-weight: 900;
    padding-right: 5px;
}


/* header */
.mv {
    position: relative;
    z-index: 1;
}
.mv > picture {
    position: relative;
}
.mv_title_wrap::before {
    display: block;
    content: "";
    width: 28.8vw;
    padding-top: 16.5vw;
    background: url(../img/wank_kv.webp) center/contain no-repeat;
    position: absolute;
    left: 1vw;
    bottom: 11vw;
    z-index: 10;
}
.mv_title_wrap > img {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 9;
}
.mv_title {
    max-width: 831px;
    width: 57vw;
    top: 0;
}
.mv_title_sub {
    max-width: 340px;
    width: 23.6vw;
    bottom: 7vw;
}
@media screen and (max-width: 767px) {
    .mv > picture {
        display: block;
        width: 100%;
    }
    .mv > picture > img {
        width: 100%;
    }
}
@media screen and (min-width: 1801px) {
    .mv_title {
        top: 7vw;
    }
    .mv_title_sub {
        bottom: 10vw;
    }
}
@media screen and (min-width: 1701px) and (max-width: 1800px) {
    .mv_title {
        top: 3vw;
    }
    .mv_title_sub {
        bottom: 10vw;
    }
}
@media screen and (min-width: 1500px) and (max-width: 1700px) {
    .mv_title {
        top: 1vw;
    }
    .mv_title_sub {
        bottom: 9vw;
    }
}
@media screen and (min-width: 768px) , print {
    .mv::before, .mv::after {
        display: block;
        content: "";
        width: 100%;
        position: absolute;
    }
    .mv::before {
        height: 100vh;
        background: #F8B300;
    }
    .mv::after {
        padding-top: 35.7vw;
        background: url(../img/bg_decoration.webp) center/100% auto no-repeat;
        bottom: -18.85vw;
        left: 0;
        right: 0;
        margin: auto;
        z-index: 11;
    }
}

html {
    overflow: visible;
}
/* cta */
.cta {
    padding-top: 21px;
    margin-bottom: 25px;
}
.cta_lead {
    color: var(--p_orange);
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    position: relative;
}
.cta_lead::before, .cta_lead::after,
.cta_lead > span::before, .cta_lead > span::after {
    display: block;
    content: "";
    position: absolute;
}
.cta_lead::before, .cta_lead::after {
    width: 30px;
    height: 48px;
    background: url(../img/decoration01.webp) center/contain no-repeat;
    top: 0;
    bottom: 0;
    margin: auto;
}
.cta_lead::before {
    left: 0;
}
.cta_lead::after {
    transform: scale(-1,1);
    right: 0;
}
.cta_lead > span::before, .cta_lead > span::after {
    width: 27px;
    height: 24px;
    background: url(../img/decoration02.webp) center/contain no-repeat;
}
.cta_lead > span::before {
    top: -15px;
    left: 8%;
}
.cta_lead > span::after {
    transform: scale(-1,1);
    bottom: 0;
    right: 12.5%;
}
.cta_button-wrap {
    display: flex;
    flex-direction: column;
}
.cta_button-item {
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 30px;
    text-align: center;
    font-size: 20px;
}
.cta_button-item a {
    display: block;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    padding-top: 12px;
    padding-bottom: 13px;
    border-radius: 28px;
    box-shadow: 5px 10px 10px rgba(0, 0, 0, .10);
    position: relative;
    transition: 0.2s;
}
.cta_button-item a::after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}
.cta_deco {
    display: block;
    width: 210px;
    color: #FFF;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    background: #F5A200;
    border-radius: 15px;
    margin: 0 auto 8px;
    padding: 5px 0;
    position: relative;
}
.cta_deco::after {
    display: block;
    content: "";
    width: 17px;
    height: 12px;
    background-color: #F5A200;
    clip-path: polygon(50% 12px, 0% 0%, 17px 0%);
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    margin: auto;
}
.btn-app {
    color: #FFF;
    background: var(--p_orange);
    border: 3px solid #FFF;
    box-shadow: 5px 10px 10px rgba(0, 0, 0, .10);
    padding-right: 12px;
}
.btn-app::after,
.btn-card::after {
    width: 7px;
    height: 7px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    transform: rotate(45deg);
    right: 20px;
}
.btn-card {
    color: var(--p_orange);
    background: #FFF;
    border: 3px solid var(--p_orange);
}
.btn-card::after {
    border-color: var(--p_orange);
}
@media (hover: hover) {
    .cta_button-item a:hover {
        opacity: 0.8;
        box-shadow: 5px 10px 10px rgba(0, 0, 0, .16);
        transition: 0.2s;
    }
}

/* common */
main {
    position: relative;
    max-width: 615px;
    margin: -8vw auto 0;
    background: var(--white);
    z-index: 3;
}
main::after {
    content: '';
    width: 100%;
    height: 37px;
    background: var(--white);
    border-radius: 40px 40px 0 0;
    position: absolute;
    top: -36px;
    z-index: 2;
}
.content__inner {
    max-width: 375px;
    background: #FFF;
    margin: 0 auto;
}
.content__box {
    max-width: 335px;
    margin: auto;
}
@media screen and (min-width: 1401px) {
    main {
        margin-top: 0;
    }
}
@media screen and (max-width: 1400px){
    main {
        margin: 0 auto;
        max-width: 375px;
    }
}
@media screen and (max-width: 767px){
    main {
        margin: 8px auto 0;
    }
}
@media screen and (min-width: 768px) {
    .content__inner {
        padding-top: 30px;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 0 30px rgba(0, 0, 0, .10);
    }
}

/* campaign */
.campaign {
    padding-top: 31px;
    background: url(../img/sec_bg01.webp) center top/100% auto no-repeat;
    margin-top: 30px;
    position: relative;
}
.campaign::before {
    display: block;
    content: "";
    width: 100%;
    height: 900px;
    background: linear-gradient(180deg,#415AAA 0, #FFF 100%);
    position: absolute;
    left: 0;
}
.campaign .content__box {
    position: relative;
}
.campaign__tokuten {
    width: 105px;
    display: block;
    margin: auto;
    position: relative;
}
.campaign__text {
    color: var(--lt-brown);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    letter-spacing: -0.04em;
}
.campaign__item {
    background: #F5F2E9;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.campaign__item:not(:last-of-type) {
    margin-bottom: 22px;
}
.campaign__title {
    display: block;
    color: #FFF;
    text-align: center;
    padding: 0 0 10px;
    background: var(--orange2);
    border-radius: 0 0 20px 20px;
    position: relative;
}
.campaign__title--main {
    font-weight: 800;
    padding: 14px 0 11px;
    margin-bottom: 9px;
    background: #F5F2E9;
}
.campaign__title--sub {
    color: var(--p_black);
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 9px;
}
.campaign__title--img {
    display: block;
    width: 293px;
    margin: 0 auto;
}
#cp1 .campaign__title {
    padding:  7px 7px 10px 7px;
}
#cp1 .campaign__title--main {
    padding-top: 6px;
    margin-bottom: 9px;
    background: var(--p_orange);
    border: 2px solid #FFF;
    border-radius: 20px;
}
#cp1 .campaign__title--sub {
    color: #FFF;
}
.campaign__title--acc {
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    padding-right: 12px;
    cursor: pointer;
    transition: 0.2s;
}
.button__acc--icon {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-left: auto;
    position: absolute;
    right: 15px;
}
.button__acc--icon > span {
    display: inline-block;
    width: 100%;
    height: 100%;
    background: var(--p_black);
    border-radius: 50%;
    position: relative;
}
.button__acc--icon > span::before,
.button__acc--icon > span::after {
    display: block;
    content: "";
    width: 15px;
    height: 3px;
    background: #FFF;
    border-radius: 2px;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.button__acc--icon > span::after {
    transform: rotate(90deg);
    transition: 0.2s;
}
.is-open .button__acc--icon > span::after {
    transform: rotate(180deg);
}
.campaign__cont {
    display: none;
    padding: 20px;
}
.campaign__cont--ttl {
    position: relative;
}
.campaign__cont--ttl::before {
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    border-top: 2px dashed var(--orange2);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.campaign__cont--ttl > span {
    display: block;
    width: 100px;
    height: 31px;
    color: #FFF;
    font-size: 16px;
    font-weight: 800;
    line-height: 31px;
    text-align: center;
    margin: 0 auto 10px;
    background: var(--orange2);
    border-radius: 18px;
    position: inherit;
    z-index: 1;
}
.campaign__cont ul {
    font-weight: 400;
}
.campaign__cont--main {
    color: var(--p_orange);
    font-size: 18px;
    font-weight: 800;
    margin-top: 20px;
}
.campaign__cont--acc.button__acc {
    padding-top: 20px;
    margin-top: 30px;
    border-top: 2px dashed #ACACAC; 
}
.button__acc button {
    display: block;
    width: 190px;
    color: var(--p_black);
    font-size: 16px;
    font-weight: 800;
    padding: 9px 0 8px;
    margin: 0 auto;
    border: 3px solid #EEE;
    background: #FFF;
    border-radius: 28px;
    box-shadow: 5px 10px 10px rgba(0, 0, 0, .10);
    position: relative;
    cursor: pointer;
    transition: 0.2s;
}
.button__acc .button__acc--icon {
    width: 20px;
    height: 20px;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
}
.button__acc .button__acc--icon > span::before,
.button__acc .button__acc--icon > span::after {
    width: 11px;
    height: 2px;
}
table {
    border-collapse: collapse;
}
.campaign__item .cta {
    max-width: 275px;
    padding-top: 30px;
}
.campaign__item .cta_lead {
    font-size: 17px;
}
.campaign__item .cta_lead::before,
.campaign__item .cta_lead::after {
    width: 25px;
    height: 40px;
}
.campaign__item .cta_lead::before {
    left: -10px;
}
.campaign__item .cta_lead::after {
    right: -10px;
}
.campaign__item .cta_lead > span::before,
.campaign__item .cta_lead > span::after {
    width: 24px;
    height: 20px;
}
.campaign__item .btn-app::after,
.campaign__item .btn-card::after {
    right: 17px;
}
#cp4.campaign__item .cta_lead > span::after {
    bottom: auto;
    top: 2px;
}
#cp4.campaign__item .cta_lead > span::before {
    top: -5px;
}
#cp4.campaign__item .cta:nth-of-type(1) .cta_button-item a {
    padding-right: 17px;
}
#cp4.campaign__item .cta:nth-of-type(1) .cta_lead > span::before {
    left: 16%;
}
#cp4.campaign__item .cta:nth-of-type(2) .cta_lead > span::after {
    right: 10%;
}
.campaign__item .cta_button-item a {
    font-size: 15px;
}
#cp1 table {
    margin-top: 20px;
}
#cp1 table thead th {
    color: #FFF;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.7;
    background: var(--p_black);
    padding: 15px 0;
}
#cp1 table thead th:first-of-type {
    width: 141px;
    border-top-left-radius: 20px;
}
#cp1 table thead th:last-of-type {
    width: 154px;
    border-top-right-radius: 20px;
}
#cp1 table tbody tr:not(:last-of-type) {
    border-bottom: 2px solid #F5F2E9;
}
#cp1 table tbody td {
    font-size: 16px;
    text-align: center;
    padding: 6px 0;
    background: #FFF;
    position: relative;
}
#cp1 table tbody td span {
    font-size: 26px;
    line-height: 1.7;
    padding-right: 3px;
}
#cp1 table tbody td.before {
    font-weight: 400;
}
#cp1 table tbody td.before::after {
    display: block;
    content: "";
    width: 23px;
    height: 16px;
    background: url(../img/arrow_icon.webp) center/contain no-repeat;
    position: absolute;
    right: -15px;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
}
#cp1 table tbody td.after {
    color: var(--orange2);
    font-weight: 800;
}
#cp1 table tbody tr:last-of-type td:first-of-type {
    border-bottom-left-radius: 20px;
}
#cp1 table tbody tr:last-of-type td:last-of-type {
    border-bottom-right-radius: 20px;
}
#cp1 table + ul.note > li {
    margin-top: 20px;
}
#cp4 table {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 20px;
}
#cp4 table tr:not(:has(th[colspan="2"])) {
    display: flex;
    margin: 10px 0;
}
#cp4 table thead th,
#cp4 table tbody td {
    width: 50%;
}
#cp4 table thead th:first-of-type,
#cp4 table tbody td:first-of-type {
    border-right: 1px dashed #ACACAC;
}
#cp4 table tbody td[colspan="2"] {
    width: 100%;
    text-align: center;
    border-right: none;
}
#cp4 table thead th figure {
    text-align: center;
}
#cp4 table thead th figcaption {
    margin-bottom: 10px;
}
#cp4 table thead th figure img {
    width: 96px;
}
#cp4 table thead th:first-of-type {
    padding-right: 1rem;
}
#cp4 table thead th:first-of-type figcaption {
    margin-bottom: 0;
}
#cp4 table tbody th {
    color: #FFF;
    padding: 7px 0;
    background: var(--p_black);
    border-radius: 10px;
}
#cp4 table tbody td:first-of-type {
    padding-right: 16px;
}
#cp4 table tbody td:last-of-type {
    padding-left: 16px;
}
#cp4 table tbody td {
    font-weight: 400;
}
#cp4 table tbody td p {
    text-align: center;
}
#cp4 table tbody td.-line {
    letter-spacing: -0.07em;
}
#cp4 table ul.list {
    margin: 10px 0 0;
}
#cp4 table ul.list > li {
    font-size: 14px;
}
#cp4 table ul.list > li:not(:first-of-type) {
    margin-top: 5px;
}
@media (hover: hover) {
    .campaign__title--acc:hover {
        opacity: 0.8;
        transition: 0.2s;
    }
    .button__acc button:hover {
        opacity: 0.8;
        box-shadow: 5px 10px 10px rgba(0, 0, 0, .16);
        transition: 0.2s;
    }
}

/* entry */
.entry {
    padding-bottom: 75px;
    margin-top: 70px;
    background: #8AB935;
    position: relative;
}
.entry::before {
    display: block;
    content: "";
    width: 100%;
    height: 55px;
    background: url(../img/sec_bg02.webp) center top/100% auto no-repeat;
    position: absolute;
    top: -55px;
    left: 0;
}
.entry .cta_lead {
    color: #FFF;
}
.entry .cta_lead::before,
.entry .cta_lead::after {
    background-image: url(../img/decoration03.webp);
}
.entry .cta_lead > span::before {
    left: 5%;
}
.entry .cta_lead > span::after {
    bottom: -15px;
    right: 6%;
}
.entry .cta figure  {
    width: 275px;
    margin: 10px auto 20px;
}

/* detail */
.detail {
    padding: 20px 0 75px;
    background: #FFF;
    position: relative;
    z-index: 1;
}
.detail::before {
    display: block;
    content: "";
    width: 100%;
    height: 60px;
    background: url(../img/sec_bg03.webp) center top/100% auto no-repeat;
    position: absolute;
    left: 0;
    top: -60px;
}
.detail h2 {
    font-size: 22px;
    font-weight: 900;
    text-align: center;
}
.detail table {
    font-size: 16px;
    text-align: center;
    overflow: hidden;
}
.detail table th,
.detail table td {
    display: block;
    width: 100%;
    padding: 15px 20px;
}
.detail table th {
    background: #F5F2E9;
}
.detail table tr:last-of-type td {
    padding-bottom: 30px;
}
.detail table td a {
    color: var(--p_blue);
    text-decoration: underline;
}
.detail__list {
    text-align: left;
    margin-top: 20px;
}
.detail__item:not(:last-of-type) {
    margin-bottom: 20px;
}
.detail__num {
    display: block;
    width: 100px;
    height: 31px;
    color: #FFF;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    line-height: 31px;
    margin: 0 auto 10px;
    background: var(--p_orange);
    border-radius: 18px;
} 
.detail__title {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    margin-bottom: 10px;
}
.detail--icon {
    width: 60px;
    flex-shrink: 0;
}
.detail__title span,
.detail__lead {
    font-weight: 800;
}
.detail__cont {
    font-weight: 400;
}
.detail__lead {
    margin-bottom: 35px;
    position: relative;
}
.detail__lead::after {
    display: block;
    content: "";
    width: 37px;
    height: 11.5px;
    background: url(../img/triangle_icon.webp) center/contain no-repeat;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -25px;
    margin: auto;
}
.detail__item span.-o {
    color: var(--p_orange);
}
.detail__item span.-s {
    font-size: 14px;
}
.detail__item span.-m {
    font-size: 16px;
}
.detail__item span.-l {
    font-size: 26px;
}
.detail__item span.-bg {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background: url(../img/line.webp) left bottom/100% auto no-repeat;
}
.detail__point {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 19px;
    background: #F2F2F2;
    border-radius: 20px;
}
.detail__point > div {
    font-weight: 800;
    flex-grow: 1;
}
.detail__sum {
    text-align: center;
    padding: 15px 9px 15px 10px;
    margin-top: 15px;
    border: 3px solid #FCC800;
    border-radius: 20px;
}
.detail__sum > p {
    font-size: 14px;
    font-weight: 400;
}
.detail__sum > p.note {
    padding-top: 3px;
}
.detail__sum > p.note::before {
    content: "※";
    padding-right: 5px;
}
.detail__sum > div {
    font-weight: 800;
    margin-top: 5px;
}
.detail__cont--acc.button__acc {
    margin-top: 30px;
}
.detail__wrapper {
    height: 400px;
    margin-top: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .10);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.detail__container {
    position: relative;
}
.detail__container::after {
    display: block;
    content: "";
    width: 100%;
    height: 60px;
    background: linear-gradient(180deg,transparent 0,#FFF 100%);
    position: absolute;
    left: 0;
    bottom: 50px;
}
.detail__container > .detail__cont--acc.button__acc {
    margin-top: -30px;
    background: #FFF;
    position: relative;
    z-index: 1;
}
.detail__container.is-open {
    margin-bottom: 30px;
}
.detail__container.is-open::after {
    display: none;
}
.detail__container.is-open > .detail__cont--acc.button__acc {
    display: none;
}



/* faq */
.faq {
    padding: 20px 0 75px;
    background: #F5F2E9;
    position: relative;
    z-index: 1;
}
.faq::before {
    display: block;
    content: "";
    width: 100%;
    height: 60px;
    background: url(../img/sec_bg03.webp) center top/100% auto no-repeat;
    filter: brightness(0) saturate(100%) invert(93%) sepia(2%) saturate(1185%) hue-rotate(343deg) brightness(107%) contrast(92%);
    position: absolute;
    left: 0;
    top: -60px;
}
.faq h2 {
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
}
.faq__list {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.faq__item {
    padding: 0 20px;
    background: #FFF;
    border-radius: 20px;
}
.faq__item dt, .faq__item dd {
    display: flex;
    column-gap: 10px;
    padding: 15px 0;
}
.faq__item dt {
    font-weight: 800;
    align-items: center;
}
.faq__item dd {
    display: none;
    font-weight: 400;
    align-items: flex-start;
    border-top: 2px dashed #CCC;
}
.faq__item dt::before,
.faq__item dd::before {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: #FFF;
    font-family: 'Roboto',sans-serif;
    font-weight: 900;
    flex-shrink: 0;
}
.faq__item dt::before {
    content: "Q";
    background: var(--p_orange);
}
.faq__item dd::before {
    content: "A";
    background: var(--p_blue);
}
.faq__item dt > span {
    display: block;
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    position: relative;
}
.faq__item dt > span::before,
.faq__item dt > span::after {
    display: block;
    content: "";
    width: 15px;
    height: 3px;
    background: var(--p_orange);
    border-radius: 5px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.faq__item dt > span::after {
    transform: rotate(90deg);
    transition: 0.2s;
}
.faq__item dt.is-open > span::after {
    transform: rotate(180deg);
}
.faq__item dd > div p {
    line-height: 1.7;
}
.faq__item dd > div p + ul.list {
    margin-top: 10px;
}
.faq__item dd > div > ol:first-child > li:first-of-type {
    margin-top: 0;
}

/* attention */
.attention {
    padding: 20px 0 60px;
    background: #FFF;
    position: relative;
    z-index: 1;
}
.attention::before {
    display: block;
    content: "";
    width: 100%;
    height: 60px;
    background: url(../img/sec_bg03.webp) center top / 100% auto no-repeat;
    position: absolute;
    left: 0;
    top: -60px;
}
.attention h2 {
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 30px;
}
.attention :not(h2), .attention ul > li {
    font-size: 14px;
}
.attention ul.list > li::before {
    top: 5px;
}
.attention ul, .attention p:not(.strong) {
    font-weight: 400;
}
.attention p.ut-20 {
    margin-top: 20px;
}
.attention .strong + p {
    margin-bottom: 10px;
}
.attention .strong + p:not(:has(+ ul.list )) {
    margin-bottom: 20px;
}
/* nav */
.nav {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    left: 0;
    top: 0;
}
.nav__item {
    width: calc((100% - 375px) / 2);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.nav__inner {
    background: #FFF;
    border-radius: 20px;
}
.nav__item--left .nav__inner {
    width: 390px;
    padding: 40px 30px;
}
.nav__item--right::after {
    display: block;
    content: "";
    width: 90%;
    padding-top: calc(11.5vw - 30px);
    background: url(../img/wank_menu.webp) center/contain no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.nav__item--right .nav__inner {
    width: 290px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}
.nav_apply h1 {
    width: 43.8%;
    max-width: 215px;
    margin: 0 auto 4px;
}
.nav_apply .cta:nth-last-of-type(-n+2) .cta_lead {
    color: var(--p_black);
    font-weight: 400;
}
.nav_apply .cta:nth-last-of-type(-n+2) .cta_lead::before,
.nav_apply .cta:nth-last-of-type(-n+2) .cta_lead::after,
.nav_apply .cta:nth-last-of-type(-n+2) .cta_lead > span::before,
.nav_apply .cta:nth-last-of-type(-n+2) .cta_lead > span::after {
    display: none;
}
.nav_apply .cta {
    margin-bottom: 0;
    position: relative;
}
.nav_apply .cta:nth-of-type(2)::before,
.nav_apply .cta:nth-of-type(3)::before {
    display: block;
    content: "";
    position: absolute;
}
.nav_apply .cta:nth-of-type(2)::before {
    width: 84px;
    height: 63px;
    background: url(../img/aio.webp) center/contain no-repeat;
    left: -15%;
}
.nav_apply .cta:nth-of-type(3)::before {
    width: 70px;
    height: 87px;
    background: url(../img/debit.webp) center/contain no-repeat;
    right: -22%;
}

.nav_list {
    width: 210px;
}
.nav_list li{
    position: relative;
    font-size: 20px;
    letter-spacing: 0.1em;
}
.nav_list li:not(:first-of-type) {
    margin-top: 30px;
}
.nav_list li a {
    color: var(--p_orange);
    text-decoration: none;
    font-weight: 900;
    opacity: 0.6;
}
.nav_list li a.is-active {
    opacity: 1;
}
.nav_list li a.is-active::before {
    display: inline-block;
    content: "";
    width: 20px;
    height: 15px;
    background: url(../img/menu_icon.webp) center/contain no-repeat;
    margin-right: 10px;
}
.nav_list ul {
    list-style: initial;
    color: #4392C4;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .nav_apply .cta:nth-of-type(2)::before {
        width: 40px;
        height: 30px;
        left: 0;
    }
    .nav_apply .cta:nth-of-type(3)::before {
        width: 35px;
        height: 43.5px;
        right: 0;
    }
}
@media screen and (min-width: 821px) and (max-width: 1024px) {
    .nav__item--left .nav__inner {
        padding: 30px 0;
    }
    .nav_apply .cta_lead {
        font-size: 16px;
    }
    .nav_apply .cta_button-item a {
        font-size: 14px;
    }
    .nav_apply .cta_deco {
        width: 165px;
        font-size: 12px;
    }
    .nav_apply .btn-app::after,
    .nav_apply .btn-card::after {
        right: 12px;
    }
}
@media screen and (min-width: 768px) and (max-width: 820px) {
    .nav__item--left .nav__inner {
        width: 100%;
        padding: 30px 0;
    }
    .nav_apply .cta_lead {
        font-size: 12px;
    }
    .nav_apply .cta_button-item a {
        font-size: 10px;
    }
    .nav_apply .cta_deco {
        width: 145px;
        font-size: 10px;
    }
    .nav_apply .btn-app::after,
    .nav_apply .btn-card::after {
        right: 10px;
    }
    .nav_list {
        width: 175px;
    }
    .nav_list li {
        font-size: 16px;
    }
    .nav_list li:not(:first-of-type) {
        margin-top: 15px;
    }
}


.footer {
    background: #F5F2E9;
    font-size: 14px;
    font-weight: 400;
    padding: 40px 0 30px;
}
.footer .ncb_logo {
    width: 226px;
    margin: 0 auto 20px;
}
.footer .ncb_logo img {
    width: 100%;
    vertical-align: bottom;
}
.ncb_address {
    text-align: center;
    margin-bottom: 20px;
}
.copyright {
    font-size: 12px;
    text-align: center;
}

/* 374px以下 */
@media screen and (max-width: 374px) {
    .campaign {
        background: url(../img/sec_bg01.webp) center top 1px/100% auto no-repeat;
    }
    .entry::before {
        background: url(../img/sec_bg02.webp) center top 2px/100% auto no-repeat;
    }
    .detail::before {
        background: url(../img/sec_bg03.webp) center top 3px/100% auto no-repeat;
    }
    .faq::before {
        background: url(../img/sec_bg03.webp) center top 4px/100% auto no-repeat;
    }
    .attention::before {
        background: url(../img/sec_bg03.webp) center top 5px/ 100% auto no-repeat;
    }
}

/* print */
@media print {
    main {
        margin-top: 8px;
    }
    .mv_title_wrap {
        display: block !important;
    }
    .campaign__cont {
        display: block;
    }
    .detail__wrapper {
        height: auto;
    }
    .detail__container::after {
        display: none;
    }
    .detail__container > .detail__cont--acc.button__acc {
        display: none;
    }
    .faq__item dd {
        display: flex;
    }
}