@charset "utf-8";

:root {
    --main-color: #;
    --sub-color: #f5f5f5;
    --accent-color: #e5ddff;
    --border-color: #ccc;
}

* ,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ul,
ol {
     list-style: none;
}
a {
    text-decoration: none;
    color: inherit;
}
body {
    font-size: 16px;
    color: #4e4e4e;
    line-height: 1;
    background-color: #fff;
    font-family: sans-serif;
    margin-top: -70px; /*banner*/
}


img {
    max-width: 100%;
    vertical-align: bottom;
}

/*---------- header ----------*/
header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 100px;
    background-color: #fff;
    z-index: 10000;
}
h1{
    width: 20%;
}
.header-logo{
    width: 20%;
}
.logo {
    width: 130px;
    height: 70px;
    margin: 10px 0;
    
}
.search_container{
    box-sizing: border-box;
    margin-left: 20px;
}
.search_container input[type="text"]{
    background: inherit;
    border: 1px solid var(--border-color);
    height: 2.5em;
    padding: 0 15px;
}
.search_container input[type="text"]:focus {
    outline: 0;
    
}
.search_container input[type="submit"]{
    cursor: pointer;
    border: none;
    background: #8d8d8d;
    color: #fff;
    outline : none;
    width: 3rem;
    height: 2.5em;
    transition: .2s;
}
@media (min-width:768px){
    .search_container input[type="submit"]:hover{
        cursor: pointer;
        border: none;
        background: var(--accent-color);
        color: #8d8d8d;
        outline : none;
        width: 3rem;
        height: 2.5em;
    }
}
.search_container ::-webkit-input-placeholder {
    color: #d3d3d3;
}
.display-flex{
    display: flex;
}
.header-line {
    justify-content: space-between;
    align-items: center;
}
.header-nav ul{
    justify-content: space-between;
    align-items: center;
}
.header-nav .icon{
    width: 25px;
    margin-bottom: 10px;
}

.header-nav .icon-30{
    width: 30px;
    margin-bottom: 5px;
}
.icon-search{
    display: none;
}
.header-nav p{
    font-size: .6rem;
    text-align: center;
}
.header-nav a{
    display: block;
    text-align: center;
    padding:0 15px;
    transition: all 0.3s;
}
.header-nav a:hover img{
    transform: scale(1.1);
}
.hum{
    display: none;
}

/*---------- global-nav ----------*/
.global-nav {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--sub-color);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.global-nav ul{
    justify-content: center;
    margin: 0 auto;
}
.global-nav li{
    width: 150px;
    justify-content: center;
    /* position: relative; */
}
.global-nav .global-list > a::before,
.global-nav .global-list:last-child > a::after{
    display: block;
    content: "";
    height: 25px;
    width: 1px;
    background-color: #ddd;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.global-nav .global-list:last-child > a::after{
    right: 0;
    left: initial;
}
.global-nav .global-list > a{
    position: relative;
}
.global-nav a{
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
}
.global-nav a span{
    position: relative;
    font-size: 18px;
}
.global-nav a span::after {
    position: absolute;
    bottom: -3px;
    left: 50%;
    content: '';
    width: 0;
    height: 1px;
    background-color: #4e4e4e;
    transition: .3s;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    transition-timing-function: cubic-bezier(0, 0, 0.25, 0.95);
}
@media (min-width:768px){
    .global-nav a:hover span::after {
    width: 100%;
    }
    .category-list:hover .sub-menu{
        visibility: visible;
        opacity: 1;
    }
}


/*---------- sub-menu ----------*/
.sub-menu{
    width: 100%;
    height: 100px;
    position: absolute;
    left: 0;
    right: 0;
    background-color: #ffffffe3;
    backdrop-filter: blur(10px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: .2s;
}
.sub-menu ul{
    align-items: center;
    width: 100%;
    height: 100px;
}
.sub-menu.is-open{
    visibility: visible;
    opacity: 1;
}
.sub-menu a span{
    color: #8d8d8d;
    font-size: 15px;
}
.sub-menu a:hover span{ 
    color: inherit;
}
.sub-menu-hum{
    display: none;
}
/* .category::after{
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-right: 1px solid #4e4e4e;
    border-bottom: 1px solid #4e4e4e;
    transform: rotate(45deg);
    position: relative;
    top: -2px;
    margin-left: 8px;
} */

.font-en{ 
    font-family: "Bellefair", serif;
    font-weight: 400;
    font-style: normal;
}


/*---------- main -----------*/
main{
    margin-top: 137px;
    overflow: hidden;
}

/*---------- mainimg -----------*/
.slide {
    width: 800px;
    padding: 0 4px;
}
/* .slide img {
	transition: transform .3s;
} */
.slider .slick-arrow{
    z-index: 1;
    width: 70px;
    height: 70px;
    top: calc(50% - 12px);
}
.slider .slick-arrow::before{
    font-size: 0;
}
.slick-prev{
    left: 35px;
}
.slick-next{
    right: 35px;
}
.dots-wrap {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.dots-wrap li {
    width: 40px;
    height: 4px;
    margin: 0 5px;
    background: var(--accent-color);
    cursor: pointer;
}

.dots-wrap li:hover,
.dots-wrap li.slick-active {
    background: #8d8d8d;
}
.dots-wrap li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}

/*---------- maincontent ----------*/
.maincontent-wrap{
    padding: 80px 30px;
}


/*---------- sideber ----------*/
.side-bar{
    width: 100%;
    height: 100%;
    max-width: 250px;
    margin-right: 20px;
}
.side-bar-hum{
    display: none;
}
.keyword-search{
    max-width: 250px;
    margin-bottom: 30px;
}
.keyword-search h2{
    padding: 15px 0;
    font-size: 14px;
}
.keyword-search .search_container{
    margin-left: 0;
}
.keyword-search .search_container input[type="text"] {
    border: 1px solid var(--border-color);
    width: 195px;
    height: 2.5em;
    padding: 0 10px 0 5px;
}
.refine-search h2{
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
    background-color: #f5f5f5;
    
}
.refine-search{
    border: 1px solid #d3d3d3;
    max-width: 250px;
}
.search-bar{
    padding: 0 25px;
}
.search-bar .search-text{
    font-size: 14px;
    font-weight: 500;
    padding-top: 30px;
    padding-bottom: 10px;
}
.ms-choice{
    border-radius: 0;
    height: 35px;
}
.ms-choice span{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.ms-drop.bottom{
    border-radius: 0%;
}
.ms-select-all,
.option-level-0 {
    font-size: 14px;
}
.ms-select-all input[type="checkbox"],
.option-level-0 input[type="checkbox"]{
    margin-top: 0;
}

.price {
    width: 100%;
}
.price input{
    text-align: right;
    font-size: 13px;
    height: 35px;
    max-width: 75px;
    margin: 0 0 2px 0;
    padding: 0 12px;
    border: 1px solid #ccc;
    border-radius: 0;
}
.price p{
    font-size: 13px;
    padding: 11px 5px;
}
.search-bar .submit{
    display: block;
    margin: 50px auto 20px;
    cursor: pointer;
    border: none;
    background: #8d8d8d;
    color: #fff;
    outline : none;
    width: 150px;
    height: 45px;
    transition: .2s;
}
.search-bar .submit:hover{
    cursor: pointer;
    border: none;
    background: var(--accent-color);
    color: #8d8d8d;
    outline : none;
    width: 150px;
    height: 45px;
}
.search-bar .reset{
    cursor: pointer;
    display: block;
    color: #4e4e4e;
    text-decoration: underline;
    background: transparent;
    font-size: 14px;
    margin: 0 auto 24px;
    border: none;
}

/*---------- maincontent ----------*/
.maincontent-wrap {
    justify-content: space-around;
}
.maincontent{
    width: calc(100% - 250px);
    max-width: 825px;
}
.item-group {
    width: 100%;
    text-align: center;
}
.item-group h2{
    font-size: 28px;
}
.item-group p{
    font-size: 12px;
    margin: 10px 0 30px;
}
.item-grid{
    display: grid;
}
.arrival-list.item-grid{
    grid-template-columns: repeat(3, 32.48%);
    gap: 1.3%;
    padding: 20px;
    border: 1px solid #ccc;
}
.item-group dl{
    text-align: left;
    padding: 15px 0;
    font-size: 14px;
}
.item-group dl dd{
    font-weight: bold;
    padding: 15px 0 20px;
}
.product-img{
    width: 100%;
    height: auto;
    overflow: hidden;
}
.arrival-list li a img{
    transition: all 0.3s;
}
.arrival-list li a:hover img {
    transform: scale(1.1);
}
.tax{
    font-size: 12px;
}



/* RANKING */
.ranking-list{
    width: 100%;
    margin-top: 40px;
}
.first-box{
    width: 55.5%;
    margin-right: 20px;
}
.grid-box{
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
    width: 45.5%;
}
.ranking-list a{
    display: block;
}
.position-relative{
    position: relative;
}
.rank-badge{
    position: absolute;
    top: -20px;
    left: 10px;
    width: 35px;
    z-index: 10;
}
.first-badge{
    top: -30px;
    width: 45px;
    z-index: 10;
}
.product-img img{
    transition: all 0.3s;
}
a:hover .product-img img{
    transform: scale(1.1);
}


/*----------- button ----------*/
.button-more {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 200px;
    margin: 30px auto 100px;
    padding: .9em 3em .9em 2em;
    border: 1px solid #4e4e4e;
    background-color: #fff;
    color: #4e4e4e;
    font-size: 1em;
    transition: .3s;
}
.button-more::after {
    position: absolute;
    right: 2em;
    transform: translateY(-50%);
    transform-origin: left;
    width: 1.5em;
    height: .5em;
    background-color: #8e8e8e;
    clip-path: polygon(0 100%, 100% 100%, 70% 40%, 70% 90%, 0% 90%);
    content: '';
    transition: transform .3s;
}
.button-more:hover{
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
    color: #8e8e8e;
}
.button-more:hover::after {
    transform: translateY(-50%) scaleX(1.4);
    background-color: #8e8e8e;
}

/*----------- button end ----------*/

.hum-menu{
    display: none;
}



/*---------- footer ----------*/
footer{
    width: 100%;
    height: 20vh;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.sns-list{
    margin-bottom: 20px;
    justify-content: center;
}
.sns-list li{
    padding: 0 10px;
}
.sns-list img{
    width: 25px;
}
.footer-list{
    font-size: 14px;
}
.footer-list li {
    padding: 0 10px;
}
.footer-list li+ li {
  border-left: 1px solid #4e4e4e;
}
.copylight{
    margin-top: 10px;
    text-align: center;
    padding: 10px;
    font-size: 12px;
}


/*---------- js ----------*/
.js-fade{
    opacity: 0;
    visibility: hidden;
    transition: 1s;
    transform: translateY(30px);
}

.arrival-list .js-fade:nth-child(3n-1){
    transition-delay: .1s;
}
.arrival-list .js-fade.js-fade:nth-child(3n){
    transition-delay: .2s;
}

.ranking-list .grid-box .js-fade:nth-child(2n-1) {
    transition-delay: .1s;
}
.ranking-list .grid-box .js-fade:nth-child(2n) {
    transition-delay: .2s;
}

.js-fade.is-active{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}





/*---------- responsive ----------*/

@media (max-width: 768px){

header{
    padding: 0 10px;
}
h1{
    width: 30%
}

.icon-search{
    display: block;
}
.icon-guide,
.icon-favorite{
    display: none;
}
.header-nav{
    margin-left: auto;
}
.header-nav a{
    padding: 0 10px;
}
.header-nav p{
    display: none;
}
.header-line .search_container {
    display: none;
}
.hum{
    display: block;
    width: 40px;
    aspect-ratio: 1/1;
    background-color: transparent;
    border: none;
    outline: none;
    
}
.hum span, 
.hum span::before,
.hum span::after{
    display: block;
    width: 30px;
    height: 2px;
    background-color: #4e4e4e;
    margin: 0 auto;
    position: relative;
}
.hum span::before,
.hum span::after{
    content: "";
    width: 100%;
    position: absolute;
    left: 0;
}
.hum span::before{
    top: 10px;
}
.hum span::after{
    top: -10px;
}
.hum.is-show span{
    background-color: transparent;
}
.hum.is-show  span::before{
    top: 0;
    rotate: 45deg;
}
.hum.is-show  span::after{
    top: 0;
    rotate: -45deg;
}

.global-nav ul{
    justify-content: space-between;
}
.global-nav li{
    width: 100%;
}
.global-nav .global-list:last-child > a::after,
.global-nav .global-list:first-child > a::before{
    display: none;
}
.sub-menu{
    height: auto;
    height: 70vh;
}
.sub-menu ul{
    display: block;
}
.sub-menu li{
    padding: 10px 0;
}
.sub-menu-hum{
    margin: 20px 20px 0 auto;
    display: block;
    width: 30px;
    aspect-ratio: 1/1;
    background-color: transparent;
    border: none;
    outline: none;
}
.sub-menu-hum span, 
.sub-menu-hum span::before,
.sub-menu-hum span::after{
    display: block;
    width: 30px;
    height: 2px;
    background-color: #4e4e4e;
    margin: 0 auto;
    position: relative;
}
.sub-menu-hum span{
    background-color: transparent;
}
.sub-menu-hum span::before,
.sub-menu-hum span::after{
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
}
.sub-menu-hum span::before{
    rotate: 45deg;
}
.sub-menu-hum span::after{
    rotate: -45deg;
}
.slide{
    width: 100vw;
    padding: 0;
}
.slider .slick-arrow{
    width: 50px;
    height: 50px;
}
.slick-prev{
    left: 10px;
}
.slick-next{
    right: 10px;
}
.maincontent-wrap {
    display: block;
    padding: 20px;
    width: 100%;
}
.side-bar{
    max-width: 100%;
    height: 80vh;
    padding-bottom: 60px;
    margin: 0 auto ;
    position: absolute;
    top: 135px;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: #ffffffe3;
    backdrop-filter: blur(10px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    overflow: scroll;
    opacity: 0;
    visibility: hidden;
    transition: .2s;
}
.side-bar-hum{
    margin: 20px 20px 0 auto;
    display: block;
    width: 30px;
    aspect-ratio: 1/1;
    background-color: transparent;
    border: none;
    outline: none;
}
.side-bar-hum span, 
.side-bar-hum span::before,
.side-bar-hum span::after{
    display: block;
    width: 30px;
    height: 2px;
    background-color: #4e4e4e;
    margin: 0 auto;
    position: relative;
}
.side-bar-hum span{
    background-color: transparent;
}
.side-bar-hum span::before,
.side-bar-hum span::after{
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
}
.side-bar-hum span::before{
    rotate: 45deg;
}
.side-bar-hum span::after{
    rotate: -45deg;
}
.keyword-search{
    margin: 0 auto 30px;
}
.refine-search{
    margin: 0 auto;
}
.maincontent{
    width: 100%;
}
.arrival-list.item-grid{
    grid-template-columns: 1fr 1fr;
}
.ranking-list{
    display: block;
}
.first-box{
    width: 100%;
}
.grid-box{
    width: 100%;
}
.grid-box li{
    padding-top: 20px;
}


.hum-menu{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: var(--sub-color);
    height: 90vh;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    z-index: 10000;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    overflow: scroll;
    opacity: 0;
    visibility: hidden;
    transition: .2s;
}

.hum-nav li a{
    display: block;
    padding: 10px;
    text-align: center;
}
.sns-icon{
    padding: 50px;
}

.footer-list{
    display: none;
    font-size: 12px;
    white-space: nowrap;
}
.footer-content .sns-icon{
    height: 100%;
    padding: 20px;
} 
.footer-content .sns-list{
    margin-bottom: 0;
}

/*---------- js ----------*/

.side-bar.is-open{
    opacity: 1;
    visibility: visible;
    z-index: 10000;
}
.hum-menu.is-open{
    opacity: 1;
    visibility: visible;
}



}







/* @media (max-width:375px) {

} */