@charset "UTF-8";

/* ============================================================
   support.css
   支援制度・福利厚生　ページ専用スタイル
   （共通パーツは common.css / global-menu.css を参照）
   ・ページ上部＝支援制度（#support）
   ・ページ下部＝福利厚生（#benefit）
============================================================ */

.support-page {
  padding: 60px 0 100px;
}
.support-page .container {
  max-width: 960px;
}

/* ------------------------------------------------------------
   ページタイトル
------------------------------------------------------------ */
.support-eyebrow {
  text-align: center;
  font-family: var(--font-mincho);   /* v17：ゴシック→明朝 */
  font-style: normal;              /* v17：斜体をやめた */
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  color: var(--color-mauve-light);  /* v17：#0065B0 → #18BFD7 */
  margin: 0 0 4px;                 /* v17：h1との間隔を 8px→4px に */
}
.support-page-title {
  font-family: var(--font-mincho);
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;   /* v17：PCを一段階太く（300→400）。SPは768px以下で700に上書き */
  color: var(--text-heading);
  letter-spacing: 0.08em;
  margin: 0 0 20px;
}
.support-page-lead {
  text-align: center;
  font-size: 1.0rem;
  color: var(--text-light);
  line-height: 1.9;
  margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
  /* v17：SPのページタイトルを統一（明朝700 / 27px / 字間0.04em）。
     font-family は上のベース宣言（var(--font-mincho)）を継承。
     1rem＝18px なので 1.5rem＝27px。ウェイトは 300/500 → 700 に上げる。 */
  .support-page-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
}

/* ------------------------------------------------------------
   ページ内ジャンプナビ（白背景の楕円・voice/messageと同系統）
------------------------------------------------------------ */
.support-jump-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 76px;
}
.support-jump-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 12px 34px;
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: 1.0rem;
  text-align: center;
  box-shadow: 0 3px 10px rgba(34, 34, 34, 0.05);
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
  border-radius: 999px;
  background: var(--gradient-blue);
  color: #fff;
  border: 0;
}
.support-jump-nav a:hover {
  background: var(--color-blue-ink);
  color: #fff;
  opacity: 1;
  transform: translateY(-2px);
}
.support-jump-nav a:hover .support-jump-sub { color: rgba(255, 255, 255, 0.85); }
.support-jump-sub {
  display: block;
  font-weight: 400;
  font-size: 0.83rem;
  color: #fff;
  white-space: nowrap;
}

/* ------------------------------------------------------------
   セクション見出し（支援制度／福利厚生 共通）
------------------------------------------------------------ */
.support-section,
.benefit-section {
  margin-bottom: 90px;
  scroll-margin-top: 90px;
}
.support-section-head {
  text-align: center;
  margin-bottom: 44px;
}
.support-section-eyebrow {
  font-family: var(--font-mincho);   /* v20：ゴシック→明朝（.support-eyebrow と統一） */
  font-style: normal;                /* v20：斜体をやめた */
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  color: var(--color-mauve-light);   /* v20：#0065B0 → #18BFD7 */
  margin: 0 0 3px;                   /* v20：見出しとの間隔を 6px→3px に */
}
.support-section-title {
  position: relative;
  display: inline-block;
  font-family: var(--font-mincho);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-heading);
  letter-spacing: 0.08em;
  margin: 0 0 20px;
  padding-bottom: 14px;
}
/* 見出し下のグラデ帯（ピンク明→モーヴ） */
.support-section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 54px;
  height: 3px;
  border-radius: 2px;
  background: var(--gradient-blue);
}
.support-section-lead {
  font-size: 1.0rem;
  color: var(--text-light);
  line-height: 1.95;
  margin: 0;
}
.support-section-lead a {
  color: var(--color-blue-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
/* 強調（金額・キーワード） */
.support-em {
  color: var(--color-blue-ink);
  font-weight: 700;
}

/* ============================================================
   支援制度：テーマ別グループ ＋ カード
============================================================ */
.support-group {
  margin-bottom: 40px;
}
.support-group:last-child { margin-bottom: 0; }

/* グループ見出し（左にアクセントバーの入ったピル） */
.support-group-label {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: 1.0rem;
  color: var(--text-main);
  letter-spacing: 0.04em;
  margin: 0 0 20px;
  padding-left: 14px;
  border-left: 4px solid var(--color-mauve);
  line-height: 1.4;
}
/* テーマごとにアクセントバーの色を変えて視覚的な区切りをつける */
.support-group-family  .support-group-label { border-left-color: var(--color-pink-bright); }
.support-group-career  .support-group-label { border-left-color: var(--color-mauve); }
.support-group-return  .support-group-label { border-left-color: var(--color-pink-bright); }

.support-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* カード（白地・1pxボーダー・薄い影・14px角丸） */
.support-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 24px 24px;
  box-shadow: 0 4px 15px rgba(34, 34, 34, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.support-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(34, 34, 34, 0.09);
}

/* 丸アイコン（薄ピンク地・絵文字は装飾のためaria-hidden） */
.support-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-pink-pale);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
}
.support-group-career .support-card-icon { background: var(--color-pink-pale); }
.support-group-return .support-card-icon { background: var(--color-champagne); }

.support-card-body { flex: 1; min-width: 0; }
.support-card-title {
  font-family: var(--font-mincho);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-heading);
  margin: 0 0 8px;
  line-height: 1.5;
}
.support-card-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.85;
  margin: 0;
}

@media screen and (max-width: 640px) {
  .support-card-list { grid-template-columns: 1fr; gap: 14px; }
  .support-card { padding: 20px; gap: 14px; }
  .support-card-icon { width: 46px; height: 46px; font-size: 1.3rem; }
}

/* ============================================================
   福利厚生：アースグループ割引チケット
============================================================ */
.benefit-ticket-block {
  margin-bottom: 50px;
}
.benefit-ticket-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 22px;
}
.benefit-logo {
  width: 50px;
  height: auto;
  flex-shrink: 0;
  display: block;
}
.benefit-ticket-lead {
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: 1.01rem;
  color: var(--text-heading);
  letter-spacing: 0.04em;
  margin: 0;
  line-height: 1.6;
}

.benefit-ticket-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 820px;
  margin: 0 auto;
}

/* チケット型カード（半券風の演出付き） */
.benefit-ticket-card {
  position: relative;
  display: flex;
  border: 1px solid rgba(1, 160, 233, 0.35);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(34, 34, 34, 0.06);
}
.benefit-ticket-left {
  position: relative;
  flex-shrink: 0;
  width: 150px;
  background: var(--color-pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-right: 1px dashed rgba(1, 160, 233, 0.45);
}
/* 切り取り穴（上下に半円） */
.benefit-ticket-left::before,
.benefit-ticket-left::after {
  content: '';
  position: absolute;
  right: -8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-base);
  border: 1px solid rgba(1, 160, 233, 0.35);
  z-index: 1;
}
.benefit-ticket-left::before { top: -8px; }
.benefit-ticket-left::after { bottom: -8px; }

.benefit-ticket-off {
  color: var(--color-pink-text);
  font-family: var(--font-gothic);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.04em;
}
.benefit-ticket-num { font-size: 1.9rem; }
.benefit-ticket-off-word { font-size: 1.3rem; }

.benefit-ticket-right {
  flex: 1;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.benefit-ticket-strong {
  font-family: var(--font-gothic);
  font-size: 1.0rem;
  color: var(--text-main);
  font-weight: 500;
  margin: 0 0 8px;
  line-height: 1.5;
}
.benefit-ticket-note {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
}
.benefit-ticket-em { color: var(--color-pink-text); }

@media screen and (max-width: 768px) {
  .benefit-ticket-head { flex-direction: column; gap: 10px; text-align: center; }
  .benefit-ticket-card { flex-direction: column; }
  .benefit-ticket-left {
    width: 100%;
    border-right: none;
    border-bottom: 1px dashed rgba(1, 160, 233, 0.45);
    padding: 14px;
  }
  .benefit-ticket-left::before { top: auto; bottom: -8px; left: -8px; right: auto; }
  .benefit-ticket-left::after { bottom: -8px; right: -8px; }
  .benefit-ticket-right { padding: 18px 18px; }
}

/* ============================================================
   福利厚生：その他（カテゴリ別リスト）
============================================================ */
.benefit-groups {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 40px 44px;
  box-shadow: 0 4px 15px rgba(34, 34, 34, 0.03);
}
.benefit-groups-note {
  font-family: var(--font-gothic);
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0 0 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.benefit-group {
  margin-bottom: 30px;
}
.benefit-group:last-child { margin-bottom: 0; }

.benefit-group-title {
  font-family: var(--font-gothic);
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--color-blue-ink);
  letter-spacing: 0.05em;
  margin: 0 0 14px;
  padding-left: 12px;
  border-left: 3px solid var(--color-mauve);
  line-height: 1.5;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 32px;
}
.benefit-list li {
  position: relative;
  padding-left: 1.2em;
  font-size: 0.98rem;
  color: var(--text-main);
  line-height: 1.8;
  margin: 6px 0;
}
.benefit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-pink-bright);
}
/* 補足（時間・条件などの但し書き） */
.benefit-sub {
  display: block;
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-top: 2px;
}

@media screen and (max-width: 768px) {
  .benefit-groups { padding: 28px 22px; }
  .benefit-list { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   ページ下部CTA
============================================================ */
.support-cta {
  text-align: center;
  padding: 50px 20px;
  background: var(--color-pink-pale);
  border-radius: 16px;
}
.support-cta-text {
  font-family: var(--font-gothic);
  font-size: 1.0rem;
  color: var(--text-main);
  line-height: 1.9;
  margin: 0 0 24px;
}
.support-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.support-cta-btn {
  display: inline-block;
  padding: 13px 30px;
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 999px;
  background: var(--gradient-blue);
  color: #fff;
  border: 0;
}
.support-cta-btn:hover { opacity: 0.8; transform: translateY(-2px); }
.support-cta-btn-primary {
  border-radius: 999px;
  background: var(--gradient-blue);
  color: #fff;
  border: 0;
}
.support-cta-btn-outline {
  border-radius: 999px;
  background: var(--gradient-blue);
  color: #fff;
  border: 0;
}


/* PCヘッダーが2段になり約120pxになったため、アンカー着地位置を40px下げる（SPは従来どおり） */
@media screen and (min-width: 769px) {
  .benefit-section { scroll-margin-top: 105px; }
}
