@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");

:root {
  --gap-x: 56px; /* カラム間隔 */
  --row-h: 56px; /* 1行の高さ */
  --line: #1a1a1a; /* 罫線色 */
}

.fleet-table {
  width: 90%;
  max-width: 900px; /* 画像幅に近い値 */
  margin: 64px auto 200px;
  padding: 0 16px;
}

/* 1行（横罫線つき） */
.fleet-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* 3カラム */
  column-gap: var(--gap-x);
  align-items: center;
  min-height: var(--row-h);
  border-top: 2px solid var(--line);
}
.fleet-row:last-child {
  border-bottom: 2px solid var(--line);
}

/* セル（左に赤丸・中央にラベル・右端に数量） */
.fleet-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: var(--row-h);
}

.dot {
  width: 8px;
  height: 8px;
  background: #e11919;
  border-radius: 50%;
  flex: 0 0 8px;
  translate: 0 1px; /* 視覚中心合わせ */
}

.label {
  flex: 1 1 auto;
  font-size: 15px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.qty {
  margin-left: auto;
  font-size: 15px;
  white-space: nowrap;
}

/* 空セル（項目が無い列）を見えなくする */
.fleet-cell.is-empty {
  visibility: hidden;
}

/* レスポンシブ：幅が狭い時は2カラム→1カラム */
@media (max-width: 900px) {
  .fleet-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  :root {
    --row-h: 52px;
    --gap-x: 28px;
  }
  .fleet-row {
    grid-template-columns: 1fr;
  }
}

#vehicle {
  background-image: url("../images/business/business_002.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
}

body#_2nd {
  background-color: #fff;
}

body#_2nd .hero picture {
  transform: translateY(clamp(140px, 4vw, 150px));
}
body#_2nd .hero-img {
  align-self: end;
}
body#_2nd .page_title {
  position: absolute;
  padding: 4% 10% 4% 150px;
  background-color: #eee;
  width: 120%;
  transform: translateY(-80px) translateX(-110px);
  min-width: 400px;
}
body#_2nd .page_title h3 {
  font-size: clamp(25px, 2.4vw, 40px);
  font-weight: 400;
  margin: 0 0;
}
body#_2nd .page_title_sp {
  display: none;
  padding: 2% 10% 2% 36%;
  background-color: #eee;
  width: 100%;
  transform: translateY(-60px) translateX(-110px);
}
body#_2nd .page_title_sp h3 {
  font-size: clamp(25px, 2.4vw, 30px);
  font-weight: 400;
  margin: 0 0;
}
body#_2nd .hero {
  padding-block: 0 0px;
}
body#_2nd .pan {
  font-size: clamp(10px, 1.2vw, 12px);
  width: 100%;
  display: block;
  text-align: right;
  padding: 0 20px 50px;
}

body#_2nd .section .title-center-2nd {
  text-align: center;
  margin: clamp(8px, 2vw, 16px) 0 clamp(18px, 3vw, 28px);
}

body#_2nd .section .title-center-2nd .ja {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  display: block;
  font-size: clamp(24px, 2vw, 28px);
  line-height: 1;
  padding: 0 0 10px;
  border-bottom: 2px solid var(--brand);
  letter-spacing: 0.4rem;
  width: 100%;
  margin: 0 auto;
  max-width: 360px;
}
body#_2nd .section .title-center-2nd .en {
  display: block;
  margin-top: 0.2em;
  font-size: clamp(12px, 2.2vw, 14px);
  color: var(--brand);
  padding: 10px 0 0;
  font-weight: 400;
}

@media (max-width: 899.98px) {
  body#_2nd .page_title_sp {
    display: block;
  }
}

/* ===== ベース ===== */
.menu-wrap {
  width: min(1100px, 94vw);
  margin: 0 auto 50px;
}

.feature-menu {
  /* グリッド：PC=5列 / タブレット以下=2列 */
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  row-gap: 12px; /* 行の余白だけ付ける */
  column-gap: 0; /* 列間は仕切り線で表現するので gap は0 */
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 仕切り線：各 li の右側に1px。行末だけ外す */
.feature-menu > li {
  position: relative;
  border-right: 1px solid #cfcfcf;
}
.feature-menu > li:nth-child(5n) {
  /* 5列の行末 */
  border-right: none;
}

/* 900px以下：2列にして行末条件を変更 */
@media (max-width: 900px) {
  .feature-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-menu > li {
    border-right: 1px solid #cfcfcf;
  }
  .feature-menu > li:nth-child(2n) {
    /* 2列の行末 */
    border-right: none;
  }
}

/* ===== ボタン見た目 ===== */
.feature-btn {
  /* ボタンをセルいっぱいに広げてクリックしやすく */
  display: block;
  width: 100%;
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;

  padding: 10px 14px 12px;
  color: #2b2b2b;
  text-align: center;
  position: relative;
}

/* 下線アニメ（任意で気持ちよく） */
.feature-btn::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: #2d8a66; /* 緑 */
  transform: scaleX(0.4);
  transform-origin: 50% 50%;
  transition: transform 0.35s cubic-bezier(0.22, 0.9, 0.26, 0.99);
}
.feature-btn.is-red::after {
  background: #e05b63; /* 赤 */
}
.feature-btn:hover::after,
.feature-btn:focus-visible::after,
.feature-btn[aria-current="page"]::after,
.feature-btn.is-active::after {
  transform: scaleX(1);
}

/* フォーカスリング */
.feature-btn:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.15);
  outline-offset: 2px;
}

/* ===== リサイクル section_2nd_1 ===== */

.section_2nd_1 {
  background-image: linear-gradient(#ccc, #eee);
  background-repeat: no-repeat;
  background-size: 60% 60%; /* 横% × 縦% */
  background-position: right top;
}
.section_2nd_1 .wrap-2nd {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-auto-rows: auto;
  gap: 12px;
  align-items: center;
}
.section_2nd_2 .wrap-2nd {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-auto-rows: auto;
  gap: 12px;
  align-items: center;
}

.section_2nd_1 .text-2nd {
  grid-column: 1;
  grid-row: 1;
  width: 80%;
  max-width: 360px;
  margin: 3.2rem auto 0.4rem;
}
.section_2nd_2 .text-2nd {
  grid-column: 2;
  grid-row: 1;
  width: 80%;
  max-width: 360px;
  margin: 3.2rem auto 0.4rem;
}
.section_2nd_1 .text-2nd h3,
.section_2nd_2 .text-2nd h3 {
  margin: 0.2rem 0 0.4rem;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.25;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}
.section_2nd_1 .text-2nd h4 {
  margin: 0.1rem 0 0.9rem;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(20px, 2.2vw, 24px);
}
.section_2nd_1 .text-2nd p {
  margin: 0.2rem 0 0.6rem;
  color: var(--brand);
  line-height: 2.2;
}
.section_2nd_1 .figure-2nd01 {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
}

.section_2nd_2 {
  background-image: linear-gradient(#ccc, #eee);
  background-repeat: no-repeat;
  background-size: 60% 60%; /* 横% × 縦% */
  background-position: left top;
}
.section_2nd_2 .figure-2nd01 {
  grid-column: 2;
  grid-row: 2;
  width: 80%;
  justify-items: end;
  display: grid;
}
.section_2nd_1 .figure-2nd01 img,
.section_2nd_2 .figure-2nd01 img {
  max-width: 360px;
}

.section_2nd_1 .figure-2nd02 {
  grid-column: 2;
  grid-row: 1 / span 2;
}
.section_2nd_2 .figure-2nd02 {
  grid-column: 1;
  grid-row: 1 / span 2;
}
@media (max-width: 899.98px) {
  .section_2nd_1 .wrap-2nd,
  .section_2nd_2 .wrap-2nd {
    grid-template-columns: 1fr;
  }
  .section_2nd_1 .text-2nd,
  .section_2nd_1 .figure-2nd01,
  .section_2nd_1 .figure-2nd02,
  .section_2nd_2 .text-2nd,
  .section_2nd_2 .figure-2nd01,
  .section_2nd_2 .figure-2nd02 {
    grid-column: 1;
    grid-row: auto;
  }
  .section_2nd_1 .figure-2nd01 {
    order: 1;
  }
  .section_2nd_2 .figure-2nd02 {
    order: 1;
  }
  .section_2nd_2 .text-2nd {
    order: 0;
  }
  .section_2nd_2 .figure-2nd01 {
    order: 2;
  }
}

.title2-col {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
}
.title2-col .span-l01,
.title2-col .span-r02 {
  grid-column: span 4;
  background-color: var(--col-red);
  text-align: center;
}
.title2-col .span-r02 {
  background-color: var(--col-green);
}
.title2-col .span-r01,
.title2-col .span-l02 {
  grid-column: span 8;
  text-align: left;
}
.title2-col .span-l01 .ja,
.title2-col .span-r02 .ja {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(20px, 2.2vw, 34px);
  font-weight: 600;
  margin: 0 0 0 15%;
  padding: 0 0 10px;
  border-bottom: 2px solid #fff;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.4rem;
  width: 85%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.title2-col .span-r02 .ja {
  margin: 0 15% 0 0;
}

.title2-col .span-l01 .en,
.title2-col .span-r02 .en {
  margin: 0 0 0 15%;
  padding: 10px 0 0;
  color: #fff;
  width: 85%;
  height: 80px;
}
.title2-col .span-r02 .en {
  margin: 0 15% 0 0;
}

.title2-col .span-r01 .ja,
.title2-col .span-l02 .ja {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.2;
  margin: 0 0 0;
  border-bottom: 2px solid var(--col-red);
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: left;
  align-items: flex-end;
  padding: 0 0 10px 50px;
}
.title2-col .span-l02 .ja {
  border-bottom: 2px solid var(--col-green);
}
.title2-col .span-r01 .en,
.title2-col .span-l02 .en {
  font-size: clamp(11px, 1.2vw, 14px);
  margin: 0 0 0;
  color: var(--brand);
  padding-right: 10px;
  width: 60%;
  height: 80px;
  padding: 10px 0 0 50px;
}
@media (max-width: 899.98px) {
  .title2-col > * {
    grid-column: 1 / -1 !important;
  }
  .title2-col .span-r01,
  .title2-col .span-l02 {
    display: none;
  }
}

/* ===== カンパニー company ===== */

.company-profile {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  line-height: 3;
}

/* 行 */
.company-profile .row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  column-gap: 32px; /* ← 列間の余白（ここが“切れ目”になる） */
}

/* 各セル（左右） */
.company-profile .label,
.company-profile .value {
  padding: 12px 12px; /* ← 行の内側余白をセル側に移動 */
  border-bottom: 1px solid #000; /* ← 横線はセルごとに引く（真ん中は空く） */
}

/* 最上段の上線も左右別で */
.company-profile .row:first-child .label,
.company-profile .row:first-child .value {
  border-top: 1px solid #000;
}

/* 左列の見栄え微調整（任意） */
.company-profile .label {
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-left: 10px;
  text-align: center;
}

/* 右列はそのまま（column-gapがあるので左パディング不要） */
.company-profile .value {
  white-space: normal;
}

.recruit-info {
  width: 90%;
  max-width: 900px;
  margin: 10px auto;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
  padding: 40px 4%;
  border-radius: 10px;
  line-height: 3;
}

.contact-container2 {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.contact-container2 h2 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(25px, 2.2vw, 44px);
  margin-bottom: 10px;
}
.contact-container2 h3 {
  margin-bottom: 30px;
}
.contact-container2 .contact-tel {
  text-align: center;
  font-size: clamp(32px, 2vw, 36px);
  margin: 0 0 26px;
  width: 100%;
}
.contact-container2 .text01 {
  font-size: clamp(22px, 2vw, 26px);
  text-align: center;
  margin: 40px 0 6px;
}
.contact-container2 .footer-contact-btn {
  max-width: 500px;
}
/* 行 */
.recruit-info .row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  column-gap: 32px; /* ← 列間の余白（ここが“切れ目”になる） */
}

/* 各セル（左右） */
.recruit-info .label,
.recruit-info .value {
  padding: 12px 12px; /* ← 行の内側余白をセル側に移動 */
}

/* 最上段の上線も左右別で */
.recruit-info .row:nth-child(2) {
  margin-top: 50px;
}

/* 左列の見栄え微調整（任意） */
.recruit-info .label {
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-left: 10px;
  text-align: center;
  background-color: #efefef;
  border-bottom: 4px solid #fff;
}

/* 右列はそのまま（column-gapがあるので左パディング不要） */
.recruit-info .value {
  white-space: normal;
}

/*--------------------- プライバシーポリシー------------------------ */

.privacy-Policy {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 2;
}

/* 行 */
.privacy-Policy .row {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 32px; /* ← 列間の余白（ここが“切れ目”になる） */
}

/* 各セル（左右） */
.privacy-Policy .label {
  padding: 12px 12px; /* ← 行の内側余白をセル側に移動 */
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-left: 10px;
  border-bottom: 1px solid #000; /* ← 横線はセルごとに引く（真ん中は空く） */
}

.privacy-Policy h3 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  display: block;
  font-size: clamp(24px, 2vw, 28px);
  width: 90%;
  max-width: 1000px;
  margin: 20px auto !important;
  text-align: center;
  line-height: 2;
}
.privacy-Policy ._btn {
  width: 90%;
  max-width: 300px;
  margin: 20px auto;
}

.privacy-Policy ._text01 {
  width: 90%;
  max-width: 600px;
  margin: 20px auto;
  text-align: center;
}
.privacy-Policy ._text02 {
  width: 90%;
  max-width: 1000px;
  margin: 20px auto !important;
  text-align: center;
}

/* 右列はそのまま（column-gapがあるので左パディング不要） */
.privacy-Policy .value {
  white-space: normal;
  padding: 12px 22px;
}

/* モバイル：1列にした時は線が二重にならないよう調整 */
@media (max-width: 899.99px) {
  .company-profile .row,
  .recruit-info .row {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  /* ラベルの下線は消して、値の上線を使って一本化 */
  .company-profile .label,
  .recruit-info .label {
    padding-bottom: 6px;
    border-bottom: 1px dotted #aaa; /* ←項目名の下だけ点線にしたいならこの行を残す */

    text-align: left;
  }
  .company-profile .value,
  .recruit-info .value {
    border-top: none; /* ←点線を使う場合は上線なし */
  }
  /* もし上下とも実線で1本だけにしたい場合は上の2行をこう変更：
     .label { border-bottom: none; }
     .value { border-top: 1px solid #000; } */
}

.company01 {
  background-color: #efefef;
  padding: 30px 0;
}

.grid-company {
  display: grid;
  grid-auto-flow: column; /* 横方向に並べる */
  align-items: center; /* 縦位置を中央に揃える */
  gap: 12px;
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
  overflow-x: auto; /* はみ出したら横スクロール */
}

.grid-company img {
  height: 100%; /* 高さを揃える */
  width: auto; /* 横幅は画像の比率で自動 */
  object-fit: contain; /* 全体を表示（切り取りなし） */
  display: block;
}

.com-in {
  width: 80%;
  margin: 0 auto 30px;
  max-width: 800px;
  background-color: var(--col-green);
  color: #fff;
  padding: 20px 25px;
}

.com-in span {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(20px, 2.2vw, 24px);
}
.com-in p {
  font-size: clamp(12px, 1.2vw, 14px);
}

.company .pank,
.recruit .pank,
.privacy .pank {
  margin-bottom: 0;
}

span.pan-arrow {
  color: VAR(--col-red);
}
