@charset "UTF-8";
:root {
  /* ウェイトの定義 */
  --weight-normal: 400;
  --weight-bold: 700;
  --font-main: "Inter", "Noto Sans JP", sans-serif;
  /* color */
  --primary-green: #168353;
  --primary-darkgreen: #186443;
  --primary-yellow:#FCEE21;
  --text-main: #151515;
  --text-sub: #666;
  --bg-top: #f4f4f4;
  /* Fluid Typography: 16px */
  --fz-base: 1rem;
}
@media (max-width: 1440px) {
  :root {
    --inner-width: 1200px;
  }
}
@media (min-width: 1441px) {
  :root {
    --inner-width: 1400px;
  }
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  font-family: var(--font-main);
  color: var(--color-text);
  font-size: var(--fz-base);
  font-size-adjust: 0.51;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

textarea {
  resize: vertical;
}

ul, ol {
  list-style: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ==========================================================================
//画像パスの書き換え
========================================================================== */
.is-block {
  display: block !important;
}

.is-inline {
  display: inline !important;
}

.is-inline-block {
  display: inline-block !important;
}

.is-none {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .is-mobile-block {
    display: block !important;
  }
  .is-mobile-inline {
    display: inline !important;
  }
  .is-mobile-inline-block {
    display: inline-block !important;
  }
  .is-mobile-none {
    display: none !important;
  }
}
@media screen and (min-width: 576px) {
  .is-fablet-block {
    display: block !important;
  }
  .is-fablet-inline {
    display: inline !important;
  }
  .is-fablet-inline-block {
    display: inline-block !important;
  }
  .is-fablet-none {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .is-tablet-block {
    display: block !important;
  }
  .is-tablet-inline {
    display: inline !important;
  }
  .is-tablet-inline-block {
    display: inline-block !important;
  }
  .is-tablet-none {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .is-desktop-block {
    display: block !important;
  }
  .is-desktop-inline {
    display: inline !important;
  }
  .is-desktop-inline-block {
    display: inline-block !important;
  }
  .is-desktop-none {
    display: none !important;
  }
}
@media screen and (min-width: 1400px) {
  .is-wide-block {
    display: block !important;
  }
  .is-wide-inline {
    display: inline !important;
  }
  .is-wide-inline-block {
    display: inline-block !important;
  }
  .is-wide-none {
    display: none !important;
  }
}
/* ==========================================================================
   ベースリセット（必要に応じて既存のスタイルと調整してください）
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ==========================================================================
   ヘッダーのスタイリング
   ========================================================================== */
:root {
  --color-primary: #0f1a5c; /* 画像から抽出した深いネイビー */
  --header-height: 80px;
}

.site-header {
  width: 100%;
  height: var(--header-height);
  background-color: #ffffff;
  /* 下部のやわらかいシャドウ */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1200px; /* サイト全体の最大幅（デザインに応じて調整してください） */
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- ロゴエリア --- */
.header-logo {
  display: flex;
  align-items: center;
  width: auto;
  height: 45px;
}
.header-logo img {
  width: 100%;
  height: 45px;
}

.header-logo:hover {
  opacity: 0.8;
}

/* --- ナビゲーション --- */
.header-nav {
  height: 100%;
}

.nav-list {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px; /* メニュー同士の間隔 */
}

.nav-item {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem; /* 約15px */
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.03em;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

/* アートディレクション＆モーション：さりげない下線アニメーション */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: right top;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover {
  color: #1a2b8c; /* ホバー時に少し明るく */
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left top;
}

/* ==========================================================================
   ハンバーガーボタン（デフォルトは非表示）
   ========================================================================== */
.hamburger-btn {
  display: none; /* PCでは非表示 */
  position: relative;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2000; /* メニューが広がったときよりも上に配置 */
}

/* 三本線の共通スタイル */
.hamburger-line {
  position: absolute;
  left: 12px;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
}

/* 三本線の初期位置調整 */
.hamburger-line:nth-child(1) {
  top: 16px;
}

.hamburger-line:nth-child(2) {
  top: 23px;
}

.hamburger-line:nth-child(3) {
  bottom: 16px;
}

/* ==========================================================================
   スマートフォン用スタイル（768px以下）
   ========================================================================== */
@media screen and (max-width: 768px) {
  :root {
    --header-height: 64px; /* スマホ時はヘッダーを少しスリムに */
  }
  .header-inner {
    padding: 0 16px;
  }
  .logo-text {
    font-size: 1.05rem; /* スマホ向けにフォントサイズを最適化 */
  }
  /* ハンバーガーボタンを表示 */
  .hamburger-btn {
    display: block;
  }
  /* ボタンがアクティブ（開いた状態）の時のアニメーション（✖マークに変形） */
  .hamburger-btn[aria-expanded=true] .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger-btn[aria-expanded=true] .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .hamburger-btn[aria-expanded=true] .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  /* ナビゲーションを全画面メニューに変更 */
  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(15, 26, 92, 0.98); /* ブランドネイビーの透過背景 */
    padding-top: var(--header-height);
    z-index: 1500;
    /* アニメーションの仕込み（右からスライドイン、かつフェードイン） */
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s;
  }
  /* メニューが開いた状態 */
  .header-nav.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  /* スマホ時のメニューリスト（縦並び） */
  .nav-list {
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    height: calc(100% - var(--header-height));
  }
  .nav-link {
    color: #ffffff; /* 背景がネイビーになるのでテキストは白に */
    font-size: 1.25rem;
    font-weight: 600;
  }
  /* スマホ時は下線アニメーションを無効化（またはお好みで調整） */
  .nav-link::after {
    display: none;
  }
}
/* ==========================================================================
   フッターのスタイリング
   ========================================================================== */
:root {
  --color-footer-bg: #108bfa; /* 画像から抽出した鮮やかなブルー */
  --color-footer-text: #ffffff;
}

.site-footer {
  width: 100%;
  background-color: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 60px 0; /* 上下の十分な余白 */
  line-height: 1.7;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

/* --- 左側・中央共通（テキストエリア） --- */
.footer-info-block,
.footer-contact-block {
  flex: 1;
}

/* --- 主催・問合せ（定義リストの調整） --- */
.footer-meta-item {
  display: flex;
}

.footer-meta-item:last-child {
  margin-bottom: 0;
}

.footer-meta-list dt {
  width: 80px; /* 見出しの幅を揃える */
  flex-shrink: 0;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.footer-meta-list dd {
  font-weight: 500;
}

.sub-text {
  font-size: 1rem;
}

/* --- TEL・MAIL（アドレスエリア） --- */
.footer-address {
  font-style: normal; /* addressタグの斜体をリセット */
}

.contact-item {
  display: flex;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-label {
  width: 60px; /* TEL/MAILの幅を揃える */
  flex-shrink: 0;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.contact-value {
  font-weight: 700;
}

/* 電話番号とメールのリンク（PC時はホバーで少し不透明に） */
.contact-value a {
  color: inherit;
  transition: opacity 0.3s ease;
}

@media (hover: hover) {
  .contact-value a:hover {
    opacity: 0.8;
    text-decoration: underline;
  }
}
.time-text {
  font-size: 0.9rem;
  margin-left: 8px;
  display: inline-block;
}

/* --- 右端：PAGE TOP（アートディレクション） --- */
.footer-actions {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 40px;
}

.page-top-btn {
  color: var(--color-footer-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.page-top-btn .arrow {
  font-size: 0.75rem;
  margin-bottom: 8px;
  /* モーションの仕込み（ホバー時に少し上に弾むように） */
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 文字を縦書きにするモダンなCSS */
.page-top-btn .text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
}

@media (hover: hover) {
  .page-top-btn:hover {
    transform: translateY(-4px); /* ボタン全体が少し上に浮く */
  }
  .page-top-btn:hover .arrow {
    transform: translateY(-2px); /* 矢印だけさらに少し上に */
  }
}
/* ==========================================================================
   スマートフォン用レイアウト（768px以下）
   ========================================================================== */
@media screen and (max-width: 768px) {
  .site-footer {
    padding: 40px 0;
  }
  .footer-inner {
    flex-direction: column; /* 縦並びに変更 */
    gap: 32px;
    padding: 0 24px;
  }
  .footer-info-block,
  .footer-contact-block {
    width: 100%;
  }
  /* スマホ時はTELにタップしやすいよう、文字サイズや余白を微調整しても良いです */
  .time-text {
    display: block;
    margin-left: 0;
    margin-top: 4px;
    opacity: 0.8;
  }
  /* スマホ時のPAGE TOPボタンの配置調整（右下に絶対配置、または縦並びの最後に） */
  .footer-actions {
    position: absolute;
    right: 24px;
    bottom: 0;
    padding-left: 0;
  }
}
/* ==========================================================================
   メインビジュアルのスタイリング
   ========================================================================== */
.main-visual {
  width: 100%;
  background-color: #e2f4ff; /* 画像の背景色に合わせた薄いブルー（隙間対策・チラつき防止） */
  overflow: hidden;
}

.mv-inner {
  width: 100%;
  max-width: 100%; /* フルワイドで見せる場合は100%、ヘッダー幅に合わせる場合は1200px等に調整 */
  margin: 0 auto;
  display: flex;
}

.mv-picture {
  width: 100%;
  display: block; /* pictureタグをブロック要素化 */
  line-height: 0; /* 画像下部の謎の隙間を排除 */
}

.mv-img {
  width: 100%;
  height: auto;
  display: block;
  /* モーショングラフィックスの仕込み：ページ読み込み時にふわっと表示させる場合 */
  animation: mvFadeIn 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  opacity: 0;
}

/* --- さりげない登場アニメーション（お好みで調整してください） --- */
@keyframes mvFadeIn {
  from {
    opacity: 0;
    transform: scale(1.02); /* わずかに大きく起動して落ち着く */
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* ==========================================================================
   スマートフォン用調整（必要に応じて）
   ========================================================================== */
@media screen and (max-width: 768px) {
  /* スマホ用画像（mv_jpg.png）は、縦長または正方形に近い、
     文字がスマホでも視認しやすいサイズで書き出したものを想定しています */
  .main-visual {
    /* スマホ側の背景色も画像と統一 */
    background-color: #e2f4ff;
  }
}
.top-news-section {
  width: 30%;
  position: absolute;
  right: -10px;
  top: -50px;
}
@media screen and (max-width: 768px) {
  .top-news-section {
    width: 100%;
    margin: 0 auto;
    position: relative;
    right: 0;
    top: -60px;
  }
}

/* ==========================================================================
   イントロダクションセクション
   ========================================================================== */
.intro-section {
  width: 100%;
  background-color: #f5f5f5; /* 添付画像の背景に合わせた明るいグレー */
  padding: 100px 0;
  position: relative;
}

.intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center; /* 左右の中央揃え */
  gap: 60px;
}

/* --- 左側：テキストエリア --- */
.intro-content {
  flex: 1;
  max-width: 640px;
}

.intro-heading {
  font-size: 1.85rem; /* 約30px（デザインに合わせて調整してください） */
  font-weight: 700;
  color: #108bfa; /* 鮮やかなブルー */
  line-height: 1.6;
  margin-bottom: 32px;
  position: relative;
}

/* 黄色いマーカー線エフェクト */
.intro-heading .marker {
  background: linear-gradient(transparent 40%, #ffff00 40%);
  display: inline;
  padding: 0 2px;
}

.intro-lead {
  line-height: 2;
  font-weight: 500;
}

/* --- 右側：ボタンエリア --- */
.intro-actions {
  display: flex;
  flex-direction: column;
  gap: 40px; /* ボタン同士の間隔 */
  flex-shrink: 0;
  width: 380px; /* ボタンエリアの固定幅 */
}

.btn-wrapper {
  position: relative; /* あしらいの英字を絶対配置するための基準 */
  width: 100%;
}

/* 大きな青いボタンのスタイリング */
.cta-btn {
  display: flex;
  align-items: center;
  width: 100%;
  height: 84px; /* ボリュームのある高さ */
  background-color: #108bfa;
  color: #ffffff;
  border-radius: 42px; /* 完全に丸い角（高さの半分） */
  padding: 0 32px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  /* きれいな立体感を生むシャドウ */
  box-shadow: 0 10px 25px rgba(16, 139, 250, 0.25);
  /* モーションの仕込み */
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}

.btn-text {
  flex-grow: 1; /* テキスト部分を広げて矢印を右端に押し出す */
}

.btn-arrow {
  width: 20px;
  height: 11px;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- モーショングラフィックス：ボタンのホバーエフェクト --- */
@media (hover: hover) {
  .cta-btn:hover {
    background-color: #007ae6; /* 少し濃いブルーに */
    transform: translateY(-4px); /* 上にふわっと浮き上がる */
    box-shadow: 0 14px 30px rgba(16, 139, 250, 0.35); /* 影を強く */
  }
  /* ホバー時に矢印だけが右に少し引き込まれるように動く */
  .cta-btn:hover .btn-arrow {
    transform: translateX(6px);
  }
}
/* --- あしらいのカーブテキスト（絶対配置） --- */
.decor-text {
  position: absolute;
  pointer-events: none; /* マウスイベントを透過させてボタンクリックを邪魔しない */
}

/* 左上の「| SUPPORT |」 */
.decor-support {
  top: -30px;
  left: -40px;
  width: 70px;
}

/* 右ボタンの「| SEARCH |」 */
.decor-search {
  top: -20px;
  right: -15px;
  width: 55px;
}

.decor-text img {
  width: 100%;
  height: auto;
}

/* ==========================================================================
   スマートフォン用レイアウト（960px以下で切り替えが安全です）
   ========================================================================== */
@media screen and (max-width: 960px) {
  .intro-section {
    padding: 60px 0;
  }
  .intro-inner {
    flex-direction: column; /* 縦並び */
    align-items: flex-start;
    gap: 48px;
    padding: 0 24px;
  }
  .intro-content {
    max-width: 100%;
  }
  .intro-heading {
    font-size: 1.5rem; /* スマホ向けに小さく */
  }
  .decor-support {
    top: -27px;
    left: -27px;
  }
  .intro-actions {
    width: 100%; /* ボタン幅を画面いっぱいに（または最大幅指定） */
    max-width: 400px;
    margin: 0 auto; /* 中央寄せ */
  }
  .cta-btn {
    height: 72px; /* スマホ向けに少しコンパクトに */
    font-size: 1.1rem;
    padding: 0 24px;
  }
}
/* ==========================================================================
   奨学金返還支援制度ってなに？ セクション
   ========================================================================== */
.system-intro-section {
  width: 100%;
  background-color: #ffffff;
  padding: 80px 0;
  color: #333333;
}

.system-inner {
  max-width: 1100px; /* このセクションは見やすさを考慮し少しタイトに設計 */
  margin: 0 auto;
  padding: 0 24px;
}

/* --- 上部：解説テキスト --- */
.system-header {
  margin-bottom: 40px;
}

.system-title-wrap {
  display: flex;
  align-items: center;
  gap: 45px;
  margin-bottom: 24px;
}

.system-avatar {
  width: 160px;
  flex-shrink: 0;
}

.system-avatar img {
  width: 100%;
  height: auto;
}

.system-heading {
  font-size: 1.75rem; /* 約28px */
  font-weight: 700;
  margin-bottom: 25px;
}

.system-heading .marker {
  background: linear-gradient(transparent 50%, #ffff00 50%);
  color: #108bfa;
}

.system-description p {
  line-height: 1.8;
  font-weight: 500;
}

.system-description p:last-child {
  margin-bottom: 0;
}

/* --- 点線の区切り線 --- */
.system-divider {
  border: none;
  height: 8px;
  /* 丸いドットをきれいに並べるモダンな手法 */
  background-image: radial-gradient(#108bfa 30%, transparent 35%);
  background-size: 20px 20px;
  background-repeat: repeat-x;
  margin-bottom: 50px;
}

/* --- 下部：シミュレーションエリア --- */
.system-simulation {
  width: 100%;
}

/* 黄色の吹き出し */
.sim-balloon {
  position: relative;
  background-color: #ffff00;
  color: #108bfa;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  padding: 16px 24px;
  border-radius: 30px;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* 吹き出しの突起部分 */
.sim-balloon::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #ffff00 transparent transparent transparent;
}

/* カードと矢印の並び（Flexbox） */
.sim-flow-container {
  width: 100%;
  margin-bottom: 24px;
}

.sim-flow-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* 注記 */
.sim-note {
  font-size: 0.85rem;
  text-align: right;
}

/* デフォルト（PC）の挙動 */
.u-desktop {
  display: block; /* PC画像を表示 */
}

.u-mobile {
  display: none; /* スマホ画像を非表示 */
}

/* ==========================================================================
   スマートフォン用レイアウト（768px以下）
   ========================================================================== */
@media screen and (max-width: 768px) {
  .system-intro-section {
    padding: 50px 0;
  }
  .system-title-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .system-heading {
    font-size: 1.4rem;
  }
  .system-avatar {
    margin: 0 auto 20px;
  }
  .sim-balloon {
    font-size: 1rem;
    padding: 12px 20px;
  }
  .u-desktop {
    display: none; /* PC画像を非表示 */
  }
  .u-mobile {
    display: block; /* スマホ画像を表示 */
  }
  .sim-note {
    text-align: left; /* スマホ時は左寄せの方が見やすい場合が多いです */
    margin-top: 12px;
  }
}
/* ==========================================================================
   インタビューセクション（オリジナルスライダー）
   ========================================================================== */
.interview-section {
  width: 100%;
  background-color: #e2f4ff;
  padding: 150px 0;
  position: relative;
}

.r-seciton-head {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.r-seciton-head img {
  width: 100%;
  height: auto;
}

.interview-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- ヘッダーエリア --- */
.interview-header {
  text-align: center;
  margin-bottom: 60px;
}

.interview-balloon {
  display: inline-block;
  position: relative;
  background-color: #ffff00;
  color: #108bfa;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.interview-balloon::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: #ffff00 transparent transparent transparent;
}

.interview-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: #222222;
  letter-spacing: 0.05em;
}

/* --- スライダー全体のレイアウト --- */
.slider-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
}

.slider-container {
  width: 100%;
  overflow: hidden; /* はみ出たスライドを隠す */
  padding: 10px 0; /* カードのホバー時の浮き上がりスペース */
}

.slider-track {
  display: flex;
  /* JSでの滑らかな移動用トラック */
  transition: transform 0s ease;
}

/* 各スライド（PC時は3枚表示をベースに計算） */
.slider-item {
  width: 33.3333333333%;
  flex-shrink: 0;
  padding: 0 16px; /* スライド同士の間隔 */
}

/* --- インタビューカードのデザイン --- */
.interview-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.card-thumb {
  width: 100%;
  aspect-ratio: 4/3; /* きれいな横長比率を維持 */
  border-radius: 24px 24px 24px 0;
  overflow: hidden;
  margin-bottom: 16px;
  background-color: #ccc;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-title {
  color: #108bfa;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.4;
}

.card-company {
  font-size: 0.85rem;
  color: #555555;
  font-weight: 500;
}

/* モーション：カード全体のホバーエフェクト */
@media (hover: hover) {
  .interview-card:hover {
    transform: translateY(-6px);
  }
  .interview-card:hover .card-thumb img {
    transform: scale(1.05); /* 画像が少しズーム */
  }
}
/* --- ナビゲーションボタン（矢印） --- */
.slider-arrow {
  position: absolute;
  top: 120px;
  width: 48px;
  height: 48px;
  background-color: #ffff00;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: bold;
  color: #000000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s, transform 0.2s;
}

.prev-btn {
  left: -10px;
  transform: translateY(0) rotate(180deg); /* 左向きにする */
}

.next-btn {
  right: -10px;
}

.prev-btn:active {
  transform: translateY(0) rotate(180deg) scale(0.95);
}

.next-btn:active {
  transform: translateY(0) scale(0.95);
}

/* --- ページネーション --- */
.slider-pagination {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   スマートフォン用（768px以下）
   ========================================================================== */
@media screen and (max-width: 768px) {
  .interview-section {
    width: 100%;
    background-color: #e2f4ff;
    padding: 75px 0;
    position: relative;
  }
  .interview-inner {
    padding: 0 20px;
  }
  .interview-heading {
    font-size: 1.35rem;
  }
  /* スマホ時は1枚表示（両端を少し見せたい場合は width: 85% 等にします） */
  .slider-item {
    width: 100%;
    padding: 0 8px;
  }
  /* 矢印ボタンを少し小さくして位置調整 */
  .slider-arrow {
    width: 40px;
    height: 40px;
  }
  .prev-btn {
    left: -10px;
  }
  .next-btn {
    right: -10px;
  }
}
/* ==========================================================================
   『働き方改革』推進企業ってなに？ セクション
   ========================================================================== */
.workstyle-section {
  width: 100%;
  background-color: #ffffff;
  padding: 100px 0;
  color: #333333;
}

.workstyle-inner {
  max-width: 1000px; /* 見やすさを考慮し、制度解説と同じタイトな幅に設定 */
  margin: 0 auto;
  padding: 0 24px;
}

/* --- 上部：タイトルエリア --- */
.workstyle-header {
  margin-bottom: 40px;
}

.workstyle-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.workstyle-heading {
  font-size: 1.75rem; /* 約28px */
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

/* タイトル上の小さな添え字（\ こんな会社の探し方もあるよ！ /） */
.workstyle-heading .sub-heading {
  display: block;
  font-size: 1.1rem;
  color: #333333;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* 黄色いマーカー線 */
.workstyle-heading .marker {
  background: linear-gradient(transparent 50%, #ffff00 50%);
  color: #108bfa;
}

.workstyle-avatar {
  width: 110px; /* イラストのサイズ */
  flex-shrink: 0;
}

.workstyle-avatar img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- 点線の区切り線 --- */
.workstyle-divider {
  border: none;
  height: 8px;
  /* 丸いドットをきれいに並べるネイビーのグラデーション */
  background-image: radial-gradient(#322863 30%, transparent 35%);
  background-size: 10px 10px;
  background-repeat: repeat-x;
  margin-bottom: 60px;
}

/* --- 中部：コンテンツエリア --- */
.workstyle-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-bottom: 60px;
}

.workstyle-illustration {
  flex-shrink: 0;
  width: 260px;
}

.workstyle-illustration img {
  width: 100%;
  height: auto;
  display: block;
}

.workstyle-text {
  flex: 1;
}

.workstyle-text p {
  line-height: 1.8;
  font-weight: 500;
}

/* --- 下部：ボタンエリア（CTA） --- */
.workstyle-actions {
  display: flex;
  justify-content: center;
}

.workstyle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 360px; /* ボタンの最大幅 */
  padding: 0 20px;
  height: 75px;
  background-color: #2b85e8; /* イントロボタンより少し優しく、視認性の高いブルー */
  color: #ffffff;
  border-radius: 40px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  transition: background-color 0.3s ease, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(43, 133, 232, 0.2);
}

.workstyle-btn .btn-text {
  padding-left: 10px;
}

.workstyle-btn .btn-arrow {
  width: 20px;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* モーショングラフィックス：ボタンホバーエフェクト */
@media (hover: hover) {
  .workstyle-btn:hover {
    background-color: #1a71d4;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(43, 133, 232, 0.3);
  }
  .workstyle-btn:hover .btn-arrow {
    transform: translateX(5px); /* 矢印が右にスライド */
  }
}
/* ==========================================================================
   スマートフォン用レイアウト（768px以下）
   ========================================================================== */
@media screen and (max-width: 768px) {
  .workstyle-section {
    padding: 60px 0;
  }
  .workstyle-title-wrap {
    flex-direction: column-reverse; /* スマホ時はイラストを上に、文字を下に並び替えるとおさまりが良いです */
    align-items: flex-start;
    gap: 16px;
  }
  .workstyle-avatar {
    width: 160px;
    align-self: center;
    margin-bottom: 20px;
  }
  .workstyle-heading {
    font-size: 1.6rem;
    text-align: center;
    margin: 0 auto;
  }
  .workstyle-heading .sub-heading {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }
  .workstyle-heading .marker {
    display: block;
    margin: 0 auto 10px;
  }
  .workstyle-divider {
    margin-bottom: 40px;
  }
  /* 中部を縦並びに変更 */
  .workstyle-body {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
  }
  .workstyle-illustration {
    width: 200px; /* スマホ向けに少しコンパクトに */
  }
  .workstyle-text {
    width: 100%;
    text-align: left;
  }
  /* スマホ時は改行コード（u-desktop）を無効化して自動折返しにする */
  .u-desktop {
    display: none;
  }
  .workstyle-btn {
    height: 56px; /* スマホ向けに少しスリムに */
    font-size: 1rem;
  }
}
/* ==========================================================================
   よくある質問（FAQ）セクション
   ========================================================================== */
.faq-section {
  width: 100%;
  background-color: #ffffff;
  padding: 80px 0;
}

.faq-inner {
  max-width: 840px; /* Q&Aが横に広がりすぎず最も読みやすい幅に設定 */
  margin: 0 auto;
  padding: 60px 40px 80px;
  background-color: #dbf4ff; /* 添付画像の大きな丸角の薄水色背景 */
  border-radius: 60px; /* 左下だけ角丸をなくすなど、変則的な角丸もCSSで再現可能ですが、ここではきれいな大きな角丸にしています */
}

/* 左下の尖った角（アシンメトリーなデザイン）を忠実に再現したい場合はこちらを有効化 */
@media screen and (min-width: 769px) {
  .faq-inner {
    border-bottom-left-radius: 0px;
  }
}
/* --- セクションタイトル --- */
.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}

.faq-sub-heading {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #000000;
}

/* --- Q&A リスト --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px; /* アコーディオン同士の間隔 */
}

.faq-item {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  overflow: hidden; /* 開閉時のトグル溢れを隠す */
}

/* --- 質問部分（ボタン） --- */
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

.faq-q-icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin-right: 16px;
  flex-shrink: 0;
}

.faq-question-text {
  flex-grow: 1;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
  color: #333333;
  padding-right: 20px;
}

/* 右側の丸い＋/－アイコン（CSSのみで美しく変形させます） */
.faq-toggle-icon {
  position: relative;
  width: 36px;
  height: 36px;
  background-color: #2b85e8; /* 爽やかなブルー */
  border-radius: 50%;
  flex-shrink: 0;
  transition: background-color 0.3s, transform 0.3s;
}

/* プラスの横線 */
.faq-toggle-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background-color: #ffffff;
  transform: translate(-50%, -50%);
}

/* プラスの縦線 */
.faq-toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 14px;
  background-color: #ffffff;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

/* ホバー時の挙動 */
@media (hover: hover) {
  .faq-trigger:hover .faq-toggle-icon {
    background-color: #1a71d4;
  }
}
/* 【開いた状態（aria-expanded="true"）】のスタイル */
.faq-trigger[aria-expanded=true] .faq-toggle-icon {
  background-color: #b0b0b0; /* 添付画像のようなグレーに変更 */
}

/* 縦線を回転させて隠すことで、プラスからマイナスへのスムーズな変形アニメーションを実現 */
.faq-trigger[aria-expanded=true] .faq-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* --- 回答部分（アコーディオンラッパー） --- */
.faq-accordion {
  height: 0; /* 初期状態は閉じる（高さ0） */
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.25, 1, 0.5, 1); /* 気持ちの良い加速減速のイージング */
}

/* アコーディオンの内側の余白（高さを計算するために必要） */
.faq-answer-inner {
  padding: 0 24px 24px;
}

/* 回答内の点線 */
.faq-answer-divider {
  border: none;
  height: 4px;
  background-image: radial-gradient(#1a2b8c 30%, transparent 35%);
  background-size: 12px 12px;
  background-repeat: repeat-x;
  margin-bottom: 20px;
}

.faq-answer-content {
  display: flex;
  align-items: flex-start;
}

.faq-a-icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2b85e8;
  margin-right: 16px;
  flex-shrink: 0;
  line-height: 1;
}

.faq-answer-text {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
  color: #333333;
}

/* リンクボタンのスタイル */
.faq-link {
  color: #2b85e8;
  text-decoration: underline;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.faq-link:hover {
  color: #1a71d4;
}

.icon-window {
  width: 16px;
  height: auto;
  display: inline-block;
}

/* ==========================================================================
   スマートフォン用レイアウト（768px以下）
   ========================================================================== */
@media screen and (max-width: 768px) {
  .faq-section {
    padding: 40px 0;
  }
  .faq-inner {
    padding: 40px 16px;
    border-radius: 32px; /* スマホ向けに丸みを少しコンパクトに */
    border-bottom-left-radius: 32px; /* スマホ時はアシンメトリーを解除して安全に */
  }
  .faq-heading {
    font-size: 1.4rem;
  }
  .faq-trigger {
    padding: 16px;
  }
  .faq-q-icon, .faq-a-icon {
    font-size: 1.25rem;
    margin-right: 12px;
  }
  .faq-question-text {
    font-size: 0.85rem;
  }
  .faq-toggle-icon {
    width: 28px;
    height: 28px;
  }
  .faq-toggle-icon::before {
    width: 10px;
  }
  .faq-toggle-icon::after {
    height: 10px;
  }
  .faq-answer-inner {
    padding: 0 16px 16px;
  }
}
/* ==========================================================================
   お知らせ（NEWS）セクション
   ========================================================================== */
.news-section {
  width: 100%;
  background-color: #e2f4ff; /* 爽やかな薄水色の背景 */
  padding: 100px 0;
}

.news-inner {
  max-width: 840px; /* FAQセクションと同様に、見やすさを意識したタイトな幅に設定 */
  margin: 0 auto;
  padding: 0 24px;
}

/* --- セクションタイトル --- */
.news-header {
  text-align: center;
  margin-bottom: 48px;
}

.news-heading {
  font-size: 1.75rem; /* 約28px */
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.news-sub-heading {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #000000;
}

/* --- リスト・カードデザイン --- */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px; /* カード同士の間隔 */
}

.news-card {
  display: block;
  background-color: #ffffff;
  border-radius: 16px; /* なだらかな丸角 */
  padding: 24px 32px;
  text-decoration: none;
  color: #333333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  /* モーションの仕込み */
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
  position: relative;
}

.news-card::before {
  display: block;
  content: "";
  width: 5px;
  height: calc(100% - 40px);
  background-color: #108bfa;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* メタ情報（日付とバッジ）の並び */
.news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.news-date {
  font-size: 0.95rem; /* 約15px */
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.05em;
  font-family: Arial, sans-serif; /* 数字をすっきり見せるフォント指定 */
}

/* NEW バッジ */
.badge-new {
  display: inline-block;
  background-color: #108bfa;
  color: #ffffff;
  font-size: 0.75rem; /* 約12px */
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px; /* カプセル型 */
  letter-spacing: 0.05em;
  line-height: 1;
}

/* お知らせタイトル */
.news-title {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
}

/* --- モーショングラフィックス：ホバーインタラクション --- */
@media (hover: hover) {
  .news-card:hover {
    transform: translateY(-3px); /* わずかにふわっと浮き上がる */
    box-shadow: 0 8px 24px rgba(16, 139, 250, 0.1); /* 影に少しブランド色を混ぜる */
  }
}
/* ==========================================================================
   スマートフォン用レイアウト（768px以下）
   ========================================================================== */
@media screen and (max-width: 768px) {
  .news-section {
    padding: 60px 0;
  }
  .news-card {
    padding: 20px; /* モバイル向けに余白を少しタイトに */
    border-left-width: 5px; /* ラインも少しスリムに */
  }
  .news-meta {
    gap: 12px;
    margin-bottom: 8px;
  }
  .news-date {
    font-size: 0.9rem;
  }
  .news-title {
    font-size: 0.85rem;
  }
}
/* ==========================================================================
   下層ページ共通ヘッダー（ページタイトル部分）
   ========================================================================== */
.page-header {
  width: 100%;
  background-color: #e2f4ff; /* サイト共通の爽やかな薄水色 */
  overflow: hidden;
  position: relative;
}

.page-header-inner {
  max-width: 1000px; /* サイト全体の基本コンテナ幅 */
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center; /* 上下の中心でバランスを取る */
  height: 200px; /* デザインに応じて高さを調整してください */
}

/* --- 左側：タイトルデザイン --- */
.page-header-title-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-header-heading {
  font-size: 2rem; /* トップページより少し大きめの 32px 相当 */
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.page-header-sub-heading {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #000000;
}

/* --- 右側：イラストの配置調整 --- */
.page-header-visual {
  flex-shrink: 0;
  align-self: flex-end; /* イラストの底辺をヘッダーの底面にピタッと合わせる */
  margin-bottom: -5px; /* 微細な隙間を排除する調整（必要に応じて） */
  display: flex;
  align-items: flex-end;
}

.page-header-visual img {
  width: auto;
  height: 180px; /* ヘッダーの高さに収まるように上限をコントロール */
  display: block;
}

/* ==========================================================================
   スマートフォン用レイアウト（768px以下）
   ========================================================================== */
@media screen and (max-width: 768px) {
  .page-header-inner {
    padding: 0 24px;
    height: 140px; /* スマホ時は高さをコンパクトに */
  }
  .page-header-heading {
    font-size: 1.5rem; /* スマホ向けサイズ */
  }
  .page-header-sub-heading {
    font-size: 0.8rem;
  }
  /* スマホ時：イラストを文字と被らない程度に縮小して右下に配置 */
  .page-header-visual {
    margin-bottom: -2px;
  }
  .page-header-visual img {
    height: 110px; /* スマホ用にイラストサイズを縮小 */
  }
}
/* ==========================================================================
   お知らせ詳細 コンテンツエリア全体のレイアウト
   ========================================================================== */
.news-detail-container {
  width: 100%;
  background-color: #ffffff;
  padding: 80px 0 120px; /* 上下にゆったりとした余白 */
}

.news-detail-inner {
  max-width: 1000px; /* 共通の最大幅 */
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* 左右のコンテンツを上揃えに */
  gap: 80px; /* メインとサイドバーの間の余白 */
}

/* --- 左側：メインコンテンツ（幅可変・2カラムの主軸） --- */
.news-main-content {
  flex: 1; /* 残りのスペースをすべて使う */
  max-width: 760px; /* 本文が横に広がりすぎて読みづらくなるのを防ぐ上限 */
  padding-bottom: 40px;
  border-bottom: #ddd solid 1px;
}

.article-header {
  margin-bottom: 40px;
}

.article-date {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.article-title {
  font-size: 1.5rem; /* 約24px */
  font-weight: 700;
  color: #1a2b8c; /* 読みやすい深いネイビーブルー */
  line-height: 1.5;
}

/* 記事本文の汎用スタイリング（CMS投稿用） */
.article-body {
  line-height: 1.8;
  font-weight: 500;
}

.article-body p {
  margin-bottom: 32px; /* 段落ごとの十分な空き */
}

.article-body p:last-child {
  margin-bottom: 0;
}

/* --- 右側：サイドバー（幅固定） --- */
.news-sidebar {
  width: 280px; /* サイドバーの固定幅 */
  flex-shrink: 0; /* 画面が狭まってもこれ以上縮まない */
  position: sticky;
  top: 100px; /* スクロール時にヘッダーの下で追従するプロ仕様の仕込み */
}

/* 見出し「その他の記事」 */
.widget-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #000000;
  text-align: center;
  background-color: #e2f4ff; /* サイト共通の爽やかな薄水色 */
  padding: 12px;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

/* サイドバーのお知らせリスト */
.aside-news-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.aside-news-item {
  border-bottom: 1px solid #e0e0e0; /* 薄い区切り線 */
  padding-bottom: 16px;
}

.aside-news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.aside-news-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.aside-news-date {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.aside-news-title {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: underline;
  /* モーションの仕込み */
  transition: color 0.2s ease;
}

/* ホバー時にテキストの色をブランドブルーに変える上品なエフェクト */
@media (hover: hover) {
  .aside-news-link:hover .aside-news-title {
    color: #108bfa;
  }
}
/* ==========================================================================
   スマートフォン用レイアウト（960px以下で切り替えが安全です）
   ========================================================================== */
@media screen and (max-width: 960px) {
  .news-detail-container {
    padding: 40px 0 80px;
  }
  /* スマホ時は縦並びにする */
  .news-detail-inner {
    flex-direction: column;
    gap: 60px;
    padding: 0 24px;
  }
  .news-main-content {
    width: 100%;
    max-width: 100%;
  }
  .article-title {
    font-size: 1.3rem; /* スマホ向けに少しコンパクトに */
  }
  /* サイドバーを記事の下部に幅いっぱいで配置 */
  .news-sidebar {
    width: 100%;
    position: static; /* stickyを解除 */
  }
}
/* ==========================================================================
   求人・企業一覧ページ専用ヘッダー（タブ統合型）
   ========================================================================== */
.job-search-header {
  width: 100%;
  background-color: #e2f4ff; /* サイト共通の薄水色 */
  overflow: hidden;
  position: relative;
}

/* タブを底面に配置するため、全体をcolumnで制御 */
.job-search-header .page-header-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* 中身を全て下に寄せる */
  height: 400px; /* タブの高さ分、少し高めに設定 */
}

/* タイトルとイラストを内包する横並びのエリア */
.page-header-main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0; /* タブと隙間なく密着させる */
  position: relative;
}

.page-header-title-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 24px; /* タブとのバランスを取る適度な余白 */
}

.page-header-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.05em;
}

.page-header-sub-heading {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #000000;
}

/* イラスト（タブの背後に少し隠れる、または綺麗に乗るレイアウト） */
.page-header-visual {
  flex-shrink: 0;
  align-self: flex-end;
  display: flex;
  align-items: flex-end;
  z-index: 1; /* タブとの前後関係の担保 */
}

.page-header-visual img {
  width: auto;
  height: 190px;
  display: block;
  /* イラストの最下部がタブの丸角に綺麗に重なるよう微調整 */
  margin-bottom: -10px;
}

/* --- 【新規】タブナビゲーションのスタイリング --- */
.page-header-tabs {
  width: 100%;
  z-index: 2; /* イラストより前面へ */
}

.tab-list {
  display: flex;
  width: 100%;
  list-style: none;
}

.tab-item {
  flex: 1; /* 左右のタブを等幅（50%ずつ）にするプロの定番指定 */
}

.tab-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px; /* タブのしっかりとした高さ */
  font-size: 1.1rem; /* 約18px */
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  /* 上側だけを丸める（デザインデータの角丸の再現） */
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.tab-item:first-child .tab-link {
  border-top-right-radius: 0;
}

.tab-item:last-child .tab-link {
  border-top-left-radius: 0;
  border-top-right-radius: 16px;
}

/* 【通常時】（右側の働き方改革：薄いグレー） */
.tab-item .tab-link {
  background-color: #e6e6e6; /* 添付画像に合わせた柔らかなグレー */
  color: #666666;
}

/* 【アクティブ時】（左側の奨学金：深いネイビー） */
.tab-item.is-active .tab-link {
  background-color: #312b63; /* 画像から抽出した深みのある上品なネイビー紫 */
  color: #ffffff;
}

/* ホバー時の心地いいモーション（非アクティブタブのみ） */
@media (hover: hover) {
  .tab-item:not(.is-active) .tab-link:hover {
    background-color: #dadada;
    color: #333333;
  }
}
/* ==========================================================================
   スマートフォン用レイアウト（768px以下）
   ========================================================================== */
@media screen and (max-width: 768px) {
  .job-search-header .page-header-inner {
    padding: 0 16px;
    height: 200px; /* スマホ向けに全体の高さをリサイズ */
  }
  .page-header-title-block {
    padding-bottom: 16px;
  }
  .page-header-heading {
    font-size: 1.4rem;
  }
  .page-header-visual img {
    height: 120px;
    margin-bottom: -5px;
  }
  /* スマホ時はタブを少しコンパクトにし、文字サイズを最適化 */
  .tab-link {
    height: 48px;
    font-size: 0.85rem; /* スマホの画面幅でも2文字が綺麗に収まるよう調整 */
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
}
/* ==========================================================================
   検索ブロック（フィルターフォーム）
   ========================================================================== */
.search-filter-section {
  width: 100%;
  background-color: #ffffff;
  padding: 40px 0; /* 前後のセクションとの適切な距離 */
}

.search-filter-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 40px;
  background-color: #dbf4ff; /* 添付画像の爽やかな薄水色背景 */
  border-radius: 0; /* デザインデータに合わせて四角形に（丸角が必要な場合は適宜指定してください） */
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 16px; /* 上段と下段の間隔 */
}

/* 共通の行スタイル */
.form-row {
  display: flex;
  gap: 16px;
  width: 100%;
}

/* 各入力枠の共通ベーススタイル */
.form-select,
.form-group-content,
.checkbox-options,
.form-input-text {
  background-color: #ffffff;
  border: none;
  border-radius: 8px; /* 緩やかな丸角 */
  height: 56px; /* 押しやすいしっかりとした高さ */
  font-size: 0.95rem;
  color: #333333;
}

/* --- 上段のレイアウト比率 --- */
.form-row-top .group-select {
  width: 40%; /* セレクトボックスの幅 */
}

.form-row-top .group-checkbox {
  width: 60%; /* チェックボックスエリアの幅 */
}

/* セレクトボックスのオリジナルカスタム */
.select-wrapper {
  position: relative;
  width: 100%;
}

.form-select {
  width: 100%;
  padding: 0 40px 0 16px;
  font-weight: 700;
  cursor: pointer;
  -webkit-appearance: none; /* デフォルトの矢印を消去 */
  appearance: none;
}

/* オリジナルの下向き矢印（▼）を配置 */
.select-wrapper::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-35%);
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #000000 transparent transparent transparent;
  pointer-events: none;
}

/* チェックボックスエリア */
.group-checkbox {
  display: flex;
  align-items: center;
}

.checkbox-options {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 24px; /* チェックボックス同士の間隔 */
}

.checkbox-legend {
  font-weight: 700;
  white-space: nowrap;
}

.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-weight: 700;
}

.form-checkbox {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* --- 下段のレイアウト比率 --- */
.form-row-bottom .group-keyword {
  flex: 1; /* キーワード入力欄を可能な限り広げる */
}

.form-row-bottom .form-submit {
  width: 240px; /* 検索ボタンの固定幅 */
  flex-shrink: 0;
}

.form-input-text {
  width: 100%;
  padding: 0 16px;
  font-weight: 500;
}

/* プレースホルダーの文字色 */
.form-input-text::placeholder {
  color: #999999;
}

/* 検索ボタン */
.search-submit-btn {
  width: 100%;
  height: 56px;
  background-color: #312b63; /* タブと合わせた深みのある紫ネイビー */
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

/* モーション：ボタンのインタラクション */
@media (hover: hover) {
  .search-submit-btn:hover {
    background-color: #241f4b; /* ホバーで少し濃く */
  }
}
.search-submit-btn:active {
  transform: scale(0.98); /* クリックした瞬間に少し沈む心地よい手応え */
}

/* アクセシビリティ用：画面には見えないがスクリーンリーダーに読ませる隠しクラス */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ==========================================================================
   スマートフォン用レイアウト（768px以下）
   ========================================================================== */
@media screen and (max-width: 768px) {
  .search-filter-inner {
    padding: 20px 16px;
  }
  /* スマホ時はすべての行のFlexを縦並びにリセット */
  .form-row {
    flex-direction: column;
    gap: 12px;
  }
  .form-row-top .group-select,
  .form-row-top .group-checkbox,
  .form-row-bottom .form-submit {
    width: 100%; /* 横幅いっぱいに広げる */
  }
  /* スマホ時のチェックボックスの折り返し対応 */
  .checkbox-options {
    height: auto;
    padding: 14px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
/* ==========================================================================
   求人・企業カード一覧 ＆ ページネーション
   ========================================================================== */
.job-list-section {
  width: 100%;
  background-color: #f8f9fa; /* 背景を僅かに落として、白いカードを引き立たせる */
  padding: 40px 0 100px;
}

.job-list-inner {
  max-width: 1000px; /* 検索ブロックと綺麗に揃う幅（または1200px等に調整してください） */
  margin: 0 auto;
  padding: 0 24px;
}

/* --- 検索結果ステータス --- */
.job-list-status {
  text-align: center;
  margin-bottom: 40px;
}

.status-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.05em;
}

.status-count {
  font-size: 2rem; /* 件数を大きく強調 */
  font-weight: 700;
  color: #000000;
  margin: 0 4px;
}

.status-range {
  font-size: 0.95rem;
  font-weight: 500;
  margin-left: 12px;
  color: #666666;
}

/* --- カードコンテナ --- */
.job-cards-container {
  display: flex;
  flex-direction: column;
  gap: 32px; /* カード同士の間隔 */
  margin-bottom: 60px;
}

/* 単体カードのスタイリング */
.job-card {
  display: flex;
  background-color: #ffffff;
  border-radius: 24px; /* 大きめの丸角 */
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); /* やわらかい高級感のあるシャドウ */
  gap: 32px;
  position: relative;
}

.job-card::before {
  display: block;
  content: "";
  width: 5px;
  height: calc(100% - 40px);
  background-color: #108bfa;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* サムネイルエリア */
.job-card-thumb {
  width: 240px;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background-color: #e0e0e0; /* 画像がない場合のフォールバック色 */
}

.job-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 右側コンテンツ */
.job-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* タグ（正社員 / 未経験OK） */
.job-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.job-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 12px;
  line-height: 1;
}

.tag-blue {
  background-color: #2b85e8;
  color: #ffffff;
}

/* 求人タイトル */
.job-title {
  font-size: 1.15rem; /* 約18px */
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}

.job-title-link {
  color: #2b85e8;
  text-decoration: none;
}

.job-title-link:hover {
  text-decoration: underline;
}

/* 条件詳細リスト（dl, dt, dd の綺麗な並び） */
.job-condition-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.condition-item {
  display: flex;
  align-items: center;
}

.condition-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e0e0e0; /* 添付画像の柔らかなグレー */
  color: #000000;
  font-size: 0.8rem;
  font-weight: 700;
  height: 28px;
  padding: 0 16px;
  border-radius: 14px;
  width: 140px; /* 月給ラベルの幅 */
  flex-shrink: 0;
  margin-right: 16px;
}

/* 「奨学金返還支援額」など文字が長いラベル用の横幅拡張 */
.condition-label.label-wide {
  width: 140px;
}

.condition-value {
  font-size: 1rem;
  font-weight: 500;
  color: #000000;
}

.condition-value.text-bold {
  font-weight: 700;
}

/* view more リンク（右下絶対配置化で、タイトル長の変化に影響されない設計） */
.job-card-action {
  position: absolute;
  right: 0;
  bottom: 0;
}

.view-more-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: #2b85e8;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.view-more-link:hover {
  color: #1a71d4;
}

.icon-window {
  font-size: 0.75rem;
}

/* --- ページネーションのスタイリング --- */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagination-list {
  display: flex;
  gap: 12px;
  list-style: none;
}

.pagination-item {
  width: 48px;
  height: 48px;
}

.page-number,
.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%; /* 綺麗な真ん丸 */
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
}

/* 現在のページ（グレーの丸） */
.pagination-item.is-current .page-number {
  background-color: #d6d6d6;
  color: #000000;
}

/* 選択できるページ（ブルーの丸） */
.pagination-item .page-link {
  background-color: #2b85e8;
  color: #ffffff;
  transition: background-color 0.2s, transform 0.1s;
}

@media (hover: hover) {
  .pagination-item .page-link:hover {
    background-color: #1a71d4;
    transform: scale(1.05); /* わずかにぷくっと大きくなる心地いいホバー */
  }
}
/* ==========================================================================
   スマートフォン用レイアウト（768px以下）
   ========================================================================== */
@media screen and (max-width: 768px) {
  .job-list-section {
    padding: 30px 0 60px;
  }
  .status-text {
    font-size: 0.95rem;
  }
  .status-count {
    font-size: 1.5rem;
  }
  /* スマホ時はカード内を縦並びに変形 */
  .job-card {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    border-radius: 16px;
  }
  .job-card-thumb {
    width: 100%; /* 画像を横幅いっぱいに */
    aspect-ratio: 16/9; /* スマホで見やすい横長比率に */
  }
  .job-title {
    font-size: 1rem;
    margin-bottom: 16px;
  }
  /* 条件リストのスマホ調整（文字が被らないように縦並びのFlexに配慮） */
  .condition-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 8px;
  }
  .condition-item:last-child {
    margin-bottom: 0;
  }
  /* スマホ時はアクションリンクを相対配置（通常の文脈）に戻すことで見切れを防ぐ */
  .job-card-action {
    position: static;
    text-align: right;
    margin-top: 16px;
  }
  /* ページネーションのサイズ調整 */
  .pagination-item {
    width: 40px;
    height: 40px;
  }
  .page-number, .page-link {
    font-size: 0.95rem;
  }
}
/* ==========================================================================
   インタビュー詳細ページ専用 メインビジュアル（ヒーローエリア）
   ========================================================================== */
.interview-detail-hero {
  width: 100%;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

/* --- 背景画像エリア --- */
.hero-image-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像を比率を保ったまま領域いっぱいに広げるプロの必須指定 */
  object-position: center center; /* 写真の顔が中央に来るように調整 */
}

/* --- 文字視認性アップのためのグラデーションシャドウ（アートディレクション） --- */
.hero-image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 上側は透明、下側（文字の背景）に向かってなだらかに黒い影を落とす */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

/* --- テキスト情報エリア（前面配置） --- */
.hero-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3; /* グラデーションシャドウより前面へ */
  display: flex;
  align-items: flex-end; /* コンテンツを左下に寄せる */
  padding-bottom: 48px; /* 下部からの適切な距離 */
}

.hero-content-inner {
  max-width: 1100px; /* サイト全体の共通コンテナ幅 */
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  color: #ffffff; /* 文字はすべて白 */
}

/* カテゴリタグ (INTERVIEW) */
.hero-category {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

/* キャッチコピー */
.hero-catchphrase {
  font-size: 1.6rem; /* 約26px（太く、可読性の高いサイズ） */
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

/* 企業名 */
.hero-company-name {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   スマートフォン用レイアウト（768px以下）
   ========================================================================== */
@media screen and (max-width: 768px) {
  .interview-detail-hero {
    height: auto; /* スマホ時は要素の高さに応じて自動調整（文字の溢れ防止） */
    min-height: 360px; /* 最低限の高さは担保 */
    display: flex;
    flex-direction: column;
  }
  .hero-image-wrapper {
    position: relative;
    height: 240px; /* スマホ時は上部に写真をコンパクトに独立して見せる、または全重ねの比率調整 */
  }
  /* スマホ時に文字量が写真をはみ出しても崩れないよう、
     写真の下に黒背景の文字エリアとしてドロップインさせる安全設計に変更可能 */
  .hero-content-overlay {
    position: relative;
    background-color: #1a1a1a; /* スマホ時のテキストの100%の視認性を確保 */
    padding: 24px 16px;
    align-items: flex-start;
  }
  .hero-content-inner {
    padding: 0;
  }
  .hero-category {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
  .hero-catchphrase {
    font-size: 1.15rem; /* スマホ画面に合わせたサイズダウン */
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .hero-company-name {
    font-size: 0.85rem;
  }
}
/* ==========================================================================
   インタビュー詳細：イントロダクション ＆ 企業概要
   ========================================================================== */
.interview-intro-section {
  width: 100%;
  background-color: #ffffff;
  padding: 80px 0 120px;
  color: #333333;
}

.interview-intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   上段：プロフ ＆ 導入文（Flexboxレイアウト）
   ========================================================================== */
.interview-profile-block {
  display: flex;
  justify-content: space-between;
  align-items: stretch; /* 左右のブロックの高さを揃えて縦線を綺麗に見せる */
  gap: 40px;
  margin-bottom: 80px; /* 下段ブロックとの間隔 */
}

/* --- 左側：プロフィールエリア --- */
.profile-meta {
  width: 42%; /* プロフィール全体の幅を指定 */
  display: flex;
  align-items: center;
  gap: 24px;
}

.profile-avatar {
  width: 130px;
  height: 130px;
  flex-shrink: 0;
  border-radius: 50%; /* 完全な正円 */
  overflow: hidden;
  background-color: #e0e0e0;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info {
  display: flex;
  flex-direction: column;
}

.profile-label {
  font-size: 0.85rem;
  color: #666666;
  font-weight: 700;
  margin-bottom: 6px;
}

.profile-company {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 4px;
}

.profile-name {
  font-size: 0.9rem;
  font-weight: 700;
}

.profile-name .name-large {
  font-size: 1.1rem; /* お名前を少し大きく強調 */
}

/* --- 右側：導入文エリア --- */
.profile-lead {
  width: 58%; /* 導入文の幅を指定 */
  padding-left: 40px;
  padding-right: 40px;
  /* 添付画像の特徴：左側の繊細なグレーの縦線 */
  border-left: 1px solid #cccccc;
  position: relative; /* CHECKあしらい配置用 */
  display: flex;
  align-items: center;
}

.profile-lead p {
  font-size: 0.875rem;
  line-height: 1.8;
  font-weight: 500;
  color: #555555;
}

/* 「\ CHECK /」の斜めあしらい文字 */
.decor-check {
  position: absolute;
  top: -24px;
  right: 0;
  width: 64px;
  pointer-events: none;
}

.decor-check img {
  width: 100%;
  height: auto;
}

/* ==========================================================================
   下段：会社概要・詳細
   ========================================================================== */
.interview-company-detail {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

/* 中央の中見出し（深いネイビーブルー） */
.company-detail-heading {
  font-size: 1.3rem; /* 約20px〜22px */
  font-weight: 700;
  color: #1a2b8c;
  line-height: 1.5;
  margin-bottom: 32px;
  letter-spacing: 0.03em;
}

/* 詳細本文 */
.company-detail-text {
  margin-bottom: 80px;
}

.company-detail-text p {
  line-height: 1.9;
  font-weight: 500;
  text-align: justify; /* 文頭文末を綺麗に揃える */
}

.interview-summary-block {
  width: 100%;
  max-width: 1000px;
  margin: 100px auto;
}

/* 上下のドット区切り線 */
.summary-divider {
  border: none;
  height: 8px;
  /* 丸いドットをきれいに並べるグレーのグラデーション */
  background-image: radial-gradient(#b5b5b5 35%, transparent 40%);
  background-size: 8px 8px;
  background-repeat: repeat-x;
}

/* まとめコンテンツのレイアウト */
.summary-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 32px;
}

.summary-text {
  flex: 1;
}

.summary-text p {
  line-height: 1.8;
  font-weight: 700;
}

.summary-avatar {
  width: 160px;
  flex-shrink: 0;
}

.summary-avatar img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- 最下部：一覧へ戻るボタン --- */
.interview-back-actions {
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn-back-to-list {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 420px; /* ボタンの最大横幅 */
  padding: 0 40px 0 30px;
  height: 64px;
  gap: 10px;
  background-color: #2b85e8; /* サイト共通の親しみやすいブルー */
  color: #ffffff;
  border-radius: 32px; /* 完全に丸い角 */
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 20px rgba(43, 133, 232, 0.2);
  transition: background-color 0.3s ease, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}

/* 添付画像の特徴：左を向いている戻る矢印（➔ を180度回転して綺麗に表現） */
.btn-back-to-list .btn-arrow {
  transform: rotate(180deg); /* 左向き矢印に変形 */
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-back-to-list .btn-text {
  line-height: 1;
}

/* モーショングラフィックス：戻るボタンのホバーエフェクト */
@media (hover: hover) {
  .btn-back-to-list:hover {
    background-color: #1a71d4;
    transform: translateY(-3px); /* ふわっと浮き上がる */
    box-shadow: 0 12px 24px rgba(43, 133, 232, 0.3);
  }
  /* ホバー時に「左向きの矢印」がさらに左へスッと引き込まれる美しい逆方向モーション */
  .btn-back-to-list:hover .btn-arrow {
    transform: rotate(180deg) translateX(6px);
  }
}
/* ==========================================================================
   スマートフォン用レイアウト（768px以下）
   ========================================================================== */
@media screen and (max-width: 768px) {
  .interview-intro-section {
    padding: 40px 0;
  }
  /* 上段：プロフと導入文を縦並びにする */
  .interview-profile-block {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
  }
  .profile-meta {
    width: 100%;
    gap: 16px;
  }
  .profile-avatar {
    width: 100px;
    height: 100px;
  }
  .profile-company {
    font-size: 0.85rem;
  }
  /* スマホ時：縦線を消して、上部との区切りの横線に変更する */
  .profile-lead {
    width: 100%;
    padding-left: 0;
    padding-top: 24px;
    border-left: none;
    border-top: 1px solid #cccccc;
  }
  .decor-check {
    top: -16px; /* 横線に合わせた位置調整 */
  }
  /* 下段見出しのスマホ調整 */
  .company-detail-heading {
    font-size: 1.1rem;
    text-align: left; /* スマホ時は左寄せの方が見やすいです */
    margin-bottom: 20px;
  }
  .company-detail-text {
    margin-bottom: 60px;
  }
  .company-detail-text p {
    font-size: 0.85rem;
    line-height: 1.7;
  }
  .interview-summary-block {
    margin: 40px auto;
  }
  /* スマホ時はイラストを上、文章を下に並び替え、または縦並びに */
  .summary-content {
    flex-direction: column-reverse; /* イラストがテキストの上に来る綺麗なおさまり */
    gap: 20px;
    padding: 24px 0;
  }
  .summary-avatar {
    width: 80px; /* スマホ向けに少しコンパクトに */
  }
  .summary-text p {
    font-size: 0.85rem;
    line-height: 1.7;
    text-align: left;
  }
  /* 戻るボタンのスマホ調整 */
  .btn-back-to-list {
    height: 56px;
    font-size: 0.95rem;
    max-width: 100%; /* スマホ時は画面幅いっぱいにフィット */
  }
}/*# sourceMappingURL=style-worker.css.map */




/* ページナビゲーション */

ul.pagination-list li{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px #2B85E8 solid;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  width: 48px;
  height: 48px;
}

ul.pagination-list li[data-jobs-page-status='current'] {
  background-color: #2B85E8;
  color: #fff;
}


[data-job-beginner]{
    display:inline-flex;
    align-items:center;
    vertical-align:middle;
}

.om-job-label.om-job-label-beginner {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
  background-color: #2b85e8;
  color: #ffffff;
}



/* フッターバナーエリア */

.footer_banner_list{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    list-style:none;
    padding:0;
    margin:0;
}

.footer_banner_list li{
    margin:0;
}

.footer_banner_list a{
    display:block;
    transition:.3s;
}

.footer_banner_list a:hover{
    opacity:.75;
}

.footer_banner_list img{
    width:100%;
    display:block;
}


@media (max-width:991px){

.footer_banner_list{
    grid-template-columns:repeat(2,1fr);
}

}


@media (max-width:767px){

.footer_banner_list{
    grid-template-columns:1fr;
    gap:15px;
}

}


