@charset "utf-8";

.product {
  max-width: 100%;
  max-height: 100%;
  padding: 50px 10%;
}

.final-text-form-back {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #0000007e;
  opacity: 0;
  pointer-events:none;
  transition: .5s;
}

.final-text-form-back .final-text-form-container {
  position: fixed;
  width: 50%;
  border: solid 1px #C1C1C1;
  border-radius: 15px;
  text-align: center;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -55%);
  background-color: #fffaff;
  transition: .5s;
}

.final-text-form-back .final-text-form-container img {
  position: absolute;
  left: 15px;
  top: 15px;
  width: 20px!important;
  height: 20px!important;
  cursor: pointer;
}

.final-text-form-back .final-text-form-container p {
  color: #585858;
  font-size: 1.3vw;
  font-weight: 500;
  margin-top: 30px;
}

.final-text-form-back .final-text-form-container form {
  margin: 30px 0;
}

.final-text-form-back .final-text-form-container form textarea {
  width: 70%;
  height: 300px;
  padding: 10px;
  font-size: 1vw;
  border-radius: 15px;
  border: solid 1px #C1C1C1;
  resize: none;
  outline: none;
}

.final-text-form-back .final-text-form-container form button {
  width: 30%;
  font-size: 1.5vw;
  font-weight: 500;
  margin-top: 15px;
  padding: 5px 0;
  background: linear-gradient(to right, #e0dfff 0%, #ffe5fe 100%);
  border-radius: 5px;
  box-shadow: none!important;
  color: #585858;
  border: solid 1px #C1C1C1;
  cursor: pointer;
}

.final-text-form-back .final-text-form-container form button:hover {
  background-color: rgb(245, 245, 245);
}

.product-detail-product-images {
  position: relative;
  width: 95%;
  height: 0;
  padding-bottom: 95%;
  overflow: hidden;
  background-color: #f4f3ef;
  margin: 0 auto;
}

.product-detail-product-images .product-detail-product-images-list {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
}

.product-detail-product-images-list li {
  min-width: 100%;
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-detail-product-images-list li img {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  box-shadow: 2px 2px 10px rgb(172, 172, 172);
}

.product-detail-product-images-list .product-detail-product-image {
  float: left;
}

.product-detail-product-images .slider-dots {
  position: absolute;
  display: flex;
  justify-content: center; 
  top: 95%;
  left: 50%;
  transform: translate(-50%, -95%);
  z-index: 8;
}
.product-detail-product-images .slider-dot {
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background-color: rgb(214, 214, 214);
  margin-right: 5px;
  cursor: pointer;
}
.product-detail-product-images .slider-dot.point {
  background-color: #fff;
}

.product-detail-product-images .slider-ctrl-btn {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  cursor: pointer;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  z-index: 8;
  opacity: 0;
  transition: opacity .3s ease;
}
.product-detail-product-images .slider-ctrl-btn.prev { left: 15px; }

.product-detail-product-images .slider-ctrl-btn.next { right: 15px; }

.product-detail-product-images-sub {
  position: relative;
  width: 95%;
  height: 150px;
  margin: 15px auto 0 auto;
}

.product-detail-product-images-sub .choice-btn {
  width: 100%;
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
}

.product-detail-product-images-sub .choice-btn li {
  width: 150px;
  min-width: 150px;
  height: 150px;
  margin-right: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f4f3ef;
}

.product-detail-product-images-sub .choice-btn li img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  box-shadow: 2px 2px 10px rgb(172, 172, 172);
}






/* ############ product-text ################ */
.product-text {
  overflow-y: scroll;
}

.product-text .title {
  font-size: 1.2vw;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
}

.product-text .product-top {
  position: relative;
  width: 100%;
  padding-bottom: 30px;
  border-bottom: solid 1px #E2E2E2;
}

/* option nav */
.product-text .product-top .dot-icon {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  right: 15px;
  top: 15px;
  cursor: pointer;
}

.product-text .product-top .dot-icon span {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #000;
  margin-bottom: 3px;
}

.product-text .product-top .option-nav {
  position: absolute;
  top: 35px;
  right: 5px;
  opacity: 0;
  box-shadow: 1px 1px 3px rgb(227, 227, 227);
  border: solid 1px #E2E2E2;
  border-radius: 5px;
  overflow: hidden;
  pointer-events: none;
  z-index: 6;
}

.product-text .product-top .option-nav ul {
  display: flex;
  flex-direction: column; /* 縦並びにする */
  text-align: center;
  padding: 2px 0;
  background-color: #fff;
}

.product-text .product-top .option-nav ul li {
  display: inline-block;
  font-size: 1vw;
  line-height: 2em;
  font-weight: 400;
  cursor: pointer;
  width: 100px;
  pointer-events: none;
}

.product-text .product-top .option-nav ul li:hover {
  background-color: #ececec;
}

.product-text .product-top .option-nav ul li a {
  display: block;
  width: 100%;
  height: 100%;
}

.product-text .product-top .option-nav ul li a:hover {
  background-color: #ececec;
}

.product-text .product-top h3 {
  font-size: 2vw;
  line-height: 1.5em;
  margin-bottom: 5px;
  margin-right: 35px;
  white-space: wrap;
  overflow: hidden;

}

.product-text .product-top .product-top-div {
  width: 100%;
  display: flex;
  justify-content: right;
}

.product-text .product-top .product-top-div .product-top-like {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.product-text .product-top .product-top-div .product-top-like img {
  width: 18px!important;
  height: 18px!important;
  padding-right: 8px;
  cursor: pointer;
}

.product-text .product-top .product-top-div .product-top-like p {
  font-size: 20px;
  font-family: 'Noto Sans JP', sans-serif;
}

.product-text .product-top .product-top-div .product-top-comment {
  display: flex;
  align-items: center;
}

.product-text .product-top .product-top-div form-open-img {
  cursor: pointer;
}

.product-text .product-top .product-top-div .product-top-comment  img {
  width: 18px!important;
  height: 18px!important;
  padding-right: 8px;
}

.product-text .product-top .product-top-div .product-top-comment p {
  font-size: 20px;
  font-family: 'Noto Sans JP', sans-serif;
}

.product-text .product-top .product-top-price {
  font-size: 2vw;
  color: #FF0062;
  font-weight: 500;
  margin-bottom: 5px;
  line-height: 1em;
}

.product-text .product-top .product-top-price span {
  font-size: 1.3vw;
}

.product-text .product-top .product-top-buy {
  width: 100%;
  background-color: #FF0062;
  border-radius: 5px;
  text-align: center;
}

.product-text .product-top .product-top-buy:hover {
  background-color: #ea005a;
}

.product-text .product-top .product-top-buy a p {
  width: 100%;
  color: #fff;
  font-size: 1.3vw;
  font-weight: 500;
  line-height: 2.5em;
}

.product-text .product-top .product-top-bought {
  width: 100%;
  background-color: #FF0062;
  border-radius: 5px;
  text-align: center;
}

.product-text .product-top .product-top-bought p {
  color: #fff;
  font-size: 1.3vw;
  font-weight: 500;
  line-height: 2.5em;
}

.product-text .product-top .product-top-bought #review-request-button {
  cursor: pointer;
}


.product-text .product-explain {
  max-width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: solid 1px #E2E2E2;
}

.product-text .product-explain p {
  font-size: 1vw;
  letter-spacing: 1px;
  /* white-space: pre-wrap; */
}


.product-text .product-detail {
  max-width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: solid 1px #E2E2E2;
}

.product-text .product-detail table {
  text-align: left;
  border-spacing: 0px 10px;
}

.product-text .product-detail table th,td {
  font-size: 1vw;
}

.product-text .product-detail table th {
  font-weight: 500;
}

.product-text .product-detail table td {
  padding-left: 30px;
}

.product-text .product-owner {
  max-width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: solid 1px #E2E2E2;
}

.product-text .product-video {
  max-width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: solid 1px #E2E2E2;
}

.product-text .product-video .video-container {
  max-width: 100%;
  max-height: 100%;
  width: 90%;
  height: 300px;
  box-sizing: border-box;
  background-color: #f4f3ef;
  border-radius: 5px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-text .product-video .video-container video {
  max-width: 90%;
  max-height: 90%;
}

.product-text .product-owner .product-owner-link a {
  display: flex;
  align-items: center;
  border-radius: 5px;
  padding: 15px 5px;
  font-family: 'Noto Sans JP', sans-serif;
}

.product-text .product-owner .product-owner-link a:hover {
  background-color: #f0f0f0;
}

.product-text .product-owner .product-owner-link a .owner-image {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin-right: 15px;
  object-fit: cover;
}

.product-text .product-owner .product-owner-link a p {
  margin-right: auto;
  font-size: 1.2vw;
  font-weight: 700;
}

.product-text .product-owner .product-owner-link a .arrow-image {
  width: 20px;
}

.product-text .product-comment {
  max-width: 100%;
  padding-top: 30px;
}

.product-text .product-comment .comment {
  width: 100%;
}



.product-text .product-comment .comment .comment-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 5px 0;
  border-radius: 20px;
  border: solid 1px #9F9F9F;
  box-shadow: none;
  background-color: #fff;
  cursor: pointer;
}

.product-text .product-comment .comment .comment-button:hover {
  background-color: rgb(245, 245, 245);
}

.product-text .product-comment .comment .comment-button img {
  width: 20px!important;
  height: 20px!important;
  margin-right: 5px;
}

.product-text .product-comment .comment .comment-button p {
  font-size: 1vw;
  font-weight: 500;
}

.product-text .product-comment .comments {
  width: 100%;
  margin-top: 30px;
}

.product-text .product-comment .comments .comment-owner {
  width: 100%;
  display: flex;
  margin-bottom: 20px;
}

.product-text .product-comment .comments .comment-owner a img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 10px;
}

.product-text .product-comment .comments .comment-owner .comment-owner-text a {
  font-size: 1vw;
  font-weight: 700;
}

.product-text .product-comment .comments .comment-owner .comment-owner-text p {
  max-width: 100%;
  margin: 5px 0 0 5px;
  padding: 8px;
  font-size: 1vw;
  border-radius: 5px;
  background-color: #EFEFEF;
}

.to-approved-container {
  display: flex;
  justify-content: space-evenly;
  padding: 150px 10%;
  margin-top: 50px;
  border-top: solid 1px #e2e2e2;
}

.to-approved-container button {
  width: 180px;
  background: linear-gradient(to right, #e0dfff 0%, #ffe5fe 100%);
  border-radius: 30px;
  border: solid 1px #E2E2E2;
  font-size: 1.3vw;
  line-height: 2em;
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  .product {
    display: flex;
  }

  .product-images {
    width: 50%;
  }

  .product-text {
    width: 50%;
    padding: 0 2%;
  }
}

@media screen and (max-width: 768px) {
  .product-images {
    width: 100%;
  }

  .product-text {
    width: 100%;
    /* padding: 0 2%; */
  }
}

@media screen and (max-width:1024px) and (min-width:769px) {
  .product {
    padding: 50px 5%;
  }
  
  .final-text-form-back .final-text-form-container {
    width: 60%;
    border: solid 1px #C1C1C1;
    border-radius: 15px;
  }
  
  .final-text-form-back .final-text-form-container img {
    left: 12px;
    top: 12px;
    width: 15px!important;
    height: 15px!important;
  }
  
  .final-text-form-back .final-text-form-container p {
    font-size: 1.5vw;
    margin-top: 30px;
  }
  
  .final-text-form-back .final-text-form-container form {
    margin: 30px 0;
  }
  
  .final-text-form-back .final-text-form-container form textarea {
    width: 70%;
    height: 280px;
    padding: 10px;
    font-size: 1.5vw;
    border-radius: 15px;
  }
  
  .final-text-form-back .final-text-form-container form button {
    width: 30%;
    font-size: 1.8vw;
    margin-top: 20px;
    padding: 5px 0;
    border-radius: 5px;
  }

  .product-detail-product-images {
    width: 90%;
    height: 0;
    padding-bottom: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .product-detail-product-images .slider-dot {
    height: 7px;
    width: 7px;
  }
  
  .product-detail-product-images .slider-ctrl-btn {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    border-radius: 15px;
  }
  .product-detail-product-images .slider-ctrl-btn.prev { left: 15px; }
  
  .product-detail-product-images .slider-ctrl-btn.next { right: 15px; }
  
  .product-detail-product-images-sub {
    position: relative;
    width: 90%;
    height: 130px;
    margin: 12px auto 0 auto;
  }
  
  .product-detail-product-images-sub .choice-btn li {
    width: 130px;
    min-width: 130px;
    height: 130px;
    margin-right: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f3ef;
  }
  
  .product-detail-product-images-sub .choice-btn li img {
    max-width: 90%;
    max-height: 90%;
    width: auto!important;
    height: auto;
  }
  
  
  
  
  
  
  /* ############ product-text ################ */

  .product-text .title {
    font-size: 15px;
    margin-bottom: 10px;
  }
  
  .product-text .product-top {
    padding-bottom: 30px;
  }
  
  /* option nav */
  .product-text .product-top .dot-icon {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    right: 15px;
    top: 10px;
    cursor: pointer;
  }
  
  .product-text .product-top .dot-icon span {
    width: 3px;
    height: 3px;
    margin-bottom: 2px;
  }
  
  .product-text .product-top .option-nav {
    top: 35px;
    right: 5px;
  }
  
  .product-text .product-top .option-nav ul {
    padding: 2px 0;
  }
  
  .product-text .product-top .option-nav ul li {
    font-size: 1.5vw;
  }
  
  .product-text .product-top h3 {
    font-size: 20px;
    margin-bottom: 5px;
    margin-right: 35px;
  }
  
  .product-text .product-top .product-top-div .product-top-like {
    margin-right: 15px;
  }
  
  .product-text .product-top .product-top-div .product-top-like img {
    width: 15px!important;
    height: 15px!important;
    padding-right: 5px;
  }
  
  .product-text .product-top .product-top-div .product-top-like p {
    font-size: 18px;
  }
  
  .product-text .product-top .product-top-div .product-top-comment  img {
    width: 15px!important;
    height: 15px!important;
    padding-right: 5px;
  }
  
  .product-text .product-top .product-top-div .product-top-comment p {
    font-size: 18px;
  }
  
  .product-text .product-top .product-top-price {
    font-size: 20px;
    margin-bottom: 5px;
  }
  
  .product-text .product-top .product-top-price span {
    font-size: 15px;
  }
  
  .product-text .product-top .product-top-buy a p {
    font-size: 15px;
  }
  
  .product-text .product-top .product-top-bought p {
    font-size: 15px;
  }
  
  .product-text .product-explain {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .product-text .product-explain p {
    font-size: 12px;
  }
  
  
  .product-text .product-detail {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .product-text .product-detail table {
    border-spacing: 0px 10px;
  }
  
  .product-text .product-detail table th,td {
    font-size: 12px;
  }
  
  .product-text .product-detail table td {
    padding-left: 30px;
  }

  .product-text .product-video {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .product-text .product-video .video-container {
    width: 90%;
    height: 250px;
  }
  
  .product-text .product-video .video-container video {
    max-width: 90%;
    max-height: 90%;
  }
  
  
  .product-text .product-owner {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .product-text .product-owner .product-owner-link a {
    border-radius: 5px;
    padding: 12px 5px;
  }
  
  .product-text .product-owner .product-owner-link a .owner-image {
    width: 60px;
    height: 60px;
    margin-right: 12px;
  }
  
  .product-text .product-owner .product-owner-link a p {
    font-size: 15px;
  }
  
  .product-text .product-owner .product-owner-link a .arrow-image {
    width: 18px;
  }
  
  .product-text .product-comment {
    padding-top: 30px;
  }
  
  
  
  .product-text .product-comment .comment .comment-button {
    padding: 5px 0;
    border-radius: 20px;
  }
  
  .product-text .product-comment .comment .comment-button img {
    width: 18px!important;
    height: 18px!important;
    margin-right: 5px;
  }
  
  .product-text .product-comment .comment .comment-button p {
    font-size: 12px;
  }
  
  .product-text .product-comment .comments {
    margin-top: 30px;
  }
  
  .product-text .product-comment .comments .comment-owner {
    margin-bottom: 20px;
  }
  
  .product-text .product-comment .comments .comment-owner a img {
    width: 45px;
    height: 45px;
    margin-right: 10px;
  }
  
  .product-text .product-comment .comments .comment-owner .comment-owner-text a {
    font-size: 12px;
  }
  
  .product-text .product-comment .comments .comment-owner .comment-owner-text p {
    margin: 5px 0 0 5px;
    padding: 8px;
    font-size: 12px;
    border-radius: 5px;
  }

  .to-approved-container {
    padding: 100px 5%;
    margin-top: 50px;
  }
  
  .to-approved-container button {
    width: 160px;
    font-size: 1.8vw;
  }
}

@media screen and (max-width:768px) and (min-width:481px) {
  .product {
    padding: 50px 10%;
  }
  
  .final-text-form-back .final-text-form-container {
    width: 60%;
    border: solid 1px #C1C1C1;
    border-radius: 15px;
  }
  
  .final-text-form-back .final-text-form-container img {
    left: 12px;
    top: 12px;
    width: 15px!important;
    height: 15px!important;
  }
  
  .final-text-form-back .final-text-form-container p {
    font-size: 2.5vw;
    margin-top: 20px;
  }
  
  .final-text-form-back .final-text-form-container form {
    margin: 20px 0;
  }
  
  .final-text-form-back .final-text-form-container form textarea {
    width: 80%;
    height: 230px;
    padding: 10px;
    font-size: 2vw;
    border-radius: 15px;
  }
  
  .final-text-form-back .final-text-form-container form button {
    width: 30%;
    font-size: 2.5vw;
    margin-top: 20px;
    padding: 5px 0;
    border-radius: 5px;
  }

  .product-images {
    margin-bottom: 50px;
  }

  .product-detail-product-images {
    width: 70%;
    height: 0;
    padding-bottom: 70%;
  }

  .product-detail-product-images .slider-dot {
    height: 7px;
    width: 7px;
  }
  
  .product-detail-product-images .slider-ctrl-btn {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    margin-top: -10px;
    border-radius: 15px;
    opacity: 1;
  }
  .product-detail-product-images .slider-ctrl-btn.prev { left: 15px; }
  
  .product-detail-product-images .slider-ctrl-btn.next { right: 15px; }
  
  .product-detail-product-images-sub {
    position: relative;
    width: 70%;
    height: 120px;
    margin: 12px auto 0 auto;
  }
  
  .product-detail-product-images-sub .choice-btn li {
    width: 120px;
    min-width: 120px;
    height: 120px;
    margin-right: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f3ef;
  }
  
  .product-detail-product-images-sub .choice-btn li img {
    max-width: 90%;
    max-height: 90%;
    width: auto!important;
    height: auto;
  }
  
  
  
  
  
  
  /* ############ product-text ################ */

  .product-text .title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .product-text .product-top {
    padding-bottom: 30px;
  }
  
  /* option nav */
  .product-text .product-top .dot-icon {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    right: 15px;
    top: 10px;
    cursor: pointer;
  }
  
  .product-text .product-top .dot-icon span {
    width: 4px;
    height: 4px;
    margin-bottom: 3px;
  }
  
  .product-text .product-top .option-nav {
    top: 35px;
    right: 5px;
  }
  
  .product-text .product-top .option-nav ul {
    padding: 2px 0;
  }
  
  .product-text .product-top .option-nav ul li {
    font-size: 2vw;
  }
  
  .product-text .product-top h3 {
    font-size: 25px;
    margin-bottom: 5px;
    margin-right: 35px;
  }
  
  .product-text .product-top .product-top-div .product-top-like {
    margin-right: 15px;
  }
  
  .product-text .product-top .product-top-div .product-top-like img {
    width: 18px!important;
    height: 18px!important;
    padding-right: 5px;
  }
  
  .product-text .product-top .product-top-div .product-top-like p {
    font-size: 20px;
  }
  
  .product-text .product-top .product-top-div .product-top-comment  img {
    width: 18px!important;
    height: 18px!important;
    padding-right: 5px;
  }
  
  .product-text .product-top .product-top-div .product-top-comment p {
    font-size: 20px;
  }
  
  .product-text .product-top .product-top-price {
    font-size: 25px;
    margin-bottom: 5px;
  }
  
  .product-text .product-top .product-top-price span {
    font-size: 20px;
  }
  
  .product-text .product-top .product-top-buy a p {
    font-size: 18px;
  }
  
  .product-text .product-top .product-top-bought p {
    font-size: 18px;
  }
  
  .product-text .product-explain {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .product-text .product-explain p {
    font-size: 15px;
  }
  
  
  .product-text .product-detail {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .product-text .product-detail table {
    border-spacing: 0px 10px;
  }
  
  .product-text .product-detail table th,td {
    font-size: 15px;
  }
  
  .product-text .product-detail table td {
    padding-left: 30px;
  }

  .product-text .product-video {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .product-text .product-video .video-container {
    width: 90%;
    height: 300px;
  }
  
  .product-text .product-video .video-container video {
    max-width: 80%;
    max-height: 80%;
  }
  
  
  .product-text .product-owner {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .product-text .product-owner .product-owner-link a {
    border-radius: 5px;
    padding: 12px 5px;
  }
  
  .product-text .product-owner .product-owner-link a .owner-image {
    width: 70px;
    height: 70px;
    margin-right: 15px;
  }
  
  .product-text .product-owner .product-owner-link a p {
    font-size: 20px;
  }
  
  .product-text .product-owner .product-owner-link a .arrow-image {
    width: 20px;
  }
  
  .product-text .product-comment {
    padding-top: 30px;
  }
  
  
  
  .product-text .product-comment .comment .comment-button {
    padding: 5px 0;
    border-radius: 20px;
  }
  
  .product-text .product-comment .comment .comment-button img {
    width: 20px!important;
    height: 20px!important;
    margin-right: 5px;
  }
  
  .product-text .product-comment .comment .comment-button p {
    font-size: 15px;
  }
  
  .product-text .product-comment .comments {
    margin-top: 30px;
  }
  
  .product-text .product-comment .comments .comment-owner {
    margin-bottom: 20px;
  }
  
  .product-text .product-comment .comments .comment-owner a img {
    width: 50px;
    height: 50px;
    margin-right: 12px;
  }
  
  .product-text .product-comment .comments .comment-owner .comment-owner-text a {
    font-size: 15px;
  }
  
  .product-text .product-comment .comments .comment-owner .comment-owner-text p {
    margin: 5px 0 0 5px;
    padding: 8px;
    font-size: 15px;
    border-radius: 5px;
  }

  .to-approved-container {
    padding: 60px 10% 0 10%;
    margin-top: 50px;
  }
  
  .to-approved-container button {
    width: 180px;
    font-size: 2.5vw;
  }
}


@media screen and (max-width:480px) {
  .product {
    padding: 30px 8%;
  }
  
  .final-text-form-back .final-text-form-container {
    width: 90%;
    border: solid 1px #C1C1C1;
    border-radius: 15px;
  }
  
  .final-text-form-back .final-text-form-container img {
    left: 12px;
    top: 12px;
    width: 18px!important;
    height: 18px!important;
  }
  
  .final-text-form-back .final-text-form-container p {
    font-size: 4vw;
    margin-top: 20px;
  }
  
  .final-text-form-back .final-text-form-container form {
    margin: 15px 0;
  }
  
  .final-text-form-back .final-text-form-container form textarea {
    width: 70%;
    height: 150px;
    padding: 10px;
    font-size: 3.5vw;
    border-radius: 15px;
  }
  
  .final-text-form-back .final-text-form-container form button {
    width: 40%;
    font-size: 4vw;
    margin-top: 15px;
    padding: 5px 0;
    border-radius: 5px;
  }

  .product-images {
    margin-bottom: 30px;
  }

  .product-detail-product-images {
    width: 90%;
    height: 0;
    padding-bottom: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .product-detail-product-images .slider-dot {
    height: 7px;
    width: 7px;
  }
  
  .product-detail-product-images .slider-ctrl-btn {
    position: absolute;
    top: 50%;
    width: 25px;
    height: 25px;
    margin-top: -5px;
    border-radius: 15px;
    opacity: 1;
    color: #585858!important;
  }
  .product-detail-product-images .slider-ctrl-btn.prev { left: 15px; }
  
  .product-detail-product-images .slider-ctrl-btn.next { right: 15px; }
  
  .product-detail-product-images-sub {
    position: relative;
    width: 90%;
    height: 120px;
    margin: 12px auto 0 auto;
  }
  
  .product-detail-product-images-sub .choice-btn li {
    width: 120px;
    min-width: 120px;
    height: 120px;
    margin-right: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f3ef;
  }
  
  .product-detail-product-images-sub .choice-btn li img {
    max-width: 90%;
    max-height: 90%;
    width: auto!important;
    height: auto;
  }
  
  
  
  
  
  
  /* ############ product-text ################ */

  .product-text .title {
    font-size: 4vw;
    margin-bottom: 10px;
  }
  
  .product-text .product-top {
    padding-bottom: 25px;
  }
  
  /* option nav */
  .product-text .product-top .dot-icon {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    right: 5px;
    top: 10px;
    cursor: pointer;
  }
  
  .product-text .product-top .dot-icon span {
    width: 4px;
    height: 4px;
    margin-bottom: 3px;
  }
  
  .product-text .product-top .option-nav {
    top: 35px;
    right: 5px;
  }
  
  .product-text .product-top .option-nav ul {
    padding: 2px 0;
  }
  
  .product-text .product-top .option-nav ul li {
    font-size: 3vw;
  }
  
  .product-text .product-top h3 {
    font-size: 5vw;
    margin-bottom: 5px;
    margin-right: 30px;
  }
  
  .product-text .product-top .product-top-div .product-top-like {
    margin-right: 15px;
  }
  
  .product-text .product-top .product-top-div .product-top-like img {
    width: 18px!important;
    height: 18px!important;
    padding-right: 5px;
  }
  
  .product-text .product-top .product-top-div .product-top-like p {
    font-size: 4.5vw;
  }
  
  .product-text .product-top .product-top-div .product-top-comment  img {
    width: 18px!important;
    height: 18px!important;
    padding-right: 5px;
  }
  
  .product-text .product-top .product-top-div .product-top-comment p {
    font-size: 4.5vw;
  }
  
  .product-text .product-top .product-top-price {
    font-size: 5vw;
    margin-bottom: 5px;
  }
  
  .product-text .product-top .product-top-price span {
    font-size: 4vw;
  }
  
  .product-text .product-top .product-top-buy a p {
    font-size: 4vw;
  }
  
  .product-text .product-top .product-top-bought p {
    font-size: 4vw;
  }
  
  .product-text .product-explain {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  
  .product-text .product-explain p {
    font-size: 3.5vw;
  }
  
  
  .product-text .product-detail {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  
  .product-text .product-detail table {
    border-spacing: 0px 10px;
  }
  
  .product-text .product-detail table th,td {
    font-size: 3.5vw;
  }
  
  .product-text .product-detail table td {
    padding-left: 20px;
  }

  .product-text .product-video {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  
  .product-text .product-video .video-container {
    width: 90%;
    height: 250px;
  }
  
  .product-text .product-video .video-container video {
    max-width: 85%;
    max-height: 85%;
  }
  
  .product-text .product-owner {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  
  .product-text .product-owner .product-owner-link a {
    border-radius: 5px;
    padding: 12px 5px;
  }
  
  .product-text .product-owner .product-owner-link a .owner-image {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
  
  .product-text .product-owner .product-owner-link a p {
    font-size: 4vw;
  }
  
  .product-text .product-owner .product-owner-link a .arrow-image {
    width: 15px;
  }
  
  .product-text .product-comment {
    padding-top: 30px;
  }
  
  
  
  .product-text .product-comment .comment .comment-button {
    padding: 5px 0;
    border-radius: 20px;
  }
  
  .product-text .product-comment .comment .comment-button img {
    width: 18px!important;
    height: 18px!important;
    margin-right: 5px;
  }
  
  .product-text .product-comment .comment .comment-button p {
    font-size: 12px;
  }
  
  .product-text .product-comment .comments {
    margin-top: 30px;
  }
  
  .product-text .product-comment .comments .comment-owner {
    margin-bottom: 20px;
  }
  
  .product-text .product-comment .comments .comment-owner a img {
    width: 40px;
    height: 40px;
    margin-right: 12px;
  }
  
  .product-text .product-comment .comments .comment-owner .comment-owner-text a {
    font-size: 3.5vw;
  }
  
  .product-text .product-comment .comments .comment-owner .comment-owner-text p {
    margin: 5px 5px 0 5px;
    padding: 8px;
    font-size: 3vw;
    border-radius: 5px;
  }

  .to-approved-container {
    padding: 60px 8% 0 8%;
    margin-top: 50px;
  }
  
  .to-approved-container button {
    width: 40%;
    font-size: 3.5vw;
  }
}