/* commonParts
---------------------------------------------------- */
.anchor-link-list {
  position: relative;
  z-index: 2;
}
.anchor-link-list ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: -1em;
}
@media screen and (max-width: 767px) {
  .anchor-link-list ul {
    margin-top: 0;
  }
}
.anchor-link-list ul .anchor-link-btn {
  width: calc(25% - 0.75em);
  margin-right: 1em;
  margin-top: 1em;
}
.anchor-link-list ul .anchor-link-btn:nth-of-type(4n) {
  margin-right: 0;
}
@media screen and (max-width: 1199px) {
  .anchor-link-list ul .anchor-link-btn {
    width: calc(50% - 0.5em);
  }
  .anchor-link-list ul .anchor-link-btn:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .anchor-link-list ul .anchor-link-btn {
    width: calc(50% - 0.3em);
    margin-right: 0.6em;
    margin-top: 0.6em;
  }
}
.anchor-link-list ul .anchor-link-btn a {
  background-color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .anchor-link-list ul .anchor-link-btn a {
    font-size: 0.9em;
    height: 100%;
    padding-top: 0.8em;
    padding-bottom: 0.8em;
  }
}
.anchor-link-list ul .anchor-link-btn a::before {
  background-color: #159a56;
}
.anchor-link-list ul .anchor-link-btn a::after {
  content: "\f107";
  display: block;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 1em;
}
.anchor-link-list ul .anchor-link-btn a span.__txt {
  margin-right: 0;
}
.anchor-link-list.__products ul .anchor-link-btn {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 1em;
}
@media screen and (max-width: 767px) {
  .anchor-link-list.__products ul .anchor-link-btn {
    margin-right: 0.6em;
  }
}

/* products.html
---------------------------------------------------- */
.sec-product-list {
  position: relative;
  z-index: 1;
}
.sec-product-list .product-list {
  position: relative;
}
.sec-product-list .product-list:nth-of-type(odd) {
  background-color: #f5f7f7;
}
.sec-product-list .product-list:nth-of-type(even) {
  z-index: 2;
  box-shadow: 0px 0px 8px rgba(60, 60, 60, 0.1);
}
.sec-product-list .product-list ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .sec-product-list .product-list ul {
    margin-top: 1em;
  }
}
.sec-product-list .product-list ul .product-list-item {
  width: calc(33.3333333333% - 1.3333333333em);
  margin-right: 2em;
  margin-top: 2em;
}
.sec-product-list .product-list ul .product-list-item:nth-of-type(3n) {
  margin-right: 0;
}
@media screen and (max-width: 1199px) {
  .sec-product-list .product-list ul .product-list-item {
    width: calc(50% - 1em);
  }
  .sec-product-list .product-list ul .product-list-item:nth-of-type(3n) {
    margin-right: 2em;
  }
  .sec-product-list .product-list ul .product-list-item:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .sec-product-list .product-list ul .product-list-item {
    width: 100%;
    margin-right: 0;
    margin-top: 1em;
  }
  .sec-product-list .product-list ul .product-list-item:nth-of-type(3n) {
    margin-right: 0;
  }
}
.sec-product-list .product-list ul .product-list-item a {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: solid 2px rgba(204, 204, 204, 0.6);
  padding: 24px;
}
.sec-product-list .product-list ul .product-list-item a .item-img {
  width: 100%;
  aspect-ratio: 3/2;
  background-color: #aaa;
  box-shadow: none;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .sec-product-list .product-list ul .product-list-item a .item-img {
    aspect-ratio: 5/3;
  }
}
.sec-product-list .product-list ul .product-list-item a .item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  will-change: transform;
  transition: all 0.3s ease;
}
.sec-product-list .product-list ul .product-list-item a .item-name {
  margin-top: 1.4em;
  padding-right: 3em;
}
@media screen and (max-width: 767px) {
  .sec-product-list .product-list ul .product-list-item a .item-name {
    margin-top: 1.6em;
  }
}
.sec-product-list .product-list ul .product-list-item a .item-name h4 {
  font-weight: 700;
  line-height: 1.4em;
}
.sec-product-list .product-list ul .product-list-item a .item-arrow {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  margin-bottom: 20px;
  margin-right: 20px;
  color: #fff;
  background-color: #333;
  font-size: max(1.125rem, 1em);
  width: 2em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.sec-product-list .product-list ul .product-list-item a .item-arrow i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sec-product-list .product-list ul .product-list-item a:hover .item-img img {
  transform: scale(1.05);
}
.sec-product-list .product-list ul .product-list-item a:hover .item-arrow {
  background-color: #159a56;
}

/* detail-page
---------------------------------------------------- */
.__table-style02 table {
  width: 100%;
  font-size: min(4vw, 1em);
  border-collapse: separate;
  border-spacing: 0;
  border: none;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .__table-style02 table {
    font-size: 1em;
  }
}
.__table-style02 th, .__table-style02 td {
  font-size: 1em;
}
.__table-style02 td div {
  font-size: 1em;
}
.__table-style02 th, .__table-style02 td {
  text-align: center;
  vertical-align: middle;
  padding: 0.9em 1.4em;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
@media screen and (max-width: 991px) {
  .__table-style02 th, .__table-style02 td {
    padding: 0.9em 1em;
  }
}
@media screen and (max-width: 767px) {
  .__table-style02 th, .__table-style02 td {
    padding: 1em 1.2em;
  }
}
.__table-style02 thead th {
  color: #fff;
  background-color: #159a56;
  font-size: 0.95em;
  padding-top: 0.6em;
  padding-bottom: 0.6em;
}
.__table-style02 tbody th {
  white-space: nowrap;
  color: #384c8b;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .__table-style02 tbody th {
    display: block;
    width: 100%;
    padding-top: 0.8em;
    padding-bottom: 0.8em;
  }
}
@media screen and (max-width: 767px) {
  .__table-style02 tbody tr:not(.__table-style02 tbody tr:nth-of-type(1)) th {
    border-top: 4px double #ccc;
  }
}
.__table-style02 td {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .__table-style02 td {
    display: block;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.__table-style02 td .__row {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .__table-style02 td .__row {
    justify-content: start;
  }
}
@media screen and (max-width: 767px) {
  .__table-style02 td .__row .spec-name, .__table-style02 td .__row .spec-detail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .__table-style02 td .__row .spec-name {
    text-align: start;
    font-weight: 700;
    font-size: 0.9em;
    width: 8em;
    line-height: 1.4em;
    padding-top: 1em;
    padding-bottom: 1em;
    border-right: solid 1px #ccc;
  }
  .__table-style02 td .__row .spec-name span.__unit {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .__table-style02 td .__row .spec-detail {
    text-align: start;
    line-height: 1.4em;
    padding-top: 1em;
    padding-bottom: 1em;
    padding-left: 1.4em;
  }
}

span.__unit {
  font-size: 0.9em;
  margin-left: 0.4em;
}
@media screen and (max-width: 991px) {
  span.__unit {
    display: block;
    font-size: 0.8em;
    margin-left: 0;
  }
}

.sec-product {
  position: relative;
  z-index: 1;
}
.sec-product:nth-of-type(odd) {
  background-color: #f5f7f7;
}
.sec-product:nth-of-type(even) {
  z-index: 2;
  box-shadow: 0px 0px 8px rgba(60, 60, 60, 0.1);
}
.sec-product .sec-txt {
  width: -moz-fit-content;
  width: fit-content;
  max-width: min(100%, 740px);
  margin: 0 auto;
  margin-top: 2em;
}
.sec-product .sec-txt p {
  margin-top: 1em;
}
.sec-product .img-video {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 3em;
}
@media screen and (max-width: 991px) {
  .sec-product .img-video {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .sec-product .img-video {
    margin-top: 2em;
  }
}
.sec-product .img-video .content-wrap {
  width: calc(50% - 1em);
}
@media screen and (max-width: 991px) {
  .sec-product .img-video .content-wrap.img-wrap {
    width: min(100%, 480px);
    margin: 0 auto;
  }
}
.sec-product .img-video .content-wrap.img-wrap img {
  height: auto;
}
.sec-product .img-video .content-wrap.video-wrap {
  background-color: #ccc;
  aspect-ratio: 3/2;
  margin-left: 2em;
}
@media screen and (max-width: 991px) {
  .sec-product .img-video .content-wrap.video-wrap {
    width: 100%;
    margin-left: 0;
    margin-top: 1em;
  }
}
.sec-product .spec-table {
  margin-top: 3em;
}
@media screen and (max-width: 767px) {
  .sec-product .spec-table {
    margin-top: 2em;
  }
}
.sec-product.__alligator-shah .flex-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 991px) {
  .sec-product.__alligator-shah .flex-wrap {
    display: block;
  }
}
.sec-product.__alligator-shah .flex-wrap.__top {
  flex-direction: row-reverse;
}
.sec-product.__alligator-shah .flex-wrap .flex-content {
  width: calc(50% - max(3.75rem, 2em) * 1 / 2);
  margin-right: max(3.75rem, 2em);
}
@media screen and (max-width: 991px) {
  .sec-product.__alligator-shah .flex-wrap .flex-content {
    width: 100%;
    margin-right: 0;
  }
}
.sec-product.__alligator-shah .flex-wrap .flex-content .content-wrap {
  width: 100%;
  margin-right: 0;
}
@media screen and (max-width: 991px) {
  .sec-product.__alligator-shah .flex-wrap .flex-content .content-wrap.img-wrap {
    max-width: 480px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 991px) {
  .sec-product.__alligator-shah .flex-wrap .flex-content.sec-txt {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    margin-top: 2em;
  }
}
.sec-product.__alligator-shah .flex-wrap .flex-content.sec-txt ul {
  margin-top: 1em;
}
.sec-product.__alligator-shah .flex-wrap .flex-content.sec-txt ul li::before {
  content: "\f00c";
}
.sec-product.__alligator-shah .flex-wrap .flex-content.spec-table th, .sec-product.__alligator-shah .flex-wrap .flex-content.spec-table td {
  text-align: start;
}
@media screen and (max-width: 767px) {
  .sec-product.__alligator-shah .flex-wrap .flex-content.spec-table tbody th {
    display: table-cell;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .sec-product.__alligator-shah .flex-wrap .flex-content.spec-table tbody tr:not(.sec-product.__alligator-shah .flex-wrap .flex-content.spec-table tbody tr:nth-of-type(1)) th {
    border-top: 1px solid #ccc;
  }
}
@media screen and (max-width: 767px) {
  .sec-product.__alligator-shah .flex-wrap .flex-content.spec-table td {
    display: table-cell;
    width: auto;
    padding-top: 0.8em;
    padding-bottom: 0.8em;
  }
}/*# sourceMappingURL=products.css.map */