@charset "utf-8";
/* CSS Document */
.shop .main_block {
  padding: 120px 40px 0px;
}

.shop .main_block::before {
  content: '';
  width: 100%;
  height: 100vh;
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: image-set(url("../images/shop/pc_shop_bg.png") 1x,url("../images/shop/pc_shop_bg.png") 2x);
  background-image: -webkit-image-set(url("../images/shop/pc_shop_bg.png") 1x,url("../images/shop/pc_shop_bg.png") 2x);
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1050px) {
  .shop .main_block {
    padding: 200px 40px 0px;
  }
}

@media screen and (max-width: 767px) {
  .shop .main_block {
    padding: 140px 20px 0px;
  }
}

/*見出し*/
.shop_title_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 20px;
}

.shop_title_en {
  font-size: 20px;
  color: #828080;
}

@media screen and (max-width: 767px) {
    .shop_title_en {
    font-size: 14px;
  }
}

.shop_title_jp {
  font-size: 50px;
}

@media screen and (max-width: 1050px) {
    .shop_title_jp {
    font-size: 45px;
  }
}

@media screen and (max-width: 767px) {
    .shop_title_jp {
    font-size: 38px;
  }
}

@media screen and (max-width: 592px) {
    .shop_title_jp {
    font-size: 30px;
  }
}

/*mv slide*/
.main_block .slide_wrapper {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1050px) {
  .main_block .slide_wrapper {
    top: 0;
  }
}

.main_block .slide {
  height: auto;
}

.main_block .prev,
.main_block .next {
  top: 45%;
  z-index: 10;
}

.main_block .prev {
  left: 20px;
}

.main_block .next{
 right: 12px;
}


.main_block .indicator {
 bottom: 20px;
}

/*shop desc*/
.shop_desc {
  width: 100%;
  max-width: 600px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.005em;
  margin: 20px auto 0;
}

@media screen and (max-width: 767px) {
  .shop_desc {
    font-size: 16px;
  }
}

/*shop item block*/
.shop_item_block {
  padding: 200px 0;
}

@media screen and (max-width: 767px) {
  .shop_item_block {
    padding: 100px 0;
  }
}


/*shop_item_block 見出し*/
.shop_title_block {
  text-align: center;
  position: relative;
}

.shop_title_box {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #333;
}

.shop_title01 {
  color: #828080;
  font-size: 32px;
}

@media screen and (max-width: 767px) {
  .shop_title01 {
    font-size: 18px;
  }
}

.shop_title02 {
  font-size: 45px;
}

@media screen and (max-width: 767px) {
  .shop_title02 {
    font-size: 30px;
  }
}

.shop_logo_box {
  position: absolute;
  inset: 0;
}

.logo_item_list {
  display: flex;
  justify-content: center;
  position: absolute;
  inset: 0;
}

.logo_item:first-child{
  position: absolute;
  top: 15px;
  left: 28%;
}

@media screen and (max-width: 856px) {
    .logo_item:first-child{
    position: absolute;
    top: 15px;
    left: 20%;
  }
}

@media screen and (max-width: 767px) {
    .logo_item:first-child{
    max-width: 40px;
    position: absolute;
    top: 0px;
    left: 20%;
  }
}

@media screen and (max-width: 520px) {
    .logo_item:first-child{
    width: 35px;
    top: 10px;
    left: 5%;
  }
}


.logo_item:first-child:after{
  content: '';
  width: 80px;
  height: 80px;
  background: url("../images/shop/pc_heat.png");
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 20px;
  left: 50%;
  animation: swing 5s linear infinite alternate;
}

@keyframes swing {
  0% {
    transform: translate(0,0) rotate(0deg)
  }
  100% {
    transform: translate(50px,-100px) rotate(360deg)
  }
}

@media screen and (max-width: 1400px) {
  .logo_item:first-child:after {
    width: 40px;
    height: 40px;
  }
}

.logo_item:nth-child(2){
  position: absolute;
  top: 15px;
  right: 28%;
}

@media screen and (max-width: 856px) {
    .logo_item:nth-child(2){
    position: absolute;
    top: 15px;
    right: 20%;
  }
}

@media screen and (max-width: 767px) {
    .logo_item:nth-child(2) {
    max-width: 40px;
    position: absolute;
    top: 0px;
    right: 20%;
  }
}

@media screen and (max-width: 520px) {
  .logo_item:nth-child(2) {
    width: 35px;
    top: 10px;
    right: 5%;
  }
}

.logo_item:nth-child(2):after{
  content: '';
  width: 80px;
  height: 80px;
  background: url("../images/shop/pc_heat.png");
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 20px;
  right: 50%;
  animation: swing2 6s linear infinite alternate;
  animation-delay: .3s;
}

@media screen and (max-width: 1400px) {
  .logo_item:nth-child(2):after {
    width: 40px;
    height: 40px;
  }
}


@keyframes swing2 {
  0% {
    transform: translate(0,0) rotate(0deg)
  }
  100% {
    transform: translate(-50px,-100px) rotate(360deg)
  }
}

/*grid*/
.shop_item_list {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 30px;
  row-gap: 50px;
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
    .shop_item_list {
    grid-template-columns: repeat(2,1fr);
    column-gap: 30px;
    row-gap: 40px;
    margin-top: 30px;
  }  
}

.shop_item {
  position: relative;
}

.shop_item img {
  width: 100%;
  transition: all .5s;
}

.item_title {
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  margin-top: 15px;
}

@media screen and (max-width: 767px) {
  .item_title {
    font-size: 16px;
    margin-top: 5px;
  }
}

.item_label {
  color: #828080;
  font-size: 12px;
  position: absolute;
  top: 0;
  right: -85px;
  transform-origin: left top;
  transform: rotate(90deg);
}

@media screen and (max-width: 767px) {
  .item_label {
    font-size: 11px;
    right: -80px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .shop_item a:hover img{
    filter: grayscale(100%);
    transform: rotate(-3deg);
  }
}

/*pager*/
.shop_pager {
  margin-top: 100px;
}

.shop_pager_list {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.shop_pager li {
  color: #4B4B4B;
  background: transparent;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #4B4B4B;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shop_pager li a {
  color: #4B4B4B;
}

.shop_pager_list .current {
  color: #fff;
  background: #4B4B4B;

}







