@charset "utf-8";
/* mv *********************************************************/
.product-mv {
  width: 100%;
  height: calc(100vh - 80px);
  min-height: 400px;
  background: #f1f1f1;
}
.product-mv img {
  height: calc(100vh - 80px);
  min-height: 400px;
  object-fit: cover;
}
/* intro *********************************************************/
.product-intro {
  text-align: center;
}
/* photos *********************************************************/
.product-photos img {
  color: #fff;
}
.product-photosWrap {
  display: flex;
  row-gap: 0.1rem;
  column-gap: 0.1rem;
}
.product-photosLeft {
  width: 33%;
  padding-top: 33%;
  box-sizing: border-box;
  position: relative;
}
.product-photosLeft img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-photosRight {
  width: calc(100% - 33%);
}
.product-photosRight ul {
  display: flex;
  row-gap: 0.1rem;
  column-gap: 0.1rem;
  flex-wrap: wrap;
}
.product-photosRight ul li {
  width: calc(50% - 0.1rem);
  padding-top: calc(50% - 0.1rem);
  box-sizing: border-box;
  position: relative;
}
.product-photosRight ul li img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #212121;
}
/* story *********************************************************/
.product-story {
  text-align: center;
}
/* detail *********************************************************/
.product-detailWrap {
  display: flex;
  row-gap: 2.5rem;
  column-gap: 2.5rem;
  position: relative;
}
.product-detailLeft {
  width: 33%;
}
.product-detailLeft h2 {
  position: sticky;
  top: calc(80px + 2rem);
}
.product-detailRight {
  width: calc(100% - 33%);
}
.product-detailRight h3.h3-styleA {
  margin-bottom: 2rem;
}
.product-detailMethods dl {
  display: flex;
  row-gap: 1.5rem;
  column-gap: 1.5rem;
  flex-wrap: wrap;
}
.product-detailMethods dl dt {
  width: 100px;
}
.product-detailMethods dl dd {
  width: calc(100% - 1.5rem - 100px);
  margin: 0;
}
.product-detailLine {
  background: rgba(0, 0, 0, 0.16);
  height: 1px;
  border: none;
  margin: 4rem 0;
}
.product-detailFgr video {
  width: 100%;
}
/* cta *********************************************************/
.product-cta {
  text-align: center;
}
.product-cta .btn-bg {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  /* photos *********************************************************/
  /* .product-photosWrap {
    row-gap: 0.75rem;
    column-gap: 0.75rem;
  }
  .product-photosRight ul {
    row-gap: 0.75rem;
    column-gap: 0.75rem;
  }
  .product-photosRight ul li {
    width: calc(50% - 0.75rem);
    padding-top: calc(50% - 0.75rem);
  } */
  /* detail *********************************************************/
  .product-detailWrap {
    row-gap: 0;
    column-gap: 2.5rem;
    flex-wrap: wrap;
  }
  .product-detailLeft {
    width: 100%;
  }
  .product-detailLeft h2 {
    position: static;
    top: 0;
  }
  .product-detailRight {
    width: 100%;
  }
  .product-detailRight h3.h3-styleA {
    margin-bottom: 1.5rem;
  }
  .product-detailMethods dl dt {
    width: 100px;
  }
  .product-detailMethods dl dd {
    width: calc(100% - 1.5rem - 100px);
  }
  .product-detailLine {
    margin: 3rem 0;
  }
  .product-detailFgr img {
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 550px) {
  /* mv *********************************************************/
  .product-mv {
    width: 100%;
    height: calc(92vh - 60px);
  }
  .product-mv img {
    height: calc(92vh - 60px);
  }
  /* photos *********************************************************/
  .product-photosWrap {
    row-gap: 0.1rem;
    column-gap: 0.1rem;
    flex-wrap: wrap;
  }
  .product-photosLeft {
    width: 100%;
    padding-top: 0;
  }
  .product-photosLeft img {
    width: 100%;
    height: auto;
    position: static;
  }
  .product-photosRight {
    width: 100%;
  }
  .product-photosRight ul {
    row-gap: 0.1rem;
    column-gap: 0.1rem;
  }
  .product-photosRight ul li {
    width: calc((100% - 0.1rem) / 2);
    padding-top: calc((100% - 0.1rem) / 2);
  }
  /* detail *********************************************************/
  .product-detailLeft {
    width: 100%;
  }
  .product-detailRight {
    width: 100%;
  }
  .product-detailRight h3.h3-styleA {
    margin-bottom: 1rem;
  }
  .product-detailMethods dl {
    display: flex;
    row-gap: 0.2rem;
    column-gap: 1rem;
    flex-wrap: wrap;
  }
  .product-detailMethods dl dt {
    width: 100%;
  }
  .product-detailMethods dl dd {
    width: 100%;
    margin: 0.2rem 0 1rem;
    padding-bottom: 0.5rem;
    box-sizing: border-box;
    border-bottom: dotted 1px rgba(0, 0, 0, 0.16);
  }
  .product-detailLine {
    margin: 2rem 0;
  }
  .product-detailFgr img {
    margin-bottom: 1rem;
  }
}
