@charset "utf-8";
/* =====================================================================
 * File: assets/css/area-search.css
 * Role: トップページ「都道府県エリア・駅から探す」ブロック（集客サイト index.php の
 *       インライン <style> ＋ includes/components/station-bottom-sheet.php を移植）
 *       - クラス名・ID は集客サイトと同一（tokyo-map.css / common.css と併用）
 *       - 茶色系のベタ書き色のみ求人サイトのテーマ変数（--color-primary 等）に置換
 * ===================================================================== */

/* ---------- ドリルダウン用UI ---------- */
.drill-tabs { display:flex; gap:12px; padding:0 10px; justify-content:center; margin-bottom:20px; }
.drill-tab {
  flex:1; max-width:200px; padding:10px 16px; border-radius:50px; font-weight:700; font-size:0.85rem;
  background:transparent;
  border:1.5px solid rgba(180,148,58,0.45);
  color:var(--color-primary);
  text-align:center; cursor:pointer;
  letter-spacing:0.08em;
  transition:all 0.3s cubic-bezier(0.25,0.8,0.25,1);
  box-shadow:0 2px 8px rgba(180,148,58,0.08);
}
.drill-tab:hover:not(.is-active) {
  border-color:rgba(180,148,58,0.7);
  background:rgba(180,148,58,0.06);
  box-shadow:0 4px 14px rgba(180,148,58,0.18);
}
.drill-tab.is-active {
  background:linear-gradient(135deg, #e8d09a 0%, #c9a84e 35%, #d4b55a 65%, #b8943d 100%);
  color:var(--color-primary);
  border-color:transparent;
  box-shadow:0 4px 20px rgba(180,148,58,0.45), inset 0 1px 1px rgba(255,255,255,0.35);
  text-shadow:0 1px 0 rgba(255,255,255,0.25);
}

.drill-container {
  position:relative; width:100%; max-width:800px; margin:0 auto 30px; overflow:hidden;
  background:transparent; border:none;
  padding:5px 20px 20px; box-shadow:none;
}
.drill-pane { display:none; width:100%; animation:fadeIn 0.35s ease forwards; }
.drill-pane.is-active { display:block; }

.drill-step { display:none; animation:fadeIn 0.35s ease forwards; }
.drill-step.is-active { display:block; }

@keyframes fadeIn { from{opacity:0; transform:translateY(8px);} to{opacity:1; transform:translateY(0);} }

.drill-header { display:flex; align-items:center; margin-bottom:15px; }
.btn-drill-back {
  background:none; border:none; color:var(--color-accent); font-size:0.85rem; font-weight:bold;
  cursor:pointer; display:flex; align-items:center; gap:5px; padding:5px 0;
}
.btn-drill-back:hover { opacity:0.8; }

/* グリッドレイアウト: スマホ版は文字数崩れ防止のため1列 */
.drill-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:8px; }
.drill-grid.is-map { display:block !important; margin:0 -10px; }

.rail-cat-group { display:none; }
.rail-cat-group.is-active { display:grid; animation:fadeIn 0.35s ease forwards; }
.rail-cat-group.is-map.is-active { display:block; }

.btn-drill-item {
  background:#fff; border:1.5px solid var(--color-accent); padding:12px 10px; border-radius:8px;
  text-align:center; font-weight:bold; font-size:0.85rem; color:var(--color-accent);
  cursor:pointer; transition:all 0.2s; text-decoration:none; display:flex; justify-content:center; align-items:center;
  line-height:1.3; margin:0; /* Gridではマージン不要 */
  min-height: 44px;
}
/* 480pxの3列レイアウトを削除し、768px未満はすべて2列(デフォルト)とする */
@media (min-width: 768px) {
  .drill-grid { grid-template-columns: repeat(3, 1fr); gap:12px; }
}
.btn-drill-item:hover { background:linear-gradient(135deg, #e8d09a 0%, #c9a84e 35%, #d4b55a 65%, #b8943d 100%); color:var(--color-primary); border-color:transparent; box-shadow:0 4px 20px rgba(180,148,58,0.45), inset 0 1px 1px rgba(255,255,255,0.35); text-shadow:0 1px 0 rgba(255,255,255,0.25); }
.btn-drill-item--empty { background:#f5f5f5; color:#aaa; border-color:#eee; cursor:not-allowed; }
.btn-drill-item--empty:hover { border-color:#eee; color:#aaa; box-shadow:none; background:#f5f5f5; }
.btn-drill-item--map { background:var(--color-bg-alt); color:var(--color-accent); border-color:var(--color-accent); box-shadow:0 2px 5px rgba(0,0,0,0.05); }

.drill-current-title { display:inline-block; font-weight:bold; color:var(--color-accent); font-size:1.15rem; line-height:1.2; }
.drill-step-2-more {
  grid-column:1/-1; width:100%; margin-top:6px; padding:10px; background:none; border:1px dashed var(--color-primary);
  border-radius:8px; color:var(--color-primary); font-size:0.9rem; cursor:pointer; transition:color 0.2s, border-color 0.2s;
}
.drill-step-2-divider { grid-column:1/-1; border-top:1px dashed var(--color-primary); margin:6px 0; }
.drill-step-2-empty { color:#aaa; width:100%; text-align:center; padding:20px 0; }

/* アコーディオン用 */
.region-accordion { margin-bottom: 15px; border-bottom: 1px solid rgba(166,132,79,0.3); padding-bottom: 5px; background: transparent; }
.region-accordion-summary {
  font-weight: bold; color: var(--color-accent); font-size: 1.15rem; line-height: 1.2;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 5px 4px;
  user-select: none;
}
.accordion-icon { transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1); }
.region-accordion.is-open .accordion-icon { transform: rotate(180deg); }

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.region-accordion.is-open .accordion-content {
  grid-template-rows: 1fr;
}
.accordion-content-inner {
  overflow: hidden;
}

/* ---------- 最近チェックしたエリア・駅 ---------- */
.recent-areas-head { display:flex; align-items:center; justify-content:center; gap:6px; margin-bottom:12px; padding:0 10px; }
.recent-areas-head__label { font-size:0.8rem; font-weight:800; color:#555; letter-spacing:0.05em; }
.recent-areas-head__label small { font-size:0.7rem; color:#999; font-weight:600; }
.recent-areas-clear {
  margin-left:6px; display:inline-flex; align-items:center; gap:2px; padding:3px 6px; background:#f5f5f5; border:1px solid #ddd;
  border-radius:4px; font-size:0.65rem; color:#666; cursor:pointer; transition:all 0.2s;
}
.recent-areas-clear:hover { background:#ebebeb; }
.recent-areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 0 10px;
}
.recent-area-chip {
  display:inline-flex; align-items:center; gap:4px; padding:6px 16px; background:var(--color-bg-alt); border:1px solid var(--color-border);
  color:var(--color-primary); border-radius:50px; font-size:0.85rem; font-weight:700; text-decoration:none; transition:all 0.2s; flex-shrink:0; scroll-snap-align:start;
}
.recent-area-chip:hover { background:#e2e7f1; color:var(--color-navy-deep); }
@media (max-width: 768px) {
  .recent-areas-scroll-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .recent-areas-list {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 30px 10px 15px; /* 右端にグラデーション用の余白 */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .recent-areas-list::-webkit-scrollbar {
    display: none;
  }
  /* 続きがあることを示す右側のグラデーション・ギミック */
  .recent-areas-scroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, var(--color-bg) 100%);
    pointer-events: none;
  }
}

/* ---------- キーワード検索フォーム（スマホ・PC共通） ---------- */
.pc-top-search {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: -15px auto 10px;
    justify-content: center;
    padding: 0 20px 20px 20px;
  }
  .pc-top-search__form {
    flex: 1;
    position: relative;
  }
  .pc-top-search__input {
    width: 100%;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 22px;
    padding: 0 44px 0 20px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: all 0.25s ease;
  }
  .pc-top-search__input::placeholder {
    color: rgba(255,255,255,0.5);
    transition: color 0.2s ease;
  }
  .pc-top-search__input:focus::placeholder {
    color: transparent;
  }
  .pc-top-search__submit {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s;
  }
  .pc-top-search__submit:hover {
    opacity: 0.7;
  }

  /* 求人検索 (重厚感のある深いネイビーグラデ) */
  .pc-top-search__form--salon .pc-top-search__input {
    background: linear-gradient(135deg, #1a3a6b 0%, #003080 40%, #001f4d 70%, #0d1f3c 100%);
    box-shadow: 0 4px 16px rgba(0,31,77,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
  }
  .pc-top-search__form--salon .pc-top-search__input:focus {
    border-color: rgba(255,255,255,0.5);
    background: linear-gradient(135deg, #1f4580 0%, #003d99 40%, #002566 70%, #0d2045 100%);
  }
  .pc-top-search__form--salon .pc-top-search__submit {
    color: rgba(255,255,255,0.85);
  }

  /* 採用担当者検索 (重厚感のあるダークピンクグラデ) */
  .pc-top-search__form--cast .pc-top-search__input {
    background: linear-gradient(135deg, #7a0038 0%, #a50050 40%, #850040 70%, #4a001f 100%);
    box-shadow: 0 4px 16px rgba(120,0,60,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
  }
  .pc-top-search__form--cast .pc-top-search__input:focus {
    border-color: rgba(255,255,255,0.5);
    background: linear-gradient(135deg, #8f0042 0%, #c0005e 40%, #9c004c 70%, #5c0025 100%);
  }
  .pc-top-search__form--cast .pc-top-search__submit {
    color: rgba(255,255,255,0.85);
  }

  /* 統合検索（サイト内まとめて検索）：目を引くワインレッド系 */
  .pc-top-search__form--all .pc-top-search__input {
    background: linear-gradient(135deg, #a8143c 0%, #8c0f30 45%, #5e0a20 100%);
    border: 1.5px solid rgba(255,190,205,0.55);
    box-shadow: 0 6px 20px rgba(140,15,48,0.45), inset 0 1px 0 rgba(255,255,255,0.18);
  }
  .pc-top-search__form--all .pc-top-search__input:focus {
    border-color: rgba(255,225,235,0.95);
    background: linear-gradient(135deg, #c4184a 0%, #a3123a 45%, #730c28 100%);
    box-shadow: 0 8px 26px rgba(164,18,58,0.55), inset 0 1px 0 rgba(255,255,255,0.22);
  }
  .pc-top-search__form--all .pc-top-search__input::placeholder {
    color: rgba(255,255,255,0.85);
  }
  .pc-top-search__form--all .pc-top-search__submit {
    color: #fff;
  }
/* ここまで（スマホ・PC共通） */

/* ヒントテキスト（スマホ・PC共通） */
  .pc-top-search-hint-wrap {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: -10px auto 24px;
    padding: 0 20px;
  }
  .pc-top-search-hint {
    display: inline-flex;
    align-items: center;
    padding: 9px 26px;
    background: rgba(166,132,79,0.07);
    border: 1px solid rgba(166,132,79,0.28);
    border-radius: 50px;
    font-size: 0.74rem;
    font-weight: 800 !important;
    color: rgba(0,0,0,0.45);
    letter-spacing: 0.07em;
    position: relative;
  }
  .pc-top-search-hint::before {
    content: '';
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 9px solid rgba(166,132,79,0.28);
  }
  .pc-top-search-hint::after {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 8px solid var(--color-bg);
  }

/* ---------- エリア検索ヒント（下矢印） ---------- */
.drill-hint-wrap {
  display: flex;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto 12px;
  padding: 0 20px;
}
.drill-hint {
  display: inline-flex;
  align-items: center;
  padding: 8px 24px;
  background: rgba(166,132,79,0.07);
  border: 1px solid rgba(166,132,79,0.28);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800 !important;
  color: rgba(0,0,0,0.5);
  letter-spacing: 0.05em;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
/* 下矢印 */
.drill-hint::before {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 9px solid rgba(166,132,79,0.28);
}
.drill-hint::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 8px solid var(--color-bg);
}

/* ---------- ボトムシート: 路線・駅 複数選択（station-bottom-sheet.php） ---------- */
/* ボトムシート共通・スマホベース（下からスライド） */
#station-bs {
  display: flex; flex-direction: column;
  position: fixed; left: 0; right: 0; bottom: 0; margin: 0;
  width: 100%; height: 90dvh;
  background: #fff; z-index: 9999;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.1, 1, 0.2, 1), opacity 0.3s;
}
#station-bs.is-open {
  transform: translateY(0);
}

/* PC版（画面中央にポップアップ） */
@media (min-width: 769px) {
  #station-bs {
    top: 50%; bottom: auto; margin: 0 auto; max-width: 500px;
    height: 80vh; max-height: 800px; /* PCでは高すぎないように */
    border-radius: 20px;
    overflow: hidden; /* 丸みからはみ出さないようにする */
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
  }
  #station-bs.is-open {
    transform: translateY(-50%);
    opacity: 1;
    pointer-events: auto;
  }
}

/* ボトムシートを開いている時の裏画面リロード（Pull-to-Refresh）防止 */
body.station-bs-active {
  overscroll-behavior-y: none !important;
}

#station-bs-overlay {
  display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.5); z-index:9998;
  opacity:0; transition:opacity 0.3s; backdrop-filter:blur(2px);
}
.station-bs__header { padding:15px; border-bottom:1px solid #eee; position:relative; flex-shrink:0; }
.station-bs__drag { width:40px; height:5px; background:#ddd; border-radius:3px; margin:0 auto 15px auto; }
#station-bs-title { margin:0; font-size:1.2rem; text-align:center; font-weight:bold; color:#333; }
#station-bs-close { position:absolute; top:15px; right:20px; background:none; border:none; font-size:1.8rem; color:#999; cursor:pointer; line-height:1; padding:0; }
#station-bs-list { padding:20px 20px 100px 20px; overflow-y:auto; overscroll-behavior:contain; -webkit-overflow-scrolling:touch; flex-grow:1; background:#f9f9f9; }
.station-bs__footer {
  position:absolute; bottom:0; left:0; width:100%; padding:16px 20px; border-top:1px solid #eee; background:#fff; flex-shrink:0;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05); display:flex; align-items:center; gap:10px;
}
#station-bs-submit {
  flex:1; padding:14px 10px; border-radius:10px; border:none; background:linear-gradient(135deg, var(--color-accent), #c9a84e); color:#fff;
  font-weight:bold; font-size:1rem; box-shadow:0 4px 15px rgba(166,132,79,0.3); cursor:pointer; transition:opacity 0.2s;
}
#station-bs-close-footer {
  flex:0 0 48px; height:48px; border-radius:10px; border:none; background:linear-gradient(145deg, #6b6b6b, #4a4a4a 50%, #3a3a3a);
  color:rgba(255,255,255,0.9); font-size:1.3rem; font-weight:700; cursor:pointer; box-shadow:0 4px 10px rgba(0,0,0,0.25);
  display:flex; align-items:center; justify-content:center; transition:background 0.2s;
}
/* シート内（JS生成）要素 */
.station-bs-line-all {
  display:flex; justify-content:center; align-items:center; position:relative; background:var(--color-bg-alt); color:var(--color-accent);
  font-weight:bold; padding:15px 40px 15px 15px; border-radius:10px; margin-bottom:20px; text-decoration:none; border:2px solid var(--color-accent);
  box-shadow:0 4px 10px rgba(0,0,0,0.05); transition:all 0.2s;
}
.station-bs-line-all:hover { background:var(--color-accent); color:#fff; }
.station-bs-line-all span { display:flex; align-items:center; gap:6px; text-align:center; line-height:1.4; }
.station-bs-line-all svg { position:absolute; right:15px; flex-shrink:0; }
.station-card-label {
  display:flex; align-items:center; justify-content:space-between; background:#fff; border:1px solid #eee; margin-bottom:8px; padding:9px 12px;
  border-radius:10px; box-shadow:0 2px 5px rgba(0,0,0,0.02); transition:background 0.15s, border-color 0.15s; cursor:pointer;
}
.station-card-label.has-shops { background:#fffdf5; border-color:#eedbaf; }
.station-card-label.is-checked { background:rgba(166,132,79,0.12); border-color:var(--color-accent); }
.station-card-label__main { display:flex; align-items:center; flex-grow:1; }
.station-card-label__name { font-size:0.92rem; font-weight:bold; color:#333; }
.station-card-label__count { font-size:0.9rem; color:var(--color-accent); margin-left:8px; }
.station-card-label__count.is-zero { color:#ccc; }
.station-checkbox { width:18px; height:18px; margin-right:10px; accent-color:var(--color-accent); cursor:pointer; flex-shrink:0; }
.station-card-label__single {
  font-size:0.8rem; color:#888; text-decoration:none; display:flex; align-items:center; padding:4px 8px; border:1px solid #ddd;
  border-radius:20px; background:#fafafa; transition:all 0.2s; flex-shrink:0;
}
.station-card-label__single:hover { border-color:var(--color-accent); color:var(--color-accent); }

/* =====================================================================
 * 会員登録バナー（集客サイト index.php の join-banner と同じクラス）
 * ===================================================================== */
.join-banner-wrap { position: relative; width: 100%; border-radius: 16px; overflow: hidden; margin-bottom: 0; box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.join-banner-wrap > img { width: 100%; min-height: 280px; height: 300px; display: block; object-fit: cover; object-position: 70% center; }

.banner-gradient-top { position: absolute; top: 0; left: 0; width: 100%; height: 50%; background: linear-gradient(to bottom, rgba(10,16,28,0.82) 0%, rgba(10,16,28,0) 100%); pointer-events: none; z-index: 1; }
.banner-gradient-bottom { position: absolute; bottom: 0; left: 0; width: 100%; height: 85%; background: linear-gradient(to top, rgba(10,16,28,0.9) 0%, rgba(10,16,28,0.35) 70%, rgba(10,16,28,0) 100%); pointer-events: none; z-index: 1; }

.banner-text-top { position: absolute; left: 4%; top: 6%; z-index: 2; width: 92%; }
.banner-text-top-sub { font-size: clamp(1.0rem, 4.2vw, 1.3rem); font-weight: 800; margin: 0 0 8px 0; line-height: 1.4; letter-spacing: 0.05em; }
.banner-text-top-main { font-size: clamp(1.35rem, 5.4vw, 2rem); margin: 0; font-weight: 900; line-height: 1.25; letter-spacing: 0.02em; }

.banner-text-center { position: absolute; left: 4%; top: 50%; transform: translateY(-50%); z-index: 2; width: 62%; }
@keyframes banner-flip { 0% { transform: perspective(600px) rotateY(0deg); } 15% { transform: perspective(600px) rotateY(360deg); } 100% { transform: perspective(600px) rotateY(360deg); } }
.banner-text-center-main { font-size: clamp(1.1rem, 4.6vw, 1.55rem); font-weight: 800; margin: 0 0 8px 0; line-height: 1.35; letter-spacing: 0.05em; display: inline-block; animation: banner-flip 5s infinite; transform-style: preserve-3d; }
.banner-text-center-sub { font-size: clamp(0.8rem, 3.4vw, 1.05rem); margin: 0; font-weight: 700; line-height: 1.4; letter-spacing: 0.02em; opacity: 0.95; }

.banner-text-shadow-heavy { color: #fff; text-shadow: 0 3px 12px rgba(0,0,0,0.9), 0 1px 4px rgba(0,0,0,0.8); }
.banner-text-shadow-light { color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.9); }

.banner-text-bottom-left { position: absolute; left: 4%; bottom: 10%; z-index: 2; }
.banner-text-bottom-main { font-size: clamp(1.1rem, 3.2vw, 1.6rem); font-weight: 900; margin: 0; letter-spacing: 0.05em; line-height: 1.35; }
.banner-mobile-br { display: none; }

.banner-buttons-area { position: absolute; right: 20px; bottom: 8%; z-index: 2; width: calc(100% - 40px); }
.banner-buttons-flex { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }
@media (max-width: 1080px) and (min-width: 769px) { .banner-text-bottom-left { display: none; } }

@keyframes btn-howan-about {
  0% { box-shadow: 0 4px 12px rgba(0,0,0,0.3), 0 0 0 0 rgba(201,168,78,0.7); }
  20% { box-shadow: 0 4px 12px rgba(0,0,0,0.3), 0 0 0 16px rgba(201,168,78,0); }
  25%,100% { box-shadow: 0 4px 12px rgba(0,0,0,0.3), 0 0 0 0 rgba(201,168,78,0); }
}
@keyframes btn-howan-google {
  0% { box-shadow: 0 4px 12px rgba(0,0,0,0.3), 0 0 0 0 rgba(255,255,255,0.7); }
  20% { box-shadow: 0 4px 12px rgba(0,0,0,0.3), 0 0 0 16px rgba(255,255,255,0); }
  25%,100% { box-shadow: 0 4px 12px rgba(0,0,0,0.3), 0 0 0 0 rgba(255,255,255,0); }
}
@keyframes btn-howan-line {
  0% { box-shadow: 0 4px 12px rgba(0,0,0,0.3), 0 0 0 0 rgba(6,199,85,0.7); }
  20% { box-shadow: 0 4px 12px rgba(0,0,0,0.3), 0 0 0 16px rgba(6,199,85,0); }
  25%,100% { box-shadow: 0 4px 12px rgba(0,0,0,0.3), 0 0 0 0 rgba(6,199,85,0); }
}
.btn-banner-social { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 18px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; text-decoration: none; box-shadow: 0 4px 12px rgba(0,0,0,0.3); transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1); white-space: nowrap; }
.btn-banner-social:hover { transform: translateY(-3px) scale(1.02); animation: none; box-shadow: 0 8px 20px rgba(0,0,0,0.4) !important; }
.btn-banner-about { background: linear-gradient(135deg, #e8ce8a, #c9a84e); color: #2c2311; border: none; animation: btn-howan-about 4s infinite; animation-delay: 0.6s; }
.btn-banner-google { background: #ffffff; color: #333; border: 1px solid rgba(255,255,255,0.8); animation: btn-howan-google 4s infinite; }
.btn-banner-line { background: #06C755; color: #ffffff; border: 1px solid rgba(6,199,85,0.8); animation: btn-howan-line 4s infinite; animation-delay: 0.3s; }
.btn-banner-icon { display: flex; align-items: center; justify-content: center; width: 22px; height: 22px; flex-shrink: 0; }
.btn-banner-line .btn-banner-icon { background: #fff; border-radius: 50%; width: 20px; height: 20px; }

@media (max-width: 768px) {
  .join-banner-wrap > img { height: 380px; min-height: 380px; object-position: 68% 22%; }
  .banner-gradient-top { height: 60%; background: linear-gradient(to bottom, rgba(10,16,28,0.85) 0%, rgba(10,16,28,0) 100%); }
  .banner-gradient-bottom { height: 100%; background: linear-gradient(to top, rgba(10,16,28,0.95) 0%, rgba(10,16,28,0.5) 60%, rgba(10,16,28,0) 100%); }
  .banner-text-top { top: 4%; left: 5%; width: 90%; text-align: left; }
  .banner-text-top-sub { font-size: 0.95rem; margin-bottom: 4px; line-height: 1.35; }
  .banner-text-top-main { font-size: 1.3rem; line-height: 1.2; }
  .banner-text-center { left: 5%; top: 44%; width: 90%; text-align: left; }
  .banner-text-center-main { font-size: 1.15rem; margin-bottom: 4px; }
  .banner-text-center-sub { font-size: 0.82rem; }
  .banner-text-bottom-left { left: 5%; bottom: 6%; width: 46%; }
  .banner-text-bottom-main { font-size: 1.1rem; line-height: 1.35; letter-spacing: 0.02em; }
  .banner-mobile-br { display: block; }
  .banner-buttons-area { right: 4%; width: 54%; bottom: 5%; }
  .banner-buttons-flex { flex-direction: column; align-items: stretch; gap: 6px; }
  .btn-banner-social { font-size: 0.7rem; padding: 6px 10px; gap: 4px; width: 100%; justify-content: center; box-sizing: border-box; }
  .btn-banner-icon { width: 14px; height: 14px; }
  .btn-banner-google .btn-banner-icon svg { width: 14px; height: 14px; }
  .btn-banner-line .btn-banner-icon { width: 14px; height: 14px; }
  .btn-banner-line .btn-banner-icon img { width: 12px; height: auto; margin-top: 1px; }
}


/* ---------- 検索フォーム：スマホ調整 ---------- */
@media (max-width: 767px) {
  .pc-top-search { max-width: 100%; margin: 0 auto 6px; padding: 0 16px 12px; gap: 8px; }
  .pc-top-search__input { height: 46px; border-radius: 23px; padding: 0 46px 0 18px; font-size: 16px; }
  .pc-top-search__submit { width: 46px; height: 46px; }
  .pc-top-search-hint-wrap { padding: 0 16px 14px; }
  .pc-top-search-hint { font-size: 0.68rem; }
}
