@charset "utf-8";
/* CSS Document */

    /* ============================================
       商品ページ共通スタイル
    ============================================ */

    /* 商品ページ内 見出し */
    /* 商品ページ内 見出し（スコープ限定） */
.product-heading {
  position: relative;
  padding: 0 65px;
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.product-heading::before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background: #000;
}

.product-heading span {
  position: relative;
  padding: 0 1em;
  background: #fff;
}

    /* ============================================
       テキスト
    ============================================ */
    .product-desc {
      font-size: 13px;
      padding: 0.2em;
    }

    /* 強調テキスト（青色） */
    .text-accent {
      color: #0068b7;
      font-weight: bold;
    }

    /* ============================================
       セクション間の余白
    ============================================ */
    .section-block {
      margin-top: 60px;
    }

    .section-block:first-child {
      margin-top: 30px;
    }

    .section-inner {
      padding: 0 10px;
    }

    /* ============================================
       対応機種・関連品 リンクボタン
    ============================================ */
    .button01 a {
      background: #33c9ff;
      border-radius: 3px;
      position: relative;
      display: flex;
      justify-content: space-around;
      align-items: center;
      margin: 15px auto;
      max-width: 110px;
      padding: 10px 25px;
      color: #fff;
      transition: 0.3s ease-in-out;
      font-weight: 500;
      text-decoration: none;
    }

    .button01 a::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 2rem;
      width: 6px;
      height: 6px;
      border-top: 2px solid currentColor;
      border-right: 2px solid currentColor;
      transform: translateY(-50%) rotate(45deg);
      transition: right 0.3s;
    }

    .button01 a:hover {
      background: #66b3ff;
      color: #fff;
    }

    .button01 a:hover::after {
      right: 1.4rem;
    }

    /* ============================================
       商品詳細 table
    ============================================ */
    table.explanation {
      border: 1px solid #000;
      border-collapse: collapse;
      width: 95%;
      margin: 0 auto;
    }

    table.explanation td {
      border: 1px solid #333;
      padding: 10px;
      text-align: center;
      font-size: 12px;
    }

    caption.explanation {
      font-size: 13px;
    }

    /* ============================================
       商品仕様 table
    ============================================ */
    .detail-table-wrapper {
      text-align: center;
    }

    table.detail {
      border: 1px solid #333;
      border-collapse: collapse;
      width: 95%;
      margin: 0 auto;
    }

    table.detail th {
      border: 1px solid #333;
      background-color: #ccf1ff;
      padding: 10px;
      font-size: 13px;
    }

    table.detail td {
      border: 1px solid #333;
      padding: 10px;
      font-size: 13px;
    }

    /* ============================================
       商品詳細 アイコン
    ============================================ */
    .product-icon {
      padding: 0 5px;
      color: #33c9ff;
    }

    /* ============================================
       対応機種・関連品 Flexboxレイアウト
    ============================================ */
    .conformity-wrap {
      display: flex;
      flex-wrap: wrap;
      margin: 0 10px;
    }

    .conformity-item {
      padding: 15px 0 15px 15px;
      width: 30%;
      background-color: #fff;
      text-align: center;
    }

    .conformity-item:not(:nth-child(3n+3)) {
      margin-right: 2%;
    }

    .conformity-item:nth-child(n+4) {
      margin-top: 20px;
    }

    .conformity-item img {
      max-width: 250px;
      width: 100%;
      height: auto;
    }

    .conformity-item .item-name {
      font-weight: bold;
      margin-bottom: 10px;
    }

    /* ============================================
       注意書き
    ============================================ */
    .notice-text {
      font-size: 14px;
    }
	 
	.notice-item {
      background: #f8f9fa;
      border-left: 4px solid #33c9ff;
      border-radius: 4px;
      padding: 15px 20px;
      margin-bottom: 15px;
      font-size: 15px;
    }

	.notice-item .text-accent {
      display: block;
      margin-bottom: 8px;
    }

    /* ============================================
       レスポンシブ（768px未満）
    ============================================ */
    @media (max-width: 767px) {
      .conformity-item {
        width: 100%;
      }

      .conformity-item:not(:nth-child(3n+3)) {
        margin-right: 0;
      }

      .conformity-item:nth-child(n+2) {
        margin-top: 30px;
      }

      .opac_details p,
      .opac_info p {
        font-size: 16px;
      }
    }



