@charset "UTF-8";
/* =========================================================
   選ばれる理由（p-reason）
   ・全体：共通 $gradient-light 背景に白カード3枚
   ・カード：SP 画像上→本文 / PC 2カラム（奇数：本文左・画像右、偶数：画像左・本文右）
   ・見出し：斜めの青帯（PCは30px・折返しなし / SPは中央寄せ・折返し可）
   ・画像は 2x 書き出し（SP 690×286 → 345×143 / PC 470×h → 235px 幅）
   ========================================================= */
.p-reason {
  position: relative;
  /* ::before（z-index: -1）をこのセクション内に留めるためのスタッキングコンテキスト */
  z-index: 0;
  padding: 30px 0 60px;
  /* 背景：page-flow と同じく途中から始まる共通 $gradient-light（不透明度60%） */
}
@media only screen and (min-width: 992px) {
  .p-reason {
    padding: 40px 0 80px;
  }
}
.p-reason::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  top: 100px;
  background: linear-gradient(90deg, #DEEBFF 0%, #E3FDFF 100%);
  opacity: 0.6;
}
@media only screen and (min-width: 992px) {
  .p-reason::before {
    top: 160px;
  }
}

.p-reason__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 15px;
}
@media only screen and (min-width: 992px) {
  .p-reason__inner {
    gap: 60px;
  }
}

/* ---- カード ---- */
.p-reason__card {
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.16);
  /* 偶数カードは画像左・本文右 */
}
@media only screen and (min-width: 992px) {
  .p-reason__card {
    display: grid;
    grid-template-columns: 1fr 235px;
    align-items: stretch;
  }
}
@media only screen and (min-width: 992px) {
  .p-reason__card:nth-child(even) {
    grid-template-columns: 235px 1fr;
  }
  .p-reason__card:nth-child(even) .p-reason__body {
    padding: 60px 62px 60px 40px;
  }
}
@media only screen and (min-width: 992px) {
  .p-reason__card:nth-child(even) .p-reason__img {
    order: 0;
  }
}

/* 画像（SP：横長 / PC：縦長でカードの高さに合わせて cover。奇数カードはPCで右側に） */
@media only screen and (min-width: 992px) {
  .p-reason__img {
    order: 2;
    height: 100%;
  }
}
.p-reason__img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 690/286;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (min-width: 992px) {
  .p-reason__img img {
    height: 100%;
    aspect-ratio: auto;
  }
}

/* 本文 */
.p-reason__body {
  min-width: 0;
  padding: 20px 20px 40px;
}
@media only screen and (min-width: 992px) {
  .p-reason__body {
    padding: 60px 40px 60px 62px;
  }
}

/* 斜めの見出し帯 */
.p-reason__ttl {
  position: relative;
  z-index: 1;
  display: block;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px 26px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  /* 斜めの帯（見出しの長さに追従） */
}
@media only screen and (min-width: 992px) {
  .p-reason__ttl {
    max-width: none;
    margin: 0;
    padding: 10px 30px;
    font-size: 30px;
    line-height: 1.4;
    text-align: left;
    /* PCは折り返さない（長い場合は画像側にはみ出す） */
    white-space: nowrap;
  }
}
.p-reason__ttl::before {
  content: "";
  position: absolute;
  top: 0;
  right: 6px;
  bottom: 0;
  left: 6px;
  z-index: -1;
  background-color: #0E63C4;
  transform: skewX(-15deg);
}
@media only screen and (min-width: 992px) {
  .p-reason__ttl::before {
    right: 8px;
    left: 8px;
  }
}

/* 見出しテキスト（全体の * { color } を打ち消して白を継承） */
.p-reason__ttl-text {
  color: inherit;
}

/* 青の小見出し */
.p-reason__sub {
  margin-top: 20px;
  color: #0E63C4;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 992px) {
  .p-reason__sub {
    margin-top: 24px;
    font-size: 20px;
  }
}

/* 本文（デザインに合わせてPCも14px） */
.p-reason__text {
  margin-top: 8px;
  color: #333;
}
.p-reason__text--after {
  margin-top: 20px;
}

/* ---- チェックリスト（01） ---- */
.p-reason__checks {
  margin-top: 20px;
  padding: 10px;
  border-radius: 10px;
  background-color: #EBFBFF;
}
@media only screen and (min-width: 992px) {
  .p-reason__checks {
    padding: 30px;
  }
}

.p-reason__check {
  position: relative;
  padding-left: 26px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  /* 青丸に白チェック */
}
@media screen and (min-width: 821px) {
  .p-reason__check {
    font-size: 16px;
  }
}
.p-reason__check + .p-reason__check {
  margin-top: 8px;
}
@media only screen and (min-width: 992px) {
  .p-reason__check + .p-reason__check {
    margin-top: 10px;
  }
}
.p-reason__check::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 18px;
  height: 18px;
  background: url("../../../img/reason/check.svg") no-repeat center top/cover;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 821px) {
  .p-reason__check::before {
    top: 5px;
  }
}

/* ---- ラベル付きリスト（02） ---- */
.p-reason__merit {
  margin-top: 20px;
  padding: 10px;
  border-radius: 10px;
  background-color: #EBFBFF;
}
@media only screen and (min-width: 992px) {
  .p-reason__merit {
    padding: 20px;
    border-radius: 20px;
  }
}

.p-reason__merit-label {
  display: inline-block;
  padding: 4px 12px;
  background-color: #101F70;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.p-reason__merit-list {
  margin-top: 12px;
}

.p-reason__merit-item {
  position: relative;
  padding-left: 18px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  /* 青の● */
}
@media screen and (min-width: 821px) {
  .p-reason__merit-item {
    font-size: 16px;
    line-height: 1.875;
  }
}
.p-reason__merit-item + .p-reason__merit-item {
  margin-top: 6px;
}
.p-reason__merit-item::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #0E63C4;
}

/* ---- 見出し付きボックス（03） ---- */
.p-reason__points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
@media only screen and (min-width: 992px) {
  .p-reason__points {
    gap: 14px;
  }
}

.p-reason__point {
  padding: 10px;
  border-radius: 20px;
  background-color: #EBFBFF;
}
@media only screen and (min-width: 992px) {
  .p-reason__point {
    padding: 20px;
  }
}

.p-reason__point-ttl {
  color: #0E63C4;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 821px) {
  .p-reason__point-ttl {
    font-size: 18px;
  }
}

.p-reason__point-text {
  margin-top: 6px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (min-width: 821px) {
  .p-reason__point-text {
    font-size: 16px;
  }
}

/* =========================================================
   データで見る「GLOBAL REACH」の人材（p-reason-data）
   ・白背景＋薄い水色の円の装飾（deco-common02 を左下／右上に反転配置、pickup-deco を右下に配置）
   ・数値カード：SP1列 / PC3列
   ・グラフ：SP1列 / PC2列（画像は nihongoryoku / work）
   ・他社との比較：SPは横スクロール
   ========================================================= */
.p-reason-data {
  position: relative;
  padding: 50px 0 60px;
  background-color: #fff;
  overflow: hidden;
  /* 装飾：左下 */
  /* 装飾：右上（左下の画像を180度回転） */
  /* 見出しの縦ラインは「DATA」側に付けるので非表示 */
}
@media only screen and (min-width: 992px) {
  .p-reason-data {
    padding: 60px 0 80px;
  }
}
.p-reason-data::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 120px;
  height: 113px;
  background: url("../../../img/top/deco-common02.webp") no-repeat center top/cover;
  pointer-events: none;
}
@media only screen and (min-width: 992px) {
  .p-reason-data::before {
    width: 257px;
    height: 242px;
  }
}
.p-reason-data::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 120px;
  height: 113px;
  background: url("../../../img/top/deco-common02.webp") no-repeat center top/cover;
  transform: rotate(180deg);
  pointer-events: none;
}
@media only screen and (min-width: 992px) {
  .p-reason-data::after {
    width: 257px;
    height: 242px;
  }
}
.p-reason-data .c-section-ttl {
  padding-top: 0;
}
.p-reason-data .c-section-ttl::before {
  display: none;
}

/* 装飾：右下（トップページ .p-solution::before と同じ pickup-deco） */
.p-reason-data__deco {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  display: block;
  width: 210px;
  height: 200px;
  background: url("../../../img/top/pickup-deco.webp") no-repeat center top/cover;
  pointer-events: none;
}
@media only screen and (min-width: 992px) {
  .p-reason-data__deco {
    width: 350px;
    height: 334px;
  }
}

.p-reason-data__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}

/* DATA（縦ライン付きの英字ラベル） */
.p-reason-data__en {
  position: relative;
  margin-bottom: 8px;
  padding-top: 26px;
  color: #0E63C4;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .p-reason-data__en {
    margin-bottom: 10px;
    padding-top: 32px;
    font-size: 13px;
  }
}
.p-reason-data__en::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 20px;
  background-color: #0E63C4;
  transform: translateX(-50%);
}
@media only screen and (min-width: 992px) {
  .p-reason-data__en::before {
    height: 24px;
  }
}

.p-reason-data__lead {
  margin-top: 16px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .p-reason-data__lead {
    margin-top: 20px;
    font-size: 14px;
  }
}

/* ---- 数値カード ---- */
.p-reason-data__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}
@media only screen and (min-width: 992px) {
  .p-reason-data__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
  }
}

.p-reason-data__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 16px 20px;
  border: 1px solid #A8BED1;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 6px 16px 0 rgba(94, 170, 195, 0.08);
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .p-reason-data__stat {
    padding: 36px 24px 30px;
  }
}

/* 数字＋単位（子要素にも色指定：全体の * { color } 対策） */
.p-reason-data__num {
  color: #0E63C4;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1;
}

.p-reason-data__num-value {
  color: #0E63C4;
  font-size: 80px;
  letter-spacing: 0em;
}

.p-reason-data__num-unit {
  color: #0E63C4;
  font-size: 40px;
  letter-spacing: 0em;
}

.p-reason-data__stat-ttl {
  margin-top: 20px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 992px) {
  .p-reason-data__stat-ttl {
    font-size: 20px;
  }
}

.p-reason-data__badge {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 24px;
  background-color: #0E63C4;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media only screen and (min-width: 992px) {
  .p-reason-data__badge {
    font-size: 14px;
  }
}

/* ---- グラフ ---- */
.p-reason-data__charts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
}
@media only screen and (min-width: 992px) {
  .p-reason-data__charts {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
  }
}

.p-reason-data__chart {
  padding: 24px 20px;
  border: 1px solid #A8BED1;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 6px 16px 0 rgba(94, 170, 195, 0.08);
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .p-reason-data__chart {
    padding: 28px 30px 24px;
  }
}
@media only screen and (min-width: 992px) {
  .p-reason-data__chart:first-child .p-reason-data__chart-img {
    width: 400px;
  }
}

/* グラフタイトル（下に短い下線） */
.p-reason-data__chart-ttl {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media only screen and (min-width: 992px) {
  .p-reason-data__chart-ttl {
    font-size: 24px;
  }
}
.p-reason-data__chart-ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 1px;
  background-color: #0E63C4;
  transform: translateX(-50%);
}

/* 画像は 2x 書き出し（最大 431px 幅） */
.p-reason-data__chart-img {
  max-width: 431px;
  margin: 20px auto 0;
}
@media only screen and (min-width: 992px) {
  .p-reason-data__chart-img {
    margin-top: 20px;
  }
}
.p-reason-data__chart-img img {
  display: block;
  width: 100%;
  height: auto;
}

.p-reason-data__note {
  margin-top: 12px;
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}
@media only screen and (min-width: 992px) {
  .p-reason-data__note {
    margin-top: 14px;
    font-size: 14px;
  }
}

.p-reason-data__source {
  margin-top: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  text-align: right;
}
@media only screen and (min-width: 992px) {
  .p-reason-data__source {
    margin-top: 12px;
    font-size: 14px;
  }
}

/* ---- 他社との比較 ---- */
.p-reason-data__subttl {
  position: relative;
  margin-top: 40px;
  padding-bottom: 14px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .p-reason-data__subttl {
    margin-top: 60px;
    padding-bottom: 16px;
    font-size: 30px;
  }
}
.p-reason-data__subttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 40px;
  height: 2px;
  background-color: #0E63C4;
  transform: translateX(-50%);
}

/* SPは横スクロール（スクロールバーを青で細く表示） */
.p-reason-data__table-wrap {
  width: 100%;
  max-width: 1000px;
  margin: 20px auto 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* ネイティブのスクロールバーは隠し、下の .p-reason-data__scrollbar で表示 */
  scrollbar-width: none;
}
@media only screen and (min-width: 992px) {
  .p-reason-data__table-wrap {
    margin-top: 30px;
    overflow-x: visible;
  }
}
.p-reason-data__table-wrap::-webkit-scrollbar {
  display: none;
}

/* SP用スクロールバー（青のつまみ／グレーのレール。位置は reason.js で同期） */
.p-reason-data__scrollbar {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 12px;
  margin: 16px auto 0;
  border-radius: 6px;
  background-color: #E9E9E9;
  cursor: pointer;
  touch-action: none;
}
@media only screen and (min-width: 992px) {
  .p-reason-data__scrollbar {
    display: none;
  }
}
.p-reason-data__scrollbar.is-hidden {
  display: none;
}

.p-reason-data__scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 40%;
  height: 100%;
  border-radius: 6px;
  background-color: #0E63C4;
  will-change: transform;
}

.p-reason-data__table {
  width: 100%;
  min-width: 1000px;
  border: 1px solid #A8BED1;
  border-radius: 8px;
  border-collapse: separate;
  border-spacing: 0;
  background-color: #fff;
  overflow: hidden;
  table-layout: fixed;
  /* 本体の最終行は下線なし（見出し行は対象外） */
  /* 列幅：項目 30% / WEWORLD 35% / 一般 35% */
}
@media only screen and (min-width: 992px) {
  .p-reason-data__table {
    min-width: 0;
    margin-bottom: 0;
  }
}
.p-reason-data__table th,
.p-reason-data__table td {
  position: relative;
  padding: 16px 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  vertical-align: middle;
  /* 行の罫線（擬似要素で描画し、表の両端に余白を空ける） */
}
@media only screen and (min-width: 992px) {
  .p-reason-data__table th,
.p-reason-data__table td {
    padding: 18px 16px;
    font-size: 16px;
  }
}
.p-reason-data__table th::after,
.p-reason-data__table td::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #A8BED1;
}
.p-reason-data__table th:first-child::after {
  left: 20px;
}
.p-reason-data__table td:last-child::after {
  right: 20px;
}
.p-reason-data__table tbody tr:last-child th::after,
.p-reason-data__table tbody tr:last-child td::after {
  display: none;
}
.p-reason-data__table th:first-child,
.p-reason-data__table td:first-child {
  width: 30%;
}

/* 見出し行 */
.p-reason-data__th {
  color: #333;
  font-weight: 700;
}

/* 一般的な紹介会社列（見出し行もグレー） */
.p-reason-data__th--other {
  background-color: #F7F7F7;
}

.p-reason-data__th--weworld {
  color: #0E63C4;
}

.p-reason-data__th-sub {
  display: block;
  margin-top: 2px;
  color: #0E63C4;
  font-size: 11px;
  font-weight: 700;
}
@media only screen and (min-width: 992px) {
  .p-reason-data__th-sub {
    font-size: 16px;
  }
}

/* 項目列 */
.p-reason-data__label {
  color: #333;
  font-weight: 500;
}

.p-reason-data__td {
  color: #333;
  background-color: #F7F7F7;
}

/* WEWORLD列（薄い水色 #EBFBFF ＋青文字） */
.p-reason-data__td--weworld {
  background-color: #EBFBFF;
  color: #0E63C4;
  font-weight: 700;
}

.p-reason-data__th--weworld {
  background-color: #EBFBFF;
}

/* WEWORLD列の文字サイズ（PCのみ大きく：th 20px / td 18px。1列目・3列目は共通サイズのまま） */
.p-reason-data__table .p-reason-data__th--weworld {
  font-weight: 700;
}
@media only screen and (min-width: 992px) {
  .p-reason-data__table .p-reason-data__th--weworld {
    font-size: 20px;
  }
}

.p-reason-data__table .p-reason-data__td--weworld {
  font-weight: 700;
}
@media only screen and (min-width: 992px) {
  .p-reason-data__table .p-reason-data__td--weworld {
    font-size: 18px;
  }
}

/* ---- 現地代理店ボックス ---- */
.p-reason-data__box {
  width: 100%;
  max-width: 1000px;
  margin: 30px auto 0;
  padding: 24px 20px;
  border-radius: 8px;
  background-color: #0E63C4;
}
@media only screen and (min-width: 992px) {
  .p-reason-data__box {
    margin-top: 60px;
    padding: 30px 40px;
    border-radius: 20px;
  }
}

.p-reason-data__box-text {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.06em;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .p-reason-data__box-text {
    font-size: 24px;
  }
}
/*# sourceMappingURL=reason.css.map */