/* ===========================
   service-common.css
   全ページ共通: 変数、リセット、ヘッダー、メニュー、フッター
   =========================== */

/* --- Variables --- */
:root {
  --blue: #396097;
  --dark: #232735;
  --gray: #616161;
  --light-gray: #515151;
  --green: #0b854d;
  --orange: #f2993c;
  --amber: #e08a00;
  --brown: #b87300;
  --line-green: #06c755;
  --bg-light: #f5f8fc;
  --bg-gray: #f5f7fa;
  --bg-card: #fff;
  --border-card: #e4ecf4;
  --accent-red: #966;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-inter: 'Inter', sans-serif;
}

/* --- Reset --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
html { scroll-behavior: smooth; }

/* --- Container --- */
.container-main {
  width: 100%;
  margin: 0 auto;
  background: white;
  min-height: 100vh;
}

/* --- Common Components --- */
.section-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 12px;
}
.section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 28px;
}

/* ===========================
   PAGE HEADER (h1セクション)
   =========================== */
.page-header {
  background: var(--lp-cream, #fffaf4);
  border-bottom: 1px solid var(--lp-border-cream, #f2e3d1);
  padding: 18px 0;
}
.page-header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-header h1 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--lp-navy-2, #050b4e);
  line-height: 1.4;
  margin: 0;
  padding-left: 20px;
  border-left: 6px solid var(--lp-orange-2, #ff6a00);
  border-radius: 2px;
}
.page-header .subtitle {
  font-size: 15px;
  color: var(--lp-text, #363d49);
  line-height: 1.6;
  margin: 0;
}

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.breadcrumb a {
  color: var(--lp-orange-2, #ff6a00);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.breadcrumb a:hover {
  opacity: 0.7;
  text-decoration: underline;
}
.breadcrumb .sep {
  color: var(--lp-text, #363d49);
  opacity: 0.5;
}
.breadcrumb .current {
  color: var(--lp-navy-2, #050b4e);
  font-weight: 700;
}

.line-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--line-green);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 0 40px;
  height: 46px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(6,199,85,0.25);
  cursor: pointer;
}
.line-cta .line-icon { font-size: 22px; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  font-family: var(--font-sans);
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover { opacity: 0.85; }
.btn-secondary {
  background: #f3f4f6;
  color: var(--dark);
}
.btn-secondary:hover { background: #e5e7eb; }
.btn-outline {
  background: #fff;
  color: var(--dark);
  border: 2px solid #e5e7eb;
}
.btn-outline:hover { background: #f9fafb; }
.btn-block { display: block; width: 100%; }

/* ===========================
   NAVBAR
   =========================== */
.navbar-wrapper {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 80px;
  max-width: 1440px;
  margin: 0 auto;
}
.navbar-logo {
  display: flex;
  flex-direction: column;
}
.navbar-logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}
.navbar-logo img {
  height: 39px;
  display: block;
}
.navbar-logo .logo-text {
  font-weight: 900;
  font-size: 20px;
  color: var(--dark);
}
.navbar-logo .logo-img {
  height: 32px;
  width: auto;
}
.navbar-tagline {
  font-size: 11px;
  color: #666;
  margin-top: 1px;
}
.navbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
}
.nav-link-login {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(90deg, #ff6a00 0%, #ff981a 100%);
  padding: 8px 20px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(255, 106, 0, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-link-login:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(255, 106, 0, 0.35);
  color: #fff;
}
.hamburger {
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  position: relative;
  z-index: 201;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--dark);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
/* Hamburger X animation */
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===========================
   MENU OVERLAY & PANEL
   =========================== */
.menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 10, 67, 0.55);
  backdrop-filter: blur(4px);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 88vw;
  height: 100%;
  background: linear-gradient(180deg, #fff 0%, var(--lp-cream, #fffaf4) 100%);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.22, 0.9, 0.32, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 64px 22px 40px;
}
.menu-panel.is-open {
  transform: translateX(0);
  box-shadow: -16px 0 32px rgba(4, 10, 67, 0.18);
}
.menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--lp-border-cream, #f2e3d1);
  border-radius: 50%;
  background: #fff;
  color: var(--lp-navy-2, #050b4e);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 4px 10px rgba(45, 22, 0, 0.06);
}
.menu-close svg {
  width: 18px;
  height: 18px;
}
.menu-close:hover {
  background: var(--lp-orange-light, #ffede0);
  border-color: var(--lp-orange-2, #ff6a00);
  color: var(--lp-orange-2, #ff6a00);
}

/* ===== 上部ロゴ (中央配置) ===== */
.menu-top-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 0 20px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--lp-border-cream, #f2e3d1);
}
.menu-top-logo img {
  width: 160px;
  height: auto;
  display: block;
  transition: opacity 0.2s ease;
}
.menu-top-logo:hover img {
  opacity: 0.75;
}

/* ===== ユーザー情報カード (ログイン中) ===== */
.menu-user-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--lp-orange-light, #ffede0) 0%, var(--lp-cream, #fffaf4) 100%);
  border: 1px solid var(--lp-border-cream, #f2e3d1);
  border-radius: 16px;
  text-decoration: none;
  margin-bottom: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 14px rgba(45, 22, 0, 0.06);
}
.menu-user-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(45, 22, 0, 0.1);
}
.menu-user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-orange, #ff5a09) 0%, var(--lp-orange-2, #ff6a00) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(255, 106, 0, 0.28);
  flex-shrink: 0;
  overflow: hidden;
}
.menu-user-avatar.has-image {
  background: #fff;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(45, 22, 0, 0.18);
}
.menu-user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.menu-user-info {
  min-width: 0;
}
.menu-user-greeting {
  margin: 0 0 2px;
  font-size: 11px;
  font-weight: 700;
  color: var(--lp-orange-2, #ff6a00);
  letter-spacing: 0.05em;
}
.menu-user-name {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: var(--lp-navy-2, #050b4e);
  line-height: 1.3;
  word-break: break-word;
}
.menu-user-arrow {
  color: var(--lp-orange-2, #ff6a00);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

/* ===== LINE CTA in menu ===== */
.menu-line-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--line-green);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 900;
  padding: 16px;
  border-radius: 999px;
  margin-bottom: 8px;
  box-shadow: 0 8px 18px rgba(6, 199, 85, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.menu-line-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(6, 199, 85, 0.38);
  color: #fff;
}
.menu-line-cta svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ===== Category ===== */
.menu-category {
  margin-top: 24px;
}
.menu-category-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 900;
  color: var(--lp-orange-2, #ff6a00);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 4px 10px;
  position: relative;
}
.menu-category-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 3px;
  background: var(--lp-orange-2, #ff6a00);
  border-radius: 2px;
}

/* ===== ナビ (メニューアイテム) ===== */
.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.menu-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--lp-navy-2, #050b4e);
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}
.menu-nav a:hover {
  background: var(--lp-orange-light, #ffede0);
  color: var(--lp-orange-2, #ff6a00);
  transform: translateX(2px);
}
.menu-label {
  font-family: 'Noto Sans JP', sans-serif;
  min-width: 0;
  flex: 1;
}
.menu-nav a .arrow {
  color: var(--lp-orange-2, #ff6a00);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.menu-nav a:hover .arrow {
  opacity: 1;
  transform: translateX(2px);
}

/* ===== フッターリンク (利用規約 等) ===== */
.menu-footer-links {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  padding: 16px 4px 0;
  flex-wrap: wrap;
  border-top: 1px solid var(--lp-border-cream, #f2e3d1);
}
.menu-footer-links a {
  font-size: 12px;
  font-weight: 700;
  color: var(--lp-text, #363d49);
  text-decoration: none;
  transition: color 0.2s ease;
}
.menu-footer-links a:hover {
  color: var(--lp-orange-2, #ff6a00);
}

/* ===== ログアウトボタン ===== */
.menu-logout-form {
  margin: 16px 0 0;
}
.menu-logout-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  background: #ffffff;
  border: 1px solid var(--lp-border-cream, #f2e3d1);
  border-radius: 12px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #6b6155;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.menu-logout-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}
.menu-logout-btn:hover {
  background: #fff5e6;
  border-color: var(--lp-orange-2, #ff6a00);
  color: var(--lp-orange-2, #ff6a00);
}


/* ===========================
   FOOTER
   =========================== */
/* ===========================
   FOOTER (Figma: 1728x430)
   =========================== */
.site-footer {
  background: #050b4e;
  color: #fff;
  padding: 70px 0 40px;
}
.site-footer-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  gap: 100px;
  margin-bottom: 90px;
}
.footer-col-brand {
  flex: 0 0 430px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-col-brand .footer-brand-logo {
  width: 318px;
  height: auto;
  display: block;
}
.footer-col-brand .footer-brand-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 27px;
  color: #dce5ff;
  margin: 0;
}
.footer-col {
  flex: 0 0 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.footer-col-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 31px;
  color: #fff;
  margin-bottom: 0;
}
.footer-col-links {
  display: flex;
  flex-direction: column;
}
.footer-col-links a {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 31px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-col-links a:hover {
  opacity: 0.75;
  color: #fff;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer-copy {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  color: #aebbf4;
  opacity: 1;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  background: linear-gradient(90deg, #ff6a00 0%, #ff981a 78%, #ffdd4f 100%);
  padding: 80px 140px;
  text-align: center;
  color: #fff;
}
.cta-section h2, .cta-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 16px;
  color: #fff;
}
.cta-section p, .cta-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 32px;
  color: #fff;
  opacity: 1;
}
.cta-section .line-cta { font-size: 16px; }
.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cta-button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--line-green);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 20px;
  padding: 18px 44px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  opacity: 1;
}
.cta-button-primary svg {
  width: 24px;
  height: 24px;
}
.cta-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.cta-link {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
}
.cta-link:hover { opacity: 0.85; color: #fff; }
.cta-divider { color: rgba(255, 255, 255, 0.7); }

/* ===========================
   MODAL
   =========================== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}
.modal.active { display: flex; }
.modal-content {
  background: white;
  border-radius: 24px;
  max-width: 480px;
  width: 100%;
  margin: 0 16px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ===========================
   COMMON RESPONSIVE - TABLET
   =========================== */
@media (max-width: 1024px) {
  .navbar { padding: 14px 24px; }
  .page-header { padding: 36px 0; }
  .page-header-inner { padding: 0 24px; }
  .page-header h1, .page-title { font-size: 28px; }
  .site-footer { padding: 56px 0 32px; }
  .site-footer-inner { padding: 0 24px; }
  .footer-top { flex-wrap: wrap; gap: 40px 60px; margin-bottom: 56px; }
  .footer-col-brand { flex: 0 0 100%; }
  .footer-col-brand .footer-brand-logo { width: 260px; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
  .cta-section { padding: 48px 24px; }
  .cta-section h2, .cta-title { font-size: 24px; }
}

/* ===========================
   COMMON RESPONSIVE - MOBILE
   =========================== */
@media (max-width: 480px) {
  .page-header { padding: 24px 0 32px; }
  .page-header-inner { padding: 0 16px; gap: 10px; }
  .page-header h1, .page-title { font-size: 24px; padding-left: 16px; }
  .page-header .subtitle, .page-description { font-size: 13px; }
  .breadcrumb { font-size: 11px; gap: 6px; }
  .navbar { padding: 12px 16px; }
  .navbar-logo img { height: 28px; }
  .navbar-logo .logo-text { font-size: 16px; }
  .navbar-logo .logo-img { height: 24px; }
  .navbar-tagline { font-size: 9px; }
  .navbar-right { gap: 12px; }
  .nav-link { font-size: 12px; }
  .nav-link.corp { display: none; }
  .nav-link-login { font-size: 12px; padding: 5px 14px; }
  .hamburger { width: 32px; height: 32px; }
  .hamburger span { width: 16px; height: 1.5px; }

  .section-subtitle { font-size: 12px; }
  .section-title { font-size: 22px; }
  .line-cta { width: 100%; font-size: 15px; height: 48px; padding: 0 16px; border-radius: 12px; }

  .menu-panel { width: 100%; max-width: 100%; padding: 64px 18px 32px; }
  .menu-nav a { font-size: 14px; padding: 12px 12px; }
  .menu-line-cta { margin-bottom: 8px; }
  .menu-user-card { padding: 12px 14px; }
  .menu-user-avatar { width: 40px; height: 40px; font-size: 18px; }
  .menu-user-name { font-size: 14px; }

  .site-footer { padding: 40px 0 28px; }
  .site-footer-inner { padding: 0 16px; }
  .footer-top { flex-direction: column; gap: 32px; margin-bottom: 40px; }
  .footer-col-brand { flex: none; gap: 14px; }
  .footer-col-brand .footer-brand-logo { width: 220px; }
  .footer-col-brand .footer-brand-desc { font-size: 13px; line-height: 22px; }
  .footer-col-title { font-size: 14px; line-height: 28px; }
  .footer-col-links a { font-size: 14px; line-height: 28px; }
  .footer-copy { font-size: 12px; line-height: 18px; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }

  .cta-section { padding: 48px 16px; }
  .cta-section h2, .cta-title { font-size: 22px; }
  .cta-section p, .cta-text { font-size: 13px; }
  .cta-button-primary { width: 100%; font-size: 15px; padding: 14px 16px; }
}


.br-sp { display: none; }

@media (max-width: 768px) {
    .br-sp { display: inline; }
}



/* ===== LINE CTA ボタン（共通） ===== */
.pain-cta-wrap { text-align: center; }
.pain-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #06C755;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 48px;
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(6,199,85,0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}
.pain-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(6,199,85,0.3);
    color: #fff;
}
.pain-cta-icon {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .pain-cta {
        font-size: 14px;
        padding: 14px 32px;
    }
}
/* ===========================
   求人検索バー (LP/マイページ共通)
   =========================== */
.lp-search-bar {
  margin-top: 28px;
  padding: 24px 20px;
  background: linear-gradient(135deg, var(--lp-orange-light, #ffede0) 0%, var(--lp-cream, #fffaf4) 100%);
  border: 1px solid var(--lp-border-cream, #f2e3d1);
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(45, 22, 0, 0.06);
}

.lp-search-bar-inner {
  max-width: 720px;
  margin: 0 auto;
}

.lp-search-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--lp-navy-2, #050b4e);
  margin: 0 0 14px;
  text-align: center;
}

.lp-search-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-search-input-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.lp-search-input-wrapper {
  position: relative;
}

.lp-search-input-icon {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: var(--lp-orange-2, #ff6a00);
  pointer-events: none;
}

.lp-search-input {
  width: 100%;
  padding: 12px 14px 12px 40px;
  background: #ffffff;
  border: 1px solid var(--lp-border-cream, #f2e3d1);
  border-radius: 10px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: var(--lp-navy-2, #050b4e);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}

.lp-search-input:focus {
  outline: none;
  border-color: var(--lp-orange-2, #ff6a00);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15);
}

.lp-search-input::placeholder {
  color: #b5ad9f;
}

.lp-search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  background: linear-gradient(90deg, #ff6a00 0%, #ff981a 100%);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 14px rgba(255, 106, 0, 0.28);
}

.lp-search-button svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.lp-search-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(255, 106, 0, 0.36);
}

/* マイページに置く際は外側マージンをリセット */
.mp-search-wrap {
  margin: 0 0 20px;
}
.mp-search-wrap .lp-search-bar {
  margin-top: 0;
}

@media (min-width: 768px) {
  .lp-search-bar {
    padding: 28px 32px;
  }
  .lp-search-title {
    font-size: 22px;
  }
  .lp-search-input-group {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .lp-search-form {
    flex-direction: row;
    align-items: stretch;
  }
  .lp-search-input-group {
    flex: 1;
  }
  .lp-search-button {
    flex: 0 0 auto;
    min-width: 140px;
  }
}
