@charset "utf-8";

/************************************************
 import css
************************************************ */
.header_lower{
display: none;
}

#ins_display_caption_pc .plus{
    width: 70%;
    margin: auto;
    padding-top: 30px;
}

@media screen and (max-width:768px){
  .secDetail .plus{
    width: 100%;
    padding-top: 0;
  }
}

#ins_display_caption_pc .regular{
    width: 70%;
    margin: auto;
    padding-top: 30px;
}

@media screen and (max-width:768px){
  .secDetail .regular{
    width: 100%;
    padding-top: 0;
  }
}

html{
  scroll-behavior: smooth;
}

form[name^="product_"]{
padding: 2%;
}

.sec_review{
    padding-bottom: 50px;
}

.review_container{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.review_item{
    display: flex;
    gap: 20px;
    width: calc(50% - 20px * 1 / 2);
    border: 1px solid #AF3235;
    border-radius: 10px;
    box-sizing: border-box;
    background: #fff;
    padding: 10px;
    position: relative;
}

.review_img{
    width: 20%;
}

.review_img img{
    display: block;
    width: 100%;
}

.review_right{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 80%;
    padding-bottom: 50px;
}

.review_name{
    text-decoration: underline;
}

.review__btn{
    position: absolute;
    text-align: right;
    bottom: 20px;
    right: 10px;
}

.review__btn span{
    background: #f8af5a;
    padding: 10px;
    padding-right: 20px;
    border-radius: 15px;
    color: #fff;
}

.review__btn::before{
    content: "";
        display: block;
        position: absolute;
        top: 50%;
        width: 6px;
        height: 6px;
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
        transform: rotate(45deg) translateY(-50%);
        transform-origin: top center;
        transition: 0.15s;
        right: 5px;

}

@media screen and (max-width: 768px) {
    .review_item{
        width: 100%;
        margin: 0;
    }
    .review_img{
        width: 40%;
    }
    .review_right{
        width: 60%;
    }
    .review_name{
        font-size: 13px;
    }
    .review_text{
        font-size: 12px;
    }
}