@charset "utf-8";
#goods .goods-list{
  display: flex;
  flex-wrap: wrap;
  margin: 5em -10px;
}
#goods .goods-list .goods-item{
  width: 33.33%;
  width: calc( 33.33% - 20px);
  padding: 10px;
}
#goods .goods-list .goods-item a{
  display: block;
}
#goods .goods-list .goods-item a.besty{
  position: relative;
}
#goods .goods-list .goods-item a.besty:after{
  content: "BESTY\A限定";
  white-space: pre;
  font-family: "Oswald", sans-serif;
  text-align: center;
  width: 3.4em;
  height: 3.4em;
  box-sizing: border-box;
  padding-top: 0.7em;
  color: #000;
  background: yellow;
  border-radius: 100%;
  font-weight: bold;
  position: absolute;
  left: 5px;
  top: 5px;
  transform: rotate(-12deg);
}
#goods .goods-list .image-sublist{
  display: none;
}
#goods .goods-list .goods-item p{
  font-size: 86.5%;
  line-height: 1.2em;
}
#goods .goods-list .goods-item p.name{
  margin-top: 0.5em;
}
#goods .goods-list .goods-item .price{
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 100%;
    letter-spacing: 0.1em;
    line-height: 1.8em;
}
#goods .goods-list .goods-item p.note{
  font-size: 80%;
  color: #f16f6f;
  color: #999;
  line-height: 1.4em;
}
#goods .goods-list .goods-item .item-detail{
  display: none;
}

/* modal */
#detail .modal-inner .comment-box .goods-wrap{
  display: flex;
}
#detail .modal-inner .comment-box .goods-wrap .goods-image{
  width: 50%;
}
#detail .modal-inner .comment-box .goods-wrap .goods-text{
  width: 50%;
  padding-left: 30px;
}
#detail .modal-inner .comment-box .goods-wrap .goods-text .besty-icon span{
  display: inline-block;
  color: yellow;
  background: #000;
  padding: 0.1em 0.3em;
  font-weight: bold;
  font-size: 120%;
  margin-bottom: 0.5em;
}
#detail .modal-inner .comment-box .goods-wrap .goods-text p{
  font-size: 16px;
  font-weight: bold;
}
#detail .modal-inner .comment-box .goods-wrap .goods-text p.price{
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 100%;
    letter-spacing: 0.05em;
    font-size: 125%;
}
#detail .modal-inner .comment-box .goods-wrap .goods-text p.note{
  font-size: 92.5%;
  color: #f16f6f;
  color: #999;
  font-weight: normal;
  margin-top: 1em;
  margin-bottom: 2.5em;
  line-height: 1.5em;
}
#detail .modal-inner .comment-box .goods-wrap .goods-text > p.note{
  display: none;
}

#detail .modal-inner .comment-box .goods-wrap .goods-text p.link-p{
  margin-top: 1em;
  margin-bottom: 0;
  font-size: 110%;
}
#detail .modal-inner .comment-box .goods-wrap .goods-text .item-link{
  display: inline-block;
  width: 8em;
  padding: 0.4em 0 0.6em;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  background: #000;
  font-size: 125%;
  text-align: center;
  letter-spacing: 0.1em;
  margin-top: 0.5em;
  margin-bottom: 1em;
}


@media (max-width: 768px){
  .sectiontitle h2{
    letter-spacing: 4px;
  }
  #goods .goods-list{
    margin: 0 -10px;
  }
  #goods .goods-list .goods-item{
    width: 50%;
    width: calc( 50% - 20px);
    padding: 10px;
  }
  #detail .modal-inner .comment-box .goods-wrap{
    display: block;
    padding: 10px 5px;
  }
  #detail .modal-inner .comment-box .goods-wrap .goods-image{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    line-height: 0;
    margin-bottom: 1em;
  }
  #detail .modal-inner .comment-box .goods-wrap .goods-image .image-main{
    width: 100%;
  }
  #detail .modal-inner .comment-box .goods-wrap .goods-image .image-sublist{
    width: 50%;
    cursor: pointer;
    width: calc( 50% - 5px);
    order: 1;
  }
  #detail .modal-inner .comment-box .goods-wrap .goods-image .image-sublist.active{
    width: 100%;
    order: 0;
  }
  #detail .modal-inner .comment-box .goods-wrap .goods-text{
    width: 100%;
    padding-left: 0;
  }
}
@media (max-width: 480px){
  .sectiontitle h2{
    letter-spacing: 3px;
  }
  #goods .goods-list {
    margin: 0 -5px;
  }
  #goods .goods-list .goods-item{
    width: 50%;
    width: calc( 50% - 10px);
    padding: 5px;
  }
  #goods .goods-list .goods-item .text{
    font-size: 14px;
  }
  #detail .modal-inner .comment-box .goods-wrap .goods-text p{
    font-size: 14px;
  }
  #goods .goods-list .goods-item a.besty:after{
    font-size: 85%;
    left: 3px;
    top: 3px;
  }
}