@charset "UTF-8";

body {
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background-color: #fff;
    box-shadow: 5px 0 10px rgb(0 0 0 / 50%);
    transition: .3s;
    z-index: 10;
}

header h1#logo {
    width: 15%;
    max-width: 230px;
    margin: 0 auto;
}

header h1#logo a img {
    max-width: 230px;
}

#container_Wrap {
    width: 100%;
    background-color: #fff;
    padding-bottom: 80px;
    margin-top: 66px;
}

.copy_box {
    width: 92%;
    margin: 60px auto 0;
}

.copy_box p {
    font-size: 20px;
    line-height: 2;
    letter-spacing: 0.08px;
    text-align: center;
}

.about_box {
    width: 90%;
    max-width: 1000px;
    margin: 80px auto 0;
}

.about_ttl {
    width: 47.8%;
    max-width: 478px;
    margin: 0 auto 20px;
}

.loan_box {
    box-sizing: border-box;
    border: 1px solid #013f69;
    border-radius: 5px;
}

.loan_box dl {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    letter-spacing: 1px;
    border-top: 1px solid #013f69;
}

.loan_box dl:nth-of-type(1) {
    border-top: none;
}

.loan_box dl dt {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
    font-size: 18px;
    line-height: 1.4;
    color: #fff;
    text-align: center;
    background: #013f69;
    padding: 30px 5px;
    border-bottom: 1px solid #fff;
}

.loan_box dl:last-of-type dt {
    border-bottom: none;
}

.loan_box dl dd {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    width: 80%;
    font-size: 18px;
    line-height: 1.4;
    color: #6d6b6b;
    padding: 12px 20px;
}

.btn {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.btn ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 80px auto 0;
}

.btn ul li {
    width: 40%;
}

.btn ul li:nth-of-type(1) {
    margin-right: 6.6%;
}

.btn ul li a {
    display: block;
    font-size: 30px;
    color: #fff;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    padding: 30px 0;
    position: relative;
    cursor: pointer;
    transition: all .5s;
}

.btn ul li a:hover {
    opacity: 0.7;
}

.btn ul li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    border: 12px solid transparent;
    border-left: 17px solid #fff;
}

.btn ul li:nth-of-type(1) a {
    background-image: -moz-linear-gradient(90deg, rgb(179, 23, 7) 0%, rgb(211, 36, 18) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(179, 23, 7) 0%, rgb(211, 36, 18) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(179, 23, 7) 0%, rgb(211, 36, 18) 100%);
}

.btn ul li:nth-of-type(2) a {
    background-image: -moz-linear-gradient(90deg, rgb(197, 107, 11) 0%, rgb(222, 150, 47) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(197, 107, 11) 0%, rgb(222, 150, 47) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(197, 107, 11) 0%, rgb(222, 150, 47) 100%);
}

footer {
    background: #eef8ff;
    padding: 80px 0 0 0;
}

.contact {
    letter-spacing: 1px;
    text-align: center;
    padding-bottom: 80px;
}

.contact_ttl {
    font-size: 22px;
    color: #013f69;
    margin-bottom: 15px;
}

.contact .small {
    display: inline-block;
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.contact a {
    display: inline-block;
    font-size: 45px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    margin: 15px auto;
    cursor: pointer;
}


.contact .department,
.contact .time {
    font-size: 18px;
    font-weight: bold;
}

.footer_under {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #323C4E;
    padding: 15px 48px;
}

.footer_name {
    font-size: 14px;
    margin-right: 20px;
}

.footer_label {
    font-size: 12px;
    line-height: 1.8;
}


/* sp */
@media only screen and (max-width: 767px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    header h1#logo {
        width: 50%;
    }

    #container_Wrap {
        padding-bottom: 40px;
        margin-top: 66px;
    }

    .copy_box {
        margin: 50px auto 0;
    }

    .copy_box p {
        font-size: 16px;
        line-height: 1.8;
        letter-spacing: 0.08px;
    }

    .about_box {
        margin: 50px auto 0;
    }

    .about_ttl {
        width: 65%;
    }

    .loan_box dl dt {
        width: 100%;
        font-size: 14px;
        padding: 10px 5px;

    }

    .loan_box dl dd {
        width: 100%;
        font-size: 14px;
        padding: 10px 15px 10px 15px;
    }

    .btn ul {
        margin: 50px auto 0;
    }

    .btn ul li {
        width: 80%;
    }

    .btn ul li:nth-of-type(1) {
        margin: 0 0 20px 0;
    }

    .btn ul li a {
        font-size: 18px;
        padding: 20px 0;
    }

    .btn ul li a::after {
        border: 7px solid transparent;
        border-left: 12px solid #fff;
    }

    footer {
        padding: 40px 0 0 0;
    }

    .contact {
        padding-bottom: 40px;
    }

    .contact_ttl {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .contact .small {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .contact .department,
    .contact .time {
        font-size: 14px;
    }

    .contact a {
        font-size: 25px;
        margin: 10px auto;
    }

    .footer_under {
        flex-wrap: wrap;
        padding: 20px 10px;
    }

    .footer_name {
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
    }

    .footer_label {
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 751px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}