@charset "UTF-8";

/*----------------------------------------------------
	☆PC
----------------------------------------------------*/

#contents .topTitleBox{
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}
#contents .topTitleBox .lead01{
    padding-left: 40px;
}

#mv{
    background: url("../images/top/mv.jpg") center center / cover no-repeat;
    position: relative;
    height: calc(100vh - 90px);
    margin-top: 90px;
}
#mv .title{
    font-size: 56px;
    position: absolute;
    left: 50px;
    bottom: 50px;
}

/*--- message --*/
#message{
    padding: 120px 0;
    text-align: center;
    width: 85%;
    margin: 0 auto;
    font-size: 18px;
    line-height: 2.1;
}

/*--- instagram --*/
#instagram {
    margin-bottom: 120px;
}

#instagram .instagramList{
    max-width: 960px;
    margin: 0 auto;
}
#instagram .instagramList ul{
    display: flex;
    margin-left: -20px;
    flex-wrap: wrap;
}
#instagram .instagramList ul li{
    width: calc((100% - 80px) / 4);
    margin: 0 0 20px 20px;
}
#instagram .instagramList ul li a{
    display: block;
    position: relative;
    padding-top: 100%;
    width: 100%;
}
#instagram .instagramList ul li a .c{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
    opacity: 0;
    color: #fff;
}
#instagram .instagramList ul li a .c span{
    display: flex;
    align-items: center;
    font-size: 16px;
    margin: 0 10px;
}
#instagram .instagramList ul li a .c span::before{
    width: 16px ;
    height: 16px;
    display: block;
    content: "";
    margin-right: 5px;
}
#instagram .instagramList ul li a .c span.like::before{
    background: url("../images/common/icon_heart.svg") center center / contain no-repeat;
}
#instagram .instagramList ul li a .c span.comme::before{
    background: url("../images/common/icon_comment.svg") center center / contain no-repeat;
}
#instagram .instagramList ul li a .image{
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

/*--- news --*/
#news .max1200{
    display: flex;
    justify-content: space-between;
}
#news .head01{
    width: 30%;
}
#news .newsList{
    width: 70%;
}
#news .newsList li{
    border-bottom: 1px solid #dfe4e8;
}
#news .newsList li a{
    padding: 35px 0;
    display: flex;
    transition: .4s;
}
#news .newsList li a .date{
    width: 10em;
}
#news .newsList li a .title{
    width: calc(100% - 10em - 20px);
    line-height: 1.75;
}


/*--- about --*/
#about {
    padding: 120px 0;
}
#about .max1200{
    display: flex;
    align-items: center;
}
#about .max1200 .info{
    width: 45%;
    padding: 9vw 0;
}
#about .max1200 .image{
    width: 50vw;
    height: calc(100% - 240px);
    position: absolute;
    top: 120px;
    left: 50%;
    background-position: center center;
    background-size: cover;
}


/*--- brand --*/
#brand{
    padding-bottom: 120px;
}
#brand .brandList ul{
    display: flex;
    justify-content: space-between;
    margin-left: -30px;
    flex-wrap: wrap;
}
#brand .brandList li{
    width: calc((100% - 150px) / 5);
    margin-left: 30px;
    margin-bottom: 20px;
}
#brand .brandList li .image{
    margin-bottom: 10px;
}
#brand .brandList li .title{
    transition: .4s;
}

/*----------------------------------------------------
	☆ANIMATION
----------------------------------------------------*/

#instagram .instagramList ul li{
    transition: .5s;
    opacity: 0;
}

#instagram .instagramList.in ul li{
    animation: fadein 1s ease forwards;
}

#instagram .instagramList.in ul li:nth-child(2){ animation-delay: 0.15s !important;}
#instagram .instagramList.in ul li:nth-child(3){ animation-delay: 0.3s!important;}
#instagram .instagramList.in ul li:nth-child(4){ animation-delay: 0.45s!important;}
#instagram .instagramList.in ul li:nth-child(5){ animation-delay: 0.6s !important;}
#instagram .instagramList.in ul li:nth-child(6){ animation-delay: 0.75s !important;}
#instagram .instagramList.in ul li:nth-child(7){ animation-delay: 0.9s!important;}
#instagram .instagramList.in ul li:nth-child(8){ animation-delay: 1.05s!important;}
#instagram .instagramList.in ul li:nth-child(9){ animation-delay: 1.2s!important;}
#instagram .instagramList.in ul li:nth-child(10){ animation-delay: 1.35s!important;}
#instagram .instagramList.in ul li:nth-child(11){ animation-delay: 1.5s!important;}
#instagram .instagramList.in ul li:nth-child(12){ animation-delay: 1.65s!important;}


/*----------------------------------------------------
	☆901以上　PCのみ & HOVER
----------------------------------------------------*/

@media screen and (min-width:901px) {
    
    #instagram .instagramList ul li a:hover .c{
        opacity: 1;
    }
    
    #news .newsList li a:hover{
        opacity: .7;
        transform: translateX(10px);
    }
    
    #brand .brandList li a:hover .title{
        transform: translateX(10px);
    }
    
    
}
    
/*----------------------------------------------------
	☆UNDER 900
----------------------------------------------------*/

@media screen and (max-width:900px) {
    
    #contents .topTitleBox {
        margin-bottom: 50px;
    }
    #contents .topTitleBox{
        flex-direction: column;
        align-items: flex-start;
    }
    #contents .topTitleBox .lead01{
        padding: 30px 0 0 0;
    }
    
    #mv .title{
        writing-mode: vertical-rl;
        padding: 0.7em 0.2em 0;
        font-size: 4.5vh;
    }
    
    #message {
        padding: 80px 0;
    }
    
    #instagram {
        margin-bottom: 80px;
    }
    #instagram .instagramList ul{
        margin-left: -15px;
    }
    #instagram .instagramList ul li {
        width: calc((100% - 45px) / 3);
        margin: 0 0 15px 15px;
    }
    
    #news .max1200{
        flex-direction: column;
    }
    #news .newsList{
        width: 100%;
        margin-top: -30px;
    }
    #news .newsList li a{
        padding: 30px 0;
    }
    
    #about {
        padding: 80px 0;
    }
    #about .max1200 {
        flex-direction: column-reverse;
    }
    #about .max1200 .info{
        width: 100%;
        padding: 0;
    }
    #about .max1200 .image{
        position: relative;
        width: 95vw;
        height: 60vw;
        left: 0;
        top: 0;
        margin-left: 5vw;
        margin-bottom: -72px;
        z-index: 0;
    }
    
    #brand {
        padding-bottom: 80px;
    }
    #brand .brandList ul{
        margin-left: -20px;
        justify-content: flex-start;
    }
    #brand .brandList li {
        width: calc((100% - 60px) / 3);
        margin-left: 20px;
        margin-bottom: 30px;
    }
    
}


/*----------------------------------------------------
	☆UNDER 600
----------------------------------------------------*/

@media screen and (max-width:600px) {
    
    #contents .topTitleBox {
        margin-bottom: 40px;
    }
    #contents .topTitleBox .lead01 {
        padding: 20px 0 0 0;
    }
    
    
    #mv {
        height: calc(100vh - 55px);
        margin-top: 55px;
    }
    #mv .title {
        font-size: 5.4vh;
        left: 25px;
        bottom: 26px;
    }
    
    
    #message {
        padding: 60px 0;
        font-size: 15px;
    }
    
    
    #instagram .instagramList ul li{
        width: calc((100% - 30px) / 3);
        margin: 0 0 10px 10px;
    }
    
    
    #news .newsList li a{
        flex-direction: column;
    }
    #news .newsList li a .date{
        width: 100%;
        margin-bottom: 5px;
    }
    #news .newsList li a .title{
        width: 100%;
    }
    
    #about {
        padding: 60px 0;
    }
    #about .max1200 .image {
        height: 95vw;
        margin-bottom: -52px;
    }
    
    #brand {
        padding-bottom: 60px;
    }
    #brand .brandList li {
        width: calc((100% - 40px) / 2);
    }
    
    
    
    

}

