@charset "UTF-8";
main {
  max-width: 1240px;
  padding: 40px 20px 0 20px;
  margin: 70px auto 150px auto;
}
@media screen and (max-width: 1200px) {
  main {
    padding: 0 10px;
    margin: 20px auto 75px auto;
  }
}

#product {
  max-width: 1240px;
  margin: 0 0 50px 0;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1200px) {
  #product {
    margin: 0 0 20px 0;
    flex-direction: column;
    gap: 20px;
  }
}
#product section:first-child {
  width: 50%;
}
@media screen and (max-width: 1200px) {
  #product section:first-child {
    width: 100%;
  }
}
#product section:last-child {
  width: 50%;
}
@media screen and (max-width: 1200px) {
  #product section:last-child {
    width: 100%;
  }
}
#product span {
  display: block;
  font-family: "Noto-Medium";
  font-size: 85%;
  color: #646464;
  line-height: 1;
  padding: 5px 5px 5px 16px;
  margin: 0 0 10px 0;
  background-color: #e3e3e3;
  background-image: url(../images/product/common/tip.svg);
  background-size: 9px 9px;
  background-position: 5px center;
  background-repeat: no-repeat;
}
#product h1 {
  font-size: 200%;
  color: #004da0;
  line-height: 1;
  letter-spacing: 0.05em;
  margin: 0 0 5px 0;
}
#product p {
  font-size: 105%;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
#product .series {
  display: flex;
  gap: 10px;
  margin: 20px 0 0 0;
}
#product .series p {
  width: 120px;
}

#tab {
  padding: 10px 0 20px 0;
  border-bottom: 1px solid #c8c8c8;
  background-color: #fff;
  position: sticky;
  top: 66px;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  #tab {
    position: relative;
    top: auto;
  }
}
#tab #tabnav {
  width: 50%;
  height: 53px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 1000px) {
  #tab #tabnav {
    width: 100%;
    height: 41px;
  }
}
#tab #tabnav p {
  width: 49.5%;
  padding: 5px 0;
  font-size: 120%;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: #c8c8c8;
  transition: 0.3s;
}
@media screen and (max-width: 1000px) {
  #tab #tabnav p {
    padding: 3px 0;
  }
}
#tab #tabnav p.current {
  font-size: 140%;
  color: #fff;
  padding: 10px 0;
  cursor: default;
}
@media screen and (max-width: 1000px) {
  #tab #tabnav p.current {
    padding: 5px 0;
  }
}
#tab #tabnav p:first-child.current {
  background-color: #7ba0c8;
}
#tab #tabnav p:last-child.current {
  background-color: #cc9a82;
}

#limited {
  padding: 10px 0 0 0;
  font-size: 140%;
  color: #fff;
  text-align: center;
  line-height: 1;
  border-bottom: 1px solid #c8c8c8;
  background-color: #fff;
  position: sticky;
  top: 66px;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  #limited {
    position: relative;
    top: auto;
  }
}

#product_common,
#product_east,
#product_west {
  width: 297px;
  padding: 15px 0;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 1000px) {
  #product_common,
  #product_east,
  #product_west {
    width: 100%;
  }
}

#product_common {
  background-color: #68a9cf;
}

#product_east {
  background-color: #7ba0c8;
}

#product_west {
  background-color: #cc9a82;
}

#east,
#west {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 60px;
}

#east h2 {
  color: #6383a6;
  border-left: 2px solid #6383a6;
  background-color: #f4f4f4;
}

#west h2 {
  color: #997362;
  border-left: 2px solid #997362;
  /*color: #cc9a9c;
  border-left: 2px solid #cc9a9c;*/
  background-color: #f4f4f4;
}

#east h3 {
  color: #6383a6;
}

#west h3 {
  color: #997362;
}

.contents {
  display: none;
}
.contents h2 {
  font-size: 140%;
  line-height: 1;
  letter-spacing: 0.03em;
  padding: 8px 10px;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 1000px) {
  .contents h2 {
    font-size: 110%;
  }
}
.contents h3 {
  font-family: "Noto-Regular";
  font-size: 120%;
}
.contents h3::before {
  content: "■ ";
  font-size: 85%;
}

.open {
  display: block;
  animation-name: open;
  animation-duration: 0.5s;
}

@keyframes open {
  0% {
    opacity: 0;
    transform: translate(0, 20px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.spec .function {
  padding: 0 10px;
}
.spec .function .tag {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0 0 20px 0;
  margin: 0 0 20px 0;
  border-bottom: 1px dashed #c8c8c8;
}
.spec .function .tag p::before {
  content: "[ ";
}
.spec .function .tag p::after {
  content: " ]";
}
.spec .function .list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 10px;
}
@media screen and (max-width: 1200px) {
  .spec .function .list {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.spec .function .list div {
  display: flex;
  align-items: center;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .spec .function .list div {
    flex-direction: column;
  }
}
.spec .function .list div p {
  width: 6em;
}
@media screen and (max-width: 1200px) {
  .spec .function .list div p {
    width: 100%;
    margin: 0 0 5px 0;
  }
}
.spec .function .list div ul {
  display: flex;
  gap: 2px;
  font-size: 85%;
}
@media screen and (max-width: 1200px) {
  .spec .function .list div ul {
    width: 100%;
    flex-direction: column;
  }
}
.spec .function .list div ul li {
  min-width: 140px;
  padding: 5px 0;
  border: 1px solid #444;
  color: #444;
  text-align: center;
  opacity: 0.3;
}
@media screen and (max-width: 1200px) {
  .spec .function .list div ul li {
    min-width: 100%;
  }
}
.spec .function .list div ul li.conform {
  opacity: 1;
  border: none;
  /*background-color: #f4f4f4;*/
}
.spec .function .link {
  font-size: 90%;
  text-align: right;
}
.spec .function .link a {
  color: #444;
}
.spec .function .link a:hover {
  text-decoration: none;
}
.spec .option {
  padding: 20px 0 0 0;
  margin: 10px 0 0 0;
  border-top: 1px dashed #c8c8c8;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 1000px) {
  .spec .option {
    flex-direction: column;
    align-items: flex-start;
  }
}
.spec .option p {
  width: 60px;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 1000px) {
  .spec .option p {
    margin: 0 0 5px 0;
  }
}
.spec .option small {
  line-height: 1;
}
@media screen and (max-width: 1000px) {
  .spec .option small {
    line-height: 1.5;
  }
}

#east li.conform {
  background-color: #e2e8f0;
}

#west li.conform {
  background-color: #f5ebe6;
  /*background-color: #f5ebeb;*/
}

.summary article {
  padding: 0 10px;
  /*製品概要レイアウトパターン*/
}
.summary article section {
  margin: 0 0 40px 0;
}
.summary article section:last-child {
  margin: 0;
}
.summary article .block_1 p {
  margin: 0 0 20px 0;
}
@media screen and (max-width: 1000px) {
  .summary article .block_1 p {
    margin: 0 0 10px 0;
  }
}
.summary article .block_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media screen and (max-width: 1000px) {
  .summary article .block_2 {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }
}
.summary article .block_2 img {
  margin: 10px 0 0 0;
}
.summary article .block_3 {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1000px) {
  .summary article .block_3 {
    flex-direction: column;
    gap: 10px;
  }
}
.summary article .block_3 div:first-child {
  width: 70%;
}
@media screen and (max-width: 1000px) {
  .summary article .block_3 div:first-child {
    width: 100%;
  }
}
.summary article .block_3 div:last-child {
  width: 30%;
}
@media screen and (max-width: 1000px) {
  .summary article .block_3 div:last-child {
    width: 100%;
    margin: 10px 0 0 0;
  }
}
.summary article .block_4 {
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
}
@media screen and (max-width: 1000px) {
  .summary article .block_4 {
    flex-direction: column;
    gap: 10px;
  }
}
.summary article .block_4 div:first-child {
  width: 70%;
}
@media screen and (max-width: 1000px) {
  .summary article .block_4 div:first-child {
    width: 100%;
  }
}
.summary article .block_4 div:last-child {
  width: 30%;
}
@media screen and (max-width: 1000px) {
  .summary article .block_4 div:last-child {
    width: 100%;
    margin: 10px 0 0 0;
  }
}
.summary article .block_5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media screen and (max-width: 1000px) {
  .summary article .block_5 {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 40px;
  }
}
.summary article .block_5 img {
  margin: 10px 0 0 0;
}
.summary article .block_6 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media screen and (max-width: 1000px) {
  .summary article .block_6 {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 40px;
  }
}
.summary article .block_6 img {
  margin: 10px 0 0 0;
}
.summary article .block_7 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media screen and (max-width: 1000px) {
  .summary article .block_7 {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 40px;
  }
}
.summary article .block_7 img {
  margin: 10px 0 0 0;
}
.summary article small {
  font-size: 80%;
  display: block;
  margin: 5px 0 0 0;
}
.summary article hr {
  margin: 0 0 40px 0;
  border-bottom: 1px dashed #c8c8c8;
}
.summary article .no_mgn {
  margin: 0;
}

.feature {
  padding: 0 10px;
  margin: 40px 0 0 0;
}
.feature div {
  padding: 20px;
  border: 1px solid #c8c8c8;
}
@media screen and (max-width: 1000px) {
  .feature div {
    padding: 10px;
  }
}
.feature div h3::before {
  content: "";
}
.feature div h4 {
  font-family: "Noto-Medium";
}
.feature div p {
  margin: 0 0 10px 0;
}
.feature div p:last-child {
  margin: 0;
}
.feature div dl {
  display: flex;
  margin: 0 0 5px 0;
}
.feature div dl:last-child {
  margin: 0;
}

/*テクニカルデータ*/
.data div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.data div img {
  margin: 0 0 10px 0;
}
.data div p {
  font-size: 90%;
}
.data table {
  width: 100%;
  border: 1px solid #C8C8C8;
  border-collapse: collapse;
  font-size: 90%;
  line-height: 1;
}
.data tr {
  text-align: center;
  border-bottom: 1px solid #C8C8C8;
}
@media screen and (max-width: 1200px) {
  .data tr {
    text-align: left;
  }
}
.data th {
  font-weight: normal;
  padding: 5px 10px;
  background-color: #F5F5F5;
}
@media screen and (max-width: 1200px) {
  .data th {
    display: none;
  }
}
.data td {
  padding: 5px 10px;
}
@media screen and (max-width: 1200px) {
  .data td {
    display: block;
  }
}
@media screen and (max-width: 1200px) {
  .data td:first-child {
    padding: 20px 10px 5px 10px;
  }
}
@media screen and (max-width: 1200px) {
  .data td:last-child {
    padding: 5px 10px 20px 10px;
  }
}
@media screen and (max-width: 1200px) {
  .data .name_1::before {
    content: "品名／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .name_2::before {
    content: "一般用／U形用／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .model_1::before {
    content: "型番／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .model_2::before {
    content: "型／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .model_3::before {
    content: "種類／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .length_A::before {
    content: "A（mm）／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .length_B::before {
    content: "B（mm）／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .length_D::before {
    content: "D（mm）／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .length_L::before {
    content: "L（mm）／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .length_H::before {
    content: "H（mm）／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .length_H_1::before {
    content: "H1（mm）／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .length_H_2::before {
    content: "H2（mm）／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .length_W::before {
    content: "W（mm）／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .length_a::before {
    content: "a（mm）／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .length_b::before {
    content: "b（mm）／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .length_b_1::before {
    content: "b1（mm）／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .length_c::before {
    content: "c（mm）／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .length_d::before {
    content: "d（mm）／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .length_e::before {
    content: "e（mm）／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .length_f::before {
    content: "f（mm）／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .length_g::before {
    content: "g（mm）／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .length_h::before {
    content: "h（mm）／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .length_i::before {
    content: "i（mm）／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .length_t::before {
    content: "t（mm）／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .length_t_1::before {
    content: "t1（mm）／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .length_T_2::before {
    content: "T（mm）／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .weight_1::before {
    content: "参考重量（kg/枚）／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .weight_2::before {
    content: "参考重量（kg/本）／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .piece_1::before {
    content: "使用枚数（枚/m²）／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .piece_2::before {
    content: "使用枚数（本/m²）／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .green::before {
    content: "緑化率（%）／ ";
  }
}
@media screen and (max-width: 1200px) {
  .data .remarks::before {
    content: "備考／ ";
  }
}
.data .info_1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  padding: 0 10px;
}
@media screen and (max-width: 1200px) {
  .data .info_1 {
    grid-template-columns: repeat(1, 1fr);
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 20px;
  }
}
.data .info_1_2 {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 0 10px;
}
@media screen and (max-width: 1200px) {
  .data .info_1_2 {
    flex-direction: column;
  }
}
.data .info_1_2 div:first-child {
  width: 80%;
}
@media screen and (max-width: 1200px) {
  .data .info_1_2 div:first-child {
    width: 100%;
  }
}
.data .info_1_2 div:last-child {
  width: 20%;
}
@media screen and (max-width: 1200px) {
  .data .info_1_2 div:last-child {
    width: 30%;
  }
}
@media screen and (max-width: 1000px) {
  .data .info_1_2 div:last-child {
    width: 50%;
  }
}
.data .info_1_3 {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 0 10px;
}
@media screen and (max-width: 1200px) {
  .data .info_1_3 {
    flex-direction: column;
  }
}
.data .info_1_3 div:first-child {
  width: 60%;
}
@media screen and (max-width: 1200px) {
  .data .info_1_3 div:first-child {
    width: 100%;
  }
}
.data .info_1_3 div:last-child {
  width: 40%;
}
@media screen and (max-width: 1200px) {
  .data .info_1_3 div:last-child {
    width: 50%;
  }
}
.data .info_2 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 20px;
  padding: 0 10px;
}
.data a {
  font-size: 90%;
  color: #444;
  margin: 20px 0 0 0;
}
.data a:hover {
  text-decoration: none;
}
.data .red {
  color: #ff0000;
}
.data .size_1 {
  width: 70%;
}
@media screen and (max-width: 1000px) {
  .data .size_1 {
    width: 100%;
  }
}
.data .size_2 {
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .data .size_2 {
    width: 100%;
  }
}
.data .size_3 {
  width: 30%;
}
@media screen and (max-width: 1000px) {
  .data .size_3 {
    width: 100%;
  }
}
.data .size_4 {
  width: 10%;
}
@media screen and (max-width: 1000px) {
  .data .size_4 {
    width: 100%;
  }
}

.chart {
  padding: 0 10px;
}

/*バリエーション*/
.color .type {
  padding: 0 10px;
  margin: 0 0 20px 0;
}
.color .type p {
  margin: 0 0 10px 0;
}
.color .type h4 {
  font-size: 110%;
  line-height: 1;
  margin: 0 0 5px 0;
}
.color .type ul {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 10px;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 1200px) {
  .color .type ul {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media screen and (max-width: 1000px) {
  .color .type ul {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px;
  }
}
.color .type ul li small {
  font-size: 80%;
  margin: 5px 0 0 0;
  display: block;
}
.color .type ul:last-child {
  margin: 0;
}
.color .type:last-child {
  margin: 0;
}

/*パターン*/
.pattern_1 ul {
  padding: 0 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 20px;
}
@media screen and (max-width: 1000px) {
  .pattern_1 ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pattern_1 ul small {
  font-size: 80%;
  margin: 5px 0 0 0;
  display: block;
}

.pattern_2 ul {
  padding: 0 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 20px;
}
@media screen and (max-width: 1000px) {
  .pattern_2 ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pattern_2 ul small {
  font-size: 80%;
  margin: 5px 0 0 0;
  display: block;
}

.pattern_3 article {
  padding: 0 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 1000px) {
  .pattern_3 article {
    grid-template-columns: repeat(1, 1fr);
  }
}
.pattern_3 article section ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media screen and (max-width: 1000px) {
  .pattern_3 article section ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pattern_3 article section ul small {
  font-size: 80%;
  margin: 5px 0 0 0;
  display: block;
}

/*テクスチャー*/
.texture ul {
  padding: 0 10px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 20px;
}
@media screen and (max-width: 1000px) {
  .texture ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.texture ul small {
  font-size: 80%;
  margin: 5px 0 0 0;
  display: block;
}

/*施工事例*/
.scene ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
  padding: 0 10px;
}
@media screen and (max-width: 1000px) {
  .scene ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.scene ul small {
  font-size: 80%;
  margin: 5px 0 0 0;
  display: block;
}/*# sourceMappingURL=product_detail.css.map */