@charset "UTF-8";
/* ==========================================================
   旋盤加工ページ（page-lathe.php）専用スタイル
   technology.css / faq.css と併用する前提の差分のみ定義
   ========================================================== */

/* 導入文 */
.lathe__lead {
  margin-top: 24px;
  line-height: 2;
}

/* 3つの強み（PC 3列 / SP 1列） */
.lathe__strengthList {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.lathe__strengthItem {
  background: #fff;
  border: 1px solid #d9dee3;
  border-radius: 8px;
  padding: 28px 24px;
}

.lathe__strengthNum {
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #005fa0;
  line-height: 1;
}

.lathe__strengthTitle {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.lathe__strengthDesc {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.9;
}

@media screen and (min-width: 768px) {
  .lathe__strengthList {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* 対応加工の種類（PC 3列 / タブレット 2列 / SP 1列） */
.lathe__process {
  padding: 80px 0;
}

.lathe__processList {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.lathe__processItem {
  background: #fff;
  border-radius: 8px;
  padding: 26px 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}

.lathe__processTitle {
  font-size: 17px;
  font-weight: 700;
  color: #005fa0;
  padding-bottom: 10px;
  border-bottom: 2px solid #005fa0;
}

.lathe__processDesc {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.9;
}

@media screen and (min-width: 600px) {
  .lathe__processList {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1000px) {
  .lathe__processList {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* 表の注記 */
.lathe__tableNote {
  margin-top: 16px;
  font-size: 13px;
  color: #555;
  line-height: 1.8;
}

/* ==========================================================
   スペックカード（加工精度・ワークサイズ／対応ロット・納期）
   ========================================================== */
.lathe__specGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

.lathe__specCard {
  background: #fff;
  border: 1px solid #e3e8ee;
  border-top: 3px solid #005fa0;
  border-radius: 6px;
  padding: 22px 24px 20px;
  -webkit-box-shadow: 0 4px 16px rgba(13, 27, 42, .06);
  box-shadow: 0 4px 16px rgba(13, 27, 42, .06);
}

.lathe__specLabel {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #005fa0;
}

.lathe__specValue {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #0d1b2a;
}

.lathe__specNum {
  font-family: "Oswald", sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  color: #005fa0;
  margin-right: 4px;
}

.lathe__specUnit {
  font-size: 16px;
  font-weight: 700;
}

.lathe__specSub {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
}

.lathe__specNote {
  margin-top: 8px;
  font-size: 12px;
  color: #777;
  line-height: 1.7;
}

@media screen and (min-width: 768px) {
  .lathe__specGrid {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }

  .lathe__specGrid > .-span2 {
    grid-column: span 2;
  }

  .lathe__specGrid > .-span3 {
    grid-column: span 3;
  }

  .lathe__specGrid.-cols4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================
   対応材質（カテゴリ行＋チップ）
   ========================================================== */
.lathe__matList {
  margin-top: 32px;
  border-top: 1px solid #e3e8ee;
}

.lathe__matRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  padding: 18px 4px;
  border-bottom: 1px solid #e3e8ee;
}

.lathe__matLabel {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #0d1b2a;
}

.lathe__matLabel::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #005fa0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.lathe__matBadge {
  padding: 3px 10px;
  background: #005fa0;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.lathe__matChips {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.lathe__matChip {
  padding: 7px 16px;
  background: #f2f6f9;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  color: #24323f;
  white-space: nowrap;
}

.lathe__matEtc {
  font-size: 13px;
  color: #777;
}

.lathe__matRow.-special .lathe__matChip {
  background: #eaf4fc;
  border: 1px solid #9cc7e8;
  color: #005fa0;
  font-weight: 700;
  white-space: normal;
}

@media screen and (min-width: 768px) {
  .lathe__matRow {
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    padding: 18px 8px;
  }

  .lathe__matLabel {
    width: 200px;
  }
}

/* 技術エピソード */
.lathe__story {
  padding: 80px 0 40px;
}

.lathe__storyBox {
  margin-top: 32px;
  background: #f4f7fa;
  border-left: 5px solid #005fa0;
  border-radius: 0 8px 8px 0;
  padding: 32px 36px;
}

.lathe__storyText {
  line-height: 2.1;
}

/* FAQ（faq.css の acc__box スタイルを流用する前提の余白調整） */
.lathe__faq {
  padding: 80px 0;
}

.lathe__faq .faq__inner {
  margin-top: 40px;
}

.lathe__faqNav {
  margin-top: 40px;
  text-align: center;
}

/* 関連ページ */
.lathe__related {
  padding: 60px 0 80px;
}

.lathe__relatedList {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.lathe__relatedItem .btn {
  min-width: 220px;
}

@media screen and (max-width: 599px) {
  .lathe__relatedList {
    flex-direction: column;
  }
}
