@charset "UTF-8";

/* ==========================================================
   THE MUSE Recruit LP — Warm & Friendly Redesign (2026)
   ========================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --c-bg:         #F8FAFF;
  --c-surface:    #FFFFFF;
  --c-primary:    #4A7CFF;
  --c-primary-2:  #6B9FFF;
  --c-accent:     #2B5CE6;
  --c-text:       #1A1F36;
  --c-text-sub:   #5A6585;
  --c-muted:      #8F97B3;
  --c-border:     #DDE3F5;
  --c-glass:      rgba(255,255,255,.72);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 14px rgba(26, 43, 120, .06);
  --shadow-md: 0 12px 32px rgba(26, 43, 120, .10);
  --shadow-lg: 0 24px 56px rgba(26, 43, 120, .14);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,.6);

  --max-w: 1120px;
  --narrow-w: 880px;
  --ease-out: cubic-bezier(.22,1,.36,1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .75; }

/* ---------- Utilities ---------- */
.container { width: min(var(--max-w), 92%); margin-inline: auto; }
.narrow    { width: min(var(--narrow-w), 92%); margin-inline: auto; }
.center    { text-align: center; }

/* Reveal animation (IntersectionObserver)
   JS有効時のみ非表示にし、JS未対応・遅延環境でもコンテンツが見えるようデフォルト表示 */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
html.js .reveal {
  opacity: 0;
  transform: translateY(20px);
}
html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

/* ---------- Floating Header ---------- */
.floating-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid var(--c-border);
  padding: 14px 0;
  transform: translateY(-100%);
  transition: transform .4s var(--ease-out);
}
.floating-header.is-visible {
  transform: translateY(0);
}
.floating-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.floating-header__brand {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .12em;
  color: var(--c-accent);
}
.floating-header__nav {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.floating-header__nav a {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text);
  text-decoration: none;
  transition: color .2s;
}
.floating-header__nav a:hover {
  color: var(--c-primary);
}
.floating-header__cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-primary) 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: transform .25s var(--ease-out), box-shadow .25s;
}
.floating-header__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(43,92,230,.28);
  opacity: 1;
}
@media (max-width: 640px) {
  .floating-header__nav { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.55) saturate(1.1);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(43,92,230,.35) 0%, rgba(26,31,54,.55) 100%);
}
.hero .container {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 8vh, 96px) 0 clamp(56px, 8vh, 100px);
}

.hero-brand {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1;
  color: rgba(255,255,255,.95);
  text-shadow: 0 2px 14px rgba(0,0,0,.25);
}
.hero .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 16px;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(34px, 5.6vw, 64px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.02em;
  text-shadow: 0 2px 18px rgba(0,0,0,.25);
}

.hero .lead {
  margin: 0 0 32px;
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.8;
  max-width: 600px;
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 8px rgba(0,0,0,.2);
}

/* CTA Buttons */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), filter .25s;
  cursor: pointer;
  border: 0;
}
.btn:hover { transform: translateY(-2px); opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, #fff 0%, #f0f4ff 100%);
  color: var(--c-accent);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.btn-primary:hover { box-shadow: 0 14px 34px rgba(0,0,0,.26); }
.btn-secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover { background: rgba(255,255,255,.22); }

/* Hero points (high-visibility pills) */
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(255,255,255,.96) 0%, rgba(235,242,255,.96) 100%);
  color: var(--c-accent);
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 10px 28px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.5);
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
}
.hero-points li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-primary) 100%);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(43,92,230,.3);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.8);
  font-size: 12px;
  letter-spacing: .1em;
  animation: bounce 2s infinite;
}
.scroll-hint::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  border-radius: 1px;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- Section common ---------- */
.section {
  padding: clamp(64px, 10vh, 112px) 0;
  position: relative;
}
.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(248,250,255,.88);
}
.section .container { position: relative; z-index: 1; }

.section h2 {
  margin: 0 0 36px;
  font-size: clamp(26px, 3.6vw, 38px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -.01em;
  text-align: center;
}

/* ---------- Cards (reasons) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.card:hover .card__bg img { transform: scale(1.06); }
.card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(26,31,54,.15) 0%, rgba(26,31,54,.78) 100%);
}
.card h3, .card p { position: relative; z-index: 2; }
.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
}
.card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  opacity: .92;
}
.card .num {
  position: absolute;
  top: 20px;
  right: 22px;
  z-index: 2;
  font-size: 48px;
  font-weight: 800;
  opacity: .18;
  line-height: 1;
}

/* Card gradient backgrounds */
.card--bg-1 {
  background: linear-gradient(135deg, #2B5CE6 0%, #6B9FFF 50%, #1A3BA0 100%);
}
.card--bg-2 {
  background: linear-gradient(135deg, #1A3BA0 0%, #4A7CFF 50%, #2B5CE6 100%);
}
.card--bg-3 {
  background: linear-gradient(135deg, #6B9FFF 0%, #2B5CE6 50%, #1A3BA0 100%);
}
.card--bg-1 .card__bg,
.card--bg-2 .card__bg,
.card--bg-3 .card__bg { display: none; }
.card--bg-1 .card__overlay,
.card--bg-2 .card__overlay,
.card--bg-3 .card__overlay {
  background: linear-gradient(180deg, rgba(26,31,54,.25) 0%, rgba(26,31,54,.65) 100%);
}

/* ---------- Details ---------- */
.section-dark .section-bg::after {
  background: rgba(22,28,48,.82);
}
.section-dark .container { color: #E8ECFF; }
.section-dark h2 { color: #fff; }

.details-card {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  color: var(--c-text);
  box-shadow: var(--shadow-lg);
}
.details-grid {
  margin: 0;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0 24px;
}
.details-grid dt,
.details-grid dd {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-border);
}
.details-grid dt {
  font-weight: 700;
  color: var(--c-accent);
  font-size: 15px;
}
.details-grid dd { font-size: 15px; line-height: 1.7; }
.details-grid dt:first-of-type,
.details-grid dd:first-of-type { padding-top: 0; }
.details-grid dt:last-of-type,
.details-grid dd:last-of-type { border-bottom: 0; padding-bottom: 0; }

/* ---------- Checks (welcome) ---------- */
.checks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.checks-grid li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.checks-grid li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.check-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-2) 100%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.check-icon svg { width: 14px; height: 14px; }

/* ---------- Entry / Contact ---------- */
.section-accent .section-bg::after {
  background: linear-gradient(180deg, rgba(235,241,255,.92) 0%, rgba(247,249,255,.92) 100%);
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.contact-links li {
  background: var(--c-surface);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.contact-links li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.contact-links .tel-card {
  background: linear-gradient(135deg, #1A2B74 0%, #2B3F9E 100%);
  color: #fff;
  border: 0;
  position: relative;
  overflow: hidden;
}
.contact-links .tel-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 140px;
  height: 140px;
  background: rgba(255,255,255,.10);
  border-radius: 50%;
}
.contact-links .tel-card .label {
  color: rgba(255,255,255,.85);
}
.contact-links .tel-card a {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .04em;
}
.contact-links .tel-card span {
  color: rgba(255,255,255,.8);
}
.contact-links .tel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(26,43,120,.32);
}
.contact-links .line-card {
  background: linear-gradient(135deg, #06C755 0%, #05b34d 100%);
  color: #fff;
  border: 0;
  position: relative;
  overflow: hidden;
}
.contact-links .line-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 140px;
  height: 140px;
  background: rgba(255,255,255,.10);
  border-radius: 50%;
}
.contact-links .line-card .label {
  color: rgba(255,255,255,.85);
}
.contact-links .line-card a {
  color: #fff;
  font-size: 20px;
}
.contact-links .line-card span {
  color: rgba(255,255,255,.8);
}
.contact-links .line-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(6,199,85,.32);
}
.contact-links .label {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .1em;
  font-weight: 700;
  color: var(--c-primary);
  text-transform: uppercase;
}
.contact-links a {
  font-weight: 800;
  font-size: 22px;
  color: var(--c-accent);
  text-decoration: none;
}
.contact-links a:hover { opacity: .7; }
.contact-links span {
  display: block;
  font-size: 13px;
  color: var(--c-text-sub);
  margin-top: 6px;
}

/* ---------- Parsley Validation ---------- */
.parsley-errors-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  font-size: 13px;
  font-weight: 700;
  color: #e02020;
}
.parsley-errors-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.parsley-errors-list li::before {
  content: "▲";
  font-size: 10px;
}
.parsley-error {
  border-color: #e02020 !important;
  background: #fff5f5 !important;
}
.parsley-error:focus {
  box-shadow: 0 0 0 4px rgba(224,32,32,.12) !important;
  border-color: #e02020 !important;
}
.parsley-success {
  border-color: #06c755 !important;
  background: #f5fff8 !important;
}

/* ---------- Form ---------- */
.form-card {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
}
.form-card label,
.form-card legend {
  display: block;
  margin-top: 18px;
  font-weight: 700;
  font-size: 14px;
  color: var(--c-text);
}
.form-card input[type="text"],
.form-card select,
.form-card textarea {
  width: 100%;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-top: 8px;
  font: inherit;
  font-size: 15px;
  color: var(--c-text);
  background: #FAFBFF;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.form-card input[type="text"]:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(74,124,255,.12);
}
.form-card ::placeholder { color: #A6ADC8; }

.email-row {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}
.email-row input[type="text"] {
  flex: 1 1 auto;
  min-width: 0;
}
.email-row select {
  flex: 0 0 auto;
  width: auto;
  min-width: 120px;
}
.form-card fieldset {
  border: 0;
  padding: 0;
  margin: 18px 0 0;
}
.form-card fieldset label {
  margin: 10px 18px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  cursor: pointer;
}
.form-card input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--c-primary);
  cursor: pointer;
}

.submitbtn {
  margin-top: 24px;
  width: 100%;
  border: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-primary) 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  padding: 16px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(43,92,230,.28);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), filter .25s;
}
.submitbtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(43,92,230,.36);
  filter: brightness(1.06);
}

/* reCAPTCHA badge hide (official recommended way) */
.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha_policy {
  font-size: 12px;
  color: var(--c-text-sub);
  text-align: center;
  margin-top: 16px;
}
.recaptcha_policy a {
  color: var(--c-accent);
  text-decoration: underline;
}

.thanks {
  background: var(--c-surface);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  font-weight: 800;
  font-size: 18px;
  color: var(--c-accent);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
}

/* ---------- Footer ---------- */
.footer {
  padding: 32px 0;
  text-align: center;
  color: var(--c-muted);
  font-size: 13px;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; }
  .card { min-height: 260px; }
  .contact-links,
  .checks-grid,
  .details-grid { grid-template-columns: 1fr; }
  .details-grid dt { padding-bottom: 4px; border-bottom: 0; }
  .details-grid dd { padding-top: 2px; }
  .hero h1 { font-size: clamp(30px, 8vw, 48px); }
}

@media (max-width: 480px) {
  .btn { width: 100%; }
  .cta-row { flex-direction: column; }
  .card { padding: 22px; }
  .card .num { font-size: 40px; }
}
