@charset "UTF-8";
/* CSS Document */

/*==================
ネットバンクログイン
====================*/
.sec_netbank_login .common_bl_text_link {
    margin-top: 16px;
}

.sec_netbank_login .login_btn {
    width: 600px;
    margin: 40px auto 0;
}
.sec_netbank_login .login_btn a {
    display: block;
    width: 100%;
    background: #003AB6;
    background: linear-gradient(90deg,#53BDFE 0%, #2A7BDA 50%, #003AB6 100%) ;
    padding: 14px 0 15px;
    color: #FFFFFF;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 1.6px;
    border-radius: 10px;
    box-shadow: 2px 4px 4px rgba(0,0,0,.08);
    transition: 0.3s;
}
.sec_netbank_login .login_btn a div {
    margin-top: 8px;
    display: flex;
    column-gap: 20px;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 2.2px;
}
.sec_netbank_login .login_btn a:hover {
    transform: scale(1.03);
    cursor: pointer;
}

@media (max-width: 768px) {
    .sec_netbank_login .login_btn {
        width: 400px;
    }
}
@media (max-width: 480px) {
    .sec_netbank_login .login_btn {
        width: 100%;
    }
    .sec_netbank_login .login_btn a {
        font-size: 1.6rem;
        letter-spacing: 1.2px;
        padding: 10px 0 11px;
    }
    .sec_netbank_login .login_btn a div {
        font-size: 2.2rem;
        letter-spacing: 1.6px;
    }
}


/*==================
預金
====================*/
.sec_deposit .common_anchor_link {
    margin-top: 40px;
}

.sec_deposit h3 {
    margin-top: 60px;
}

/*box_wrap*/
.box_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 18px;
}
.box_wrap .box {
    width: calc(50% - 18px);
    border: 1px solid #84C0EA;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}
.box_wrap .box .title {
    font-size: 2.3rem;
    font-weight: 500;
    line-height: 1.35;
    color: var(--BL-color);
    padding: 15px 40px;
    background: var(--L-bl-color1);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.box_wrap .box .title span {
    font-size: 1.8rem;
    font-weight: 500;
}
.box_wrap .box .inner {
    padding: 18px 40px 22px;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
}

.box_wrap .box .detail {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.box_wrap .box .detail dl {
    display: flex;
    gap: 20px;
    align-items: baseline;
}
.box_wrap .box .detail dl dt {
    display: inline-block;
    color: #FFFFFF;
    background: var(--BL-color);
    border-radius: 30px;
    font-size: 1.4rem;
    letter-spacing: 1.5px;
    line-height: 1.8;
    width: 8.5em;
    text-align: center;
    padding: 4px 0 5px;
}
.box_wrap .box .detail dl:nth-of-type(2) dt {
    letter-spacing: 0.6px;
}
.box_wrap .box .detail dl dd {
    width: calc(100% - 8.5em);
}


.box_wrap .box .detail_text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.box_wrap .box .detail_text dt {
    color: var(--BL-color);
    font-weight: 500;
}


@media (max-width: 900px) {
    .box_wrap {
        gap: 24px 12px;
    }
    .box_wrap .box {
        width: calc(50% - 6px);
    }
    .box_wrap .box .title {
        font-size: 2rem;
        padding: 12px 20px;
    }
    .box_wrap .box .title span {
        font-size: 1.6rem;
    }
    .box_wrap .box .inner {
        padding: 12px 20px 16px;
    }
}
@media (max-width: 600px) {
    .box_wrap {
        flex-direction: column;
        gap: 16px;
    }
    .box_wrap .box {
        width: 100%;
    }
    .box_wrap .box .title {
        padding: 12px 16px;
        flex-direction: column;
        gap: 1px;
        align-items: flex-start;
    }
    .box_wrap .box .inner {
        padding: 10px 15px 16px;
    }
    .box_wrap .box .detail {
        margin-top: 12px;
    }
    .box_wrap .box .detail dl {
        gap: 12px;
    }
    .box_wrap .box .detail dl dt {
        width: 8.2em;
        padding: 3px 0 4px;
    }
}

/*ボタン*/
.box_wrap .box .btn {
    margin-top: 15px;
    width: 100%;
}
.box_wrap .box .btn a {
    display: inline-block;
    width: 100%;
    color: var(--BL-color);
    padding: 12px 0;
    border: 1px solid var(--BL-color);
    background: #FFFFFF;
    font-weight: 500;
    text-align: center;
    border-radius: 30px;
    transition: 0.3s;
}
.box_wrap .box .btn span {
    position: relative;
    padding-left: 30px;
}
/*PDF*/
.box_wrap .box .btn .pdf::after {
    content: '';
    mask-image: url("/person/img/icon_pdf_bl.svg");
    mask-repeat: no-repeat;
    mask-size: contain;
    background-color: var(--BL-color);
    width: 17.25px;
    height: 18px;
    position: absolute;
    top: 55%;
    right: 0;
    transform: translateY(-50%);
    transition: 0.3s;
}
.box_wrap .box .btn a:hover {
    background: var(--BL-color);
    color: #FFFFFF;
    cursor: pointer;
}
.box_wrap .box .btn a:hover .pdf::after {
    background-color: #FFFFFF;
}

/*内部リンク*/
.box_wrap .box .btn .link::before {
    content: '';
    background: var(--BL-color);
    width: 18px;
    height: 18px;
    border-radius: 9px;
    position: absolute;
    top: 53%;
    left: 7px;
    transform: translateY(-50%);
    transition: 0.3s;
}
.box_wrap .box .btn .link::after {
    content: '';
    width: 6px;
    height: 6px;
    border-top: 1.5px solid #FFFFFF;
    border-right: 1.5px solid #FFFFFF;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 9.7px;
    transition: 0.3s;
}
.box_wrap .box .btn a:hover .link::before {
    background: #FFFFFF;
}
.box_wrap .box .btn a:hover .link::after {
    border-top: 1.5px solid var(--BL-color);
    border-right: 1.5px solid var(--BL-color);
}

/*外部リンク*/
.box_wrap .box .btn .ex_link::after {
    content: '';
    mask-image: url("/person/img/icon_exlink_bl.svg");
    mask-repeat: no-repeat;
    mask-size: contain;
    background-color: var(--BL-color);
    width: 19px;
    height: 19px;
    position: absolute;
    top: 54%;
    right: 0;
    transform: translateY(-50%);
    transition: 0.3s;
}
.box_wrap .box .btn a:hover .ex_link::after {
    background-color: #FFFFFF;
}

@media (max-width: 600px) {
    .box_wrap .box .btn {
        margin-top: 8px;
    }
}


/*各種規定*/
.sec_deposit .provisions_wrapper {
    background: var(--L-p-color);
    padding: 40px;
    margin-top: 60px;
    border-radius: 10px;
}
.sec_deposit .provisions_wrapper h3 {
    margin-top: 0;
}
.sec_deposit .provisions_wrapper h3::before {
    background: var(--P-color);
}

.sec_deposit .common_link_pdf_list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px 20px;
}

.sec_deposit .common_link_pdf a::before {
    background: var(--P-color);
}

@media (max-width: 1080px) {
    .sec_deposit .common_link_pdf_list {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 830px) {
    .sec_deposit .common_link_pdf_list {
        grid-template-columns: repeat(2, 1fr);
    }
    .sec_deposit .provisions_wrapper {
        padding: 40px 32px;
    }
}
@media (max-width: 480px) {
    .sec_deposit .provisions_wrapper {
        padding: 30px 20px;
    }
    .sec_deposit .common_link_pdf_list {
        grid-template-columns: repeat(1, 1fr);
        gap: 4px 12px;
        margin-top: 20px;
    }
}


/*==================
融資
====================*/
.loan_wrapper {
    margin-top: 40px;
}
@media (max-width: 768px) {
    .loan_wrapper {
        margin-top: 40px;
    }
    .loan_wrapper h3 {
        margin-bottom: 20px;
    }
}


/*ビジネスローン*/
/* #business_loan .inner {
    flex: inherit;
    gap: 30px;
}
@media (max-width: 600px) {
    #business_loan .inner {
        gap: 0;
    }
} */

/* ローン（事業性ビズネスロースプラス追加） */
.sec_loan .box_wrap .box .inner {
justify-content: flex-start;
}

@media (min-width: 601px) {
    #business_loan_plus .detail2 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }
}
