@charset "utf-8";
/* CSS Document */

:root{
  --brand:#0b5cab;
  --brand-2:#1e88e5;
  --ink:#0f172a;
  --muted:#6b7280;
  --bg:#ffffff;
  --bg-soft:#f4f7fb;
  --line:#e5e7eb;
  --radius-xl: 18px;
  --radius-lg: 14px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,.08);
/*  --container: 1280px;*/
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.eyebrow{display: inline-block;
  width: auto;
  padding-bottom: 40px;
  margin: 0 auto;
  font-size: 1.6rem;
  font-weight: bold;
  color: #005bac;
}
.eyebrow::after {
  content: "";
  display: block;
  width: 100%; /* h1 の幅に合わせる */
  height: 4px; /* ラインの太さ */
  margin: 8px auto 0; /* タイトルとの余白 */
  background: linear-gradient(to right, #005bac, #E60019);
  border-radius: 2px;
}

/* Hero */
.mainimg { position: relative; isolation: isolate; }
.mainimg-media { position: relative; block-size: 24vh; min-block-size: 250px; display: grid; place-items: center; overflow: hidden; }
.mainimg-media::after { content: ""; position: absolute; inset: auto 0 0 0; block-size: 60%; }
.mainimg-media img { position: absolute; inset: 0; inline-size: 100%; block-size: 100%; object-fit: cover; }
.mainimg-heading {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%); /* 1280px幅を中央に固定 */
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;   /* コンテナの右端に寄せる */
  text-align: right;       /* テキストも右揃え */
  padding: 0 20px;         /* 余白を確保 */
  box-sizing: border-box;
  z-index: 2;
}

.mainimg .title {
  font-size: clamp(36px, 4.7vw, 60px);
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  position: relative;
  display: inline-block;
  text-align: center;
  /* シャドウを強化（濃く & 広め） */
  text-shadow:
    0 4px 12px rgba(0, 0, 0, 0.8),   /* 下方向に濃い影 */
    0 0 8px rgba(0, 0, 0, 0.7);      /* 文字全体を縁取り */
}

.mainimg-heading .subtitle {
  margin-top: 8px;
  font-size: clamp(14px, 1.6vw, 20px);
  color: #fff;
  font-weight: 500;
  line-height: 1.4;

  /* サブタイトルも少し濃いめに */
  text-shadow:
    0 3px 8px rgba(0, 0, 0, 0.7),
    0 0 6px rgba(0, 0, 0, 0.6);

  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.intro { position: relative; max-width: 1280px; width: 100%; margin: 0 auto; }
.intro-card { max-width: 100%; }
.intro-grid { display: grid; }
.intro-copy { max-width: 1280px; width: 100%; }
.intro-copy h2 { margin: 60px 0 8px; font-size: clamp(16px, 2.0vw, 20px); }
.intro-copy p { margin: .25rem 0 70px; color: #000; font-size: 14px; }


/* 基本レイアウト */
.section{padding:64px 0}


/* ヘッダー */
.ci-head{text-align:left; position:relative; margin-bottom:28px}
.ci-accent{
  position:absolute; left:50%; top:-10px; transform:translateX(-50%);
  width:140px; height:4px; background:#005bac; border-radius:4px;
}
.ci-head h2{
  margin:6px 0 6px; font-size:clamp(22px,2.6vw,30px); font-weight:800;
}
.ci-lead{color:#4b5563; margin:0}

/* グリッド */
.ci-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:26px 28px;
}
@media (max-width: 980px){
  .ci-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .ci-grid{ grid-template-columns: 1fr; }
}

/* カード */
.ci-card{
  background:#fff;
  border:1px solid #e6edf6;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
  display:flex; flex-direction:column;
}
.ci-thumb{display:block}
.ci-thumb img{
  width:100%; height:auto; display:block;
  aspect-ratio: 4/2; object-fit: cover;
  border-bottom:1px solid #e6edf6;
  border-top-left-radius:16px; border-top-right-radius:16px;
}
.ci-body{padding:14px 16px 16px}
.ci-title{font-size:1.0rem; margin:.2rem 0 .35rem; line-height:1.45}
.ci-title a{color:#006ab7; text-decoration:none}
.ci-title a:hover{text-decoration:underline}
.ci-desc{color:#000; margin:0 0 0; min-height:2.6em; font-size:.9rem;}

/* ボタン（小さめピル） */
.ci-btn{
  align-self:flex-start;
  display:inline-flex; align-items:center; justify-content:center;
  margin-top: 12px; padding:8px 14px; border-radius:999px;
  background:#0b5cab; color:#fff; font-size:.9rem;
  text-decoration:none; box-shadow:0 2px 6px rgba(0,0,0,.12);
  transition:opacity .2s ease, transform .15s ease;
}
.ci-btn:hover{opacity:.9; transform:translateY(-1px)}
.ci-btn.ghost{
  background:#e6f0fb; color:#0b5cab; box-shadow:none;
}

/* 目標 */
.section.mission {
  padding: 64px 0;
}

/* 見出し */
.mission-head h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  margin: 0 0 12px;
  position: relative;
}

.mission-lead {
  margin: 0 0 28px;
  color: #333;
  line-height: 1.6;
}

/* 青背景のボックス */
.mission-box {
  background: #f9faff;   /* 薄いブルー */
  padding: 32px;
  border-radius: 6px;
}

.slogan-en {
  font-size: 1rem;
  color: #1e40af;
  margin: 0 0 6px;
  font-weight: 600;
}
.slogan-logo {
  font-size: clamp(26px, 3vw, 38px);
  color: #005bac;
  font-weight: 800;
  margin: 0 0 20px;
}

.explain {
  margin: 0 0 12px;
  color: #111;
  line-height: 1.65;
}
.note {
  font-size: .9rem;
  color: #444;
}


/* 経営方針 */
.mv2-head h2{
  margin:0 0 10px;
  font-size:clamp(22px,2.6vw,30px);
  font-weight:800;
  position:relative;
}

.mv2-lead{margin:12px 0 22px; color:#111; line-height:1.7}

/* 本文ボックス */
.mv2-box{
  background:#f4f7fc;             /* うすいブルー */
  border-radius:8px;
  padding:28px;
}

/* 2カラム */
.mv2-grid{
  display:grid;;
}
@media (max-width: 900px){
  .mv2-grid{ grid-template-columns: 1fr; }
}

/* 左コラムのテキスト */
.mv2-block{ margin-bottom:50px; width: 100%; font-size:.9rem}
.mv3-block{ margin-bottom:50px; width: 100%; font-size:.9rem; text-align: right;}
.mv2-h{
  color:#0b5cab; font-weight:600; font-size:1.6rem;
  margin:0 0 6px;
}
.mv2-brand { display: grid; grid-template-columns: 30% 280px; gap:20px; width: 100%;}
.mv2-kv{ margin:8px 0; padding-left:1.2em }
.mv2-kv ul { display: grid; grid-template-columns: 30% 280px; gap:20px;}
.mv2-kv li{ margin:.2em 0; }
.mv2-kv li:nth-child(1+2n) { clear: both; }
.mv2-note{ color:#394455; margin:.4em 0 0 }
.mv2-sub{ font-weight:600; margin:.1em 0 .4em; }

/* 右側ポスター */
.mv2-side{ align-self:start }
.mv2-poster{
  /*box-shadow:0 0px 7px rgba(0,0,0,.05);*/
}
.mv2-poster img{
  width:100%; height:auto; display:block;
  min-width:280px;               /* 画像が大きくなり過ぎないように */
}
.guideline {
  background: #f4f7fb; /* 薄いグレー背景 */
  padding: 32px;
  border-radius: 6px;
  margin: 32px 0;
}

.guideline-title {
  color: #0b5cab;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 10px;
}

.guideline-lead {
  margin: 0 0 20px;
  line-height: 1.6;
  color: #333;
}

.guideline-table {
  display: grid;
  gap: 12px;
}

.guideline-table .row {
  display: grid;
  grid-template-columns: 160px 1fr; /* 左160px固定、右は可変 */
  align-items: start;
  gap: 12px;
}

.guideline-table .col.key {
  color: #111;
}

.guideline-table .col.value {
  color: #111;
  font-size: .9rem;
}



/* 分公司、分公司 */
.of-head h2{
  margin: 0;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  position: relative;
  padding-top: 2px;
}

/* ピルタブ */
.of-tabs{ margin: 16px 0 50px; }
.pill{
  display:inline-flex; align-items:center; justify-content:center;
  padding:9px 14px; border-radius:999px;
  background:#e8f0fe; color:#0b5cab; font-weight:700;
  text-decoration:none; font-size:.92rem;
}
.pill.is-active{ background:#0b5cab; color:#fff; }

/* セクション内のブロック */
.of-block { margin-top: 28px; }
.of-company, .of-section {
  margin: 70px 0 30px;
  font-weight: 600;
  color: #0b5cab;
}
.of-branch{
  margin: -100px 0 10px;
  padding-top: 100px;
  font-weight: 600;
  color: #0b5cab;
}
.of-company{ font-size: 1.2rem; }
.of-section{ font-size: 1.2rem; }
.of-branch{ font-size: 1.1rem; }

/* テーブル風レイアウト */
.of-table{
  display: grid;
  grid-template-columns: 1fr 1fr;  /* 左:地址 右:电话 */
  gap: 0;
  overflow: hidden;
  font-size: .9rem;
}
.of-th{
  background: #f5f8ff;
  font-weight: 600;
  color: #111;
  padding: 12px 16px;
}
.of-th:last-child{ border-right: 0; }

.of-td{
  background:#fff;
  padding: 14px 16px;
  color:#0f172a;
}
.of-td:nth-of-type(2n){ border-left: 6px solid #fff; }

/* レスポンシブ */
@media (max-width: 860px){
  .of-table{ grid-template-columns: 1fr; }
  .of-th:nth-child(2){ display:none; }  /* 電話ヘッダ非表示 */
  .of-td:nth-of-type(2){ border-left:0; } /* 2列目の白帯を無効 */
  .of-td:nth-of-type(2){ background:#f9fbff; } /* 電話行も同色 */
}


/* 見た目はお好みで。ここでは pill っぽいボタン */
.spin-btn {
  display: block;
  flex-direction: column;
  width: 31%;
  gap: 25px;
  align-items: stretch;
  padding: 20px 16px;
  border: 1px solid #004D9E;
  border-radius: 7px;
  background: #FcFcFc;
  color: #004D9E;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  vertical-align: sub;
  /*transition: opacity .2s ease, transform .15s ease;*/
}
.spin-btn:hover {
  opacity: .92;
  /*transform: translateY(-1px);*/
  background: #004D9E;
  color: #fff;
}

.spin-btn__icon {
  width: auto;
  height: 100px;
  display: block;
  place-items: center;   /* 中央寄せ */
  flex-shrink: 0;
  text-align: center;
  margin: 0 auto 8px;
  padding: 0;
}
.spin-btn__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;   /* 枠内に収める */
  display: block;
}

/* ホバー時: 1回だけ反転 + 白化 */
.spin-btn:hover .spin-btn__icon img,
.spin-btn:focus-visible .spin-btn__icon img {
  animation: spinY 0.6s ease forwards; 
  filter: brightness(0) invert(1); /* 白に変換 */
}
.spin-btn__label {
  font-size: 1.2rem;
  margin: 0;
  padding: 0;
}


/* 縦軸1回転（180度反転でもOKならここで調整可能） */
@keyframes spinY {
  0%   { transform: rotateY(0deg); }
  100% { transform: rotateY(180deg); }
}

/* アニメーションを減らしたいユーザー対応 */
@media (prefers-reduced-motion: reduce){
  .spin-btn * {
    animation: none !important;
    transition: none !important;
  }
}


/* 中国区 */
/* 見た目はお好みで。ここでは pill っぽいボタン */
.spin-btn2 {
  display: block;
  width: 31%;
  gap: 15px;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid #006ab7;
  border-radius: 10px;
  background: #fff;
  color: #006ab7;
  text-decoration: none;
  font-weight: 600;
  /*transition: opacity .2s ease, transform .15s ease;*/
}
.spin-btn2:hover {
  opacity: .92;
  /*transform: translateY(-1px);*/
  background: #006ab7;
  color: #fff;
}

.spin-btn__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;   /* 枠内に収める */
  display: block;
}

/* ホバー時: 1回だけ反転 + 白化 */
.spin-btn2:hover .spin-btn__icon img,
.spin-btn2:focus-visible .spin-btn__icon img {
  animation: spinY 0.6s ease forwards; 
  filter: brightness(0) invert(1); /* 白に変換 */
}


/* 縦軸1回転（180度反転でもOKならここで調整可能） */
@keyframes spinY {
  0%   { transform: rotateY(0deg); }
  100% { transform: rotateY(180deg); }
}

/* アニメーションを減らしたいユーザー対応 */
@media (prefers-reduced-motion: reduce){
  .spin-btn2 * {
    animation: none !important;
    transition: none !important;
  }
}


@media (min-width: 1280px) and (max-width: 1350px){
  .intro-grid { grid-template-columns: 1fr; }
  .intro-copy { width: 100%; margin: 0 auto; }
  .card-media { min-block-size: 300px; }
}

@media (max-width: 1280px){
  .intro-grid { grid-template-columns: 1fr; }
  .intro-copy { width: 94%; margin: 0 auto; }
  .card-media { min-block-size: 300px; }
}

@media (max-width: 900px){
  .intro-grid { grid-template-columns: 1fr; }
  .card-media { min-block-size: 300px; }
  .mainimg-heading {
    right: 16px;   /* 端から16px */
    bottom: 24%;
  }
}

@media (max-width: 765px){
  .intro-grid { grid-template-columns: 1fr; }
  .card-media { min-block-size: 300px; }
  .mainimg-heading {
    right: 16px;   /* 端から16px */
    bottom: 24%;
  }
}

/* Strengths */
.section{ width: 100%; margin: 0 auto; padding:50px 0 0}
.section.alt{background:#f9faff; padding-bottom: 70px;}
.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:20px}
.grid-2{display:grid; grid-template-columns: 60% 36%; /* 左7割 : 右3割 */; gap:4%;margin-bottom: 80px;}
/* 偶数番目のケースだけ左右反転 */
.grid-2:nth-of-type(even) {
  grid-template-columns: 38% 60%; /* 左30% / 右70% */
  gap:5%;margin-bottom: 80px;
}
.grid-2:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 900px){
  .grid-3,.grid-2{grid-template-columns:1fr}
  .grid-2:nth-of-type(even) {
  grid-template-columns: 1fr;
}
  /* 2段目と4段目の順番を修正 */
  #strengths .grid-2 {
    grid-template-columns: 1fr; /* 1列レイアウト */
    gap: 16px;                  /* お好みで調整 */
  }

  /* 偶数段（2段目・4段目…）だけ順序を入れ替え */
  #strengths .grid-2:nth-of-type(even) .visual { order: 1; }
  #strengths .grid-2:nth-of-type(even) .copy   { order: 2; }
}
.card{background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; display:flex; flex-direction:column; box-shadow:var(--shadow-sm)}
.card-media{aspect-ratio:16/7; width: 100%;overflow: hidden;position: relative;}
.card-media img{
  position: absolute;
  inset: 0;              /* top:0; right:0; bottom:0; left:0; の短縮 */
  width: 100%;
  height: 100%;
  object-fit: cover;     /* 枠いっぱいにカバーして表示 */
  object-position: center; /* 中央基準でトリミング */
  display: block;
}
/* Strengthセクションのカード画像を制御 */
.section#strengths .card-media img {
  width: 100%;
  height: auto;
  max-width: 750px;
  max-height: 350px;
  object-fit: cover;      /* 枠をはみ出す場合はトリミング */
  display: block;
  margin: 0 auto;         /* 中央寄せ */
}
.card-body{padding:18px}
.card h3{margin:.2rem 0 .4rem; font-size:1.0rem}
.card p{margin:0; font-size: 14px;}
.section#strengths .copy{padding:0px}

/* Case studies */
.case{align-items:center}
.case .visual{ overflow:hidden; max-width: 750px; width: 100%;}
.case .copy{padding:10px}
.case h3{margin:.2rem 0 .6rem; font-size:1.3rem}
.copy p{font-size: .9rem;}
.chip{display:inline-flex; font-weight:700; font-size:.85rem; color:var(--brand)}
.chip::before{content:"●"; font-size:.65rem; color:var(--brand)}

/* Other solutions */
#others-title.eyebrow{
  display: inline-block;
  width: auto;
  padding-bottom: 40px;
  margin: 0 auto;
  font-size: 1.6rem;
  font-weight: bold;
}
/* PC幅：5列 */
.other-solutions{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:18px;
}

/* 900px以下：2列 */
@media (max-width:768px){
  .other-solutions{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 600px以下：1列（必要なら） */
@media (max-width:600px){
  .other-solutions{
    grid-template-columns: 1fr;
  }
}
.solution-card {
  display: flex;             /* 縦並びの基本 */
  flex-direction: column;    /* 画像 → テキストの順 */
  background: #fff;
  overflow: hidden;
  text-align: center;        /* テキストを中央寄せ（お好みで） */
  text-decoration: none;
  color: #000;
  font-size: 1.1rem;
}
/* サムネイル */
.solution-card .thumb {
  background: #e8eef7;  /* ローディング時の背景 */
}
.solution-card .thumb img {
  width: 100%;          /* カード幅にフィット */
  height: auto;         /* 縦横比を維持 */
  display: block;
}
.solution-card .thumb:hover img {
  transform: scale(1.05); /* 5% 拡大 */
}
/* テキスト部分 */
.solution-card .meta {
  padding: 14px;
  font-weight: 700;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #1E90FF, #005bac);
  color: #fff;
  font-size: 0.9rem;
  padding: 8px 20px 10px;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity 0.3s ease; /* hoverの透過アニメーション */
}

.btn:hover {
  opacity: 0.8; /* 少し透過（80%） */
}


/* タイトル */
.br-title{
  margin:0 0 6px;
  font-size:clamp(20px,2.2vw,26px);
  font-weight:600;
}
.br-lead{color:#475569;margin:0 0 36px}

/*.branches { background: url("../profile/network/img/logisteed_line.png") right 100px no-repeat; }*/

/* ピル型タブ */
.br-tabs{display:flex;flex-wrap:wrap;gap:10px;margin:15px 0 50px}
.br-shortcuts{display:flex;flex-wrap:wrap;gap:30px;margin:15px 0 70px}
.pill{
  display:inline-flex;align-items:center;justify-content:center;
  padding:8px 12px;border-radius:999px;text-decoration:none;
  background:#e9f2fe;color:#0b5cab;font-size:1.1rem;
  transition:opacity .2s ease,transform .15s ease;
}
.pill:hover{opacity:.9;transform:translateY(-1px)}
.pill.is-active{background:#0b5cab;color:#fff}
.pill.sm{padding:7px 10px;font-size:.85rem}

/* 地域見出し */
.br-region{
  margin:44px 0 10px;
  font-size:1.1rem;font-weight:600;color:#0b5cab;
}

/* テーブル風リスト */
.br-list{
  display: grid;
  grid-template-columns: 200px 0.8fr 1fr; /* 都市 / 会社 / 分公司リンク */
  column-gap: 0;
  row-gap: 0;
  border-radius: 6px;
  overflow: hidden;
}
.br-row{
  display: contents;
}
/*.br-row{
  display:grid;
  grid-template-columns: 200px 0.8fr 1fr; 
  gap:12px;
  font-size: .9rem;
  padding:10px 12px;
  background:#f6f9ff;
  border-top: 6px solid #fff; 
  align-items:center;
}*/

/* セルの見た目（現在値を維持） */
.br-row .city{ font-weight:600; color:#111; background:#f6f9ff; padding:10px 12px; }
.br-row .company{ color:#334155; background:#f6f9ff; padding:10px 12px; }
.br-row .branch{ background:#f6f9ff; padding:10px 12px; }
.br-row .company a, .br-row .branch a{ color:#0b5cab; text-decoration: underline; }
.br-row .branch a:hover{ text-decoration: underline; }

/* 行間の白帯を再現したい場合は各セル上に白の帯を付ける */
.br-row .city,
.br-row .company,
.br-row .branch{
  border-top: 6px solid #fff;
}

/* レスポンシブ */
@media (max-width: 900px){
  .br-list{ grid-template-columns: 90px 1fr; }
  .br-row .branch{ grid-column: 2 / -1; }
}
@media (max-width: 520px){
  .br-list{ grid-template-columns: 1fr; }
  .br-row .city,
  .br-row .company,
  .br-row .branch{ grid-column: 1 / -1; }
}


.branch-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 0.95rem;
}
.branch-table tr { border: 3px solid #fff; }
.branch-table th,
.branch-table td {
  padding: 10px 12px;
  margin: 0 0 1px;
  text-align: left;
  vertical-align: top;
  color: #000;
  font-size: .9rem; 
}
.branch-table td.w-city { width: 10%; }
.branch-table td.w-company { width: 28%; }
.branch-table td.w-branch { width: 14%; }
.branch-table td.w-address { width: 36%; }
.branch-table td.color {
  background: #f6f9ff;
}

.branch-table td a {
  color: #0b5cab;
  text-decoration: underline;
}
.branch-table td a:hover {
  text-decoration: none;
}

/* レスポンシブ：スマホでは縦並びカード風にする場合 */
@media (max-width: 600px) {
  .branch-table,
  .branch-table thead,
  .branch-table tbody,
  .branch-table th,
  .branch-table td,
  .branch-table tr {
    display: block;
  }

  .branch-table thead {
    display: none;
  }

  /* 表を中央寄せして幅いっぱいに */
  .branch-table {
    width: 100%;
    margin: 0 auto;
  }

  /* カード化された各行を少し整える */
  .branch-table tr {
    margin: 0 auto 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px;
    background: #fff;
  }

  /* 各セルを読みやすく（テキスト折返し防止）*/
  .branch-table td {
    padding: 6px 10px;
    word-break: break-word;
  }

  .branch-table td:first-child {
    font-weight: bold;
    color: #0b5cab;
  }
  .branch-table td.w-city { width: 100%; }
.branch-table td.w-company { width: 100%; }
.branch-table td.w-branch { width: 100%; }
.branch-table td.w-address { width: 100%; }
.branch-table td.color {
  background: #fff;
}
}


.worldmap {
  text-align: center;
  margin: 40px 0;
}

.map-img {
  height: auto;
}