@charset "UTF-8";
/* ==========================================
   選ばれる理由ページ
   ========================================== */
/* 導入リード */
.reasons-lead__catch {
  font-size: 18px;
  font-weight: 700;
  color: #E97F4B;
  text-align: center;
  margin: 0 0 20px;
}
@media (max-width: 768px) {
  .reasons-lead__catch {
    font-size: 16px;
  }
}

/* 5つの理由サマリー */
.reasons-summary {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.reasons-summary__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: #fff5e8;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  text-decoration: none;
  transition: box-shadow 0.3s;
}
.reasons-summary__item:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.reasons-summary__num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #E97F4B;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* カード内サブ見出し（夜勤の回数が圧倒的に少ない 等） */
.reasons-subtitle {
  font-size: 16px;
  font-weight: 700;
  color: #E97F4B;
  margin: 32px 0 14px;
  padding-left: 12px;
  border-left: 4px solid #E97F4B;
}
.reasons-subtitle:first-child {
  margin-top: 0;
}
@media (max-width: 480px) {
  .reasons-subtitle {
    font-size: 15px;
  }
}

/* 箇条書き */
.reasons-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.reasons-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.9;
  color: #333333;
}
.reasons-list li + li {
  margin-top: 10px;
}
.reasons-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E97F4B;
}

/* 注釈 */
.reasons-note {
  font-size: 13px;
  color: #666666;
  margin: 12px 0 0;
  line-height: 1.7;
}

/* 強調ボックス（給与還元・顔出しコミュニケーション等） */
.reasons-callout {
  background: #FFFAF1;
  border: 1px solid #eeddd3;
  border-radius: 10px;
  padding: 20px 24px;
  margin: 20px 0;
  /* 中央寄せ版 */
}
.reasons-callout__title {
  font-size: 15px;
  font-weight: 700;
  color: #e67e3c;
  margin: 0 0 8px;
}
.reasons-callout__text {
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
  margin: 0;
}
.reasons-callout__text + .reasons-callout__text {
  margin-top: 8px;
}
.reasons-callout--center {
  text-align: center;
}

/* 本文中の画像 */
.reasons-figure {
  margin: 24px 0;
  text-align: center;
}
.reasons-figure img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: inline-block;
}

/* 他ページへのリンク（矢印付き） */
.reasons-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 20px;
  background: #ffffff;
  border: 2px solid #e89b6f;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  text-decoration: none;
  transition: box-shadow 0.3s, color 0.3s;
}
.reasons-link::after {
  content: "→";
  color: #e67e3c;
  font-weight: 700;
}
.reasons-link:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  color: #E97F4B;
}

/* CTAラベル（＼ ... ／） */
.reasons-cta-label {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  margin: 40px 0 0;
}
@media (max-width: 480px) {
  .reasons-cta-label {
    font-size: 15px;
  }
}

/*# sourceMappingURL=reasons.css.map */
