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

/*==================
ご利用案内
====================*/
.sec_cash_guide .text_box {
    margin-top: 40px;
}
.sec_cash_guide .text_box .common_bl_text_link:first-of-type {
    margin-top: 16px;
}
.sec_cash_guide .text_box .common_bl_text_link:nth-of-type(n + 2) {
    margin-top: 8px;
} 


/*==================
よくあるご質問
====================*/
.sec_faq .faq_wrapper {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 45px;
}
.sec_faq .faq_wrapper .wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sec_faq .faq_wrapper dt {
    display: flex;
    gap: 20px;
    align-items: center;
}
.sec_faq .faq_wrapper dd {
    display: flex;
    gap: 20px;
    align-items: baseline;
}
.sec_faq .faq_wrapper .label {
    display: inline-block;
    line-height: 1;
    padding: 10px 11px 12px;
    font-size: 2rem;
    font-weight: 500;
    color: #FFFFFF;
}
.q_label {
    background: var(--BL-color);
}
.a_label {
    background: var(--P-color);
}

@media (max-width: 768px) {
    .sec_faq .faq_wrapper {
        margin-top: 30px;
    }
    .sec_faq .faq_wrapper .wrap {
        gap: 12px;
    }
    .sec_faq .faq_wrapper dt,.sec_faq .faq_wrapper dd {
        gap: 12px;
    }
    .sec_faq .faq_wrapper .label {
        padding: 8px 10px 10px;
        font-size: 1.7rem;
    }
}

/*回答内のテーブル*/
.sec_faq .faq_wrapper dd table {
    max-width: 900px;
    margin-top: 20px;
}
.sec_faq .faq_wrapper dd table th {
    border: 1px solid #D5D5D5;
    padding: 20px 30px;
    width: 28%;
    background: #F3F3F3;
    font-weight: 400;
    text-align: center;
}
.sec_faq .faq_wrapper dd table td {
    border: 1px solid #D5D5D5;
    padding: 20px 30px;
    width: 72%;
}

.sec_faq table .name {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--P-color);
}
.sec_faq table .tel_wrap {
    display: flex;
    gap: 20px;
    align-items: center;
}
.sec_faq table .tel_wrap img {
    display: inline-block;
    width: 3em;
    height: 3em;
    object-fit: contain;
    margin-top: 8px;
}
.sec_faq table .tel_wrap .tel_num a {
    font-size: 4.8rem;
    font-weight: 600;
    color: var(--BL-color);
    line-height: 1.35;
    letter-spacing: 1.4px;
}
.sec_faq table .link_text {
    margin-top: 30px;
}
.sec_faq table .link_text a {
    text-decoration: underline;
    transition: 0.3s;
}
.sec_faq table .link_text a .arrow {
    position: relative;
    width: 18px;
    height: 18px;
    display: inline-block;
    margin-left: 10px;
}
.sec_faq table .link_text a .arrow::before {
    content: '';
    background: var(--BL-color);
    width: 18px;
    height: 18px;
    border-radius: 9px;
    position: absolute;
    top: 0.8em;
    right: 0;
    transform: translateY(-50%);
}
.sec_faq table .link_text a .arrow::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: 0.75em;
    right: 9.2px;
}
.sec_faq table .link_text a:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .sec_faq .faq_wrapper dd table {
        max-width: 100%;
    }
    .sec_faq .faq_wrapper dd table th {
         display: block;
         width: 100%;
         padding: 12px 12px;
         text-align: left;
    }
    .sec_faq .faq_wrapper dd table td {
         display: block;
         width: 100%;
         padding: 15px 12px;
         border-top: none;
         border-bottom: none;
    }
    .sec_faq .faq_wrapper dd table tr:last-of-type td {
        border-bottom: 1px solid #D5D5D5;
    }
    .sec_faq table .name {
        font-size: 1.6rem;
    }
    .sec_faq table .tel_wrap {
        gap: 8px;
    }
    .sec_faq table .tel_wrap img {
        width: 1.8em;
        height: 1.8em;
        margin-top: 4px;
    }
    .sec_faq table .tel_wrap .tel_num a {
        font-size: 2.8rem;
        letter-spacing: 1.2px;
    }
    .sec_faq table .link_text {
        margin-top: 20px;
    }
    .sec_faq table .link_text a {
        font-size: 1.4rem;
    }
    .sec_faq table .link_text a .arrow {
        width: 16px;
        height: 16px;
        margin-left: 6px;
    }
    .sec_faq table .link_text a .arrow::before {
        width: 16px;
        height: 16px;
        top: ;
    }
    .sec_faq table .link_text a .arrow::after {
        top: 0.73em;
        right: 8.6px;
    }
}