/* =================================================================================
//
// STYLE
//
//================================================================================*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&family=Raleway:wght@300;400;500&display=swap");
.productInfo-wrap {
  background-image: linear-gradient(0deg, #f9f8f6, #f9f8f6 80%, #ffffff 80%, #ffffff);
  padding-bottom: 50px;
}
.productInfo-dtl {
  display: flex;
}
.productInfo-photo {
  width: 400px;
}
.productInfo-photo .photo__main {
  width: 100%;
  aspect-ratio: 1/1;
}
.productInfo-photo .photo__main img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.productInfo-photo .thum {
  display: flex;
  margin-top: 30px;
}
.productInfo-photo .thum > div {
  width: calc((100% - 60px) / 5);
  margin-right: 15px;
  border: solid 1px #DFDEDB;
  border-radius: 10px;
  opacity: 1;
  transition: opacity 0.5s;
  cursor: pointer;
}
.productInfo-photo .thum > div:hover {
  opacity: 0.5;
}
.productInfo-photo .thum > div:nth-child(5n) {
  margin-right: 0;
}
.productInfo-photo .thum > div img {
  width: 100%;
  height: auto;
  border: solid 5px #fff;
  border-radius: 10px;
}
.productInfo-photo .thum > div._selected img {
  border-color: #c9f4ff;
}
.productInfo-info {
  flex: 1;
  padding-top: 50px;
  margin-left: 70px;
  position: relative;
}
.productInfo-info .heading {
  font-size: 18px;
  font-size: calc(18px + (1vw - 3.75px) * 0.508);
  font-weight: bold;
  color: #233D5B;
  /*&::before{
  	content: "";
  	display: inline-block;
  	width: 47px;
  	height: 42px;
  	//background-image: url(../product/img/ico_parts_heading.png);
  }*/
}
.productInfo-info .heading__row {
  display: inline-block;
  font-weight: bold;
  color: #fff;
  background-color: #233D5B;
  border-radius: 100vh;
  padding: 5px 10px;
  margin-top: 110px;
  margin-bottom: 10px;
}
.productInfo-info .row {
  display: flex;
}
.productInfo-info .row__item, .productInfo-info .row__dtl {
  border-bottom: solid 1px #DFDEDB;
  padding: 10px 0;
}
.productInfo-info .row__item {
  width: 120px;
  font-weight: bold;
  padding-left: 10px;
}
.productInfo-info .row__dtl {
  flex: 1;
}
.productInfo-info-paging {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: absolute;
  bottom: 100px;
  right: 0;
}
.productInfo-info-paging .prev, .productInfo-info-paging .next {
  display: flex;
  align-items: center;
  color: #233D5B;
  text-decoration: none;
}
.productInfo-info-paging .prev.dis, .productInfo-info-paging .next.dis {
  color: #aaaaaa;
}
.productInfo-info-paging .prev::before, .productInfo-info-paging .next::after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  border: solid 1px #DFDEDB;
  border-radius: 50%;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
}
.productInfo-info-paging .prev {
  padding-right: 15px;
  border-right: solid 1px #DFDEDB;
}
.productInfo-info-paging .prev::before {
  background-image: url("../img/ico_item_nav_02.png");
  margin-right: 8px;
}
.productInfo-info-paging .next {
  padding-left: 15px;
}
.productInfo-info-paging .next::after {
  background-image: url("../img/ico_item_nav.png");
  margin-left: 8px;
}
.productInfo-info-paging .back {
  color: #233D5B;
  text-decoration: none;
  margin-left: 40px;
}

@media screen and (max-width: 1024px) {
  .productInfo-dtl {
    display: block;
  }
  .productInfo-photo {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .productInfo-photo .photo__main {
    width: 100%;
  }
  .productInfo-info {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    position: relative;
  }
  .productInfo-info .heading__row {
    margin-top: 50px;
  }
  .productInfo-info-paging {
    justify-content: center;
    position: static;
    margin-top: 50px;
  }
  .productInfo-info-paging .back {
    width: 100%;
    text-align: center;
    margin-top: 50px;
    margin-left: 0;
  }
}
