@charset "UTF-8";
.wrap-product-list {
  padding: 0;
}

.pager-wrap {
  background-color: #882837;
}

.sort-wrap {
  background-color: #F4ECEA;
}
.sort-wrap nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  padding: 8px 5px 0;
}

.sort-nav {
  padding: 0;
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.sort-nav li {
  width: 48%;
  margin: 0;
  position: relative;
}
.sort-nav .btn {
  font-size: 1.4rem;
  display: block;
  border: 1px solid #882837;
  height: 25px;
  padding-top: 5px;
}
.sort-nav .btn.active {
  background-color: #FAFAFA;
  border-bottom: none;
  height: 30px;
  z-index: 0;
}
.sort-nav .btn.active::after {
  content: "";
  height: 1px;
  width: calc(100% - 2px);
  background-color: #FAFAFA;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 1;
}

.layout-nav {
  display: flex;
  justify-content: right;
  width: 30%;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.layout-nav li {
  width: 48%;
  height: 30px;
  margin: 0;
}
.layout-nav li a {
  display: block;
  border: 1px solid #882837;
  height: 30px;
  background-color: #843541;
}
.layout-nav li a.active {
  background-color: #882837;
}
.layout-nav li img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.sort-toggle {
  padding: 0 5px 10px;
  position: relative;
  z-index: 0;
}
.sort-toggle .toggle-advance,
.sort-toggle .toggle-sort {
  display: none;
  width: 100%;
  margin: 0;
}

#ctl00_ContentPlaceHolder1_ctl02_dvProductAdvancedSearch,
#ctl00_ContentPlaceHolder1_ctl03_dvProductSortSearch {
  background-color: #FAFAFA;
  border-left: 1px solid #882837;
  border-right: 1px solid #882837;
  border-bottom: 1px solid #882837;
  border-top: 1px solid #882837;
}
#ctl00_ContentPlaceHolder1_ctl02_dvProductAdvancedSearch h3,
#ctl00_ContentPlaceHolder1_ctl03_dvProductSortSearch h3 {
  background-color: none;
  color: #333333;
  font-size: 1.8rem;
}
#ctl00_ContentPlaceHolder1_ctl02_dvProductAdvancedSearch table,
#ctl00_ContentPlaceHolder1_ctl03_dvProductSortSearch table {
  width: 90%;
  margin: 0 auto 20px;
}
#ctl00_ContentPlaceHolder1_ctl02_dvProductAdvancedSearch th,
#ctl00_ContentPlaceHolder1_ctl03_dvProductSortSearch th {
  width: 40%;
  text-align: left;
  vertical-align: top;
  padding: 10px 5px 0 0;
}
#ctl00_ContentPlaceHolder1_ctl02_dvProductAdvancedSearch td,
#ctl00_ContentPlaceHolder1_ctl03_dvProductSortSearch td {
  width: 60%;
  text-align: left;
  vertical-align: top;
  padding: 10px 0 0 0;
}
#ctl00_ContentPlaceHolder1_ctl02_dvProductAdvancedSearch .btn,
#ctl00_ContentPlaceHolder1_ctl03_dvProductSortSearch .btn {
  width: 70%;
  background-color: #882837;
  color: #fff;
  padding: 5px 20px;
  border: none;
  font-size: 1.8rem;
  margin: 10px auto 20px;
  border-radius: 20px;
}

.category-header img {
  max-width: 100%;
}

.product-price {
  font-size: 2rem;
  color: #882837;
}
.product-price .special {
  font-size: 2rem;
  color: #882837;
}
.product-price .line-through {
  font-size: 1.6rem;
  color: #333333;
}
.product-price.product-detail-price {
  margin: 10px 0;
}
.product-price.product-detail-price div {
  text-align: center;
}

.product-list {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 5px;
}
.product-list .product-image,
.product-list .product-name,
.product-list .product-price,
.product-list .product-set-promotion,
.product-list .product-image-variation {
  width: 100%;
}
.product-list > li {
  width: auto;
  padding: 0;
  flex-basis: calc(50% - 20px);
  margin: 0 auto 20px;
  overflow: visible;
}
.product-list .product-image {
  position: relative;
}
.product-list .product-image img {
  width: auto;
  max-width: 100%;
}
.product-list .product-image .icon {
  position: absolute;
  right: 4px;
  bottom: 4px;
}
.product-list .product-image .icon img {
  height: 50px;
  width: 50px;
}
.product-list .product-name {
  padding: 0px;
}
.product-list .product-name .series {
  font-weight: bold;
  display: block;
  padding: 5px 0;
}
.product-list .btn-toDetail {
  display: block;
  width: 100px;
  background-color: #fff;
  padding: 5px 20px;
  margin: 10px auto;
  text-align: center;
  color: #882837;
  border-radius: 20px;
  border: 1px solid #882837;
}
.product-list .btn-add {
  display: block;
  width: 140px;
  background-color: #882837;
  padding: 8px 20px;
  margin: 10px auto;
  text-align: center;
  color: #fff;
  border-radius: 24px;
  font-size: 1.8rem;
}

#addCartModalBackdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1999;
}

#addCartModal {
  display: none;
  position: fixed;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 18px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: 2000;
  min-width: 260px;
  text-align: center;
}
#addCartModal .img-area {
  text-align: center;
}

#addCartModalMessage {
  margin: 0 0 12px 0;
  font-size: 16px;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.btn-toCart,
.btn-toShopping {
  width: 180px;
  display: block;
  text-align: center;
  padding: 8px 20px;
  margin: 10px auto;
  border-radius: 24px;
  background: #882837;
  box-sizing: border-box;
  color: #fff;
}
.btn-toCart:visited,
.btn-toShopping:visited {
  color: #fff;
}

.btn-toShopping {
  background-color: rgb(159, 159, 159);
}

.pager-wrap {
  background: none;
  color: #333333;
}
.pager-wrap ul.pager li {
  color: #333333;
}
.pager-wrap ul.pager li a {
  color: #333333;
}

.pager-sort-area {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
}

#Wrap {
  background: #F4ECEA;
}

#detailImage,
#productDetailId {
  float: none;
}

#detailImage .mainImage #zoomPicture {
  width: auto;
}

.jm-single-header-wrap {
  display: flex;
  justify-content: space-between;
}
.jm-single-header-wrap #detailImage {
  flex: 0 0 495px;
  margin-right: 40px;
}
.jm-single-header-wrap #detailImage .mainImage {
  position: relative;
}
.jm-single-header-wrap #detailImage .mainImage img {
  max-width: 100%;
  height: auto;
}

#tab_menu.product-detail {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #882837;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
#tab_menu.product-detail li {
  padding: 10px 30px;
  background-color: #D5D3D4;
  color: #747272;
  text-align: center;
  cursor: pointer;
  font-size: 3rem;
  margin: 0 10px;
}
#tab_menu.product-detail li.active {
  background-color: #882837;
  color: #fff;
}
.sp #tab_menu.product-detail li {
  font-size: 1.6rem;
  padding: 8px 10px;
  margin: 0 5px;
}

#tab_contents {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
#tab_contents img {
  max-width: 100%;
  height: auto;
}

.jm-single-contents-info__header.jm-single-contents-sp_header {
  display: none;
}

/* コンテンツエリア：基本は非表示にする */
#tab_contents > section,
#tab_contents > article {
  display: none;
}

.product-detail table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 1px;
  border: 1px solid #333333;
  margin-top: 20px;
}
@media screen and (max-width: 1080px) {
  .product-detail table {
    border-spacing: 0.1vw;
  }
}
@media screen and (max-width: 768px) {
  .product-detail table {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .product-detail table tr,
  .product-detail table tbody {
    display: block;
  }
}
.product-detail table th {
  font-size: 16px;
  text-align: center;
  vertical-align: middle;
  padding: 20px;
  width: 25%;
  background-color: #fff;
  border: 1px solid #333333;
}
@media screen and (max-width: 1080px) {
  .product-detail table th {
    font-size: 1.6vw;
    padding: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .product-detail table th {
    display: block;
    width: auto;
    font-size: 4.4270833333vw;
    padding: 1.953125vw;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
}
.product-detail table td {
  font-size: 16px;
  text-align: left;
  vertical-align: middle;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #333333;
}
@media screen and (max-width: 1080px) {
  .product-detail table td {
    font-size: 1.6vw;
    padding: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .product-detail table td {
    display: block;
    text-align: center;
    font-size: 2.8645833333vw;
    padding: 1.953125vw;
  }
}
.product-detail .faq dl {
  padding: 0 0 60px;
  margin: 0 0 60px;
  border-bottom: solid #dbdcdc 4px;
}
@media screen and (max-width: 1080px) {
  .product-detail .faq dl {
    padding: 0 0 6vw;
    margin: 0 0 6vw;
    border-bottom: solid #dbdcdc 0.4vw;
  }
}
@media screen and (max-width: 768px) {
  .product-detail .faq dl {
    padding: 0 0 7.8125vw;
    margin: 0 0 7.8125vw;
    border-bottom: solid #dbdcdc 0.5208333333vw;
  }
}
.product-detail .faq dl dt {
  position: relative;
  padding: 0 0 0 50px;
  margin: 0 0 40px;
}
@media screen and (max-width: 1080px) {
  .product-detail .faq dl dt {
    padding: 0 0 0 5vw;
    margin: 0 0 4vw;
  }
}
@media screen and (max-width: 768px) {
  .product-detail .faq dl dt {
    padding: 0 0 0 6.5104166667vw;
    margin: 0 0 5.2083333333vw;
  }
}
.product-detail .faq dl dt span {
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  line-height: 34px;
  display: inline-block;
  background-color: #489d88;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .product-detail .faq dl dt span {
    width: 3.8vw;
    height: 3.8vw;
    line-height: 3.4vw;
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .product-detail .faq dl dt span {
    width: 4.9479166667vw;
    height: 4.9479166667vw;
    line-height: 4.4270833333vw;
    font-size: 3.90625vw;
  }
}
.product-detail .faq dl dt p {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
}
.product-detail .faq dl dd {
  position: relative;
  padding: 0 0 0 50px;
}
@media screen and (max-width: 1080px) {
  .product-detail .faq dl dd {
    padding: 0 0 0 5vw;
  }
}
@media screen and (max-width: 768px) {
  .product-detail .faq dl dd {
    padding: 0 0 0 6.5104166667vw;
  }
}
.product-detail .faq dl dd span {
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  line-height: 34px;
  display: inline-block;
  border: solid #489d88 1px;
  background-color: #fff;
  color: #489d88;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .product-detail .faq dl dd span {
    width: 3.8vw;
    height: 3.8vw;
    line-height: 3.4vw;
    border: solid #489d88 0.1vw;
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .product-detail .faq dl dd span {
    width: 4.9479166667vw;
    height: 4.9479166667vw;
    line-height: 4.4270833333vw;
    border: solid #489d88 0.1302083333vw;
    font-size: 3.90625vw;
  }
}
.product-detail .faq dl dd p {
  font-size: 2rem;
  line-height: 1.6;
}

.wrap-product-detail {
  margin-bottom: 40px;
}
.wrap-product-detail .tag-area span {
  font-size: 1.2rem;
  border: 1px solid #333333;
  border-radius: 20px;
  padding: 2px 12px;
  margin-right: 8px;
  display: inline-block;
  background-color: #fff;
}
.wrap-product-detail h1.productDetail-h1 {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: left;
  color: #333333;
  padding: 4px 0;
}
.wrap-product-detail h2.productDetail-h2 {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: left;
  color: #333333;
  padding: 4px 0;
}
.wrap-product-detail .productPrice {
  font-size: 3.2rem;
  color: #882837;
  font-weight: bold;
  padding: 0;
}
.wrap-product-detail .product-vatiation,
.wrap-product-detail .selectValiation {
  margin: 10px 0;
}
.wrap-product-detail .product-vatiation select,
.wrap-product-detail .selectValiation select {
  display: inline-block;
  width: 320px;
  font-size: 2rem;
  padding: 4px 10px;
  border: 1px solid #333333;
}
.wrap-product-detail .product-favorite {
  display: block;
  position: absolute;
  right: 5px;
  top: auto;
  bottom: 20px;
  width: 60px;
  height: 60px;
}
.wrap-product-detail .product-favorite img {
  max-width: 100%;
  height: auto;
}
.wrap-product-detail .favorite .btn {
  background-color: transparent;
  color: #333333;
  padding: 10px;
  text-align: center;
  font-size: 1.6rem;
}
.wrap-product-detail .amount-cart-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrap-product-detail .productAmount span {
  font-size: 2rem;
  margin-right: 10px;
  vertical-align: bottom;
}
.wrap-product-detail .AddProductCount {
  display: inline-block;
  width: 60px;
  font-size: 2rem;
  padding: 14px 10px;
  border: 1px solid #333333;
  text-align: center;
}
.wrap-product-detail .productCart .jm-btn-add {
  display: inline-block;
  width: 400px;
  font-size: 2rem;
  padding: 12px 20px;
  color: #fff;
  background-color: #882837;
  text-align: center;
  border-radius: 30px;
}
.wrap-product-detail .productCart .btnCart {
  margin-bottom: 0;
}
.wrap-product-detail .add-to-cart {
  text-align: center;
}
.wrap-product-detail .add-to-cart .btn {
  display: inline-block;
  width: 90%;
  font-size: 2rem;
  padding: 12px 20px;
  color: #fff;
  background-color: #882837;
  text-align: center;
  border-radius: 30px;
}
.wrap-product-detail .jm-single-header-info__desc p {
  padding: 0;
}
.wrap-product-detail .jm-single-header-info__desc .series {
  padding: 0 0 5px 0;
}
.wrap-product-detail.pc .product-favorite {
  display: block;
  position: absolute;
  right: 5px;
  top: 37px;
  bottom: auto;
  width: 60px;
  height: 60px;
}

.wrap-product-detail {
  background-color: #F4ECEA;
}
.wrap-product-detail .wrap-product-image {
  position: relative;
}
.wrap-product-detail .product-image-detail {
  margin-top: 0;
}/*# sourceMappingURL=jmsys-product2025.css.map */