
/* ===========================
　商品説明 アコーディオン
=========================== */

.fs-l-productLayout .fs-c-productReview__aggregateRating.fs-c-aggregateRating{
  margin-top: 0;
}
.itemdetail {
  margin-top: 50px;
  margin-bottom: 50px !important;
  border-bottom: 1px solid #cccccc;
}
.itemdetail_check {
  display: none;
}
.itemdetail_ttl {
  display: block;
  margin-bottom: 1px;
  padding: 22px 40px 22px 10px;
  position: relative;
  font-weight: bold;
  border-top: 1px solid #cccccc;
  font-size: 18px;
}
.itemdetail_ttl::after {
  content:"";
  width: 10px;
  height: 10px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
  position: absolute;
  top:calc( 50% - 5px );
  right: 20px;
  transform: rotate(135deg);
}
.itemdetail_txt {
  display: block;
  height: 0;
  opacity: 0;
  padding: 0 10px;
  transition: .5s;
  visibility: hidden;
}
.itemdetail_check:checked + .itemdetail_ttl::after {
  transform: rotate(-45deg) !important;
}
.itemdetail_check:checked + .itemdetail_ttl + .itemdetail_txt {
  height: auto;
  opacity: 1;
  padding: 22px 10px;
  visibility: visible;
}
@media (max-width: 768px) {
 .itemdetail_ttl{
    font-size: 1.1em;
  }
}

/* ===========================
　商品説明 evercook gif
=========================== */

.evercook_gif {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 640px;
}
.evercook_gif p {
  width: 37.5%;
  margin: 0;
}
.evercook_gif div {
  width: 62.5%;
}

/* ===========================
　シリーズ：バナー・スライダー
=========================== */

.series strong {
  font-size: 16px;
  display: block;
  margin: 30px 0 10px;
}
#wrapper {
  position: relative;
}
#wrapper .inner {
  max-width: 540px;
  padding-right: 40px;
  overflow: hidden;
}
.series-slider img {
  border: 1px solid #f2f2f2;
}
.series-slider li a:hover{
  opacity: 0.5;
}
.series-slider li {
  margin-right: 10px;
}
.series-slider li p {
  font-size: 13px;
  border-bottom: 1px solid #efefef;
  display: flex;
  justify-content: center;
  gap: 7px;
  padding: 10px 0 5px;
  margin-bottom: 0;
}
.series-slider li p:nth-last-child(1) {
  border-bottom: none;
}
.series-slider li p a{
  border-radius: 100px;
  display: flex;
  width: 20px;
  height: 20px;
}
.series-slider .slick-list {
  overflow: visible;
}
.slider-arrows > .slick-disabled {
  display: none !important;
}
.slider-arrow {
  background-color: #ffffff;
  bottom: 0;
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
  box-shadow: 0 1.25px 6px rgba(0, 0, 0, .2);
  width: 32px;
  height: 32px;
  border-radius: 100%;
  border: 1px solid #ffffff;
  cursor: pointer;
}
#wrapper .prev-arrow {
  left: -15px;
}
#wrapper .next-arrow {
  right: -15px;
}
#wrapper .next-arrow::before, #wrapper .prev-arrow::before {
  content: "";
  background: url('https://doshishamarche.itembox.design/item/img/with_arrow.svg') no-repeat;
  position: absolute;
  width: 6px;
  height: 12px;
  top: 10px;
  right: 12px;
}
#wrapper .prev-arrow::before {
  transform: rotate(180deg);
  left: 12px;
}
@media (max-width: 768px) {
 #wrapper .inner{
    width: 96%;
    margin: 0 auto;
  }
}

/* ===========================
　シリーズ：共通ボタン
=========================== */

.btn_series {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
}
.btn_series li {
  width: 49%;
  border: solid 2px #e3ded8;
  margin-bottom: 15px;
  border-radius: 100px;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.3;
}
.btn_series li a {
  display: block;
  padding: 18px 20px 20px 80px;
}
.btn_series li a span {
  color: #999999;
  display: block;
  font-size: 80%;
}
.btn_series li a:hover {
  opacity: 0.6;
}
@media (max-width: 768px) {
 .btn_series li {
    width: 90%;
    margin: 0 auto 15px;
  }
 .btn_series li a {
    padding: 18px 20px 20px 90px;
  }
}