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

/*==================
お客様相談室のご案内
====================*/
.tel_wrapper{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.tel_wrapper .tel_wrap {
    display: flex;
    gap: 20px;
    align-items: center;
}
.tel_wrapper .tel_wrap img {
    display: inline-block;
    width: 3em;
    height: 3em;
    object-fit: contain;
    margin-top: 8px;
}
.tel_wrapper .tel_wrap .tel_num a {
    font-size: 4.8rem;
    font-weight: 600;
    color: var(--BL-color);
    line-height: 1.35;
    letter-spacing: 1.4px;
}
.tel_wrapper .tel_wrap .tel_num a .text {
    font-size: 3.6rem;
    letter-spacing: 0.5px;
    font-feature-settings: "palt";
    padding-left: 3px;
}

.tel_wrapper .time {
    display: flex;
    gap: 20px;
    align-items: center;
}
.tel_wrapper .time dt {
    background: var(--BL-color);
    color: #FFFFFF;
    font-size: 1.6rem;
    font-weight: 500;
    border-radius: 25px;
    padding: 5px 25px 6px;
}
.tel_wrapper .time dd {
    font-size: 2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}
.tel_wrapper .time dd span {
    font-size: 1.5rem;
    font-weight: 400;
    font-feature-settings: 'palt';
}

@media (max-width: 768px) {
    .tel_wrapper .tel_wrap {
        gap: 8px;
    }
    .tel_wrapper .tel_wrap img {
        width: 1.8em;
        height: 1.8em;
        margin-top: 4px;
    }
    .tel_wrapper .tel_wrap .tel_num a {
        font-size: 2.8rem;
        letter-spacing: 1.2px;
    }
    .tel_wrapper .tel_wrap .tel_num a .text {
        font-size: 2.2rem;
        padding-left: 2px;
    }

    .tel_wrapper .time {
        gap: 3px;
        flex-direction: column;
        flex-wrap: wrap;
    }
    .tel_wrapper .time dt {
        font-size: 1.4rem;
        border-radius: 20px;
        padding: 2px 18px 3px;
    }
    .tel_wrapper .time dd {
        font-size: 1.6rem;
        gap: 4px;
    }
    .tel_wrapper .time dd span {
        font-size: 1.3rem;
    }
}


/*==================
カード・通帳等の紛失・盗難時の連絡先
====================*/
/*テーブル*/
.sec_02 table {
    max-width: 900px;
    margin: 40px auto 0;
}
.sec_02 table th {
    border: 1px solid #D5D5D5;
    padding: 20px 30px;
    width: 28%;
    background: #F3F3F3;
    font-weight: 400;
    text-align: center;
}
.sec_02 table td {
    border: 1px solid #D5D5D5;
    padding: 20px 30px;
    width: 72%;
}

.sec_02 table .name {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--P-color);
}
.sec_02 table .tel_wrap {
    display: flex;
    gap: 20px;
    align-items: center;
}
.sec_02 table .tel_wrap img {
    display: inline-block;
    width: 3em;
    height: 3em;
    object-fit: contain;
    margin-top: 8px;
}
.sec_02 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_02 table .link_text {
    margin-top: 30px;
}
.sec_02 table .link_text a {
    text-decoration: underline;
    transition: 0.3s;
}
.sec_02 table .link_text a .arrow {
    position: relative;
    width: 18px;
    height: 18px;
    display: inline-block;
    margin-left: 10px;
}
.sec_02 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_02 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_02 table.link_text a:hover {
    opacity: 0.7;
}

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


/*==================
お問い合わせ
====================*/
.sec_contact span.tel_num a {
    display: flex;
    align-items: center;
}

.sec_contact .logo_wrap {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}
.sec_contact .logo_wrap img {
    max-width: 250px;
    object-fit: contain;
    vertical-align: middle;
}
@media (max-width: 768px) {
    .sec_contact .logo_wrap {
        flex-direction: column;
        gap: 10px;
    }
    .sec_contact .logo_wrap .text_wrap {
        text-align: center;
        font-size: 1.4rem;
    }
}