@charset "UTF-8";

.t_contact {
    background-color: #000000;
}

.t_contact a {
    transition: .4s ease;
}

.t_contact a:hover .arrow {
    transform: translateX(8px);
}

.t_contact a:hover {
    opacity: 50%;
}

.t_contact .inner {
    position: relative;
    max-width: 962px;
    width: 90%;
    margin: 0 auto;
    padding: 55px 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.t_contact .main-text {
    font-size: 23px;
    color: #fff;
    margin-right: 7%;
    margin-left: 10%;
}

.t_contact .desc p {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
    color: #fff;
}

.t_contact .arrow {
    margin-left: auto;
    transition: .4s ease;
}

.t_contact .inner::before {
    content: "";
    position: absolute;
    width: 33px;
    height: 130px;
    left: 0;
    top: 0;
    background: url(/system_panel/uploads/images/20251230213020809386.svg) no-repeat center / contain;
}

.footer {
    border-bottom: 4px solid #000000;
}

.footer .inner {
    max-width: 962px;
    width: 90%;
    margin: 0 auto;
    padding: 11px 0 20px;
}

.footer .inner .f_logo {
    max-width: 286px;
    width: 100%;
    margin: 0 auto 40px;
}

.footer .inner .f_menu {
    display: flex;
    flex-direction: column;
    gap: 37px;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.footer .inner .f_menu a {
    position: relative;
    overflow: hidden;
}

.footer .inner .f_menu a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateX(-100%);
    transition: .8s ease;
    background-color: #000;
}

.footer .inner .f_menu a:hover:after {
    transform: translateX(0);
}

.footer .inner .f_menu p {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #000;
}

.footer .inner .f_sns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3%;
    margin-bottom: 65px;
}

.footer .inner .f_sns a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
    transition: .4s ease;
}

.footer .inner .f_sns a:hover {
    opacity: 50%;
}

.footer .inner .f_sns a p {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #000;
}

.footer .inner .copy {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
    text-align: center;
    color: #000;

}

@media screen and (max-width: 768px) {
    .t_contact .inner {
        flex-direction: column;
        align-items: center;
    }

    .t_contact .main-text {
        margin: 0;
        margin-bottom: 22px;
    }

    .t_contact .desc {
        width: fit-content;
        margin: 0 auto 32px;
    }

    .t_contact .arrow {
        margin: 0 auto;
    }

    .footer .inner .f_logo {
        max-width: 240px;
    }

    .t_contact .inner::before {
        width: 24px;
        background-position: top;
    }
}