
/* =========================================================
   ■ 画像（メインビジュアル）
========================================================= */
.img100.car-main-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

.img100.car-main-img img,
.img100.car-main-img picture,
.img100.car-main-img source {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* =========================================================
   ■ 車種ブロック
========================================================= */
#car-model {
  background-color: #ddd;
  margin: 16px 0 0;
  padding: 16px 0 0;
}

/* =========================================================
   ■ 商品リンクボタン
========================================================= */
.product-links .buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.product-links .con-button.product-link {
  flex: 0 0 calc(50% - 16px);
  text-align: center;
}

.product-links .con-button.product-link a {
  display: block;
  padding: 12px 0;
  background: #295075;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

/* =========================================================
   ■ セクション見出し
========================================================= */
#special-content-wrapper h2,#special-content-wrapper2 h2 {
  font-size: 1.2rem ;
  padding: 3% 0 1% ;
}
#special-content-wrapper h3,#special-content-wrapper2 h3 {
  font-size: 1.17em;
  color: #fff;
  padding: 12px;
  margin: 0;
  font-weight: 600;
}
.top-border{
    border-top: 2px solid #e5e6ed;	
}
/* =========================================================
   ■ タイヤリンク（3列 → SP1列）
========================================================= */
#tirelink-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 10px;
  box-sizing: border-box;
  background-color: #ddd;
  margin: 0 0 12px;
}

#tirelink-wrap > div {
  flex: 1 1 calc((100% - 24px) / 3);
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

#tirelink-wrap img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

#tirelink-wrap > div:hover img {
  transform: scale(1.04);
}

/* --- オーバーレイテキスト --- */
#tirelink-wrap > div .overlay-text {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 4px;
  white-space: nowrap;
  text-align: center;
  z-index: 2;
  transition: background 0.3s ease;
}

#tirelink-wrap > div:hover .overlay-text {
  background: rgba(0, 0, 0, 0.8);
}

/* =========================================================
   ■ タイヤサイズ表（横スクロール）
========================================================= */
.tiresize-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tiresize-table {
  min-width: 480px;
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  margin: 20px 0;
  background: #fff;
  border: 1px solid #ddd;
}

.tiresize-table th,
.tiresize-table td {
  padding: 12px 10px;
  text-align: center;
  border-bottom: 1px solid #e4e6ec;
  border-right: 1px solid #e4e6ec;
}

.tiresize-table th {
  background: #f4f5f7;
  font-weight: 700;
  border-bottom: 2px solid #e4e6ec;
}

.tiresize-table tbody tr:nth-child(even) {
  background: #fafbfc;
}

.tiresize-table th:last-child,
.tiresize-table td:last-child {
  border-right: none;
}

.tiresize-table td {
  color: #333;
}

/* =========================================================
   ■ FAQ
========================================================= */
.faq-wrap {
  margin: 24px 0;
  border-top: 1px solid #e4e6ec;
}

.faq-item {
  border-bottom: 1px solid #e4e6ec;
  padding: 10px 0;
  background-color: #f4f5f7;
}

/* 質問部分 */
.faq-item > summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  position: relative;
  padding-right: 24px;
}

.faq-item > summary::-webkit-details-marker {
  display: none;
}

.faq-item > summary::after {
  content: "＋";
  position: absolute;
  right: 10px;
  top: 0;
}

.faq-item[open] > summary::after {
  content: "－";
}

/* summary 内の h3 */
.faq-item summary h3 {
  margin: 0 10px !important;
  font-size: 0.9rem !important;
  color: #000 !important;
}

/* 答え部分 */
.faq-a {
  margin: 0 24px;
  padding-left: 0;
  color: #333;
  line-height: 1.7;
  font-size: 14px;
}

/* =========================================================
   ■ 関連リンク（タグ風）
========================================================= */
.column-link-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.column-link-item a {
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  color: #295075;
  background: #fff;
  border: 1px solid #295075;
  border-radius: 16px;
  text-decoration: none;
  transition: 0.2s ease;
}

.column-link-item a:hover {
  background: #295075;
  color: #fff;
}

/* =========================================================
   ■ メモなど小サイズ文字
========================================================= */
.note {
  font-size: 0.8rem;
  color: #111;
}

/* =========================================================
   ■ スマホ（600px以下）
========================================================= */
@media (max-width: 600px) {

  /* メイン画像 */
  .img100.car-main-img {
    margin-bottom: 12px;
  }

  .img100.car-main-img picture,
  .img100.car-main-img img {
    height: 100%;
    object-fit: cover;
  }

  /* 車種ブロック */
  #car-model {
    background-color: #fff;
    margin: 0;
    padding: 0;
  }

  /* セクション見出し・小見出し */
  #special-content-wrapper h2 {
    padding-top: 3%;
  }

  #special-content-wrapper h3 {
    padding: 0 !important;
    font-size: 0.9rem !important;
  }

  .faq-item summary h3 {
    font-size: 0.8rem !important;
  }
  /* 答え部分 */
.faq-a {
  margin: 8px 24px;
  font-size: 12px;
}

.column-link-item a {
  font-size: 12px;
}

  /* ボタン 1列 */
  .product-links .con-button.product-link {
    flex: 0 0 100%;
  }

  /* タイヤリンク 1列 */
  #tirelink-wrap {
    margin: 12px 0;
  }

  #tirelink-wrap > div {
    flex: 0 0 100%;
  }

  #tirelink-wrap img {
    height: 100px;
    object-fit: cover;
  }

  /* テーブル */
  .tiresize-table th,
  .tiresize-table td {
    padding: 10px 6px;
    font-size: 14px;
  }
}

/* =========================================================
   ■ さらに小さい端末（480px以下）
========================================================= */
@media (max-width: 480px) {
  .tiresize-table th,
  .tiresize-table td {
    padding: 10px 6px;
    font-size: 12px;
  }

  .product-links .buttons {
    gap: 8px;
  }
}
