@charset "utf-8";

.footer-sns{
    background-color: rgba( 255, 255, 255, 0.95);
}

.footer-sns-list{
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5%;
}

.footer-sns-item{
    margin: 0 0 20px;
}

.footer-sns-item-box{
    padding: 0 10px;
    display: block;
    text-align: center;
}

.footer-sns-item-icon{
    display: block;
    margin: 0 auto 5px;
    overflow: hidden;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 0 8px gray;
    transition: transform 0.3s ease;
}

.footer-sns-item-icon:hover{
    transform: scale(1.05);
}

.footer-sns-item-icon-x{
    padding: 20px;
    background-color: black;
}

.footer-sns-item-icon-instagram{
    padding: 15px;
}

.footer-sns-item-icon-youtube{
    background-color: #FF0100;
}


.footer-sns-item-box p{
    font-size: 1.1rem;
    font-weight: 600;
}

/* footer-sitemap */
.footer-sitemap{
    background-color: rgba( 255, 255, 255, 0.95);
}

.footer-sitemap-box{
    margin: 0 auto;
    padding: 5px 4%;
}

.footer-sitemap-list{
    display: grid;
	justify-content: center;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 1%;
}

.footer-sitemap-item{
    margin-bottom: 25px;
}

.footer-sitemap-item-header{
    width: fit-content;
    border-left: 4px solid #F09397;
    margin-bottom: 5px;
    padding-left: 5px;
    font-weight: 800;
}

.footer-sitemap-item-header:hover:not(.no-hover) p,.footer-sitemap-item-body-item span:hover{
    color: #F09397;
}

.footer-sitemap-item-body{
    margin-left: 10px;
}

.footer-sitemap-item-body-item{
    font-weight: 500;
}

@media screen and (min-width: 1400px) {
    .footer-sitemap-box{
        width: 1400px;
    }
}

@media screen and (max-width: 800px) {
    .footer-sitemap{
        display: none;
    }
}

/* footer-main */
.footer-main{
    padding: 30px 4% 10px;
    width: 100%;
    background-color: #F09397;
}

.footer-icon{
    width: fit-content;
}

.footer-icon-box{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-icon-image{
    width: 100px;
}

.footer-icon-text p{
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-icon:hover .footer-icon-text p{
    color: #333;
}

.footer-mail-address{
    position: relative;
    margin-top: 10px;
    width: fit-content;
}

.footer-mail-address span{
    padding-left: 50px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-mail-address a::before{
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    top: -2px;
    left: 10px;
    transition: all 0.3s ease;
}

.footer-mail-address a::before{
    background-image: url(../images/footer/mail_white.webp);
}

.footer-mail-address:hover a::before{
    background-image: url(../images/footer/mail_black.webp);
}

.footer-mail-address:hover span{
    color: #333;
}

.footer-nav{
    margin: 50px 0;
    display: flex;
    justify-content: end;
    gap: 2%;
}

.footer-nav a{
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-nav a:hover{
    color: #333;
}

.copyright{
    padding: 50px 0 0;
    text-align: center;
    color: #fff;
}

.copyright>p{
    font-size: 1.0rem;
}

.copyright>p>a{
    color: #fff;
}

@media screen and (max-width: 800px) {
    .footer-main-box{
        display: block;
    }
    .footer-main-box-item{
        width: 100%;
        margin-bottom: 40px;
    }
    .footer-address p,.footer-tf-item p,.footer-nav-item{
        font-size: 0.9rem;
    }
    .footer-nav{
        margin: 10px 0 60px;
    }
    .copyright{
        padding: 50px 0 0;
    }
}

@media screen and (max-width: 480px) {
    .footer-address p,.footer-tf-item p,.footer-nav-item{
        font-size: 0.75rem;
    }
    .footer-nav{
        display: block;
        text-align: end;
    }
    .copyright{
        text-align: center;
        color: #fff;
    }
    .copyright>p{
        font-size: 0.8rem;
    }
}