@charset "utf-8";

.t_cta {
    position: relative;
}

.t_cta .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.t_cta .inner {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.t_cta .sec-head .tit-ja {
    font-size: clamp(0.875rem, 0.723rem + 0.65vw, 1.5rem);
    text-align: center;
    color: #ccc5b3;
}

.t_cta .sec-head .tit-en {
    font-size: clamp(2rem, 1.515rem + 2.07vw, 4rem);
    text-align: center;
    color: #ccc5b3;
}

.t_cta .sec-body {
    display: flex;
    justify-content: space-between;
    gap: 5%;
}

.t_cta .link-tel a {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.t_cta .link-tel .text {
    font-size: clamp(1.125rem, 1.034rem + 0.39vw, 1.5rem);
    color: #ccc5b3;
}

.t_cta .link-tel .num {
    font-size: clamp(2.25rem, 2.068rem + 0.78vw, 3rem);
    color: #ccc5b3;
}

.t_cta .link-tel .kome {
    font-size: clamp(0.75rem, 0.689rem + 0.26vw, 1rem);
    text-align: center;
    color: #ccc5b3;
}

.t_cta .link-tel .kome a {
    display: inline-block;
    transition: .4s ease;
}

.t_cta .link-tel .kome a:hover {
    opacity: 50%;
}

.t_cta .link-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    justify-content: center;
    max-width: 382px;
    width: 100%;
    border: 1px solid #ccc5b3;
}

.t_cta .link-contact .link-text {
    font-size: clamp(1.125rem, 1.095rem + 0.13vw, 1.25rem);
    color: #e6e2d8;
}


.footer .inner {
    padding: 39px 0 23px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer .sec-top {
    display: flex;
    justify-content: space-between;
}

.footer .sec-top .sec-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer .sec-top .sec-left .desc p {
    color: #e6e2d8;
}

.footer .sec-top .sec-left .desc a {
    transition: .4s ease;
}

.footer .sec-top .sec-left .desc a:hover {
    opacity: 50%;
}

.footer .sec-top .sec-left .c-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 20px;
    border: 1px solid #ccc5b3;
    width: fit-content;
}

.footer .sec-top .sec-left .c-btn .link-text {
    font-size: 16px;
    color: #e6e2d8;
}

.footer .f-menu {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, auto);
    gap: 20px 80px;
}

.footer .f-menu a {
    font-size: clamp(0.875rem, 0.814rem + 0.26vw, 1.125rem);
    color: #ccc5b3;
}

.footer .back-top {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
}

.footer .back-top .circle {
    width: 50px;
    aspect-ratio: 1/1;
    border: 1px solid #ccc5b3;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .back-top .tit-en {
    font-size: 14px;
    text-align: center;
    color: #ccc5b3;
}

.footer .copy {
    font-size: 14px;
    text-align: right;
    color: #ccc5b3;
}

@media screen and (max-width: 1023px) {
    .t_cta .inner {
        padding: 40px 0;
    }

    .t_cta .sec-body {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

    .footer .inner {
        padding: 32px 0 35px;
        gap: 40px;
    }

    .footer .sec-top {
        flex-direction: column-reverse;
        align-items: center;
    }

    .footer .sec-top .sec-left {
        align-items: center;
    }

    .footer .back-top {
        margin-bottom: 32px;
    }

    .footer .f-menu {
        margin-bottom: 64px;
    }

    .footer .copy {
        text-align: center;
    }
}