@charset "UTF-8";

/**
 * 仕事内容ページ専用スタイル
 */

/* 1100px中央揃えのコンテナ */
.work-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

/* リード文（PC版） */
.lead-text {
  text-align: center;
  color: #1e63b3;
  font-size: 1.15rem;
  margin-bottom: 60px;
  line-height: 1.8;
  background-color: #f2f7fc;
  padding: 30px 20px;
  border-radius: 4px;
}
.lead-text strong {
  font-weight: bold;
}

/* ステップ・プロセス部分のレイアウト */
.process-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.process-card {
  flex: 1;
  text-align: center;
  max-width: 280px;
}

/* 画像表示部分 */
.circle-image {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 0 auto;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* 各ステップの背景画像パス設定 */
.img-pole {
  background-image: url("../images/power_distribution/works/w_step1.webp");
}
.img-wiring {
  background-image: url("../images/power_distribution/works/w_step2.webp");
}
.img-removal {
  background-image: url("../images/power_distribution/works/w_step3.webp");
}
.img-loading {
  background-image: url("../images/transportation/works/w_step1.webp");
}
.img-transport {
  background-image: url("../images/transportation/works/w_step2.webp");
}
.img-unloading {
  background-image: url("../images/transportation/works/w_step3.webp");
}

/* 円の中のテキストコンテナ（位置を確実に50px下げる） */
.circle-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  z-index: 2;
  transform: translateY(40px);
}

/* テキストスタイル */
.process-title {
  font-size: 1.3rem;
  color: #111111;
  margin: 0 0 10px 0;
  font-weight: bold;
}

.process-desc {
  font-size: 0.95rem;
  color: #333333;
  margin: 0;
  line-height: 1.3;
}

/* 太い矢印（CSSで作成 - PC版） */
.arrow {
  position: relative;
  width: 40px;
  height: 10px;
  background-color: #1e63b3;
  margin: 0 10px;
  flex-shrink: 0;
}
.arrow::after {
  content: "";
  position: absolute;
  right: -8px;
  top: -7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 14px;
  border-color: transparent transparent transparent #1e63b3;
}

/* 下部詳細文章（PC版） */
.description-block {
  max-width: 800px;
  margin: 0 auto;
}

.description-block p {
  margin-bottom: 25px;
  text-align: justify;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* 改行コントロール */
.pc-only { display: inline; }

/* 📱 レスポンシブ対応 (タブレット・スマホ) */
@media (max-width: 768px) {
  .work-container {
    padding: 40px 0; /* 左右の余白をなくし、子要素の%で調整できるように変更 */
  }
  
  /* スマホ版リード文：横幅90%・中央揃え */
  .lead-text {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    font-size: 1rem;
    text-align: left;
    margin-bottom: 40px;
    padding: 20px 15px;
  }
  
  .pc-only { display: none; }

  /* 縦並びの隙間（サークル画像と矢印の間のスペース）を小さく */
  .process-wrapper {
    flex-direction: column;
    gap: 5px;
  }

  .process-card {
    max-width: 100%;
  }

  /* スマホ時：矢印の長さを半分にし、無駄な上下マージンを排除 */
  .arrow {
    width: 10px;
    height: 20px;
    margin: 0 auto;
  }
  
  /* スマホ用の矢印の先端の位置調整 */
  .arrow::after {
    right: -7px;
    bottom: -8px;
    top: auto;
    border-width: 14px 12px 0 12px;
    border-color: #1e63b3 transparent transparent transparent;
  }

  /* スマホ版下部詳細文章：横幅90%・中央揃え */
  .description-block {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  .description-block p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
}


@charset "UTF-8";

/**
 * 仕事内容：詳細セクション専用スタイル
 */

/* コンテンツ幅を最大800pxに制限して中央揃え */
.work-detail-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0;
  box-sizing: border-box;
}

/* 各セクションの余白 */
.detail-section {
  margin-bottom: 80px;
}
.detail-section:last-child {
  margin-bottom: 0;
}

/* 上部（見出し・キャッチ・画像）の横並びレイアウト */
.detail-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* 画像の下ラインに見出しのベースラインを合わせる */
  margin-bottom: 30px;
}

/* 左側：タイトル・キャッチコピーブロック */
.detail-title-block {
  flex: 1;
  padding-right: 20px;
}

/* 数字付き見出し */
.detail-num-title {
  font-size: 1.8rem;
  color: #1e63b3; /* カンプの青 */
  font-weight: bold;
  margin: 0 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #1e63b3; /* 見出しの下線 */
  display: flex;
  align-items: baseline;
}
.detail-num-title .num {
  font-size: 2.4rem;
  margin-right: 12px;
  line-height: 1;
}

/* キャッチコピー */
.detail-catch {
  font-size: 1.25rem;
  color: #111111;
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
}

/* 右側：画像ブロック（カンプの比率を意識した角丸長方形） */
.detail-image-block {
  width: 320px;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* 画像パス設定（実際のファイル名に調整してください） */
.img-detail-pole {
  background-image: url("../images/power_distribution/works/w_step1_image.webp");
}
.img-detail-wiring {
  background-image: url("../images/power_distribution/works/w_step2_image.webp");
}
.img-detail-removal {
  background-image: url("../images/power_distribution/works/w_step3_image.webp");
}
.img-detail-loading {
  background-image: url("../images/transportation/works/w_step1_image.webp");
}
.img-detail-transport {
  background-image: url("../images/transportation/works/w_step2_image.webp");
}
.img-detail-unloading {
  background-image: url("../images/transportation/works/w_step3_image.webp");
}

/* 下部：詳細説明文ブロック（薄い水色の背景枠） */
.detail-desc-block {
  background-color: #f2f7fc; /* カンプ通りの爽やかな薄い水色背景 */
  padding: 35px 30px;
  border-radius: 4px;
}
.detail-desc-block p {
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.8;
  margin: 0 0 15px 0;
  text-align: justify;
}
.detail-desc-block p:last-child {
  margin-bottom: 0;
}

/* 📱 レスポンシブ対応 (タブレット・スマホ) */
@media (max-width: 768px) {
  /* スマホ時は各セクション自体を90%幅にして中央揃えに */
  .detail-section {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
  }

  /* 上部レイアウトを縦並びに変更 */
  .detail-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
  }

  .detail-title-block {
    width: 100%;
    padding-right: 0;
  }

  .detail-num-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  .detail-num-title .num {
    font-size: 2rem;
  }

  .detail-catch {
    font-size: 1.1rem;
  }

  /* 画像を横いっぱいに広げる */
  .detail-image-block {
    width: 100%;
    height: auto; 
  }

  /* 説明文ボックスの余白をスマホ用に少し狭める */
  .detail-desc-block {
    padding: 25px 20px;
  }
  .detail-desc-block p {
    font-size: 0.9rem;
  }
}


@charset "UTF-8";

/**
 * 仕事内容：まとめ・メッセージセクション専用スタイル（1100px幅版）
 */

/* コンテンツ幅を最大1100pxに制限して中央揃え */
.work-summary-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px; /* 左右に少しクッション用の余白を確保 */
  box-sizing: border-box;
  position: relative; /* 背景の円を配置する基準点 */
  overflow: hidden;   /* 円が画面外にはみ出るのを防ぐ */
}

/* カンプ右側の大きな薄グレーの円形グラフィック */
.work-summary-container::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px; /* 1100pxの枠内に綺麗に収まる位置に調整 */
  transform: translateY(-50%);
  width: 520px; /* カンプの比率に合わせた円のサイズ */
  height: 520px;
  border-radius: 50%;
  
  /* 👇 ここに右側の薄いグレーの円形イラスト画像を割り当てます */
  background-image: url("../images/power_distribution/works/summary_bg.webp"); /* もしくは .webp */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  
  /* イラストがない場合のダミー背景（薄いグレーのプレースホルダー） */
  background-color: #f5f5f5; 
  
  z-index: 1;
}

/* コンテンツ幅を最大1100pxに制限して中央揃え */
.work-summary-container_t {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px; /* 左右に少しクッション用の余白を確保 */
  box-sizing: border-box;
  position: relative; /* 背景の円を配置する基準点 */
  overflow: hidden;   /* 円が画面外にはみ出るのを防ぐ */
}

/* カンプ右側の大きな薄グレーの円形グラフィック */
.work-summary-container_t::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px; /* 1100pxの枠内に綺麗に収まる位置に調整 */
  transform: translateY(-50%);
  width: 520px; /* カンプの比率に合わせた円のサイズ */
  height: 520px;
  border-radius: 50%;
  
  /* 👇 ここに右側の薄いグレーの円形イラスト画像を割り当てます */
  background-image: url("../images/transportation/works/summary_bg.webp"); /* もしくは .webp */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  
  /* イラストがない場合のダミー背景（薄いグレーのプレースホルダー） */
  background-color: #f5f5f5; 
  
  z-index: 1;
}



/* テキストを囲むインナーブロック（イラストより前面に出す） */
.work-summary-inner {
  position: relative;
  z-index: 2; /* 背景イラストの上に正確に重ねる */
  max-width: 760px; /* テキストが広がりすぎず、カンプと同じ折り返しになるよう制限 */
}

/* 文章の基本スタイル */
.summary-text {
  font-size: 1.05rem;
  color: #333333;
  line-height: 1.9;
  margin: 0 0 35px 0;
  text-align: justify;
}
.summary-text:last-child {
  margin-bottom: 0;
}

/* 太字の指定（1行目と最終行用） */
.summary-text.font-bold {
  font-weight: bold;
  color: #111111;
}

/* PC用改行のコントロール */
.pc-only { display: inline; }

/* 📱 レスポンシブ対応 (タブレット・スマホ) */
@media (max-width: 768px) {
  /* スマホ時は全体の横幅を90%にして中央揃え */
  .work-summary-container {
    width: 80%;
    padding: 50px 0;
  }

  /* スマホ用の改行解除 */
  .pc-only { display: none; }

  /* スマホ時の背景円の調整（文字の読みやすさを最優先に） */
  .work-summary-container::after {
    width: 320px;
    height: 320px;
    right: -20px;
    opacity: 0.8; /* 文字と被って読みにくくならないよう薄く透過 */
  }
  .work-summary-container_t {
    width: 80%;
    padding: 50px 0;
  }

  /* スマホ用の改行解除 */
  .pc-only { display: none; }

  /* スマホ時の背景円の調整（文字の読みやすさを最優先に） */
  .work-summary-container_t::after {
    width: 320px;
    height: 320px;
    right: -20px;
    opacity: 0.8; /* 文字と被って読みにくくならないよう薄く透過 */
  }

  .work-summary-inner {
    max-width: 100%;
  }

  .summary-text {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
}


@charset "UTF-8";

/**
 * 仕事内容：研修セクション専用スタイル
 */

/* 横幅を最大1000pxに制限して中央揃え */
.training-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px;
  box-sizing: border-box;
}

/* セクション見出しエリア */
.training-header {
  margin-bottom: 70px;
}
.training-title {
  font-size: 28px; /* pxに固定 */
  color: #1e63b3;
  font-weight: bold;
  margin: 0 0 5px 0;
}
.training-subtitle {
  font-size: 14px; /* pxに固定 */
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

/* ステップカードを包むボックス（STEP文字を絶対配置するための基準） */
.step-item-box {
  position: relative;
  margin-bottom: 80px;
  padding-top: 45px;
}

/* カンプ通りの「STEP X」の文字配置（正確な位置再現） */
.step-label {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 52px; /* 大きな文字をpxで正確に固定 */
  font-weight: 800;
  color: #c9daf0;
  line-height: 1;
  letter-spacing: 0.02em;
  z-index: 1;
}

/* 白背景のステップカード本体 */
.step-card {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  border: 1px solid #b2cded;
  border-radius: 6px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(30, 99, 179, 0.04);
}

/* 左側：線画イラスト用のブロック */
.step-image-block {
  width: 180px;
  height: 140px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-right: 50px;
}

/* 各ステップのイラスト画像パス設定 */
.img-train-1 { background-image: url("../images/power_distribution/works/training1.webp"); }
.img-train-2 { background-image: url("../images/power_distribution/works/training2.webp"); }
.img-train-3 { background-image: url("../images/power_distribution/works/training3.webp"); }
.img-train-4 { background-image: url("../images/power_distribution/works/training4.webp"); }

/* 各ステップのイラスト画像パス設定 */
.img-train-5 { background-image: url("../images/transportation/works/training1.webp"); }
.img-train-6 { background-image: url("../images/transportation/works/training2.webp"); }
.img-train-7 { background-image: url("../images/transportation/works/training3.webp"); }
.img-train-8 { background-image: url("../images/transportation/works/training4.webp"); }


/* 右側：テキストコンテンツブロック */
.step-content-block {
  flex: 1;
}

/* カード内見出し */
.step-card-title {
  font-size: 22px; /* pxに固定 */
  color: #1e63b3;
  font-weight: bold;
  margin: 0 0 15px 0;
}

/* 目安・条件ライン */
.step-meta {
  font-size: 15px; /* pxに固定 */
  color: #1e63b3;
  font-weight: bold;
  margin: 0 0 15px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2eefb;
}
.step-meta .blue-circle {
  margin-right: 4px;
}

/* 詳細説明文 */
.step-desc {
  font-size: 15px; /* 一般的な日本のWebサイトで見やすい15pxに固定 */
  color: #333333;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

/* 一番下部の小さな注記 */
.training-note {
  font-size: 15px; /* pxに固定 */
  color: #888888;
  line-height: 1.6;
  margin: 40px 0 0 0;
}

/* 📱 レスポンシブ対応 (タブレット・スマホ) */
@media (max-width: 768px) {
  .training-container {
    width: 90%;
    padding: 50px 0;
  }
  
  .training-header {
    margin-bottom: 50px;
  }

  .step-item-box {
    margin-bottom: 50px;
    padding-top: 35px;
  }

  /* スマホ環境に合わせてpx数値を少し縮小 */
  .step-label {
    font-size: 38px;
  }

  .step-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px;
  }

  .step-image-block {
    width: 100%;
    height: 120px;
    margin-right: 0;
    margin-bottom: 25px;
  }

  .step-content-block {
    width: 100%;
  }

  .step-card-title {
    font-size: 19px;
  }
  
  .step-desc {
    font-size: 14px;
  }

  .training-note {
    font-size: 12px;
    margin-top: 30px;
  }
}

@media screen and (min-width: 769px) and (max-width: 960px) {
  .process-wrapper {
    flex-direction: column;
    gap: 5px;
  }

  .process-card {
    flex: none;
    max-width: 100%;
  }

  .circle-image {
    width: 260px;
    height: 260px;
  }

  .arrow {
    flex: none;
    width: 10px;
    height: 20px;
    margin: 0 auto;
  }

  .arrow::after {
    right: -7px;
    bottom: -8px;
    top: auto;
    border-width: 14px 12px 0 12px;
    border-color: #1e63b3 transparent transparent transparent;
  }
}