@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@500;700;800&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;
     font-family: "Shippori Mincho", serif;
 
  font-style: normal;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
    letter-spacing: 0.02em;
}


@font-face {
	font-family: 'font';
	src: url(../font/font.ttf);
    
}


html{
    
}
body{
    overflow-x: hidden;
    -webkit-touch-callout:none;
    color: #d5d5ff;
     font-weight: 500;
}


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;
}



.sp{
    display: none;
    
}
.kv{
    position: fixed;
    top: 0;
    left:0;
    width: 50%;
    height: 100vh;
}
.kv img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.kv img:nth-child(1){
    z-index: 4;
     animation: floating-y1 2s ease-in-out infinite alternate-reverse;
}
.kv img:nth-child(2){
    z-index: 3;
     animation: floating-y2 3s ease-in-out infinite alternate-reverse;
}
.kv img:nth-child(3){
    z-index: 2;
    animation: floating-y3 4s ease-in-out infinite alternate-reverse;
}
.kv img:nth-child(4){
    position: relative;
}

.kv p{
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #fff;
    font-size: 16px;
    text-shadow: 0 0 4px #000, 0 0 4px #000, 0 0 4px #000, 0 0 4px #000;
}
@keyframes floating-y1 {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(3%);
  }
}
@keyframes floating-y2 {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(2%);
  }
}
@keyframes floating-y3 {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(4%);
  }
}

main{
    padding-left: 50%;
    background: #15152a;
}

.inner{
    width: 90%;
    margin: 0 auto;
    padding:40px 0;
}
.goods-head figure{
    width: 90%;
    max-width: 400px;
    margin: 0 auto 40px;
}


h1{
    font-size: min(56px,5.5vw);
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
}

h1 small{
    font-size: 60%;
}

.goods-info{
    border: solid 1px;
    text-align: center;
    padding: 32px 40px 40px;
    margin-bottom: 40px;
}
.goods-info h2{
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}
.goods-info p{
    line-height: 1.5;
}
.goods-info small{
    display: block;
    margin-top: 20px;
}
.goods-list{
    
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:48px 28px;
    margin-bottom: 60px;
}

.goods-list a.popup{
    display: block;
    margin-bottom: 12px;
    background: #000;
    overflow: hidden;
}
.goods-list a.popup img{
    transition-duration: 0.2s;
}
.goods-list a.popup:hover img{
    transform: scale(1.1);
    opacity: 0.5;
}
.goods-list li{
    display: flex;
    flex-flow: column;
}
.goods-list li h4{
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    
}
.goods-list li h4 span{
    display: block;
    font-weight: 500;
    font-size: 80%;
    margin-top: 8px;
}

.goods-list a.cart{
   width: 100%;
    height: 48px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    background: #d5d5ff;
    color:#15152a;
    margin: auto 0 0px;
    font-weight: 900;
    border: solid 1px #d5d5ff;
}

.goods-list a.cart:hover{
    background: none;
      
    color: #d5d5ff;
}
.blocker{
    background-color: rgba(0, 0, 0, 0.5);
}
.modal{
    background: #15152a;
    padding: 40px;
    text-align: center;
    max-width: 700px;
}
.modal h4{
    font-size: 28px;
    font-weight: 700;
    
}
.modal h4 span{
    display: block;
    font-size: 80%;
    margin-top: 12px;
    font-weight: 500;
}

.modal p{
    text-align: center;
    line-height: 1.5;
    margin: 40px 0;
    font-size: 18px;
}
.modal-close{
    width: fit-content;
    display: block;
    margin: 0 auto;
    font-size: 16px;
}

aside{
   
    font-size: 14px;
    line-height: 1.6;
}
aside a{
    text-decoration: underline;
}

.bottom-link{
        display: flex;
        justify-content: center;
    margin-top: 40px;
    font-size: 14px;
    margin-bottom: 40px;
    }
footer{
    text-align: center;
    font-size: 12px;
}

@media screen and (max-width: 896px){
    .sp{
    display: block;
    
}
    
    .pc{
        display: none;
    }
.kv{
    position:relative;
    width: 100%;
    height: auto;
}
.kv img{
    height: auto;
}

    .kv p{
        font-size: 12px;
        bottom: 12px;
        right: 12px;
    }
main{
    padding-left: 0%;
    background: #15152a;
}

.inner{
    width: 90%;
    margin: 0 auto;
    padding:40px 0;
}



h1{
    font-size: min(56px,10vw);
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
}

.goods-info{
    padding: 24px 20px 28px;
    margin-bottom: 40px;
}
.goods-info h2{
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}
.goods-info p{
    line-height: 1.5;
    font-size: 14px;
}
.goods-info small{
    margin-top: 12px;
    text-align: left;
    font-size: 11px;
}
.goods-list{
    grid-template-columns: 1fr 1fr;
    gap:40px 20px;
    margin-bottom: 40px;
}


.goods-list li h4{
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    
}
.goods-list li h4 span{
    display: block;
    font-weight: 500;
    font-size: 80%;
    margin-top: 8px;
}

.goods-list a.cart{
    height: 40px;
   font-size: 14px;
}

.goods-list a.cart:hover{
    background: none;
    color: #d5d5ff;
}

.modal{
    background: #15152a;
    padding: 28px 20px;
}
.modal h4{
    font-size: 16px;
    font-weight: 700;
    
}
.modal h4 span{
    display: block;
    font-size: 80%;
    margin-top: 12px;
    font-weight: 500;
}

.modal p{
    text-align: center;
    line-height: 1.5;
    margin: 20px 0;
    font-size: 12px;
}
.modal-close{
    width: fit-content;
    display: block;
    margin: 0 auto;
    font-size: 14px;
}

aside{
   
    font-size: 12px;
    line-height: 1.6;
}
aside a{
    text-decoration: underline;
}

.bottom-link{
        display: flex;
       flex-flow: column;
    justify-content: center;
    text-align: center;
    margin-top: 40px;
    font-size: 12px;
    margin-bottom: 40px;
    gap:12px;
    }
footer{
    text-align: center;
    font-size: 10px;
}
    
}

