@charset "utf-8"; 

/* ---------------
product.css
製品紹介のレイアウト・構成の形を定義しています。
--------------- */

@media screen and (min-width: 1301px) {
  .hidden-pc {
    display: none;
  }
}

@media screen and (min-width: 769px) and (max-width: 1300px) {
  .hidden-tab {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .hidden-sp {
    display: none;
  }
}

.main .container {
  max-width: 1000px;
}

@media screen and (min-width: 769px) and (max-width: 1300px) {
  .main .container {
    padding: 0 20px;
  }
}

@media screen and (max-width: 768px) {
  .main .container {
    padding: 0 20px;
  }
}

.titleBox {
  background: #E5E5E5;
  padding: 2px 4px;
  margin-bottom: 12px;
}

.titleBox h2 {
  font-weight: bold;
}

.catalog {
  margin-top: 128px;
  margin-bottom: 96px;
}

.catalog__box {
  display: flex;
  justify-content: center;
}

.catalog__box__btn {
  color: #000;
  text-align: center;
  flex-basis: 30%;
  font-size: 18px;
  padding: 20px 0;
  background: #D8E7F1;
}

@media screen and (max-width: 768px) {
  .catalog__box__btn {
    flex-basis: 100%;
  }
}

.sec2 {
  margin-top: 52px;
}

.sec2__table {
  margin-top: 32px;
}

.sec2__table table {
  display: block;
}

@media screen and (max-width: 768px) {
  .sec2__table table {
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}

.sec2__table table tbody {
  width: 100%;
  display: table;
}

@media screen and (max-width: 768px) {
  .sec2__table table tbody {
    width: 1000px;
  }
}

.sec2__table table tr th, .sec2__table table tr td {
  border-collapse: collapse;
  border-bottom: 2px solid #4C4C4C;
}

.sec2__table table tr th {
  padding: 2px 4px;
  font-size: 13px;
  text-align: left;
  font-weight: bold;
}

.sec2__table table tr th:not(:last-of-type) {
  border-right: 5px solid #fff;
}

.sec2__table table tr th:nth-of-type(1) {
  width: 23%;
}

.sec2__table table tr th:nth-of-type(2) {
  width: 40%;
}

.sec2__table table tr th:nth-of-type(3) {
  width: 36%;
}

.sec2__table table tr td {
  padding: 8px 4px;
  font-size: 15px;
}

.sec2__table table tr td:nth-of-type(n+2) {
  border-right: 5px solid #fff;
}

.sec2__table table tr td.month {
  width: 7%;
  text-align: right;
}

.sec2__table table tr td ul li {
  line-height: 1.25;
}
