/* ===========================================
  
  各商品紹介
  PCレスポンシブ対応 (800px以上)

=========================================== */
@media (min-width: 801px) {
  .item-sec {
    margin: 64px auto 80px;
  }
  .item-img {
    margin-bottom: 48px;
  }
  .item-info {
    display: flex;
    justify-content: space-between;
  }
  .item-name {
    font-size: 32px;
    font-weight: bold;
    color: #004b6c;
  }
  .item-txt {
    width: 810px;
    font-size: 16px;
    line-height: 2;
  }
  .item-hd {
    margin-bottom: 32px;
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 0.1ex;
  }
  .item-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    margin-bottom: 80px;
  }
  .item-item {
    .img {
      margin-bottom: 32px;
    }
    .name {
      font-size: 18px;
      font-weight: bold;
      font-feature-settings: normal;
    }
  }
  .item-back::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 12px;
    margin-right: 17px;
    background: url(/image/common/icon_next.svg) left center no-repeat;
    background-size: contain;
    vertical-align: baseline;
    transform: rotate(180deg);
  }
  .item-back {
    a {
      text-decoration: none;
      color: #000;
    }
  }
}

/* ===========================================
SPレスポンシブ対応 (800px以下)
=========================================== */
@media (max-width: 800px) {
  .item-sec {
    margin: 0 auto 4rem;
    img {
      width: 100%;
    }
  }
  .item-img {
    margin: -2rem -1rem 2rem;
  }
  .item-name {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #004b6c;
  }
  .item-txt {
    font-size: 0.875rem;
    line-height: 1.8;
  }
  .item-hd {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  .item-wrap {
    margin-bottom: 4rem;
  }
  .item-item {
    margin-bottom: 1.5625rem;
    .img {
      margin-bottom: 0.5rem;
    }
    .name {
      font-size: 0.875rem;
    }
  }
  .item-back::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 11px;
    margin-right: 11px;
    background: url(/image/common/icon_next.svg) left center no-repeat;
    background-size: contain;
    vertical-align: baseline;
    transform: rotate(180deg);
  }
  .item-back {
    a {
      font-size: 0.875rem;
      text-decoration: none;
      color: #000;
    }
  }
}