@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@700&display=swap');

html,body,a,p,ul,li,h1,h2,h3,h4,h5,h6,figure,dl,dt,dd{margin:0;padding:0;}

*{
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
}


@font-face {
	font-family: 'font';
	src: url(../font/font.ttf);
    
}


html{
    
}
body{
    overflow-x: hidden;
    -webkit-touch-callout:none;
    font-family: "League Spartan", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
    background: #fff;
}


img{
    width: 100%;
    height: auto;
    pointer-events: none;
    user-select: none;
    display: block;
    font-size: 0;
    
}

a{
    color: inherit;
    text-decoration: none;
}


li{
    list-style-type: none;
}


.youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;

}

.youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}


.sp{
    display: none;
    
}


@media screen and (max-width: 896px){
    .pc{
        display: none;
    }
    
    .sp{
        display: block;
    }
}

.underline{
  
      background-image: linear-gradient(90deg, #000, #000); /* 線の色 */
  background-repeat: no-repeat;
  background-position: left bottom; /* 線の起点を左・下に設定 */
  background-size: 0 100%; /* 線の横幅を0、縦幅を1pxに */
  transition: background-size 0.2s; /* 線を伸ばすアニメーション実行時間を指定 */
    display: inline;
    background-position: center right;
}
a.hover .underline {
  background-size: 100% 100%; /* 線の横幅を100%にする */
    background-position: center left;
}
.underline span{
    position: relative;
    z-index: 2;
}
a.hover .underline span{
    color: #fff;
}
h1{
    position: fixed;
    top: 40px;
    left: 40px;
    z-index: 999;
    mix-blend-mode: difference;
    width: 160px;
    z-index: 999;
    color: #fff;
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    font-style: italic;
    transition-duration: 0.2s;
    line-height: 1.4;
}

.toppage h1:not(.passed-mv){
    opacity: 0;
}
nav{
    position: fixed;
    top: 40px;
    right: 60px;
    z-index: 999;
    color: #fff;
    mix-blend-mode: difference;
    font-size: 18px;
    
}

nav ul{
    display: flex;
}

nav li{
    margin-left: 28px;
}
nav li a{
    display: block;
}

nav .underline{
     background-image: linear-gradient(90deg, #fff, #fff); /* 線の色 */
}
nav a.hover .underline span{
     color: #000;
}
.hero{
    height: 100svh;
    position: relative;
}

.hero img.kv{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% top;
}

.hero .hero-logo{
    width: 100%;
    position: absolute;
    top: 14%;
    left: 0%;
    transform: translateX(-100%);
    text-align: center;
    font-size: 60px;
    color: #fff;
    mix-blend-mode: difference;
    font-style: italic;
   animation: logo-fadein 0.6s forwards ease;
    font-weight: 700;
}

@keyframes logo-fadein {
  0% {
      opacity: 0;
   transform: translateX(-100%) skewX(-80deg);
      filter:blur(15px);
  }
    50%{
        
    }

  100% {
      opacity: 1;
   transform: translateX(0%);
     filter:blur(0px);
  }
}

.hero .hero-logo > span{
     width: 600px;
    display: block;
    margin: 0 auto;
    
}



section{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0;
}


.lowerpage section{
    padding-top: 160px;
}
h2{
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}
.item-list ul{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap:40px 20px;
    text-align: center;
}
.item-list ul figure{
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}
.item-list ul figure img{
    transition-duration: 0.2s;
    
}
.item-list ul figure img:nth-child(2){
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.item-list ul a.hover figure img{
    transform: scale(1.1);
}
.item-list ul a.hover figure img:nth-child(1){
    opacity: 0;
}

.item-list ul h3{
    font-size: 13px;
    line-height: 1.2;
  
}

.item-list ul .price{
    font-size: 12px;
}


.common-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px #000;
    
    height: 48px;
    margin: 0 auto;
     background-image: linear-gradient(90deg, #000, #000); /* 線の色 */
  background-repeat: no-repeat;
  background-position: left bottom; /* 線の起点を左・下に設定 */
  background-size: 0 100%; /* 線の横幅を0、縦幅を1pxに */
  transition: background-size 0.2s; /* 線を伸ばすアニメーション実行時間を指定 */
     background-position: center right;
}
 
 
.common-btn.hover{
  background-size: 100% 100%; /* 線の横幅を100%にする */
    background-position: center left;
}
.common-btn.hover span{
    color: #fff;
}
.common-btn.min{
    width: 280px;
    margin-top: 40px;
}
footer{
    padding-bottom: 60px;
}

.footer-link{
    display: flex;
    gap:40px;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 40px;
}
.hp-link{
    display: block;
    width: 120px;
    margin: 0 auto 20px;
    filter: invert();
}
.sns{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:28px;
    margin-bottom: 40px;
}
.sns a{
    width: 20px;
    aspect-ratio: 1 / 1;
}
.sns a img{
    width: 100%;
    height: 100%;
}
footer small{
    display: block;
    text-align: center;
    font-size: 14px;
}
.item-detail{
        display: flex;
        align-items: flex-start;
    }
    .main-slide{
        margin-bottom: 16px;
        cursor: col-resize;
    }

  
    .thumb-slide .slick-slide{
        opacity: 0.6;
        cursor: pointer;
        margin: 0 8px;
       
    }
    .thumb-slide .slick-center{
        opacity: 1;
    }
    .item-img-slide{
        width: 50%;
        margin-right: 40px;
        flex-shrink: 0;
        position: sticky;
        top: 0;
    }

.thumb-slide {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.thumb-slide .slide-item {
  cursor: pointer;
    border: solid 2px #fff;
}


.thumb-slide .active {
  border: solid 2px #000;
}

.item-detail .sales{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:8px;
    margin-bottom: 24px;
    
}

.item-info{
    position: sticky;
        top: 100px;
}

.item-info{
    position: sticky;
    top: 120px;
    left: 0;
    width: 50%;
    
}

.item-info h3{
   font-size: 24px;
    margin-bottom: 8px;
    line-height: 1.4;
}
.item-info p.price{
   font-size: 18px;
    margin-bottom: 20px;
}

.item-info p:not(.price){
    line-height: 1.8;
    margin-bottom: 40px;
    font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.size-select{
    
    width: fit-content;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap:8px;
}
.size-select input{
	display: none;
}
.size-select label{
	display: flex;
    justify-content: center;
    align-items: center;
	cursor: pointer;
	width: 48px;
    height: 48px;
	border: 1px solid #000;
	background: #fff;
	color: #000;
	font-size: 14px;
    border-radius: 100px;
    
    
}
.size-select.wide label{
    width: 100px;
    font-size: 12px;
}

.size-select input[type="radio"]:checked + label {
	background-color: #000;
	color: #fff;
}


.viewed-items{
    padding-top: 100px;
}
.viewed-items h4{
    text-align: center;
    font-size: 24px;
    margin-bottom: 40px;
}

.guide-txt{
    line-height: 1.6;
    font-size: 14px;
    max-width: 640px;
    text-align: justify;
    margin: 0 auto;
}
.guide-txt a{
    text-decoration: underline;
}

@media screen and (max-width: 896px){
    
    h1{
    top: 28px;
    left: 5%;
    width: 120px;
    font-size: 16px;
        
}


nav{
    top: 28px;
    right: 5%;
    font-size: 18px;
    
}

nav ul{
    display: flex;
    flex-flow: column;
    text-align: right;
}

nav li{
    margin-left: 0px;
    margin-bottom: 8px;
}

.hero{
    height: auto;
}

.hero .hero-logo{
    top: 19%;
    font-size:9vw;
}


.hero .hero-logo > span{
     width: 80%;
    
}


section{
    padding: 60px 0;
}


.lowerpage section{
    padding-top: 120px;
}
h2{
    font-size: 28px;
}
.item-list ul{
    grid-template-columns: 1fr 1fr;
    gap:28px 20px;
}


.item-list ul h3{
    font-size: 12px;
  
}

.item-list ul .price{
    font-size: 11px;
}


.common-btn.min{
    width: 240px;
    margin-top: 40px;
}

.footer-link{
    gap:28px;
    font-size: 16px;
}

.item-detail{
        display: block;
       
    }
    

  
    .item-img-slide{
        width: 100%;
        margin-right: 0px;
        margin-bottom: 40px;
        flex-shrink: 0;
        position: static;
        top: 0;
    }

.thumb-slide {
  grid-template-columns: 1fr 1fr 1fr 1fr;

}

.thumb-slide .slide-item {
  cursor: pointer;
    border: solid 2px #fff;
}


.thumb-slide .active {
  border: solid 2px #000;
}




.item-info{
    position:static;
    width: 100%;
    
}

.item-info h3{
   font-size: 20px;
}
.item-info p.price{
   font-size: 16px;
}

.item-info p:not(.price){
    font-size: 12px;
}

.size-select label{
	width: 40px;
    height: 40px;
    
}



.viewed-items{
    padding-top: 60px;
}
.viewed-items h4{
    text-align: center;
    font-size: 20px;
    margin-bottom: 40px;
}

    
}