/*==================================================================================================

	* common setting

==================================================================================================*/
body {
  font-family: "Noto Sans JP"!important;
  color: #1C1C1C;
  vertical-align: baseline;
  line-height: 1.2;
}
a {
  text-decoration: none;
  font-family: "Noto Sans JP"!important;
  color: #1C1C1C;
}
.wrap {
	box-shadow: 0 4px 64px rgba(25, 25, 25, .05);
}

/* border style */
.border-top, .border-bottom {
  position: relative;
  z-index: 0;
}
.border-top::before, 
.border-bottom::after {
  content: '';
  position: absolute;
  z-index: -1;
  background-image: linear-gradient(to right, #B7B7B7, #B7B7B7 4px, transparent 4px, transparent 8px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  left: 0;
  right: 0;
}
.border-top::before {
  top: 0;
  height: 1px;
}
.border-bottom::after {
  bottom: 0;
  height: 1px;
}


/*==================================================================================================

	* item content

==================================================================================================*/
.item-wrap {
  width: 100%;
  margin: auto;
}
.item-info-section {
  padding: 20px;
  box-sizing: border-box;
}
#scroll-go-cart {
  bottom: 45px;
  color: #FFFFFF;
  display: block;
  font-size: 12px;
  padding: 15px 5px;
  position: fixed;
  right: 10px;
  text-align: center;
  text-decoration: none;
  width: 20%;
  z-index: 999;
  max-width: 100px;
}


/*==================================================================================================

	* product main image

==================================================================================================*/
.item-image {
  border: 1px solid #E5E5E5;
}
.item-image img {
  vertical-align: bottom;
}
.product-img .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #D9DDE0;
  opacity: 1;
}
.product-img .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #3D3D3D;
}


/*==================================================================================================

	* product info 

==================================================================================================*/
.item-name-wrap {
  margin-top: 10px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.item-name-wrap .item-description2 {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 2px;
}
.item-name-wrap .item-name {
  font-size: 17px;
}
@media screen and (min-width: 769px) {
  .item-name-wrap .item-description2 {
    font-size: 15px;
  }
  .item-name-wrap .item-name {
    font-size: 22px;
  }
}

/* favorite */
.item-name-wrap .favorite {
  width: 30px;
  margin-left: 1rem;
}
.item-name-wrap .favorite a {
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
  overflow: hidden;
}
.item-name-wrap .favorite a .material-icons {
  font-size: 20px;
}
.item-name-wrap .favorite a .material-icons::after {
  content: "favorite";
}
.item-name-wrap .favorite span::before,
.item-name-wrap .favorite span::after {
    content: '';
    opacity: 0;
    position: absolute;
    z-index: 1;
    width: 185%;
    height: 155%;
    top: 0;
    left: 50%;
    transform: translate(-50%, -75%);
    transition: opacity 300ms 0s;
    background: #fff;
}
.item-name-wrap .favorite span::before {
  background: rgba(255,255,255,0.3);
  animation: favorite 5s linear infinite;
  width: 200%;
  border-radius: 40%;
}
.item-name-wrap .favorite span::after {
  background: rgba(255,255,255,0.2);
  animation: favorite 3.5s linear infinite;
  border-radius: 45%;
}
.item-name-wrap .favorite a:hover span::before,
.item-name-wrap .favorite a:hover span::after {
  opacity: 1;
}

/* description3 */
.item-description3 {
  margin-bottom: 16px;
}
.item-description3 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.item-description3 ul li {
  font-size: 12px;
  line-height: 22px;
  font-weight: 400;
  padding: 0 5px;
  background-color: #8D8D8D;
  color: #FFFFFF;
}
@media screen and (min-width: 769px) {
  .item-description3 ul li {
    font-size: 13px;
  }
}

/* price */
.item-price {
  font-size: 16px;
  font-weight: 400;
}
.item-price .item-price-b {
  font-size: 26px;
  padding: 0 6px;
}
.item-point {
  margin-top: 10px;
  font-weight: 300;
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .item-price {
    font-size: 18px;
  }
  .item-price .item-price-b {
    font-size: 30px;
  }
  .item-point {
    font-size: 15px;
  }
}


/*==================================================================================================

	* cart & quantity

==================================================================================================*/
.cart-wrap {
  display: flex;
  align-items: center;
  margin-top: 15px;
  column-gap: 10px;
}
.item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
}
.item-quantity .quantity-label {
  font-size: 12px;
  font-weight: 300;
}
.quantity-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}
.quantity-wrapper .quantity-btn {
  position: absolute;
  width: 32px;
  height: 32px;
  font-size: 20px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  color: #8D8D8D;
}
.quantity-wrapper .quantity-btn.minus {
  left: 0;
}
.quantity-wrapper .quantity-btn.plus {
  right: 0;
}
.quantity-wrapper #quantity {
  width: 100%;
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  line-height: 47px;
  height: 47px;
  padding: 0 5px;
  border-radius: 0;
  border: 1px solid #C5C5C5;
  max-width: 95px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .quantity-wrapper #quantity {
    font-size: 15px;
    line-height: 60px;
    height: 60px;
  }
}

/* cart button */
.item-btn-wrap {
  flex: 1;
}
.cart-btn {
  width: 100% !important;
  text-align: center;
  border: none !important;
}
.cart-btn a {
  color: #FFFFFF;
  font-size: 21px;
  font-weight: 300 !important;
  box-sizing: border-box;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #474747;
  padding-top: 6px;
  padding-bottom: 3px;
  border-bottom: 3px solid #000000;
  transition: all .2s ease-in;
}
.cart-btn a:hover {
  background-color: #000000;
}
.cart-btn a i {
  vertical-align: text-bottom;
  margin-right: 10px;
}
.cart-btn a i img {
  width: 0.9em;
}
.cart-btn a::after {
  display: none;
}
.cart-btn a:hover::after {
  display: none;
}
.cart-btn.thanks {
  display: none;
}
@media screen and (min-width: 769px) {
  .cart-btn a {
    font-size: 25px;
    height: 60px;
  }
}

/* inquiry button */
.inquiry {
  margin-top: 10px;
}
.inquiry-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 9px;
  background-color: #F7F7F7;
  border: 1px solid #C5C5C5;
  font-size: 13px;
  font-weight: 400;
  padding: 15px 0;
  transition: all .2s ease-in;
}
.inquiry-btn a:hover {
  opacity: 0.7;
}
.inquiry-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  font-size: 12px;
  background-color: #C5C5C5;
  color: #FFFFFF;
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  .inquiry {
    margin-top: 15px;
  }
  .inquiry-btn a {
    font-size: 16px;
    padding: 18px 0;
  }
  .inquiry-icon {
    font-size: 15px;
  }
}


/*==================================================================================================

	* SNS share

==================================================================================================*/
.share {
  margin: 30px 0;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 300;
}
.item-share {
  margin-left: 10px;
  display: flex;
  column-gap: 8px;
}
.item-share li a {
  display: block;
  transition: all .2s ease-in;
}
.item-share li a img {
  width: 35px;
  height: auto;
}
.item-share li a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 769px) {
  .item-share li a img {
    width: 40px;
  }
  .share {
    font-size: 15px;
  }
}


/*==================================================================================================

	* manufacturer

==================================================================================================*/
.delivery-price-display {
  padding: 15px 0;
  position: relative;
  z-index: 0;
}
.delivery-price-display li {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .delivery-price-display li {
    font-size: 15px;
  }
}

/*==================================================================================================

	* product detail

==================================================================================================*/
.text_center {
  text-align: center;
}
.text_indent {
  padding-left: 1em;
}
.item-info-section h4 {
  font-size: 15px;
  margin-bottom: 1em;
  line-height: 1.4;
  font-weight: 500;
}
.item-description h5 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 1em;
  line-height: 1.7;
}
.item-description p {
  font-size: 13px;
  margin-bottom: 1em;
  line-height: 1.7;
}
.item-description p.small {
  font-size: 10px;
  margin-bottom: 1em;
  line-height: 1.7;
}
.item-info-section p:last-child {
  margin-bottom: 0;
}
.item-description {
  padding: 30px 0;
}
.item-description-img {
  display: block;
  margin: 30px 0;
}
.pop_title {
  position: relative;
}
.pop_title::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 10px;
  border-right: 1px solid #1C1C1C;
  transform: rotate(-45deg);
  transform-origin: bottom right;
}
.pop_title::after {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 10px;
  border-left: 1px solid #1C1C1C;
  transform: rotate(45deg);
  transform-origin: bottom left;
}
.item-description .box_title {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
}
.item-description .box_title img {
  width: 50px;
  display: block;
  background-color: #FFFFFF;
  padding: 10px;
  box-sizing: content-box;
}
.item-description .box_title::after {
  content: '';
  position: absolute;
  z-index: -1;
  background-image: linear-gradient(to right, #B7B7B7, #B7B7B7 4px, transparent 4px, transparent 8px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  left: 0;
  right: 0;
  top: calc(50% - 1px);
  height: 1px;
}
.item-description-box {
  padding-bottom: 10px;
}
.item-description li {
  font-size: 13px;
  margin-bottom: 1em;
  line-height: 1.7;
  position: relative;
  padding-left: 1em;
}
.item-description li::before {
  content: '・';
  position: absolute;
  display: inline-block;
  left: 0;
  top: 0;
}
.item-description ul {
  margin-bottom: 1em;
}
.item-description ul.no-mb li {
  margin-bottom: 0;
}
.item-description ol {
  counter-reset: number;
}
.item-description ol li::before {
  counter-increment: number;
  content: counter(number) ". ";
}
.item-description-box.notice {
  padding-top: 10px;
}

@media screen and (min-width: 769px) {
  .item-info-section h4 {
    font-size: 20px;
  }
  .item-description h5 {
    font-size: 15px;
  }
  .item-description p {
    font-size: 15px;
  }
  .item-description p.small {
    font-size: 12px;
  }
  .item-description li {
    font-size: 15px;
  }
}

/*==================================================================================================

	* review

==================================================================================================*/
.review-box {
  background-color: #F7F7F7;
  padding: 50px 20px;
}
.review-box-header {
  display: block;
  text-align: center;
  margin-bottom: 15px;
}
.review-box-title-sub {
  font-size: 13px;
  line-height: 2;
  letter-spacing: 4px;
}
.review-box-title {
  font-size: 28px;
  line-height: 1.6;
  letter-spacing: 2px;
}
.review-list-score {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}
.review-list {
  padding: 20px 0;
}
.review-list.border-bottom::after {
  background-image: linear-gradient(to right, #DFDFDF, #DFDFDF 4px, transparent 4px, transparent 8px);
}
.review-list:last-child::after {
  display: none;
}
.review-list p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}
.review-list p.reviewer-name {
  font-size: 14px;
  line-height: 2;
}
/* star */
.reviewRateStar {
  position: relative;
  width: 22px;
  font-size: 22px;
  text-indent: 30px;
  white-space: nowrap;
  overflow: hidden;
}
.reviewRateStar::before {
  position: absolute;
  top: 0;
  left: 0;
  text-indent: 0;
}
.reviewRateStar {
  width: 15px;
  font-size: 15px;
}
.reviewRateStar.starOn::before {
  content: "star";
}
.reviewRateStar.starOff::before {
  content: "star";
}
.reviewRate {
  display: flex;
}
.reviewRateStar.starOn {
  color: #FFE600;
}
.review-list-score .reviewRateStar.starOn {
  color: #FFE600;
}
.reviewRateStar.starOff {
  color: #DEDEDE;
}
/* 投稿button */
.review-post-btn {
  margin-top: 10px;
}
.cart-btn.review-post-btn a {
  font-size: 13px;
  position: relative;
}
.cart-btn.review-post-btn a i {
  color: #000000;
  position: absolute;
  right: 1em;
  border-radius: 50%;
  background-color: #F5DF93;
}
.review-empty {
  padding: 30px 0;
  text-align: center;
}
.review-empty p {
  font-size: 13px;
}
@media screen and (min-width: 769px) {
  .review-box-title-sub {
    font-size: 14px;
  }
  .review-box-title {
    font-size: 36px;
  }
  .review-list {
    padding: 30px 0;
  }
  .review-list p {
    font-size: 14px;
  }
  .review-list p.reviewer-name {
    font-size: 16px;
  } 
  .reviewRateStar {
    width: 20px;
    font-size: 20px;
  }
  .cart-btn.review-post-btn a {
    font-size: 16px;
  }
  .review-empty p {
    font-size: 15px;
  }
}


/*==================================================================================================

	* bottom banner

==================================================================================================*/
.bottom_banner {
  padding: 30px 0;
}
.bottom_banner a {
  display: block;
  margin-bottom: 20px;
}
.bottom_banner a:last-child {
  margin-bottom: 0;
}
.banner_block {
  margin-bottom: 50px;
}
.banner_block:last-child {
  margin-bottom: 0;
}