@charset "UTF-8";
/* ==========================================================
   マシニング加工ページ（page-milling.php）専用スタイル
   technology.css / faq.css / lathe.css と併用する前提の差分のみ定義
   ※ 導入文・強み・PROCESS・スペックカード・対応材質・FAQ・関連ページは
     旋盤加工ページと共通コンポーネントのため lathe.css をそのまま利用する
   ========================================================== */

/* ==========================================================
   保有するマシニングセンタ
   ========================================================== */
.milling__mcLead {
  margin-top: 24px;
  line-height: 2;
}

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

.milling__mcItem {
  position: relative;
  background: #fff;
  border: 1px solid #e3e8ee;
  border-left: 4px solid #005fa0;
  border-radius: 6px;
  padding: 26px 28px;
  -webkit-box-shadow: 0 4px 16px rgba(13, 27, 42, .06);
  box-shadow: 0 4px 16px rgba(13, 27, 42, .06);
}

.milling__mcCount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 4px;
}

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

.milling__mcUnit {
  font-size: 15px;
  font-weight: 700;
  color: #005fa0;
}

.milling__mcTitle {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #0d1b2a;
}

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

.milling__mcNav {
  margin-top: 32px;
}

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

/* ==========================================================
   旋盤＋マシニングの一貫対応
   ========================================================== */
.milling__combo {
  padding: 80px 0;
}

.milling__comboLead {
  margin-top: 40px;
  line-height: 2.1;
}

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

.milling__caseItem {
  background: #f4f7fa;
  border-radius: 8px;
  padding: 28px 26px;
}

.milling__caseLabel {
  display: inline-block;
  padding: 4px 12px;
  background: #005fa0;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #fff;
}

.milling__caseTitle {
  margin-top: 14px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  color: #0d1b2a;
}

.milling__caseFlow {
  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;
  margin-top: 16px;
}

.milling__caseStep {
  padding: 6px 14px;
  background: #fff;
  border: 1px solid #9cc7e8;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #005fa0;
  white-space: nowrap;
}

.milling__caseArrow {
  width: 14px;
  height: 1px;
  background: #9cc7e8;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.milling__caseArrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #9cc7e8;
  border-right: 1px solid #9cc7e8;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.milling__caseDesc {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.9;
}

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

/* ボタン内の日本語が折り返さない幅を確保 */
.milling__comboNav .btn,
.milling__mcNav .btn {
  min-width: 280px;
}

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

/* ==========================================================
   CAD/CAM・受入データ形式
   ========================================================== */
.milling__data {
  padding: 80px 0 40px;
}

.milling__dataBox {
  margin-top: 32px;
  border-top: 1px solid #e3e8ee;
}

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

.milling__dataLabel {
  -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;
}

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

.milling__dataValue {
  font-size: 18px;
  font-weight: 700;
  color: #005fa0;
}

.milling__dataDesc {
  margin-top: 10px;
  font-size: 13px;
  color: #555;
  line-height: 1.8;
}

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

  .milling__dataLabel {
    width: 200px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 2px;
  }

  .milling__dataLabel::before {
    margin-top: 8px;
  }

  .milling__dataBody {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
