@charset "UTF-8";
/*--------------------------------------------
製品詳細ページ共通CSS
--------------------------------------------*/
.sec_bd {
  border-top: 1px solid #c7c7c7;
}
.product_detail .link_area .top {
  background: #eeeeee;
}
.anchor .anchor_item {
  width: calc(100% / 3);
}
/*overview*/
.gallery_main{
  opacity: 0;
  transition: opacity .3s linear;
}
.gallery_main.slick-initialized{
  opacity: 1;
}
.gallery_main .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.product_detail .slick-prev, 
.product_detail .slick-next {
  width: 3rem;
  height: 3rem;
  background: url(../../common/images/icon_arrow_prev.png) no-repeat #4e5059 center / 7px 10px;
  transition: all 0.4s;
  z-index: 30;
}
.product_detail .slick-next {
  background-image: url(../../common/images/icon_arrow_next.png);
}
.product_detail .slick-prev:before,
.product_detail .slick-next:before {
  content: '';
}
.product_detail .overview .flex_item.info {
  width: 49%;
}
.product_detail .overview .flex_item.gallery {
  width: 51%;
}
.product_detail .overview .gallery_wrap {
  display: flex;
}
.product_detail .overview .gallery_main {
  width: 80%;
  margin-left: 3%;
  max-width: 482px;
}
.product_detail .overview .gallery_main .item {
  border: 1px solid #ddd;
}
.product_detail .overview .slick-prev {
  left: -6rem;
}
.product_detail .overview .slick-next {
  right: -6rem;
}
.product_detail .overview .gallery_thumb {
  width: 17%;
  margin-right: 3%;
  max-width: 80px;
}
.product_detail .overview .gallery_thumb .item {
  cursor: pointer;
  border: 1px solid #ddd;
  margin-bottom: 1rem;
}
.product_detail .overview .gallery_thumb .item .inner {
  position: relative;
}
.product_detail .overview .gallery_thumb .item .inner:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255,255,255,0.7);
  opacity: 1;
}
.product_detail .overview .gallery_thumb .item.slick-current .inner:before {
  opacity: 0;
}
.product_detail .overview .r_box {
  padding-top: 2rem;
  padding-left: 7rem;
}
.product_detail .product_ttl > * {
  line-height: 1;
  font-weight: 500;
}
.product_detail .product_ttl .ttl_sub {
  font-size: 2.2rem;
}
.product_detail .product_ttl .ttl_main {
  font-size: 3.5rem;
  margin-top: 1.8rem;
  font-weight: 700;
}
.product_detail .overview .overview_list {
  margin-top: 3rem;
}
.product_detail .overview .btn {
  margin-top: 5rem;
}
.product_detail .overview .btn_txt {
  font-size: 1.4rem;
}
.product_detail .overview .product_badge {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  max-width: 360px;
}
.product_badge .product_badge_item {
  background: #242B2F;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  padding: 3px 6px;
  margin-bottom: 5px;
}
.product_detail .overview .product_badge_item.col_1 {
  width: 100%;
}
.product_detail .overview .product_badge_item.col_2 {
  width: 49%;
}
.product_badge.color_1 .product_badge_item {
  background: #ffb0b0;
}
.product_badge.color_2 .product_badge_item {
  background: #df5374;
}
.product_badge.color_3 .product_badge_item {
  background: #9b0033;
}
.product_badge.color_4 .product_badge_item {
  background: #95c5e7;
}
.product_badge.color_5 .product_badge_item {
  background: #004ca1;
}
@media screen and (min-width: 992px) {
  .product_detail .slick-prev:hover, 
  .product_detail .slick-prev:focus, 
  .product_detail .slick-next:focus {
    background: url(../../common/images/icon_arrow_prev.png) no-repeat #090d11 center / 7px 10px;
    opacity: 0.5;
  }
  .product_detail .slick-next:hover {
    background: url(../../common/images/icon_arrow_next.png) no-repeat #090d11 center / 7px 10px;
    opacity: 0.5;
  }
}

/*feature*/
.product_detail .feature_box:not(:first-child) {
  margin-top: 6rem;
}
.product_detail .feature_box:nth-child(even) {
  background: #eeeeee;
  padding: 6rem 0;
}
.product_detail .feature_box .box_inner {
  display: flex;
  flex-wrap: wrap;
}
.product_detail .feature_box:nth-child(even) .box_inner {
  flex-direction: row-reverse;
}
.product_detail .feature_box .img_box {
  width: 50%;
}
.product_detail .feature_box .txt_box {
  width: 50%;
  padding-top: 5rem;
}
.product_detail .feature_box:nth-child(odd) .txt_box {
  padding-left: 5rem;
}
.product_detail .feature_box:nth-child(even) .txt_box {
  padding-right: 5rem;
}
.product_detail .feature_box .feature_num {
  font-family: 'Oswald', sans-serif;
  font-size: 7.2rem;
  line-height: 1;
  margin-bottom: 2rem;
  color: #242B2F;
}
.product_detail .feature_box .feature_ttl {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  padding-bottom: 2rem;
  position: relative;
  margin-bottom: 2.3rem;
}
.product_detail .feature_box .feature_ttl:before {
  content: '';
  width: 25px;
  height: 1px;
  background: #2d3132;
  position: absolute;
  left: 0;
  bottom: 0;
}

/*merit*/
.product_detail .merit_box .box_inner {
  display: flex;
  flex-wrap: wrap;
}
.product_detail .merit_box:nth-child(even) .box_inner {
  flex-direction: row-reverse;
}
.product_detail .merit_box:not(:first-child) {
  margin-top: 8rem;
}
.product_detail .merit_box .img_box {
  width: 50%;
  border: 10px solid #eeeeee;
}
.product_detail .merit_box .txt_box {
  width: 50%;
  padding-top: 2rem;
}
.product_detail .merit_box:nth-child(odd) .txt_box {
  padding-left: 5rem;
}
.product_detail .merit_box:nth-child(even) .txt_box {
  padding-right: 5rem;
}
.product_detail .merit_box .merit_num {
  font-family: 'Oswald', sans-serif;
  font-size: 7.2rem;
  line-height: 1;
  margin-bottom: 2rem;
  color: #242B2F;
}
.product_detail .merit_box .merit_ttl {
font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  padding-bottom: 2rem;
  position: relative;
  margin-bottom: 2.3rem;
}
.product_detail .merit_box .merit_ttl:before {
  content: '';
  width: 25px;
  height: 1px;
  background: #2d3132;
  position: absolute;
  left: 0;
  bottom: 0;
}

/*specification*/
.product_detail .specification .item:not(:first-child) {
  margin-top: 3rem;
}
.product_detail .specification .specification_ttl {
  background: #090d11;
  color: #fff;
  font-weight: 500;
  line-height: 1;
  padding: 1.5rem 2rem;
}
.product_detail .specification .specification_list {
  display: flex;
  flex-wrap: wrap;
  border: solid 1px #cdcdcd;
}
.product_detail .specification .specification_list dl {
  display: flex;
  flex-wrap: wrap;
}

.product_detail .specification .specification_list  dt {
  width: 41.66%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: #f1f1f1;
  padding: 0.9rem 2rem;
}
.product_detail .specification .specification_list  dd {
  width: 58.34%;
  padding: 0.9rem 2rem;
}
.product_detail .specification .specification_list > dt.col_3 {
  width: 16%;
  border-right: solid 1px #cdcdcd;
}
.product_detail .specification .specification_list > dd.col_3 {
  width: 84%;
  padding: 0;
}
.product_detail .specification .specification_list > dd.col_3 dt {
  width: 30.6%;
}
.product_detail .specification .specification_list > dd.col_3 dt:not(:last-of-type),
.product_detail .specification .specification_list > dd.col_3 dd:not(:last-of-type)  {
  border-bottom: solid 1px #cdcdcd;
}
.product_detail .specification .specification_list > dd.col_3 dd {
  width: 69.4%;
}
.product_detail .specification .specification_list > dt:not(:last-of-type),
.product_detail .specification .specification_list > dd:not(:last-of-type){
  border-bottom: solid 1px #cdcdcd;
}
.product_detail .specification .specification_list + .btn {
  margin-top: 2rem;
}
.product_detail .specification .specification_list .btn {
  margin-top: 1.5rem;
}
.product_detail .specification .attention {
  margin-top: 2rem;
}
.product_detail .specification .attention_item {
  font-size: 1.4rem;
  padding-left: 1em;
  text-indent: -1em;
}
.product_detail .note {
  margin-top: 5rem;
}
.product_detail .sup {
  display: flex;
}
.note_list {
  background: #f1f1f1;
  padding: 1rem 2rem;
  font-size: 1.4rem;
}




@media screen and (max-width : 1399px ) {
  
}
@media screen and (max-width : 1199px ) {
}
@media screen and (min-width : 768px ) and (max-width : 991px ) {
  .product_detail .overview .product_badge_item.col_2 {
    width: 24.5%;
  }
  .product_detail .overview .product_badge_item.col_1 {
    width: 49.75%;
  }
}
@media screen and (max-width : 991px ) {
  .product_detail .product_ttl {
    width: 100%;
    margin-bottom: 3rem;
  }
  .product_detail .overview .flex_item.gallery,
  .product_detail .overview .flex_item.info {
    width: 100%;
  }
  .product_detail .overview .r_box {
    padding-left: 0;
    padding-top: 0;
    margin-top: 2rem;
  }
  .product_detail .overview .l_box {
    max-width: 80%;
    margin: 0 auto;
  }
  .product_detail .overview .product_badge {
    max-width: 90%;
    margin: 0 auto;
  }
  .product_detail .overview .btn .btn_01 {
    margin-right: auto;
    margin-left: auto;
  }
  .product_detail .overview .btn_txt {
    text-align: center;
  }
  .product_detail .feature_box:nth-child(even) {
    padding-top: 5rem;
  }
  .product_detail .feature_box .img_box {
    width: 100%;
  }
  .product_detail .feature_box .img_box img {
    width: 100%;
  }
  .product_detail .feature_box .txt_box {
    width: 100%;
    padding-top: 0;
    margin-top: 2rem;
    padding-right: 0;
  }
  .product_detail .feature_box:nth-child(odd) .txt_box {
    padding-left: 0;
  }
  .product_detail .feature_box:nth-child(even) .txt_box {
    padding-right: 0;
  }
  .product_detail .feature_box:not(:first-child) {
    margin-top: 5rem;
  }
  .product_detail .feature_box .feature_num {
    font-size: 5rem;
  }
  .product_detail .feature_box .feature_ttl {
    line-height: 1.4;
  }
  .product_detail .merit_box .img_box {
    width: 100%;
  }
  .product_detail .merit_box .img_box img {
    width: 100%;
  }
  .product_detail .merit_box .txt_box {
    width: 100%;
    padding-top: 0;
    margin-top: 2rem;
  }
  .product_detail .merit_box:nth-child(odd) .txt_box {
    padding-left: 0;
  }
  .product_detail .merit_box:nth-child(even) .txt_box {
    padding-right: 0;
  }
  .product_detail .merit_box:not(:first-child) {
    margin-top: 5rem;
  }
  .product_detail .merit_box .merit_num {
    font-size: 5rem;
  }
  .product_detail .specification .specification_list dt {
    width: 45%;
    padding: 0.9rem 1rem;
  }
  .product_detail .specification .specification_list dd {
    width: 55%;
    padding: 0.9rem 1rem;
  }
  .product_detail .specification .specification_list > dt.col_3 {
    width: 20%;
  }
  .product_detail .specification .specification_list > dd.col_3 {
    width: 80%;
  }
  .product_detail .specification .specification_list > dd.col_3 dt {
    width: 31.1%;
  }
  .product_detail .specification .specification_list > dd.col_3 dd {
    width: 68.9%;
  }
}
@media screen and (max-width : 767px ) {
  .product_detail .overview .l_box {
    max-width: 100%;
  }
  .product_detail .overview .product_badge {
    max-width: 100%;
  }
  .product_detail .merit_box .img_box {
    border-width: 7px;
  }
  .product_detail .specification .specification_list dt,
  .product_detail .specification .specification_list dd {
    width: 100%;
    padding: 0.9rem 2rem;
  }
  .product_detail .specification .specification_list > dd.col_3,
  .product_detail .specification .specification_list > dt.col_3 {
    width: 100%;
  }
  .product_detail .specification .specification_list > dt.col_3 {
    border-right: none;
  }
  .product_detail .specification .specification_list > dd.col_3 dt {
    background: #fbfbfb
  }
  .product_detail .specification .specification_list > dd.col_3 dt,
  .product_detail .specification .specification_list > dd.col_3 dd {
    width: 50%;
  }
}
@media screen and (min-width : 576px ) and (max-width : 767px ) {
  
}
@media screen and (max-width : 575px ) {
  .product_detail .feature_box .feature_num {
    font-size: 3.5rem;
  }
  .product_detail .merit_box .merit_num {
    font-size: 3.5rem;
  }
  .product_detail .product_ttl .ttl_sub {
    font-size: 2rem;
  }
  .product_detail .product_ttl .ttl_main {
    font-size: 2.5rem;
    font-weight: 500;
  }

}

