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

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

@media screen and (max-width: 767px) {
    .shop_detail .main_block {
    padding: 150px 20px;
  }
}

.shop_detail .shop_title_box {
  width: 100%;
  max-width: 1200px;
  align-items: flex-start;
  margin: 0 auto 20px;
}

.shop_detail .main_block .slide_wrapper {
  width: 100%;
  height: auto;
  max-width: 1200px;
  margin: 0 auto;
}

.item_wrap {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  padding: 60px 0;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .item_wrap {
    flex-direction: column;
    gap: 40px;
      padding: 30px 0;
  }
}

.item_desc_box {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .item_desc_box {
    width: 100%;
  }
}

.item_desc_title {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 5px;
}

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

.item_desc_box p {
  line-height: 1.7;
  letter-spacing: 0.008em;
  padding-left: 10px;
}

.item_side_box {
  width: 40%;
}

@media screen and (max-width: 767px) {
  .item_side_box {
    width: 100%;
  }
}

.item_side_title {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 5px;
}

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

.item_detail_list {
  padding-left: 30px;
}

.item_side_box .item_detail_list li{
  display: list-item;
  list-style-type: disc;
}

.item_side_box .item_detail_list li:not(:first-child){
  margin-top: 10px;
}

/*商品詳細　dl*/
.definition_list {
  padding-left: 20px;
}

.definition_list_item {
  display: flex;
  padding-bottom: 10px;
  position: relative;
}

.definition_list_item::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4B4B4B;
  position: absolute;
  top: 10px;
  left: -10px;
}

.definition_list_item dt{
  white-space: nowrap;
}


.definition_list_item dt::after {
  content: ':';
  padding-right: 15px;
}

.shop_link { 
  text-align: center;
  background: #4B4B4B;
  border-radius: 40px;
  padding: 20px 0;
  margin: 60px 0 0;
  transition: .3s;
}

.shop_link a {
  display: block;
  color: #fff;
  transition: .3s;
}

@media (hover: hover) and (pointer: fine) {
  .shop_link:hover {
    background: #A2A0A0;
  }
  .shop_link:hover a{
    color: #333;
  }
}

.shop_detail_pager {
  max-width: 800px;
  margin: 80px auto 0;
}

.shop_detail_pager_list {
  display: flex;
  justify-content: space-between;
}

.shop_detail_pager_list li {
  position: relative;
}

.shop_detail_pager_list li a{
  color: inherit;
}

.shop_detail_pager_list li a::after{
  content: '';
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  top: 25px;
  left: 0;
  transform: scale(0,1);
  transform-origin: right top;
  transition: transform .3s;
}

.shop_detail_pager_list li a:hover::after{
  transform-origin: left top;
  transform: scale(1,1); 
}









