/* ===============================================================================
detail__container
=============================================================================== */
.breadcrumb{
  position: absolute;
  top: 85px;
}
.breadcrumb a, .breadcrumb span{
  color: #727171;
  font-size: 1.3rem;
}
.detail__container {
  display: flex;
  max-width: 1100px;
  width: 95%;
  margin: 0 auto 40px;
  padding-top: 110px;
  position: relative;
}
.detail__container .detail-L{
  width: 50.909091%;
  vertical-align: top;
}
.detail__container .detail-R{
  width: 45%;
  vertical-align: top;
  padding-left: 50px;
}
.detail__container .gallery-thumbs,
.detail__container .gallery-top {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}
.detail__container .gallery-thumbs {
  padding-bottom: 4em;
}
.product__slide-thumb {
  text-align: left;
  display: grid;
  grid-template-columns: repeat(5, 100px);
  gap: 15px;
  margin-top: 15px;
}
.product__slide-thumb li {
  display: inline-block;
  cursor: pointer;
  line-height: 1;
}
.product__slide-thumb li:hover,
.detail__container .swiper-button-prev:hover,
.detail__container .swiper-button-next:hover
{
  opacity: .7;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev{
  right: 15px !important;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: 15px !important;
}
.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
  content: '' !important;
  background-image: url(../img/common/button-prev2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 25px;
  height: 50px;
}
.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
  content: '' !important;
  background-image: url(../img/common/button-next2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 25px;
  height: 50px;
}
.detail__brand {
  display: flex;
  justify-content: space-between;
  font-size: 1.7rem;
}
.detail__brand a{
  color: #727171;
  font-size: 1.3rem;
}
.detail__info {
  position: relative;
  border-bottom: 1px dotted;
  padding-bottom: 20px;
}
.detail__info h1{
  font-size: 2.6rem;
  padding-bottom: 24px;
}
.regular__price,
.sale__price{
  font-size: 2rem;
}
.detail-R .sub {
  width: 5.5em;
  display: inline-block;
  font-size: 1.5rem;
  padding: 1px 5px 0;
  margin-right: 1em;
  border: 1px solid;
}
.detail-R .small {
  font-size: 1.6rem;
  display: inline-block;
  margin-left: .5rem;
}
.detail-R .small2 {
  font-size: 1.4rem;
}
.detail__info .off{
  position: absolute;
  background-color: #FF0000;
  border-radius: 50%;
  color: #fff;
  bottom: 20px;
  right: 0;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 3.2rem;
  text-align: center;
  width: 80px;
    height: 80px;
}
.detail__info .off p{
  position: relative;
  top:50%;
  transform: translateY(-50%);
  line-height: .7;
}
.detail__info .off span{
  font-size: 2rem;
}
.item__cart {
  padding: 20px 0;
  border-bottom: 1px dotted;
}
.item__cart .detail__name{
  font-size: 1.7rem;
  margin-bottom: 3px;
}
.item__cart .cart__btn {
  padding: 10px 0 5px;
}
.item__cart .cart__btn a{
  width: 280px;
  text-align: center;
  background-color: #FF0000;
  border: 1px solid #FF0000;
  color: #fff;
  font-size: 1.8rem;
  line-height: 2.7;
  display: inline-block;
  vertical-align: middle;
}
.lottery .item__cart .cart__btn a{
  background-color: #C7B299;
  border: 1px solid #C7B299;
  color: #4f451f;
}
.item__cart.sold a {
  background-color: #ffffff !important;
  border: 1px solid #727171 !important;
  color: #727171;
  font-weight: normal;
  pointer-events: none;
}
.item__cart.not_open a {
  background-color: #ffffff !important;
  border: 1px solid #727171 !important;
  color: #727171;
  font-weight: normal;
}
.item__cart .cart__btn[disabled] p{
  width: 280px;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #727171;
  color: #727171;
  font-weight: normal;
  display: inline-block;
  line-height: 2.2;
  vertical-align: middle;
}
.item__cart .btn__like {
  background-image: url(../img/common/icon_like_off.svg);
  background-size: cover;
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  cursor: pointer;
}
.item__cart .btn__like.on {
  background-image: url(../img/common/icon_like.svg);
  background-size: cover;
}
.item__cart .stock {
  text-align: center;
  width: 280px;
  font-size: 1.4rem;
  color: #727171;
}
.detail-R .grad-item > .text {
  margin: 40px 0 0;
}
.detail-R .grad-item > .text + div .text {
  margin-top: 2em;
}
.item__link {
  padding: 20px 0;
}
.detail-R a {
  color: #727171;
}
#dialog {
  opacity: 0;
  visibility: hidden;
}
#dialog.show {
  opacity: 1;
  visibility: visible;
}
.modal{
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.75);
  outline: none !important;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.modal .wrap{
  position: fixed;
  outline: none !important;
  margin: 0 auto;
  max-width: 540px;
  max-height: 100vh;
  overflow-y: scroll;
  width: 95%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
.profile__link{
  cursor: pointer;
}
.profile__contents {
  background-color: #FFFFFF;
  max-width: 540px;
  position: relative;
  padding: 40px 20px;
}
.profile__txt {
  width: 100%;
  max-width: 25em;
  margin: 2em auto;
}
.profile__txt h2 {
  font-size: 2.6rem;
}
.profile__txt p {
  font-size: 1.6rem;
  padding: 20px 0 40px;
}
.profile__contents button {
  position: absolute;
  left: calc((100% - 81px)/2);
  bottom: 40px;
  width: 81px;
  height: 22px;
  background-image: url(../img/common/close@2x.png);
  background-size: contain;
  background-color: #FFFFFF;
  display: block;
  border: none;
  cursor: pointer;
}
.profile__contents button:hover {
  opacity: .7;
}
.profile-close {
  z-index: 9994;
  background-image: url(../img/common/close2@2x.png);
  background-size: contain;
  display: block;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 20px;
  top: 20px;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  border: 0;
  background-color: transparent;
  outline: none;
  box-shadow: none;
}
.slide-enter-active {
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
}
.slide-leave-active {
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -moz-transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
  -webkit-transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
  -o-transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
  transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}
.slide-enter-to, .slide-leave {
  max-height: 100px;
  overflow: hidden;
}
.slide-enter, .slide-leave-to {
  overflow: hidden;
  max-height: 0;
}
.more{
  cursor: pointer;
  font-size: 1.4rem;
  color: #727171;
  padding-top: 2em;
}

.back_to_lineup {
  padding-top: 2em;
}

@media (min-width: 769px) {
  .back_to_lineup {
    position: absolute;
    bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .breadcrumb{
    top: 47px;
  }
  .breadcrumb a{
    font-size: 1.2rem;
  }
  .detail__container {
    display: block;
    margin: 0 auto 20px;
    padding-top: 50px;
  }
  .lottery .swiper-container::before{
    width: 50px;
    height: 33px;
    top: -1px;
  }
  .product__slide-thumb{
    display: block;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    margin-top: 3.125vw;
    line-height: 0;
  }
  .product__slide-thumb li{
    width: 20%;
      margin-right: 3.333%;
  }
  .product__slide img {
    width: 100%;
  }
  .swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
    width: 15px;
    height: 30px;
  }
  .swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
    width: 15px;
    height: 30px;
  }
  .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 10px !important;
    top: 50% !important;
    bottom: auto;
  }
  .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 10px !important;
    top: 50% !important;
    bottom: auto;
  }
  .detail__container .gallery-thumbs {
    padding-bottom: 20px;
  }
  .detail__container .detail-L {
    width: 100%;
  }
  .detail__container .detail-R {
    width: 100%;
    padding-left: 0;
  }
  .detail__brand {
    padding: 20px 0 0;
    font-size: 1.3rem;
  }
  .detail__brand a{
    font-size: 1.1rem;
  }
  .detail__info h1 {
    padding: 10px 0 16px 0;
    font-size: 2rem;
    line-height: 1.5;
  }
  .detail__info h1.pattern2 {
    padding: 30px 80px 20px 0;
    line-height: 1.5;
  }
  .item__cart .cart__btn a {
    width: 80%;
  }
  .item__cart .cart__btn[disabled] p {
    width: 80%;
  }
  .detail-R .grad-item > .text {
    margin: 20px 0 0;
  }
  .profile__contents{
    padding: 40px 20px 60px;
  }
  .profile__contents button {
    bottom: 80px;
  }
  .profile-close{
    display: none;
  }
}
/* ===============================================================================
More Reading
=============================================================================== */
#trigger {
  z-index: 2;
  color: #999;
  position: absolute;
  bottom: -1em;
  cursor: pointer;
  transition: .2s ease;
}
#spec-text{
  max-height: 500vh;
  position: relative;
  overflow: hidden;
}
#spec-text.hide {
  max-height: 40em;
  padding-bottom: 60px;
  transition: all .2s ease;
}
#spec-text.active {
  max-height: 500vh;
  padding-bottom: 0;
}
#trigger {
  z-index: 2;
  color: #727171;
  position: absolute;
  bottom: -1em;
  cursor: pointer;
  transition: .2s ease;
}
#trigger::after {
  content: "＞ つづきを読む"
}
#trigger.active::after{
  content: "＞ 閉じる";
}
#spec-text.hide::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 60px;
  background: -webkit-linear-gradient(top, rgba(239,238,206,0) 0%, rgba(239,238,206,0.8) 30%, rgba(239,238,206, 1) 70%, #efeece 100%);
  background: linear-gradient(top, rgba(239,238,206,0) 0%, rgba(239,238,206,0.8) 30%, rgba(239,238,206, 1) 70%, #efeece 100%);
}
#spec-text.active {
  padding-bottom: 2em;
}
@media screen and (max-width: 768px) {
  #spec-text.hide {
    max-height: 25em;
  }
}
/* ===============================================================================
spec
=============================================================================== */
.spec {
  background-color: #efeece;
}
.spec__container {
  display: flex;
    max-width: 1100px;
  width: 95%;
  margin: 0 auto;
  padding: 40px 0;
  font-size: 1.5rem;
  align-items: flex-start;
}
.spec-L, .spec-R {
  width: 50.909091%;
}
.spec-R{
  width: 45%;
    padding-left: 50px;
}
.spec__container h3 {
  font-size: 1.7rem;
  display: inline-block;
  border-bottom: 1px solid #727171;
}
.spec__container h4 {
  font-size: 1.7rem;
  margin-top: 40px;
}
.spec-R p {
  margin-top: 40px;
}
.spec-R .wrapper{
  position: relative;
}
table {
  width: 95%;
  max-width: 450px;
  border-collapse: collapse;
  background-color: #ffffff;
}
table th, table td {
  font-size: 1.5rem;
  text-align: center;
  border: 1px solid #dbdbdb;
  padding: 6px 0;
  min-width: 45px;
}
table tr:nth-child(even){
  background-color: #fdf1de;
}
.spec__img {
  max-width: 75%;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .spec__container {
    display: block;
    padding: 20px 0;
    font-size: 1.2rem;
  }
  .spec__container h3{
    font-size: 1.2rem;
  }
  .spec__container h4{
    font-size: 1.2rem;
    margin-top: 20px;
  }
  .spec-L, .spec-R {
    width: 100%;
  }
  .spec-R{
    padding-left: 0;
  }
  .spec-R p {
    margin-top: 20px;
  }
  .spec-L {
    margin-bottom: 40px;
  }
  table {
    width: 100%;
  }
  table th, table td{
    font-size: 1.2rem;  
    padding: 3px 0;
  }
  .profile__txt h2{
    font-size: 2rem;
  }
  .profile__txt p{
    font-size: 1.4rem;
  }
  .spec__img {
    max-width: 100%;
  }
}
/* ===============================================================================
footer
=============================================================================== */
footer {
  margin: 0 auto;
}
