@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@500;700&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

:root {
  --pink-deep: #e8608a;
  --pink-soft: #fbe4ec;
  --pink-mid: #f7b8cd;
  --gold: #cda05e;
  --gold-light: #f4e9d8;
  --purple: #9b7bb8;
  --ink: #4a3b40;
  --ink-light: #8a7880;
  --bg: #fffaf9;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(232, 96, 138, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.85;
  font-weight: 400;
}

h1, h2, h3, h4, .brand {
  font-family: 'Zen Old Mincho', serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 249, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--pink-mid);
}
.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-size: 22px;
  color: var(--pink-deep);
}
.brand span { color: var(--gold); }
.main-nav ul { display: flex; gap: 22px; flex-wrap: wrap; }
.main-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.main-nav a:hover { color: var(--pink-deep); }
.header-cta {
  background: linear-gradient(135deg, var(--pink-deep), #f28aa8);
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow);
  white-space: nowrap;
}

/* Mobile nav toggle (hamburger) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--pink-deep);
  border-radius: 2px;
}
.nav-close { display: none; }
.nav-overlay { display: none; }

@media (max-width: 960px) {
  .nav-toggle { display: flex; order: 3; margin-left: 14px; }
  .header-cta { order: 2; margin-left: auto; }
  .brand { order: 1; }
  .site-header { z-index: 220; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: -12px 0 34px rgba(74,59,64,0.15);
    padding: 84px 28px 40px;
    transition: right 0.3s ease;
    z-index: 210;
    overflow-y: auto;
  }
  .main-nav.is-open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav a {
    display: block;
    padding: 15px 4px;
    border-bottom: 1px solid var(--pink-soft);
    font-size: 15px;
  }
  .nav-close {
    display: block;
    position: absolute;
    top: 18px;
    right: 20px;
    width: 34px;
    height: 34px;
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    color: var(--ink);
    cursor: pointer;
  }
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(58,42,48,0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 200;
  }
  .nav-overlay.is-open { opacity: 1; visibility: visible; }
  .header-inner { padding: 14px 18px; }
  .brand { font-size: 19px; }
}
@media (max-width: 400px) {
  .header-cta { padding: 8px 14px; font-size: 12.5px; }
  .brand { font-size: 17px; }
}

/* Hero */
.hero {
  background-image: linear-gradient(160deg, rgba(28,20,32,0.58), rgba(28,20,32,0.78)), url('img/hero-bg.jpg'), linear-gradient(160deg, var(--pink-soft) 0%, #fff 55%, var(--gold-light) 100%);
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-eyebrow {
  display: inline-block;
  color: var(--gold);
  letter-spacing: 0.25em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(30px, 5vw, 46px);
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}
.hero h1 em {
  font-style: normal;
  color: var(--pink-mid);
}
.hero p {
  max-width: 560px;
  margin: 0 auto 34px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  position: relative;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 32px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink-deep), #f28aa8);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(232,96,138,0.22); }
.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: #fff;
}
.btn-outline:hover { background: var(--gold-light); }

.hero-stats {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
}
.hero-stats div { text-align: center; }
.hero-stats strong {
  display: block;
  font-family: 'Zen Old Mincho', serif;
  font-size: 30px;
  color: #fff;
}
.hero-stats span { font-size: 12px; color: rgba(255,255,255,0.75); }

/* Section generic */
section { padding: 80px 0; }
.section-alt { background: var(--pink-soft); }
.section-head { text-align: center; margin-bottom: 50px; }
.section-eyebrow {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.25em;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(24px, 3.5vw, 32px); }
.section-head p { color: var(--ink-light); margin-top: 14px; font-size: 14px; }

/* Cards grid */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* General mobile spacing adjustments */
@media (max-width: 600px) {
  section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .hero { padding: 60px 20px 46px; background-position: center, 22% 18%, center; }
  .hero-stats { gap: 26px; margin-top: 40px; }
  .hero-buttons { gap: 12px; }
  .page-hero { padding: 44px 20px; }
  .card { padding: 26px 20px; }
  .cast-photo { height: 170px; }
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 26px;
  box-shadow: var(--shadow);
  border: 1px solid #f6dbe4;
}
.card .icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--pink-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  color: var(--pink-deep);
}
.card h3 { font-size: 17px; margin-bottom: 10px; }
.card p { font-size: 13.5px; color: var(--ink-light); }

/* Person / cast card */
.cast-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #f6dbe4;
}
.cast-photo {
  height: 210px;
  background: linear-gradient(135deg, var(--pink-mid), var(--gold-light));
  background-size: cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Zen Old Mincho', serif;
  font-size: 15px;
  color: #fff;
}
.cast-body { padding: 20px; }
.cast-body h3 { font-size: 16px; margin-bottom: 6px; }
.cast-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.cast-tags span {
  background: var(--pink-soft);
  color: var(--pink-deep);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 700;
}

/* Table */
.info-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.info-table th, .info-table td {
  text-align: left;
  padding: 16px 22px;
  border-bottom: 1px solid #f6e3ea;
  font-size: 14px;
}
.info-table th { width: 190px; background: var(--pink-soft); color: var(--pink-deep); font-weight: 700; }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }
@media (max-width: 560px) {
  .info-table, .info-table tbody, .info-table tr, .info-table th, .info-table td {
    display: block;
    width: 100%;
  }
  .info-table tr { margin-bottom: 4px; }
  .info-table th { padding: 14px 18px 4px; }
  .info-table td { padding: 4px 18px 18px; border-bottom: 1px solid #f6e3ea; }
  .info-table tr:last-child td { border-bottom: none; }
}

/* Steps */
.steps { counter-reset: step; display: grid; gap: 24px; }
.step {
  display: flex; gap: 20px; align-items: flex-start;
  background: #fff; border-radius: 16px; padding: 24px; box-shadow: var(--shadow); border: 1px solid #f6dbe4;
}
.step-num {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-deep), var(--gold));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: 'Zen Old Mincho', serif; font-size: 18px;
}
.step h3 { font-size: 15.5px; margin-bottom: 6px; }
.step p { font-size: 13.5px; color: var(--ink-light); }

/* FAQ */
.faq-item { background: #fff; border-radius: 14px; padding: 22px 26px; margin-bottom: 14px; box-shadow: var(--shadow); border: 1px solid #f6dbe4; }
.faq-item.is-hidden { display: none; }
.faq-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-light);
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.faq-q { font-weight: 700; color: var(--pink-deep); margin-bottom: 8px; font-size: 14.5px; }
.faq-a { font-size: 13.5px; color: var(--ink-light); }
button.btn { cursor: pointer; font-family: inherit; }

/* Form */
.apply-form { background: #fff; border-radius: 22px; padding: 44px; box-shadow: var(--shadow); border: 1px solid #f6dbe4; }
@media (max-width: 600px) {
  .apply-form { padding: 26px 20px; border-radius: 18px; }
  .form-submit button { padding: 15px 42px; width: 100%; }
}
.form-row { margin-bottom: 22px; }
.form-row label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.form-row label .req { color: var(--pink-deep); font-size: 11px; margin-left: 6px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  border: 1.5px solid #f0d3de;
  border-radius: 10px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 14px;
  background: #fffaf9;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--pink-deep);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.form-submit { text-align: center; margin-top: 30px; }
.form-submit button {
  border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--pink-deep), #f28aa8);
  color: #fff; padding: 16px 60px; border-radius: 32px; font-size: 15px; font-weight: 700;
  box-shadow: var(--shadow);
}

/* Quote / voice */
.voice-card {
  background: #fff; border-radius: 18px; padding: 30px; box-shadow: var(--shadow); border: 1px solid #f6dbe4;
  position: relative;
}
.voice-card::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 60px;
  color: var(--pink-mid);
  position: absolute;
  top: 6px; left: 18px;
  line-height: 1;
}
.voice-card p { margin-top: 20px; font-size: 14px; color: var(--ink); }

/* Voice detail card (4-field testimonial) */
.voice-card-detail {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid #f6dbe4;
}
.voice-head { margin-bottom: 20px; border-bottom: 1px solid var(--pink-soft); padding-bottom: 16px; }
.voice-head h3 { font-size: 18px; color: var(--pink-deep); }
.voice-head h3 span { display: block; font-size: 12.5px; color: var(--ink-light); font-weight: 400; margin-top: 4px; font-family: 'Noto Sans JP', sans-serif; }
.voice-field { margin-bottom: 18px; }
.voice-field:last-child { margin-bottom: 0; }
.voice-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-light);
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.voice-field p { font-size: 13.5px; color: var(--ink); }
.voice-name { margin-top: 16px; font-size: 12.5px; color: var(--gold); font-weight: 700; }

/* Blog list */
.blog-item {
  display: flex; gap: 22px; background: #fff; border-radius: 16px; padding: 20px; box-shadow: var(--shadow); border: 1px solid #f6dbe4; margin-bottom: 18px;
}
.blog-thumb {
  width: 120px; height: 90px; flex-shrink: 0; border-radius: 12px;
  background: linear-gradient(135deg, var(--pink-mid), var(--purple));
  background-size: cover;
  background-position: center;
}
.blog-meta { font-size: 11.5px; color: var(--gold); font-weight: 700; margin-bottom: 6px; }
.blog-item h3 { font-size: 15px; margin-bottom: 6px; }
.blog-item p { font-size: 13px; color: var(--ink-light); }
@media (max-width: 480px) {
  .blog-item { flex-direction: column; }
  .blog-thumb { width: 100%; height: 140px; }
}

/* News list (お知らせ) */
.news-list { background: #fff; border-radius: 18px; box-shadow: var(--shadow); border: 1px solid #f6dbe4; padding: 8px 28px; }
.news-item { padding: 20px 0; border-bottom: 1px solid var(--pink-soft); }
.news-item:last-child { border-bottom: none; }
.news-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.news-date { font-size: 11.5px; color: var(--ink-light); }
.news-tag {
  font-size: 10.5px; font-weight: 700; color: var(--gold); background: var(--gold-light);
  padding: 2px 10px; border-radius: 20px;
}
.news-title { font-size: 14.5px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.news-body { font-size: 13px; color: var(--ink-light); }
@media (max-width: 560px) {
  .news-list { padding: 4px 18px; }
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--pink-deep), var(--purple));
  color: #fff; text-align: center; padding: 70px 24px; border-radius: 0;
}
.cta-band h2 { font-size: clamp(22px,3vw,30px); margin-bottom: 16px; }
.cta-band p { opacity: 0.9; margin-bottom: 30px; font-size: 14px; }
.cta-band .btn-primary { background: #fff; color: var(--pink-deep); box-shadow: none; }

/* Contact CTA (LINE / Mail / Tel) */
.contact-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 32px;
  font-weight: 700;
  font-size: 14.5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta-btn:hover { transform: translateY(-2px); }
.cta-line { background: #06C755; color: #fff; box-shadow: 0 10px 24px rgba(6,199,85,0.28); }
.cta-mail { background: #fff; color: var(--pink-deep); border: 1.5px solid var(--pink-deep); }
.cta-tel { background: #fff; color: var(--gold); border: 1.5px solid var(--gold); }
@media (max-width: 480px) {
  .contact-cta { flex-direction: column; }
  .cta-btn { width: 100%; justify-content: center; }
  .contact-block { padding: 28px 20px; }
}

/* Secondary icon link inside cta-band (WEB応募フォームはこちら) */
.cta-band-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 10px 24px;
  border-radius: 30px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.7);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(4px);
  transition: transform 0.2s ease, background 0.2s ease;
}
.cta-band-link:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }
.cta-band-link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Contact CTA variant on dark cta-band background */
.cta-band .contact-cta { margin-top: 30px; }
.cta-band .cta-line { background: #06C755; color: #fff; }
.cta-band .cta-mail,
.cta-band .cta-tel {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
}

/* Standalone contact block (used on recruit page) */
.contact-block {
  background: #fff;
  border-radius: 22px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid #f6dbe4;
  text-align: center;
}
.contact-block p.note { color: var(--ink-light); font-size: 13.5px; margin-bottom: 24px; }
.contact-block .tel-number { display: block; font-size: 12px; opacity: 0.85; margin-top: 2px; }

/* Footer */
footer { background: #3a2a30; color: #f3e4ea; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
footer h4 { font-size: 13px; color: var(--gold); margin-bottom: 16px; letter-spacing: 0.1em; }
footer .brand { color: #fff; font-size: 20px; margin-bottom: 14px; }
footer .brand span { color: var(--gold); }
footer p { font-size: 12.5px; color: #cbb6bd; }
footer li { margin-bottom: 10px; font-size: 13px; }
footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  text-align: center;
  font-size: 11.5px;
  color: #a98f97;
}

/* Breadcrumb */
.breadcrumb { font-size: 12px; color: var(--ink-light); padding: 20px 0 0; }
.breadcrumb a { color: var(--pink-deep); }

.page-hero {
  padding: 56px 24px;
  text-align: center;
  background: linear-gradient(160deg, var(--pink-soft), #fff);
}
.page-hero span.section-eyebrow { justify-content: center; }
.page-hero h1 { font-size: clamp(26px, 4vw, 36px); }
.page-hero p { color: var(--ink-light); margin-top: 12px; font-size: 14px; }

.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
@media (max-width: 850px) { .two-col { grid-template-columns: 1fr; } }
.img-placeholder {
  border-radius: 20px;
  background: linear-gradient(135deg, var(--pink-mid), var(--gold-light));
  background-size: cover;
  background-position: center;
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Zen Old Mincho', serif; font-size: 15px;
  box-shadow: var(--shadow);
}

/* Quick contact bar (apply page) */
.quick-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.quick-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 10px;
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  text-align: center;
}
.quick-bar svg { width: 26px; height: 26px; }
.quick-bar .qb-line { background: #06C755; }
.quick-bar .qb-tel { background: var(--pink-deep); }
.quick-bar .qb-mail { background: var(--gold); }
.quick-bar .qb-back { background: #6fa8a3; }
@media (max-width: 600px) {
  .quick-bar { grid-template-columns: repeat(2, 1fr); }
}

/* Apply page intro heading */
.apply-heading { text-align: center; padding: 56px 24px 10px; }
.apply-heading .section-eyebrow { justify-content: center; }
.apply-heading h1 { font-size: clamp(26px, 4vw, 34px); }
.apply-heading p { color: var(--ink-light); margin-top: 10px; font-size: 14px; }
.apply-note {
  max-width: 640px;
  margin: 26px auto 0;
  background: var(--pink-soft);
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 13px;
  color: var(--ink);
  text-align: center;
}
.apply-note .req { color: var(--pink-deep); font-weight: 700; }

/* Segmented radio group */
.segmented-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.segmented-group input { position: absolute; opacity: 0; pointer-events: none; }
.segmented-group label {
  flex: 1 1 140px;
  text-align: center;
  padding: 14px 12px;
  border: 1.5px solid #f0d3de;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-light);
  background: #fffaf9;
  cursor: pointer;
  transition: all 0.15s ease;
}
.segmented-group input:checked + label {
  background: var(--pink-deep);
  border-color: var(--pink-deep);
  color: #fff;
}
@media (max-width: 480px) {
  .segmented-group label { flex: 1 1 100%; }
}

/* Input with unit suffix (歳 / cm / kg) */
.input-unit { position: relative; }
.input-unit input { padding-right: 44px; }
.input-unit span {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: var(--ink-light);
  pointer-events: none;
}
.form-hint { font-size: 12px; color: var(--ink-light); margin-top: 6px; }

/* Apply form submission status message */
.form-message {
  max-width: 640px;
  margin: 20px auto 0;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 13.5px;
  text-align: center;
  font-weight: 700;
}
.form-message-success { background: #e9f6ec; color: #2f7a45; }
.form-message-error { background: #fdecef; color: var(--pink-deep); }

/* Floating PR banner (追従バナー) */
.pr-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 150;
  width: 230px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(74,59,64,0.22);
  border: 1px solid #f0d3de;
  overflow: hidden;
  animation: pr-banner-in 0.4s ease;
}
@keyframes pr-banner-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.pr-banner-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--purple), var(--pink-deep));
  padding: 6px 10px 6px 12px;
}
.pr-banner-tag {
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.pr-banner-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
}
.pr-banner a.pr-banner-body {
  display: block;
  padding: 14px 16px 16px;
}
.pr-banner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}
.pr-banner-tags span {
  font-size: 9px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--gold-light);
  border-radius: 20px;
  padding: 2px 8px;
  white-space: nowrap;
}
.pr-banner-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 6px;
}
.pr-banner-desc {
  font-size: 11.5px;
  color: var(--ink-light);
  margin-bottom: 10px;
}
.pr-banner-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, var(--pink-deep), #f28aa8);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 0;
  border-radius: 20px;
}
@media (max-width: 480px) {
  .pr-banner { width: 180px; right: 12px; bottom: 12px; }
  .pr-banner a.pr-banner-body { padding: 10px 12px 12px; }
  .pr-banner-title { font-size: 14px; }
}

/* Wage formula box */
.wage-formula {
  background: linear-gradient(135deg, var(--pink-soft), #fff);
  border: 1.5px dashed var(--gold);
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.wage-formula strong {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(17px, 3vw, 23px);
  color: var(--pink-deep);
  display: block;
  margin-bottom: 10px;
}
.wage-formula span { font-size: 12px; color: var(--ink-light); }

/* Compare table (他店との比較) */
.compare-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.compare-table th, .compare-table td { padding: 16px 14px; text-align: center; font-size: 13.5px; border-bottom: 1px solid #f6e3ea; }
.compare-table thead th { background: var(--ink); color: #fff; font-weight: 700; font-size: 12.5px; }
.compare-table thead th.highlight { background: linear-gradient(135deg, var(--pink-deep), #f28aa8); }
.compare-table td:first-child, .compare-table th:first-child { text-align: left; color: var(--ink-light); font-weight: 700; }
.compare-table td.highlight { background: var(--pink-soft); color: var(--pink-deep); font-weight: 700; }
.compare-table tr:last-child td { border-bottom: none; }
@media (max-width: 640px) {
  .compare-table th, .compare-table td { padding: 12px 6px; font-size: 11.5px; }
}

/* Income profile card (Pick up) */
.income-card { background: #fff; border-radius: 20px; box-shadow: var(--shadow); border: 1px solid #f6dbe4; overflow: hidden; }
.income-card-head { display: flex; gap: 22px; padding: 28px 28px 6px; flex-wrap: wrap; }
.income-photo {
  width: 150px; height: 200px; border-radius: 16px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--pink-mid), var(--gold-light));
  background-size: cover; background-position: center;
}
@media (max-width: 560px) {
  .income-photo { width: 120px; height: 160px; }
}
.income-basic h3 { font-size: 19px; margin-bottom: 8px; }
.income-basic .tag {
  display: inline-block; font-size: 11px; font-weight: 700; color: var(--gold);
  background: var(--gold-light); padding: 3px 12px; border-radius: 20px;
}
.income-highlight { display: flex; gap: 30px; margin-top: 16px; flex-wrap: wrap; }
.income-highlight div strong { display: block; font-family: 'Zen Old Mincho', serif; font-size: 22px; color: var(--pink-deep); }
.income-highlight div span { font-size: 11.5px; color: var(--ink-light); }
.income-qa { padding: 10px 28px 0; }
.income-qa dt { font-size: 12.5px; font-weight: 700; color: var(--gold); margin-bottom: 4px; margin-top: 18px; }
.income-qa dd { font-size: 13.5px; color: var(--ink); }
.income-week { border-collapse: collapse; margin: 22px 28px 8px; width: calc(100% - 56px); }
.income-week th, .income-week td { border: 1px solid #f0d3de; text-align: center; padding: 9px 4px; font-size: 12px; }
.income-week th { background: var(--pink-soft); color: var(--pink-deep); font-weight: 700; }
.income-week-pay { margin: 0 28px 28px; background: var(--ink); color: #fff; text-align: center; padding: 14px; border-radius: 10px; font-weight: 700; font-size: 14px; }
@media (max-width: 560px) {
  .income-card-head { padding: 24px 20px 6px; }
  .income-qa { padding: 6px 20px 0; }
  .income-week { margin: 20px 20px 8px; width: calc(100% - 40px); font-size: 10.5px; }
  .income-week th, .income-week td { padding: 6px 2px; }
  .income-week-pay { margin: 0 20px 24px; }
}

/* Accordion: other income examples */
.income-more { max-width: 820px; margin: 36px auto 0; }
.income-more > summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px; background: #fff; border: 1px solid #f6dbe4; border-radius: 14px; box-shadow: var(--shadow);
  font-weight: 700; color: var(--ink); font-size: 14px; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.income-more > summary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(232,96,138,0.18); }
.income-more > summary::-webkit-details-marker { display: none; }
.income-more > summary::after {
  content: "▼"; font-size: 10px; color: #fff; transition: transform 0.2s ease;
  width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--pink-deep), #f28aa8);
}
.income-more[open] > summary::after { transform: rotate(180deg); }
.income-more-body { margin-top: 20px; display: grid; gap: 16px; }

.income-accordion-item { background: #fff; border-radius: 14px; border: 1px solid #f6dbe4; box-shadow: var(--shadow); overflow: hidden; }
.income-accordion-item > summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 22px; font-size: 14px; flex-wrap: wrap;
}
.income-accordion-item > summary::-webkit-details-marker { display: none; }
.income-accordion-photo {
  width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--pink-mid), var(--gold-light));
  background-size: cover; background-position: center;
}
.income-accordion-item-name { flex: 1; font-weight: 700; }
.income-accordion-item-name span { font-weight: 400; color: var(--ink-light); font-size: 12px; margin-left: 8px; }
.income-accordion-item-income { color: var(--pink-deep); font-weight: 700; font-size: 13.5px; }
.income-accordion-body { border-top: 1px solid var(--pink-soft); }
@media (max-width: 480px) {
  .income-accordion-item > summary { padding: 14px 16px; }
  .income-accordion-photo { width: 40px; height: 40px; }
}

/* Map embed (MEO) */
.map-embed {
  margin-top: 26px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #f6dbe4;
  position: relative;
  padding-top: 40%;
}
.map-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
@media (max-width: 600px) {
  .map-embed { padding-top: 70%; }
}
/* ========================================
   求人訴求スライダー
======================================== */

.recruit-slider {
  position: relative;

  /* 中央配置 */
  width: calc(100% - 48px);
  max-width: 1120px;
  min-height: 360px;

  /* 上部80px・左右自動・下部120px */
  margin: 80px auto 120px;

  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(74, 59, 64, 0.16);
  background: #fff;
  z-index: 5;
}

.recruit-slider-track {
  position: relative;
  width: 100%;
  min-height: 360px;
}

.recruit-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 360px;
  padding: 54px 90px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    visibility 0.55s ease;
}

.recruit-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* デフォルト背景 */
.recruit-slide-01 {
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(255, 255, 255, 0.48),
      transparent 24%
    ),
    linear-gradient(
      135deg,
      #fff0f5 0%,
      #f9c8da 52%,
      #e8608a 100%
    );
}

.recruit-slide-02 {
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(255, 255, 255, 0.45),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      #fff9ec 0%,
      #f4dfb9 50%,
      #cda05e 100%
    );
}

.recruit-slide-03 {
  background:
    radial-gradient(
      circle at 85% 22%,
      rgba(255, 255, 255, 0.44),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      #f7f1ff 0%,
      #d8c6ea 50%,
      #9b7bb8 100%
    );
}

.recruit-slide-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 590px;
}

.recruit-slide-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.recruit-slide h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.35;
}

.recruit-slide h2 strong {
  color: var(--pink-deep);
}

.recruit-slide-02 h2 strong {
  color: #a87936;
}

.recruit-slide-03 h2 strong {
  color: var(--purple);
}

.recruit-slide p {
  max-width: 520px;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.9;
}

.recruit-slide-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 13px 28px;
  border-radius: 30px;
  background: var(--pink-deep);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(232, 96, 138, 0.28);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.recruit-slide-02 .recruit-slide-btn {
  background: #b88742;
  box-shadow: 0 10px 26px rgba(184, 135, 66, 0.28);
}

.recruit-slide-03 .recruit-slide-btn {
  background: var(--purple);
  box-shadow: 0 10px 26px rgba(155, 123, 184, 0.28);
}

.recruit-slide-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(74, 59, 64, 0.2);
}

/* 左右ボタン */
.recruit-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 8px 20px rgba(74, 59, 64, 0.14);
  backdrop-filter: blur(5px);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.recruit-slider-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

.recruit-slider-prev {
  left: 22px;
}

.recruit-slider-next {
  right: 22px;
}

/* ドット */
.recruit-slider-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 20px;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.recruit-slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(74, 59, 64, 0.28);
  cursor: pointer;
  transition:
    width 0.25s ease,
    border-radius 0.25s ease,
    background 0.25s ease;
}

.recruit-slider-dots button.is-active {
  width: 28px;
  border-radius: 10px;
  background: var(--pink-deep);
}

/* タブレット */
@media (max-width: 900px) {
  .recruit-slider {
    width: calc(100% - 36px);
    margin: 64px auto 90px;
  }

  .recruit-slide {
    padding: 50px 70px;
  }
}

/* スマートフォン */
@media (max-width: 700px) {
  .recruit-slider {
    width: calc(100% - 32px);
    max-width: none;
    min-height: 430px;
    margin: 48px auto 70px;
    border-radius: 20px;
  }

  .recruit-slider-track {
    min-height: 430px;
  }

  .recruit-slide {
    min-height: 430px;
    padding: 48px 48px 66px;
    text-align: center;
    justify-content: center;
  }

  .recruit-slide-inner {
    max-width: 100%;
  }

  .recruit-slide h2 {
    font-size: clamp(27px, 9vw, 38px);
  }

  .recruit-slide p {
    margin-right: auto;
    margin-left: auto;
    font-size: 13.5px;
  }

  .recruit-slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .recruit-slider-prev {
    left: 10px;
  }

  .recruit-slider-next {
    right: 10px;
  }
}

@media (max-width: 420px) {
  .recruit-slider {
    width: calc(100% - 24px);
    margin-top: 36px;
    margin-bottom: 56px;
  }

  .recruit-slide {
    padding: 44px 38px 66px;
  }

  .recruit-slide-btn {
    width: 100%;
    min-width: 0;
  }
}

.appeal-banner {
  width: 100%;
  margin-bottom: 40px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.appeal-banner img {
  display: block;
  width: 100%;
  height: auto;
}
