﻿@charset "UTF-8";

/* 共通 */
.newproduct_ttl {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
/* 素材 */
.product_material_area {
  margin-top: 20px;
}
/* 素材ここまで */

/* 洗濯表示 */
.washing_instruction_area {
  margin-top: 20px;
}
.washing_instruction_img {
  display: flex;
  margin-bottom: 20px;
}

@media screen and (min-width: 767px) {
  .washing_instruction_img img {
    width: 80px;
    margin-right: 10px;
  }
}

@media screen and (max-width: 766px) {
  .washing_instruction_img img {
    width: calc((50 / 375) * 100vw);
    margin-right: 5px;
  }
}
/* 洗濯表示ここまで */

/* 原産国 */
.product_country_area {
  margin-top: 20px;
}
/* 原産国ここまで */

/* サイズ表 */
.option_block {
  width: auto;
  overflow-x: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.option_block table {
  table-layout: fixed;
  width: max-content;
  border-collapse: collapse;
}
.option_block th {
  text-align: center;
  border: 1px solid #000;
  padding: 0 10px;
}
.option_block td {
  text-align: center;
  border: 1px solid #000;
  padding: 2px 5px;
  min-width: 65px;
}
.option_block th[rowspan],
.option_block tr:nth-child(1) th:nth-child(1)  {
  min-width: 90px;
  padding: 0 10px;
  vertical-align: middle;
  background: #F2F2F2;
}
/* サイズ表ここまで */