@charset "utf-8";

/* 製品詳細ページ [ /products/detail/ ]
====================================================================== */

/* ===============================================
 products-detail
=============================================== */

.products-detail {
  padding: 90px 0;
}
.products-detail__inner {
  width: 1200px;
  max-width: calc(100% - var(--pc-base-padding) * 2);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 43% 48%;
  grid-template-rows: auto 1fr;
  -moz-column-gap: 9%;
  column-gap: 9%;
}
.products-detail__title {
  position: relative;
  font-size: 3.2rem;
  font-weight: 700;
  grid-column: 2;
  grid-row: 1;
}
.products-detail__tag-list {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.products-detail__tag-item {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--txt-base-color);
  padding: 2px 5px;
  border: 1px solid var(--txt-base-color);
  white-space: nowrap;
  min-width: 64px;
  text-align: center;
}
.products-detail__image {
  grid-column: 1;
  grid-row: 1 / 3;
}
.products-detail__swiper {
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid var(--border-color);
}
.products-detail__swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  aspect-ratio: 1 / 1;
}
.products-detail__swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.products-detail__thumbs {
  width: auto;
  max-width: 100%;
}
.products-detail__thumbs .swiper-slide {
  width: 70px !important;
  height: 70px;
  border: 1px solid var(--border-color);
  background-color: #fff;
  padding: 2px;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products-detail__thumbs .swiper-slide-thumb-active {
  border: 3px solid #fbc70d;
  padding: 0;
}
.products-detail__thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.products-detail__no-image {
  width: 100%;
  border: 1px solid var(--border-color);
  background-color: #fff;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products-detail__no-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.products-detail__info {
  grid-column: 2;
  grid-row: 2;
}
.products-detail__mark-list {
  display: flex;
  gap: 30px;
  margin-top: 25px;
}
.products-detail__mark-item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 60px;
}
.products-detail__mark-item img {
  height: 100%;
}
.products-detail__description {
  margin-top: 30px;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--txt-base-color);
}
.products-detail__note {
  margin: 15px 0 35px;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--txt-base-color);
}
.products-detail__wrap {
  border-top: 1px solid var(--border-color);
  padding: 20px 0;
}
.products-detail__table {
  width: 100%;
  border-collapse: collapse;
}
.products-detail__header,
.products-detail__data {
  text-align: left;
  vertical-align: middle;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 5px 0;
}
.products-detail__header {
  width: 140px;
  white-space: nowrap;
}
.products-detail__data {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}
.products-detail__data .yen {
  margin-right: 10px;
}
.products-detail__data .tax {
  font-size: 1.4rem;
  font-weight: 500;
  color: #a2a2a2;
  margin-left: 10px;
}
.selling_price .products-detail__data {
  color: var(--corp-color);
  font-size: 2.2rem;
  font-weight: 700;
}
.selling_price .products-detail__data .tax {
  font-size: 1.6rem;
}

/* 規格プルダウン（大きさ等）都道府県プルダウンと同じデザイン */
.products-detail__table select,
.products-detail__data select {
  display: inline-block;
  width: 252px;
  max-width: 100%;
  height: 60px;
  padding: 0 40px 0 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: #fff;
  font-size: 1.4rem;
  color: var(--txt-base-color);
  cursor: pointer;
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%2325459a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
}
.products-detail__table select:focus,
.products-detail__data select:focus {
  outline: none;
  border-color: var(--corp-color);
}

.products-detail__quantity-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.products-detail__quantity-input {
  width: 140px;
  height: 40px;
  padding: 8px 32px 8px 12px;
  font-size: 1.8rem;
  border: 1px solid #abb8c3;
  background-color: #fff;
  text-align: right;
  -webkit-appearance: textfield;
  appearance: textfield;
  -moz-appearance: textfield;
}
.products-detail__quantity-input::-webkit-inner-spin-button,
.products-detail__quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.products-detail__quantity-input:focus {
  outline: none;
  border-color: var(--corp-color);
}
.products-detail__quantity-controls {
  position: absolute;
  right: 1px;
  top: 1px;
  bottom: 1px;
  display: flex;
  flex-direction: column;
  width: 20px;
}
.products-detail__quantity-up,
.products-detail__quantity-down {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: none;
  color: var(--txt-base-color);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0;
  transition: none;
}
.products-detail__stock-warning {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  background-color: var(--corp-color);
  border-radius: 4px;
  padding: 4px 12px;
}
.products-detail__submit-wrapper {
  margin-top: 40px;
}
.products-detail__submit-btn {
  position: relative;
  width: 100%;
  height: 78px;
  background-color: #fbc70d;
  color: var(--txt-base-color);
  font-size: 1.8rem;
  font-weight: 500;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
  text-align: left;
  padding: 0 30px;
}
.products-detail__submit-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 18px;
  height: 16px;
  transform: translateY(-8px);
  background-image: url("../img/common/icon_cart.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.products-detail__submit-btn:disabled {
  background-color: #a2a2a2;
  color: #fff;
  cursor: not-allowed;
  opacity: 1;
}
.products-detail__submit-btn:disabled::after {
  background-image: url("../img/common/icon_cart_white.svg");
}
.products-detail__submit-contact-btn {
  position: relative;
  display: block;
  width: 100%;
  height: 78px;
  background-color: #25459A;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
  text-align: left;
  padding: 20px 30px;
}
.products-detail__submit-contact-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 18px;
  height: 16px;
  transform: translateY(-8px);
  background-image: url("../img/common/icon_mail_white.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.products-detail__submit-contact-btn:disabled {
  background-color: #a2a2a2;
  color: #fff;
  cursor: not-allowed;
  opacity: 1;
}
.products-detail__submit-contact-btn:disabled::after {
  background-image: url("../img/common/icon_mail_white.svg");
}
@media screen and (max-width: 767px) {
  .products-detail {
    padding: 60px 0;
  }
  .products-detail__inner {
    width: 100%;
    max-width: 100%;
    display: block;
  }
  .products-detail__title {
    font-size: 3.6rem;
    max-width: 100%;
    padding-inline: var(--sp-base-padding) !important;
  }
  .products-detail__tag-list {
    margin: 15px 0 40px;
    padding-inline: var(--sp-base-padding) !important;
  }
  .products-detail__tag-item {
    font-size: 1.4rem;
    padding: 1px 8px;
  }
  .products-detail__image {
    margin-bottom: 30px;
  }
  .products-detail__no-image {
    border-left: none;
    border-right: none;
  }
  .products-detail__swiper {
    margin-bottom: 20px;
    border-left: none;
    border-right: none;
  }
  .products-detail__thumbs {
    padding-inline: var(--sp-base-padding) !important;
  }
  .products-detail__thumbs .swiper-slide {
    width: 55px !important;
    height: 55px !important;
  }
  .products-detail__info {
    max-width: 100%;
    padding: 0 var(--sp-base-padding);
    margin-top: 40px;
  }
  .products-detail__mark-list {
    gap: 20px;
  }
  .products-detail__mark-item {
    height: 50px;
  }
  .products-detail__description {
    margin-top: 40px;
    font-size: 1.8rem;
  }
  .products-detail__note {
    margin: 20px 0 40px;
    font-size: 1.3rem;
  }

  .products-detail__header,
  .products-detail__data {
    font-size: 2rem;
  }
  .products-detail__header {
    width: 160px;
  }
  .products-detail__data .tax {
    font-size: 1.6rem;
  }
  .selling_price .products-detail__data {
    font-size: 2.4rem;
  }
  .selling_price .products-detail__data .tax {
    font-size: 1.8rem;
  }
  /* 規格プルダウン：都道府県と同様のスマホ用サイズ */
  .products-detail__table select,
  .products-detail__data select {
    width: 100%;
    height: 80px;
    padding: 0 50px 0 25px;
    font-size: 1.6rem;
    background-position: right 20px center;
    background-size: 14px;
  }
  .products-detail__quantity-input {
    height: 60px;
    font-size: 2rem;
  }
  .products-detail__quantity-up,
  .products-detail__quantity-down {
    font-size: 1rem;
  }
  .products-detail__submit-wrapper {
    margin-top: 20px;
  }
}
@media (hover) {
  .products-detail__thumbs .swiper-slide:hover {
    opacity: 0.6;
  }
  .products-detail__submit-btn:hover {
    opacity: 0.8;
  }
  .products-detail__submit-btn:disabled:hover {
    opacity: 1;
  }
  .products-detail__submit-contact-btn:hover {
    opacity: 0.8;
  }
  .products-detail__submit-contact-btn:disabled:hover {
    opacity: 1;
  }
}

/* ===============================================
 page-products-detail > goback
=============================================== */

.page-products-detail .goback {
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .page-products-detail .goback {
    padding-top: 20px;
  }
}

/* ===============================================
 products-related
=============================================== */

.products-related {
  background-color: #fff;
  padding: 75px 0 0;
}
.products-related__inner {
  width: 1200px;
  max-width: calc(100% - var(--pc-base-padding) * 2);
  margin-inline: auto;
}
.products-related__tabs-wrapper {
  position: relative;
  background-color: #fff;
  transition: all 0.3s ease;
}
.products-related__tabs-wrapper.is-fixed {
  position: fixed;
  top: 103px;
  left: 0;
  right: 0;
  z-index: 999;
  padding-bottom: 10px;
}
.products-related__tabs-wrapper.is-fixed + .products-related__contents {
  margin-top: 103px;
}
.products-related__tabs-wrapper.is-fixed .products-related__tabs {
  width: 1200px;
  max-width: calc(100% - var(--pc-base-padding) * 2);
  margin: 0 auto;
}
.products-related__tabs-wrapper.is-fixed .products-related__scrollbar {
  width: 1200px;
  max-width: calc(100% - var(--pc-base-padding) * 2);
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 10px;
}
.products-related__tabs {
  display: flex;
  gap: 8px;
  padding: 25px 0;
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.products-related__tabs::-webkit-scrollbar {
  display: none;
}
.products-related__scrollbar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background-color: #e8e8e8;
  border-radius: 6px;
  overflow: hidden;
}
.products-related__scrollbar-thumb {
  height: 100%;
  background-color: #7c8fc2;
  border-radius: 6px;
  transition: background-color 0.2s;
}
.products-related__scrollbar-thumb:hover {
  background-color: #b1b1b1;
}
.products-related__tab-btn {
  height: 62px;
  flex-shrink: 0;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 62px;
  color: var(--txt-base-color);
  border-radius: 62px;
  padding: 0 20px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-out;
  white-space: nowrap;
}
.products-related__tab-btn.active {
  color: var(--corp-color);
  font-weight: 700;
  background-color: var(--corp-color);
  color: #fff;
  z-index: 1;
}
.products-related__contents {
  padding: 60px 0 0;
}
.products-related__content {
  display: none;
}
.products-related__content.active {
  display: block;
}

@media screen and (max-width: 767px) {
  .products-related {
    padding: 40px 0 0;
  }
  .products-related__tabs-wrapper.is-fixed {
    top: 60px;
  }
  .products-related__tabs-wrapper.is-fixed + .products-related__contents {
    margin-top: 119px;
  }
  .products-related__tabs-wrapper.is-fixed .products-related__tabs {
    width: calc(100% - var(--sp-base-padding) * 2);
    max-width: calc(100% - var(--sp-base-padding) * 2);
    margin-inline: var(--sp-base-padding);
  }
  .products-related__tabs-wrapper.is-fixed .products-related__scrollbar {
    width: calc(100% - var(--sp-base-padding) * 2);
    max-width: calc(100% - var(--sp-base-padding) * 2);
  }
  .products-related__inner {
    width: 100%;
    max-width: 100%;
  }
  .products-related__contents {
    padding-inline: var(--sp-base-padding);
  }
  .products-related__tabs {
    padding: 25px 0 35px;
    width: calc(100% - var(--sp-base-padding) * 2);
    margin-inline: var(--sp-base-padding);
  }
  .products-related__scrollbar {
    width: calc(100% - var(--sp-base-padding) * 2);
    left: var(--sp-base-padding);
    right: auto;
  }
  .products-related__tab-btn {
    height: 48px;
    font-size: 1.8rem;
    line-height: 48px;
    border-radius: 48px;
  }
}
@media (hover: hover) {
  .products-related__tab-btn:hover {
    color: var(--corp-color);
  }
  .products-related__tab-btn.active:hover {
    color: #fff;
  }
}

/* ===============================================
 特長のコンテンツ - products-related
=============================================== */

/* 1カラムテキスト */

.products-features-1col {
  display: flex;
  flex-direction: column;
  padding: 0 0 60px;
  margin: -40px 0 0;
  gap: 10px;
}
.products-features-1col__heading {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 7px;
}
.products-features-1col__title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--txt-base-color);
}
.products-features-1col__text {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--txt-base-color);
}
@media screen and (max-width: 767px) {
  .products-features-1col {
    padding: 0 0 50px;
  margin: -20px 0 0;
    gap: 10px;
  }
  .products-features-1col__heading {
    margin-bottom: 0;
  }
  .products-features-1col__title {
    font-size: 2rem;
    line-height: 1.6;
    padding: 0;
  }
  .products-features-1col__text {
    font-size: 1.6rem;
  }
}

/* 2カラム */

.products-features-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 5%;
  list-style: none;
  padding: 0 0 60px;
  margin: 0;
}
.products-features-2col__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.products-features-2col__image {
  width: 100%;
  border: 1px solid var(--border-color);
}
.products-features-2col__image img {
  width: 100%;
  height: auto;
  display: block;
}
.products-features-2col__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.products-features-2col__title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--txt-base-color);
}
.products-features-2col__text {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--txt-base-color);
}
.products-features-2col__text2 {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--txt-base-color);
  margin-top: -35px;
}
@media screen and (max-width: 767px) {
  .products-features-2col {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 0 50px;
  }
  .products-features-2col__item {
    gap: 30px;
  }
  .products-features-2col__content {
    gap: 10px;
  }
  .products-features-2col__title {
    font-size: 2rem;
    line-height: 1.6;
  }
  .products-features-2col__text {
    font-size: 1.6rem;
  }
  .products-features-2col__text2 {
    font-size: 1.6rem;
    margin-top: 0;
  }
}

/* 3カラム */

.products-features-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 5%;
  list-style: none;
  padding: 0 0 60px;
  margin: 0;
}
.products-features-3col__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.products-features-3col__image {
  width: 100%;
  border: 1px solid var(--border-color);
}
.products-features-3col__image img {
  width: 100%;
  height: auto;
  display: block;
}
.products-features-3col__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.products-features-3col__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--txt-base-color);
}
.products-features-3col__text {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--txt-base-color);
}
@media screen and (max-width: 767px) {
  .products-features-3col {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 5%;
    padding: 0 0 50px;
  }
  .products-features-3col__item {
    gap: 18px;
  }
  .products-features-3col__content {
    gap: 8px;
  }
  .products-features-3col__title {
    font-size: 1.8rem;
    line-height: 1.6;
  }
  .products-features-3col__text {
    font-size: 1.6rem;
  }
}

/* 注釈 */

.products-features__note {
  margin: 15px 0 0;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--txt-base-color);
}
@media screen and (max-width: 767px) {
  .products-features__note {
    margin: 20px 0 0;
    font-size: 1.3rem;
  }
}

/* ステップ */

.products-features__step {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--txt-base-color);
}
.products-features__step dt {
  float: left;
  margin: 0 20px 0 0;
  font-weight: 700;
}
.products-features__step dd {
  margin: 0 0 5px 0;
}
@media screen and (max-width: 767px) {
  .products-features__step {
    margin: 0;
    font-size: 1.6rem;
  }
  .products-features__step dt {
    margin: 0 20px 20px 0;
  }
}

/* 見出し（センター揃え） */

.products-features__intro {
  margin: 50px 0 50px;
}
.products-features__intro-title {
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  color: var(--txt-base-color);
  margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .products-features__intro {
    margin: 20px 0 30px;
  }
  .products-features__intro-title {
    font-size: 2rem;
  }
}

/* 枠囲みボックス A */

.products-features-framed-boxA {
  border: 1px solid var(--border-color);
  padding: 35px 40px 40px;
  margin-bottom: 60px;
  background-color: #fff;
}
.products-features-framed-boxA__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--txt-base-color);
  margin-bottom: 5px;
}
.products-features-framed-boxA__text {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--txt-base-color);
}
@media screen and (max-width: 767px) {
  .products-features-framed-boxA {
    margin-bottom: 50px;
  }
  .products-features-framed-boxA__title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}

/* 枠囲みボックス B */

.products-features-framed-boxB-bottom-margin {
  padding-bottom: 60px;
}
.products-features-framed-boxB {
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 35px 40px 40px;
  background-color: #fff;
  margin: 0;
}
.products-features-framed-boxB-icon {
  flex-shrink: 0;
}
.products-features-framed-boxB-icon img {
  width: 250px;
  height: auto;
}
.products-features-framed-boxB-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--txt-base-color);
  margin-bottom: 5px;
}
.products-features-framed-boxB-text {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--txt-base-color);
}
@media screen and (max-width: 767px) {
  .products-features-framed-boxB-bottom-margin {
    padding-bottom: 50px;
  }
  .products-features-framed-boxB {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 20px;
    margin-bottom: 0;
  }
  .products-features-framed-boxB-icon img {
    width: 100%;
    max-width: 300px;
  }
  .products-features-framed-boxB-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-align: left;
  }
  .products-features-framed-boxB-text {
    margin-bottom: 15px;
    text-align: left;
  }
}

/* ポイント */

.products-features-point {
  display: flex;
  flex-direction: column;
  padding: 0 0 60px;
  margin: 0;
}
.products-features-point__heading {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 12px;
  order: 2;
}
.products-features-point__label {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--corp-color);
  position: relative;
  padding-right: 28px;
}
.products-features-point__label::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-10px);
  width: 22px;
  height: 22px;
  background-image: url("../img/common/icon_point.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.products-features-point__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--txt-base-color);
}
.products-features-point__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 5%;
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  order: 1;
}
.products-features-point__image-item {
  width: 100%;
  border: 1px solid var(--border-color);
}
.products-features-point__image-item img {
  width: 100%;
  height: auto;
  display: block;
}
.products-features-point__images2 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 60px 5%;
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  order: 1;
}
.products-features-point__image2-item {
  width: 100%;
  border: 1px solid var(--border-color);
}
.products-features-point__image2-item img {
  width: 100%;
  height: auto;
  display: block;
}
.products-features-point__text {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--txt-base-color);
  order: 3;
}
@media screen and (max-width: 767px) {
  .products-features-point {
    padding: 0 0 50px;
  }
  .products-features-point__heading {
    margin-bottom: 20px;
    order: 1;
  }
  .products-features-point__title {
    font-size: 1.8rem;
  }
  .products-features-point__images {
    grid-template-columns: 1fr;
    gap: 30px;
    order: 2;
  }
  .products-features-point__images2 {
    grid-template-columns: 1fr;
    gap: 30px;
    order: 2;
  }
}

/* ===============================================
 紹介動画のコンテンツ - products-related
=============================================== */

.products-movie__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 5%;
  list-style: none;
  padding: 0 0 60px;
  margin: 0;
}
.products-movie__item a {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.products-movie__image {
  width: 100%;
  border: 1px solid var(--border-color);
}
.products-movie__image img {
  width: 100%;
  height: auto;
  display: block;
}
.products-movie__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--txt-base-color);
}
@media screen and (max-width: 767px) {
  .products-movie__list {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 0 50px;
  }
  .products-movie__item a {
    gap: 18px;
  }
  .products-movie__title {
    font-size: 2rem;
  }
}

/* ===============================================
 仕様詳細のコンテンツ - products-related
=============================================== */

/* 仕様テーブル */

.products-specifications__table {
  padding-bottom: 80px;
}
.products-specifications__table table {
  width: 100%;
  border-collapse: collapse;
}
.products-specifications__table thead th {
  background-color: var(--corp-color);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 8px 30px;
  text-align: center;
  border: 1px solid var(--txt-base-color);
}
.products-specifications__table thead th:first-child {
  text-align: left;
}
.products-specifications__table tbody th {
  background-color: #f4f6fa;
  color: var(--txt-base-color);
  font-size: 1.4rem;
  font-weight: 500;
  padding: 8px 30px;
  text-align: left;
  vertical-align: middle;
  border: 1px solid var(--txt-base-color);
  width: 25%;
  position: relative;
}
.products-specifications__table tbody th span {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.products-specifications__table tbody td {
  color: var(--txt-base-color);
  font-size: 1.4rem;
  font-weight: 400;
  padding: 8px 30px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid var(--txt-base-color);
}

.products-specifications2__specifications-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--txt-base-color);
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--corp-color);
}
.products-specifications2__table {
  padding-bottom: 80px;
}
.products-specifications2__table table {
  width: 100%;
  border-collapse: collapse;
}
.products-specifications2__table thead th {
  background-color: #f4f6fa;
  color: var(--txt-base-color);
  font-size: 1.4rem;
  font-weight: 500;
  padding: 8px 30px;
  text-align: center;
  border: 1px solid var(--txt-base-color);
}
.products-specifications2__table thead th:first-child {
  background-color: var(--corp-color);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  width: 25%;
  vertical-align: middle;
}
.products-specifications2__table thead th.correction {
  background-color: #f4f6fa;
  color: var(--txt-base-color);
  font-size: 1.4rem;
  font-weight: 500;
}
.products-specifications2__table tbody th {
  background-color: var(--corp-color);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 8px 30px;
  text-align: left;
  vertical-align: middle;
  border: 1px solid var(--txt-base-color);
  width: 25%;
  position: relative;
}
.products-specifications2__table tbody th span {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.products-specifications2__table tbody td {
  color: var(--txt-base-color);
  font-size: 1.4rem;
  font-weight: 400;
  padding: 8px 30px;
  text-align: center;
  width: 25%;
  vertical-align: middle;
  border: 1px solid var(--txt-base-color);
}
@media screen and (max-width: 767px) {
  .products-specifications__table {
    padding-bottom: 60px;
  }
  .products-specifications__table thead th {
    padding: 8px 12px;
  }
  .products-specifications__table tbody th {
    padding: 8px 12px;
    width: 21%;
  }
  .products-specifications__table tbody th span {
    right: 12px;
  }
  .products-specifications__table tbody td {
    padding: 8px 12px;
  }
  .products-specifications2__specifications-title {
    font-size: 2rem;
    margin-bottom: 40px;
    padding-bottom: 7px;
  }
  .products-specifications2__table {
    padding-bottom: 60px;
  }
  .products-specifications2__table thead th {
    padding: 8px 12px;
  }
  .products-specifications2__table tbody th {
    padding: 8px 12px;
    width: 21%;
  }
  .products-specifications2__table tbody th span {
    right: 12px;
  }
  .products-specifications2__table tbody td {
    padding: 8px 12px;
  }
}

/* 寸法図 */

.products-specifications__dimension {
  padding-bottom: 80px;
}
.products-specifications__dimension-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--txt-base-color);
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--corp-color);
}
.products-specifications__dimension img {
  width: 100%;
  height: auto;
  display: block;
}
.products-specifications2__dimension {
  padding-bottom: 80px;
}
.products-specifications2__dimension-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--txt-base-color);
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--corp-color);
}
.products-specifications2__dimension img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .products-specifications__dimension {
    padding-bottom: 60px;
  }
  .products-specifications__dimension-title {
    font-size: 2rem;
    margin-bottom: 40px;
    padding-bottom: 7px;
  }
  .products-specifications2__dimension {
    padding-bottom: 60px;
  }
  .products-specifications2__dimension-title {
    font-size: 2rem;
    margin-bottom: 40px;
    padding-bottom: 7px;
  }
}

/* その他（荷重曲線図・オプション 等） */

.products-specifications__other-wrap {
  padding-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5%;
}
.products-specifications__other-wrap2 {
  padding-bottom: 50px;
  display: grid;
  gap: 5%;
}
.products-specifications__other-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--txt-base-color);
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--corp-color);
}
.products-specifications__other-image {
  width: 100%;
}
.products-specifications__other-image img {
  width: 100%;
  height: auto;
  display: block;
}
.products-specifications__option {
  display: flex;
  flex-direction: column;
}
.products-specifications__option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin-bottom: 40px;
}
.products-specifications__option-item {
  position: relative;
  padding-left: 30px;
  display: inline-block;
  width: auto;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--txt-base-color);
}
.products-specifications__option-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("../img/common/icon_option.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.products-specifications__option-note {
  background-color: #f4f6fa;
  padding: 30px;
  border-radius: 4px;
  margin-top: auto;
}
.products-specifications__option-note-text {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--txt-base-color);
  text-align: center;
}
.tractor-op {
  position: relative;
}
.tractor-op .products-specifications__option-note {
  position: absolute;
  width: 47.5%;
  left: 0;
  bottom: 50px;
}
@media screen and (max-width: 767px) {
  .products-specifications__other-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .products-specifications__other-wrap2 {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .products-specifications__other-title {
    font-size: 2rem;
    margin-bottom: 40px;
    padding-bottom: 7px;
  }
  .products-specifications__option-item {
    font-size: 1.6rem;
  }
  .products-specifications__option-note {
    padding: 30px 15px;
  }
  .products-specifications__option-note-text {
    font-size: 1.8rem;
    font-weight: 700;
  }
  .tractor-op .products-specifications__option-note {
    position: static;
    width: 100%;
    margin-top: 30px;
  }
}

/* ===============================================
 よくある質問のコンテンツ - products-related
=============================================== */

.products-faq__category {
  padding-bottom: 90px;
}
.products-faq__category:last-child {
  padding-bottom: 50px;
}
.products-faq__title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--txt-base-color);
  margin-bottom: 20px;
}
.products-faq__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.products-faq__item {
  border-bottom: 1px solid var(--border-color);
}
.products-faq__link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 17px 60px 17px 0;
  text-decoration: none;
  color: var(--txt-base-color);
  position: relative;
  transition: opacity 0.3s ease-out;
}
.products-faq__link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 27px;
  height: 24px;
  background-image: url("../img/common/icon_link2_navy.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.products-faq__label {
  flex-shrink: 0;
  width: 13px;
  height: 24px;
}
.products-faq__text {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .products-faq__category {
    padding-bottom: 60px;
  }
  .products-faq__category:last-child {
    padding-bottom: 50px;
  }
  .products-faq__title {
    font-size: 2rem;
    margin-bottom: 5px;
  }
  .products-faq__link {
    padding: 15px 40px 15px 0;
  }
}
@media (hover: hover) {
  .products-faq__link:hover {
    color: var(--corp-color);
  }
}

/* ===============================================
 納期・配送のコンテンツ - products-related
=============================================== */

.products-delivery__quick-delivery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 30px;
  background-color: #f4f6fa;
  margin-bottom: 35px;
}
.products-delivery__quick-delivery-icon {
  flex-shrink: 0;
}
.products-delivery__quick-delivery-icon img {
  width: 230px;
  height: auto;
}
.products-delivery__quick-delivery-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 7px;
}
.products-delivery__quick-delivery-text {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 5px;
}
.products-delivery__quick-delivery-note {
  font-size: 1.2rem;
}
.products-delivery__shipping {
  text-align: center;
  padding-bottom: 40px;
}
.products-delivery__shipping-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.products-delivery__shipping-text {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 15px;
}
.products-delivery__shipping-note {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .products-delivery__quick-delivery {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 20px;
    margin-bottom: 40px;
  }
  .products-delivery__quick-delivery-icon img {
    width: 100%;
    max-width: 300px;
  }
  .products-delivery__quick-delivery-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .products-delivery__quick-delivery-text {
    margin-bottom: 15px;
  }
  .products-delivery__shipping-title {
    margin-bottom: 20px;
    letter-spacing: 0;
  }
  .products-delivery__shipping-text {
    margin-bottom: 15px;
  }
  .products-delivery__shipping-note {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 429px) {
  .products-delivery__shipping-title br {
    display: none;
  }
}

/* ===============================================
 資料ダウンロードのコンテンツ - products-related
=============================================== */

.products-download__section {
  padding-bottom: 50px;
}
.products-download__section-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--txt-base-color);
  margin-bottom: 20px;
}
.products-download__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.products-download__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 15px 0 20px;
  border-bottom: 1px solid var(--border-color);
}
.products-download__item-name {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--txt-base-color);
  flex: 1;
}
.products-download__btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 8px 20px;
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  text-decoration: none;
  color: var(--txt-base-color);
  transition: all 0.3s ease-out;
  flex-shrink: 0;
  min-width: 175px;
  justify-content: center;
}
.products-download__btn-text {
  font-size: 1.6rem;
  font-weight: 500;
}
.products-download__btn-icon {
  width: 18px;
  height: 16px;
  background-image: url("../img/common/icon_download.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .products-download__section-title {
    font-size: 2rem;
    margin-bottom: 5px;
  }
  .products-download__item {
    gap: 20px;
    padding: 18px 0;
  }
  .products-download__btn {
    width: 175px;
    gap: 15px;
    padding: 8px 15px;
  }
}
@media (hover: hover) {
  .products-download__btn:hover {
    background-color: var(--corp-color);
    border-color: var(--corp-color);
    color: #fff;
  }
  .products-download__btn:hover .products-download__btn-icon {
    background-image: url("../img/common/icon_download_white.svg");
  }
}

/* ===============================================
 法定点検・運転資格のコンテンツ - products-related
=============================================== */

.products-maintenance__section {
  padding-bottom: 100px;
}
.products-maintenance__section:last-child {
  padding-bottom: 60px;
}
.products-maintenance__main-title {
  position: relative;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--corp-color);
  text-align: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 50px;
}
.products-maintenance__main-title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 1px;
  background-color: var(--corp-color);
}
.products-maintenance__intro {
  margin-bottom: 50px;
}
.products-maintenance__intro-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--txt-base-color);
  margin-bottom: 12px;
}
.products-maintenance__intro-text {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--txt-base-color);
}
.products-maintenance__content {
  margin-bottom: 60px;
}
.products-maintenance__content-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--txt-base-color);
  margin-bottom: 12px;
}
.products-maintenance__content-text {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--txt-base-color);
}
.products-maintenance__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5%;
  margin-bottom: 50px;
}
.products-maintenance__card-upper {
  background-color: #e9ecf5;
  padding: 30px 15px 37px;
  border-radius: 4px;
  text-align: center;
  min-height: 152px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.products-maintenance__card-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--txt-base-color);
}
.products-maintenance__card-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.products-maintenance__card-badge-white {
  display: block;
  background-color: #fff;
  padding: 3px 15px;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--txt-base-color);
}
.products-maintenance__card-badge-green {
  display: block;
  background-color: #36b291;
  padding: 3px 15px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
}
.products-maintenance__card-text {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--txt-base-color);
  margin-top: 30px;
}
.products-maintenance__detail {
  padding: 40px;
  border: 1px solid var(--border-color);
}
.products-maintenance__detail-upper {
  background-color: #e9ecf5;
  padding: 15px;
  border-radius: 4px;
  text-align: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.products-maintenance__detail-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--txt-base-color);
}
.products-maintenance__detail-badge {
  display: block;
  background-color: #36b291;
  padding: 3px 15px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
}
.products-maintenance__detail-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}
.products-maintenance__detail-item {
  background-color: #f3f3f3;
  padding: 10px;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--txt-base-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.products-maintenance__license-training {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5%;
}
.products-maintenance__license-training-group {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.products-maintenance__license-card {
  background-color: #e9ecf5;
  padding: 30px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.products-maintenance__license-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--txt-base-color);
}
.products-maintenance__license-target {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--txt-base-color);
  margin-top: 3px;
}
.products-maintenance__license-badge {
  display: block;
  background-color: #fbc70d;
  padding: 3px 15px;
  margin: 15px auto 0;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--txt-base-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.products-maintenance__license-badge.red {
  background-color: #da3032;
  color: #fff;
}
.products-maintenance__training-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.products-maintenance__training-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--txt-base-color);
}
.products-maintenance__training-text {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--txt-base-color);
}
@media screen and (max-width: 767px) {
  .products-maintenance__section {
    padding-bottom: 70px;
  }
  .products-maintenance__section:last-child {
    padding-bottom: 50px;
  }
  .products-maintenance__main-title {
    font-size: 2.4rem;
  }
  .products-maintenance__intro {
    margin-bottom: 40px;
  }
  .products-maintenance__intro-title {
    font-size: 2rem;
  }
  .products-maintenance__content {
    margin-bottom: 40px;
  }
  .products-maintenance__content-title {
    font-size: 2rem;
    letter-spacing: 0;
  }
  .products-maintenance__cards {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .products-maintenance__card-upper {
    padding: 15px;
    min-height: 129px;
  }
  .products-maintenance__card-title {
    font-size: 1.8rem;
  }
  .products-maintenance__card-badge-white {
    font-size: 1.5rem;
  }
  .products-maintenance__card-badge-green {
    font-size: 1.5rem;
  }
  .products-maintenance__card-text {
    font-size: 1.6rem;
    margin-top: 25px;
  }
  .products-maintenance__detail {
    padding: 30px;
  }
  .products-maintenance__detail-upper {
    padding: 20px 15px;
    flex-direction: column;
    gap: 0px;
  }
  .products-maintenance__detail-title {
    font-size: 1.8rem;
  }
  .products-maintenance__detail-badge {
    font-size: 1.5rem;
    margin-top: 15px;
  }
  .products-maintenance__detail-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .products-maintenance__detail-item {
    padding: 15px;
  }
  .products-maintenance__license-training {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .products-maintenance__license-training-group {
    gap: 30px;
  }
  .products-maintenance__license-title {
    font-size: 1.8rem;
  }
  .products-maintenance__license-target {
    font-size: 1.8rem;
  }
  .products-maintenance__license-badge {
    font-size: 1.5rem;
  }
  .products-maintenance__training-title {
    font-size: 1.6rem;
  }
  .products-maintenance__training-item {
    gap: 15px;
  }
  .products-maintenance__training-title {
    font-size: 2rem;
  }
}

/* --- */
