@charset "UTF-8";
html{
    font-size: 100%;
}
body{
    font-family: "Hiragino Kaku Gothic ProN","Hiragino Sans","BIZ UDPGothic",sans-serif;
    line-height: 1.7;
    background-color: #fffcf8;
    color:#143046;
}
a{
    text-decoration: none;
}
img{
    max-width: 100%;
}
.align-center{
    text-align: center;
}
a:hover{
    opacity: 0.7;
}

/*レイアウト*/
.wrapper{
    max-width: 1360px;
    padding-left: 40px;
    padding-right: 40px;
    margin: 0 auto;
}
.sec-title{
    margin-top: 100px;
}
.flex{
    display: flex;
}
.fadein{
    opacity: 0;
}
.item-center{
    display: flex;
    align-items: center;
    justify-content: center;
}
.hidden{
    position: relative;
    overflow: hidden;
}

/*メニューボタン*/
.menu-btn{
    position: relative;
    width: 34px;
    height: 25px;
    transition: all 0.5s;
    cursor: pointer;
}
.menu-btn span{
    display: block;
    position: absolute;
    background-color: #fffcf8;
    width: 33px;
    height: 3px;
    z-index: 9998;
    transition: all 0.5s;
}
.menu-btn span:nth-of-type(1){
    top: 0px;
}
.menu-btn span:nth-of-type(2){
    top: 11px;
}
.menu-btn span:nth-of-type(3){
    top: 22px;
}
.open span{
    background-color: #fffcf8;
}
.open span:nth-child(1){
    transform: translateY(11px) rotate(-45deg);
}
.open span:nth-child(2){
    opacity: 0;
}
.open span:nth-child(3){
    transform: translateY(-11px) rotate(45deg);
}

/*ナビゲーションメニュー*/
#menu-panel{
    background-color: #219FA0;
    position: fixed;
    opacity: 0.9;
    inset: 0;
    z-index: 9997;
    line-height: 2rem;
}
.display{
    visibility: hidden;
}
#menu-panel a{
    color: #fffcf8;
    font-size: 30px;
    font-weight: bold;
    line-height: 60px;
}
.menu-list{
    padding: 30px 40px;
    translate: -100vw;
}
.menu-list li{
    list-style: none;
    opacity: 0;
}
/*ヘッダー*/
.header{
    background-color: #219FA0;
    width: 100%;
    height: 80px;
    position: sticky;
    z-index: 9997;
    top: 0;
    left: 0;
}
.header-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo{
    width: 180px;
    height: 25px;
}

.main-visual{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/*About*/
.content{
    gap: 30px;
    margin-top: 70px;
}
.item-text{
    text-align: center;
}
.trend{
    flex-direction: column;
    align-items: center;

}
.trend-img{
    width: 424px;
    height: 479.5px;
}
.care{
    flex-direction: column-reverse;
    align-items: center;
}
.care-img{
    width: 423.98px;
    height: 402.31px;
}

/*Products*/
.container{
    margin: 100px 0px 50px 0px;
    width: 100%;
}
.products a{
    color: #143046;
}
.products-img{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
}
.category{
    text-align: left;
    margin: 70px 0 50px 0;
}

/*アイテムページ*/
.gallery li{
    list-style: none;
}
.gallery a{
    color: #143046;
}
.gallery{
    flex-direction: column;
    margin-top: 50px;
}
.gallery-item{
    flex-direction: column;
    max-width: 500px;
}
.gallery-img img{
    width: 500px;
    height: 600px;
    object-fit: cover;
    aspect-ratio: 3/4;
}
.gallery-thumbnails{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}
.gallery-thumbnails img{
    border-radius: 50%;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.size{
    display: block;
    margin:50px 0 80px 0;
    border-spacing: 0;
}
.size th,
.size td{
    border-bottom: 1px solid #143046;
}
.size th{
    text-align: center;
    padding: 1rem;
}
.size td{
    padding: 1rem;
}
.text{
    margin-top: 50px;
}
.hashtug{
    font-size: 10px;
    margin-bottom: 30px;
}

/*ショップリンク*/
.shop{
    background-image: url(../img/online-shop.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 450px;
    margin-top: 100px;
}
.shop a{
    color: #143046;
    font-weight: 600;
}
.shop-btn{
    background-color: #fcd436;
    width: 400px;
    height: 150px;
    border-radius: 20px;
    border-bottom: 8px solid #143046;
}
.shop-btn:hover{
    opacity: 1;
}
/*フッター*/
.footer{
    margin-top: 100px;
}
.footer li{
    list-style: none;
}
.link{
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 70px;
    margin-bottom: 40px;
}
.link a{
    color: #143046;
}
.sns{
    justify-content: center;
    gap: 80px;
}
.sns-logo{
    width: 30px;
    height: 30px;
}

.copyright{
    background-color: #219FA0;
    color: #fffcf8;
    width: 100%;
    height: 80px;
    margin-top: 100px;
}

/*レスポンシブ(PCサイズ)*/
@media(min-width:800px){
    /*About*/
    .trend{
        flex-direction: row;
        justify-content: center;
    }
    .care{
        flex-direction: row;
        justify-content: center;
    }

    /*Products*/
    .container{
        justify-content: center;
        gap: 80px;
    }
    .indicator{
        visibility: hidden;
    }
    .slider{
        justify-content: space-around;
    }

    /*Products詳細ページ*/
    .indicator-more{
        visibility: hidden;
    }
    /*Tops*/
    #slider-tops{
        justify-content: space-around;

    }
    /*Botooms*/
    #slider-bottoms{
        justify-content: space-around;

    }
    /*Others*/
    #slider-others{
        justify-content: space-around;

    }

    /*アイテムページ*/
    .gallery{
        flex-direction: row;
        justify-content: center;
        gap: 4rem;
    }
    /*フッター*/
    .link{
        flex-direction: row;
        justify-content: center;
        gap: 80px;
    }
}
/*レスポンシブ(スマホサイズ)*/
@media(max-width:800px){

    /*オンラインショップ*/
    .shop-btn{
        max-width: 400px;
        width: 60%;
    }

    /*Productsスライドショー*/
    .slider{
        width: 300%;
        transition: all 0.3s;
    }
    .slider div{
        width: 33.33%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .slide1{
        transform: translateX(0);
    }
    .slide2{
        transform: translateX(-33.33%);
    }
    .slide3{
        transform: translateX(-66.66%);
    }
    .indicator{
        width: 100%;
        display: flex;
        column-gap: 18px;
        z-index: 10;
        justify-content: center;
        align-items: center;
        margin-bottom: 50px;
    }
    .indicator li{
        width: 14px;
        height: 14px;
        border-radius: 50%;
        list-style: none;
        background-color: #fffcf8;
        border: 2px #143046 solid;
        cursor: pointer;
    }
    .indicator li:first-of-type{
        background-color: #143046;
    }

    /*Productsもっとみるスライドショー*/
    .indicator-more{
        width: 100%;
        display: flex;
        column-gap: 18px;
        z-index: 10;
        justify-content: center;
        align-items: center;
        margin: 30px 0 50px 0;
    }
    .indicator-more li{
        width: 14px;
        height: 14px;
        border-radius: 50%;
        list-style: none;
        background-color: #fffcf8;
        border: 2px #143046 solid;
        cursor: pointer;
    }

    .indicator-more li.active {
        background-color: #143046;
    }    

    
}