#contents,
#contents #sidebar {
  display: none;
}

@media screen and (max-width: 768px) {
  #contents,
  #contents #sidebar {
    display: block;
  }
}

/* Quattring LP だけ #contents を調整 */
#contents {
 margin: 0 !important;
  }

/* ==========================
   LP 全体（黒背景・フル幅）
========================== */

.lp-wrap {
  background: #000;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

/* ==========================
   LP 中央基準カラム
========================== */

.lp-quattring {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

/* ==========================
   画像共通
========================== */

.lp-quattring img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================
   メインビジュアル
========================== */

#mainimage {
  width: 100%;
}

#mainimage img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================
   左サイド縦ロゴ
========================== */

.lp-side-logo {
  position: absolute;
  top: 150px;
  left: -220px;      /* 1100px中央基準から外へ */
  width: 220px;
  z-index: 5;
}

.lp-side-logo img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .lp-side-logo {
    display: none;
  }
}


.lp-quattring {
  overflow: visible;
}

/* ==========================
   セクション共通
========================== */

.section {
  padding: 20px 0px;
  background: #000;
}

@media (max-width: 768px) {
  .section {
    padding: 20px 10px;
  }
}

/* ==========================
   セクションタイトル
========================== */

.section-title {
  display: flex;
  align-items: center;

  color: #e00000;               /* RODDIO系レッド */
  font-family: "Times New Roman", "Noto Serif JP", serif;
  font-size: 25px !important;
  letter-spacing: 0.08em;

  margin-bottom: 30px;
}

/* 右側に伸びるライン */
.section-title::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #e00000;

  margin-left: 20px;
  display: block;
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }

  .section-title::after {
    margin-left: 14px;
  }
}


/* ==========================
   Concept
========================== */

.concept-text {
  font-size: 15px;
  line-height: 2.0;
}

@media (max-width: 768px) {
  .concept-text {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* ==========================
   Structure
========================== */

.structure-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
}

.structure-image img {
  max-width: 420px;
  width: 100%;
}

.structure-text {
  max-width: 620px;
  font-size: 14px;
  line-height: 2.0;
}

.structure-text p + p {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .structure-wrap {
    flex-direction: column;
    gap: 40px;
  }

  .structure-text {
    font-size: 13px;
    line-height: 2.0;
  }
}


.structure-visual {
  margin-top: 40px;        /* 上との余白 */
  text-align: center;
}

.structure-visual img {
  max-width: 70%;   
  height: auto;
  display: block;
  margin: 0 auto;
}

/* スマホ */
@media (max-width: 768px) {
  .structure-visual img {
    max-width: 90%;
  }
}

/* ==========================
   Weight
========================== */

/* セクション全体 */
.section.weight {
  background: #000;
  padding: 40px 0;
}

@media (max-width: 768px) {
  .section.weight {
    padding: 20px 10px;
  }
}

/* テーブル */
.weight-table {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-collapse: collapse;
}







/* ヘッダー */
.weight-table thead th {
  color: #e00000;
  font-family: "Times New Roman", "Noto Serif JP", serif;
  font-size: 25px;
  letter-spacing: 0.08em;
  font-weight: normal;
  /* padding-bottom: 40px; */
  text-align: center;
font-weight: bold;
}


/* 行タイトル（QI-5等） */
.weight-table .row-title {
  color: #e00000;
  font-family: "Times New Roman", "Noto Serif JP", serif;
  font-size: 24px;
  /* padding-right: 40px; */
  white-space: nowrap;
font-weight: bold;
}

.weight-table .row-title span {
  font-size: 16px;
  letter-spacing: 0.1em;
}


.weight-table th {
  white-space: nowrap;
}


.weight-table th,
.weight-table td {
  text-align: center;
}

.weight-table th,
.weight-table td {
  border: none !important;
}



/* スマホ時 */
@media (max-width: 768px) {
  .weight-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .weight-table {
    min-width: 700px; /* ← これが重要 */
  }
}


/* セル */
.weight-table td {
  text-align: center;
  padding: 30px 10px;
}

/* 画像 */
.weight-table td img {
  display: block;
  margin: 0 auto;
}


/* Weight 下の注意書き＋価格 */
.weight-note-price {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 12px;
  margin-top: 25px;
  color: #fff;
}



/* 価格（右） */
.weight-note-price .price {
  font-size: 20px;
  letter-spacing: 0.12em;
  margin: 0;
  white-space: nowrap;
  font-weight: bold;
  font-family: "Times New Roman", "Noto Serif JP", serif;
}


/* スマホ時（例：768px以下） */
@media screen and (max-width: 768px) {
  .weight-note-price {
    flex-direction: column;   /* ← 縦並び＝2行 */
    align-items: flex-start;  /* ← 左揃え */
    gap: 15px;                 /* 行間を少し空ける */
  }

  .weight-note,
  .price {
    width: 100%;
  }
}



/* ==========================
   Example
========================== */


.section-title::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #c40000;
  margin-left: 20px;
}

/* 1行（a / b / c） */
.example-row {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(260px, 1fr) minmax(200px, 0.9fr);
  gap: 30px;
  align-items: center;
  margin-bottom: 50px;
}

/* 左全体 */
.example-left {
  color: #e00000;
}

/* a. + テキスト */
.example-head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
 font-family: "Times New Roman", "Noto Serif JP", serif;
font-weight: bold;
}

/* a. を特大に */
.example-alpha {
  font-size: 64px;
  font-weight: bold;
  line-height: 1;
margin-top: -10px;
}

/* Shaft / Head / Club */
.example-meta p {
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
  letter-spacing: 0.08em;
}


/* 左端列を少し詰める */
.example-table td:first-child {
  white-space: nowrap;
}


@media (max-width: 768px) {

  .example-row {
    display: block;
  }

  .example-left,
  .example-text,
  .example-image {
    width: 100%;
    margin-bottom: 40px;
  }

  .example-head {
    display: block;
  }

  .example-alpha {
    margin-bottom: 10px;
  }

  /* ★ table自体は blockにしない */
  .example-table {
    width: 100%;
  }

  /* ★ 横スクロールはラッパーで */
  .example-table-wrap {
    overflow-x: auto;
  }
}


/* Example表だけ白線を完全に排除 */
.section.example .example-table,
.section.example .example-table th,
.section.example .example-table td {
  border-color: #e00000 !important;
}


/* 赤枠テーブル */
.example-table {
  width: 100%;
  margin-top: 25px;
  border-collapse: collapse;
  border: 4px double #e00000;   /* ★ 外枠：赤の2重線 */
  font-size: 15px;
  font-weight: bold;
  color: #e00000;
}

/* 中の仕切り線 */
.example-table th,
.example-table td {
  border: 1px solid #e00000;   /* ★ 内側：通常の赤線 */
  padding: 10px 12px;
  text-align: center;
}

/* 見出し行 */
.example-table th {
  font-weight: bold;
}



/* 中央説明 */

.example-center h2 {
      margin-bottom: 1.5em;
	  line-height: 1.5;
}


.example-center p {
  line-height: 1.7;
  margin-bottom: 20px;
}

@media (max-width: 768px) {

  /* example-center 内の br を無効化 */
  .example-center br {
    display: none;
  }

}

/* 右画像 */
.example-right img {
  width: 100%;
  height: auto;
}


@media (max-width: 768px) {
  .example-right {
    max-width: 300px;   /* ← スマホ時は一段小さく */
    margin: 0 auto;     /* 中央寄せで綺麗 */
  }

}


@media (max-width: 768px) {

  /* 中央説明 */
  .example-center {
    text-align: center;
  }

  /* 画像も中央寄せ */
  .example-right {
    text-align: center;
  }

  .example-right img {
    margin: 0 auto;
  }

}

@media (max-width: 768px) {
  .example-row {
    margin-bottom: 0;
  }
}




/* ==========================
   Positioning Map
========================== */

.section.positioning-map {
  background: #000;
  padding: 20px 0 50px 0;
}

.positioning-map-image {
  text-align: center;
  margin-top: 40px;
}

.positioning-map-image img {
  max-width: 900px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}


@media (max-width: 768px) {

  .section.positioning-map {
    padding: 60px 20px;
  }

  .positioning-map-image img {
    max-width: 100%;
  }

}





/* ==========================
   Appearance
========================== */


/* 画像ラッパー */
.appearance-image {
  max-width: 1200px;   /* PC時の最大幅 */
  margin: 40px auto 0;
}

/* 横長シャフト画像 */
.appearance-image img {
  width: 100%;
  height: auto;
  display: block;
}


@media (max-width: 768px) {
  .appearance-image {
    margin-top: 40px;
  }
}











/* ==========================
   Specifications
========================== */

/* ヘッダー（タイトル＋ロゴ） */
.spec-header {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* タイトルを横いっぱいに */
.spec-header .section-title {
  display: flex;
  align-items: center;
  flex: 1;                 /* ★ ここが重要 */
  margin-bottom: 0;
}

/* ロゴ（PC） */
.spec-logo img {
  width: 200px;
  height: auto;
}

/* スマホ時 */
@media (max-width: 768px) {
  .spec-logo img {
    width: 120px;   /* ← お好みで 100〜140px */
  }
}


/* 価格 */
.spec-price-wrap {
  margin: 0 0 30px;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: #fff;
  font-family: "Times New Roman", "Noto Serif JP", serif;
  line-height: 1.6em;
}

/* テキスト */
/* 行 */
.spec-price-lines p {
  display: flex;            
  align-items: baseline;
  font-size: 22px;
  letter-spacing: 0.12em;
  color: #fff;
  font-family: "Times New Roman", "Noto Serif JP", serif;
  font-weight: bold;
}

/* Price : の幅を固定 */
.spec-price-lines .label {
  width: 90px;               
}

.spec-price-lines small {
  font-size: 0.8em;
}



@media screen and (max-width: 768px) {

  .spec-price-lines p {
    font-size: 13px;     
  }
  .spec-price-lines .label {
    width: 60px;               
  }
}


/* ===== スペック表 ===== */

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 50px;
  background: #e60012;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

/* ヘッダー */
.spec-table thead th {
  border: 2px solid #000;
  padding: 12px 10px;
  text-align: center;
}


/* スペック表の行だけ */
.spec-table thead tr {
  background: #000;
  color: #e00000;
}

/* ボディ */
.spec-table tbody th,
.spec-table tbody td {
  border: 2px solid #000;
  padding: 14px 10px;
  text-align: center;
}

/* 型番下の英字 */
.spec-table span {
  font-size: 11px;
  font-weight: normal;
}




/* サブタイトル */
.spec-subtitle {
  margin: 60px 0 20px;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: #fff;
  font-weight: normal !important;
}

/* 推奨チップカット量専用（必要最低限） */
.spec-table--chip th {
  width: 22%;
  font-weight: bold;
}

/* 機種名の補足表記 */
.spec-table span {
  font-size: 12px;
  letter-spacing: 0.05em;
}


/* ===== 注意書き ===== */

.spec-notes {
  font-size: 13px;
  line-height: 1.9;
  color: #ddd;
}

.spec-notes ol {
  padding-left: 20px;
  margin: 15px 0 20px;
}

.spec-tolerance {
  margin-top: 20px;
}


@media (max-width: 768px) {

  .spec-header {
    gap: 20px;
  }

  .spec-logo {
    align-self: flex-end;
  }

  .spec-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}


/* ===============================
   PAGE TOP
================================ */
.lp-totop {
  text-align: right;
  margin: 40px 20px 10px;
}

.lp-totop a {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #e00000;
  text-decoration: none;
}

.lp-totop a:hover {
  opacity: 0.7;
}

html {
  scroll-behavior: smooth;
}

/* ===============================
   PAGE TOP（SPでは非表示）
================================ */
@media screen and (max-width: 900px) {
  .lp-totop {
    display: none;
  }
}

/* ===============================
   PRODUCT LINKS（共通）
================================ */

.lp-product-links-wrap {
  width: 100%;
}

.lp-product-links {
  list-style: none;
  margin: 0;
  padding: 40px 20px;

  display: flex;
  flex-wrap: wrap;              /* ★ 折り返し有効 */
  gap: 24px 20px;
}

.lp-product-links li {
  width: calc(20% - 16px);      /* ★ PC：必ず5個で1行 */
}

.lp-product-links a {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 90px;
  padding: 0 12px;

  border: 1px solid #e00000;
  color: #e00000;

  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;

  transition: background 0.3s, color 0.3s;
}

.lp-product-links a:hover {
  background: #e00000;
  color: #000;
}

/* ===============================
   SP表示（縦並び）
================================ */
@media screen and (max-width: 900px) {

  .lp-product-links {
    display: block;
    padding: 0 20px;
  }

  .lp-product-links li {
    width: 100%;
    margin-bottom: 16px;
  }

  .lp-product-links a {
    min-height: auto;
    padding: 16px 10px;
    font-size: 13px;
  }
}

/* ===============================
   FOOTER LINK（LP専用・PC）
================================ */
@media screen and (min-width: 801px) {

  #footer #footer-link {
    max-width: none !important;   /* ★ 860px を無効化 */
    flex-wrap: nowrap !important; /* ★ wrap を無効化 */
  }

}
#footer-link li {
    font-size: 12px;
    padding: 2em;
    line-height: 1.5em;
    min-width: 100px;
    text-align: center;
    z-index: 1;
}
