﻿:root {
  --ink: #4d353b;
  --muted: #8b7379;
  --line: #f4dce4;
  --white: #ffffff;
  --pink: #e8759a;
  --pink-strong: #d95d85;
  --pink-soft: #f9b8c8;
  --line-green: #24b347;
  --line-green-dark: #14963a;
  --cream-pink: #fff7fa;
  --soft: #fff3f7;
  --soft-mint: #fffafb;
  --sky: #86c8e8;
  --shadow: 0 18px 48px rgba(159, 91, 112, 0.16);
  --radius: 24px;
  --pill: 999px;
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-pink);
  line-height: 1.8;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1,
h2,
h3,
p,
a,
summary {
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 5vw;
  background: rgba(255, 250, 252, 0.92);
  border-bottom: 1px solid rgba(234, 221, 226, 0.9);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.08rem;
  line-height: 1;
}
.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: transparent;
  background: var(--white) url("../images/logo.png") center / 86% no-repeat;
  border: 1px solid rgba(232, 117, 154, 0.22);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(217, 93, 133, 0.14);
  font-size: 0;
}
.global-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.9rem;
  font-weight: 700;
}
.global-nav a {
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius);
}
.global-nav a:hover,
.global-nav a.active {
  background: #fff0f5;
  color: var(--pink-strong);
}
.global-nav .nav-cta {
  margin-left: 0.25rem;
  color: var(--white);
  background: var(--pink);
  border-radius: var(--pill);
  box-shadow: 0 10px 22px rgba(217, 93, 133, 0.18);
}
.global-nav .nav-cta:hover,
.global-nav .nav-cta.active {
  color: var(--white);
  background: var(--pink-strong);
}
.nav-toggle {
  display: none;
  flex: 0 0 auto;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--pink-strong);
  background: var(--pink);
  border-radius: 50%;
  padding: 0;
  box-shadow: 0 12px 28px rgba(217, 93, 133, 0.22);
}

.nav-toggle::before {
  content: "\2630";
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1;
}

.nav-toggle[aria-expanded="true"]::before {
  content: "\00d7";
  font-size: 1.5rem;
}

.nav-toggle span {
  display: none;
}

.hero,
.page-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 78vh;
  padding: 6rem 5vw 5rem;
  overflow: hidden;
  color: var(--white);
  background-position: center;
  background-size: cover;
}
.page-hero { min-height: 38vh; }
.hero-home { background-image: url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=1800&q=82"); }
.hero-jobs { background-image: url("../images/top_jobs.jpg"); }
.hero-types { background-image: url("https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=1800&q=82"); }
.hero-debut { background-image: url("../images/top_debut.jpg"); }
.hero-beginner { background-image: url("../images/top_beginner.jpg"); }
.hero-rewards { background-image: url("../images/top_rewards.jpg"); }
.hero-flow { background-image: url("../images/top_flow.jpg"); }
.hero-faq { background-image: url("../images/top_faq.jpg"); }
.hero-contact { background-image: url("../images/top_contact.jpg"); }
.hero-column { background-image: url("https://images.unsplash.com/photo-1496747611176-843222e1e57c?auto=format&fit=crop&w=1800&q=82"); }
.hero-column-guide { background-image: url("../images/top_debut.jpg"); }
.hero-models { background-image: url("../images/top_debut.jpg"); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(77, 53, 59, 0.68), rgba(232, 117, 154, 0.22) 58%, rgba(255, 247, 250, 0.18));
}
.hero-content,
.page-hero > div:not(.hero-overlay) {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.page-hero > div:not(.hero-overlay) {
  width: 100%;
  min-width: 0;
  padding: 1.5rem 1.6rem;
  background: rgba(53, 28, 36, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(32, 17, 22, 0.22);
  backdrop-filter: blur(10px);
}
.hero h1,
.page-hero h1 {
  margin: 0 0 1.2rem;
  font-size: 3.4rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
}
.page-hero h1 { font-size: 2.7rem; }
.hero-lead,
.page-hero p:last-child {
  max-width: 620px;
  font-size: 1.12rem;
  overflow-wrap: anywhere;
}
.page-hero h1,
.page-hero p:last-child,
.page-hero .hero-lead,
.page-hero .eyebrow {
  text-shadow: 0 6px 24px rgba(24, 12, 16, 0.4);
}
.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--pink-strong);
  font-weight: 900;
  text-transform: uppercase;
}
.hero .eyebrow,
.page-hero .eyebrow { color: #ffdbe5; }
.page-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(44, 22, 30, 0.34) 0%, rgba(61, 31, 40, 0.2) 34%, rgba(61, 31, 40, 0.04) 72%),
    linear-gradient(180deg, rgba(25, 13, 18, 0.04), rgba(25, 13, 18, 0.12));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.image-hero {
  position: relative;
  background: var(--cream-pink);
}

.image-hero picture,
.image-hero img {
  display: block;
  width: 100%;
}

.image-hero img {
  height: auto;
}

.hero-click {
  position: absolute;
  z-index: 2;
  display: block;
  border-radius: var(--radius);
}

.hero-click:focus-visible {
  outline: 4px solid var(--sky);
  outline-offset: 4px;
}

.hero-entry {
  left: 61.4%;
  top: 81.7%;
  width: 16.4%;
  height: 12.4%;
}

.hero-line {
  left: 78.6%;
  top: 81.7%;
  width: 16.8%;
  height: 12.4%;
}

.hero-actions,
.section-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.25rem;
  border: 0;
  border-radius: var(--pill);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: var(--white);
  background: linear-gradient(180deg, #ec83a5, var(--pink-strong));
  box-shadow: 0 12px 28px rgba(249, 63, 130, 0.28);
}
.button-primary:hover { background: linear-gradient(180deg, #e9769c, #cc4f79); }
.button-line {
  color: var(--white);
  background: linear-gradient(180deg, #33c957, var(--line-green));
  box-shadow: 0 12px 28px rgba(36, 179, 71, 0.22);
}
.button-soft {
  color: var(--ink);
  background: #ffe4ec;
}

.quick-links,
.home-menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  padding: 1rem 5vw;
  background: var(--cream-pink);
}
.quick-links a,
.home-menu a {
  display: grid;
  min-height: 88px;
  place-items: center;
  padding: 1rem;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  box-shadow: 0 12px 28px rgba(159, 91, 112, 0.08);
}
.quick-links a:hover,
.home-menu a:hover {
  color: var(--pink-strong);
  background: #fff0f5;
}

.home-menu {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.home-menu a {
  min-height: 64px;
  font-size: 0.94rem;
}

.home-menu .home-menu-cta {
  color: var(--white);
  background: linear-gradient(180deg, #ec83a5, var(--pink-strong));
  box-shadow: 0 14px 30px rgba(217, 93, 133, 0.22);
}

.home-menu .home-menu-cta:hover {
  color: var(--white);
  background: linear-gradient(180deg, #e9769c, #cc4f79);
}
.section { padding: 5.5rem 5vw; }
.section-tint { background: linear-gradient(180deg, var(--soft), var(--soft-mint)); }
.section-heading {
  max-width: 760px;
  margin: 0 auto 2.4rem;
  text-align: center;
  min-width: 0;
}
.section h2,
.link-panel h2,
.cta-band h2 {
  margin: 0 0 1rem;
  font-size: 2.1rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.intro-grid,
.split-band,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 3rem;
  align-items: center;
}

.intro-grid > *,
.split-band > *,
.contact-layout > *,
.job-detail > *,
.type-card > * {
  min-width: 0;
}
.intro-grid img,
.type-card img,
.job-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  filter: saturate(0.82) brightness(1.04);
}
.card-grid {
  display: grid;
  gap: 1.2rem;
}
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid.jobs-overview { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.card {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.job-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.job-card {
  display: block;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(159, 91, 112, 0.18);
}
.card-body,
.simple-card { padding: 1.35rem; }
.card h3,
.feature-list h3,
.steps h3,
.mini-panel h3,
.notice-box h3 {
  margin: 0 0 0.65rem;
  font-size: 1.18rem;
}
.card a,
.text-link,
.timeline a,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 0.7rem;
  padding: 0.15rem 0.55rem;
  color: var(--pink-strong);
  background: #ffe4ec;
  border-radius: var(--pill);
  font-size: 0.78rem;
  font-weight: 900;
}
.check-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.25rem 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 1.8rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  background: var(--pink);
  border: 3px solid #ffd6e1;
  border-radius: 50%;
}
.split-band {
  background: linear-gradient(135deg, #fff0f5, #ffffff);
  color: var(--ink);
}
.split-band .eyebrow { color: var(--pink-strong); }
.mini-panel,
.notice-box {
  padding: 1.5rem;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.mini-panel {
  display: grid;
  gap: 0.75rem;
}
.mini-panel a {
  padding: 0.85rem 1rem;
  background: var(--soft);
  border-radius: var(--pill);
  font-weight: 900;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.steps article,
.feature-list article,
.timeline article {
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.steps span,
.timeline span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 0.9rem;
  color: var(--white);
  background: var(--pink);
  border-radius: 50%;
  font-weight: 900;
}
.cta-band,
.link-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 4rem 5vw;
  background: linear-gradient(135deg, #fff0f5, #ffffff);
  color: var(--ink);
}
.cta-band .eyebrow { color: var(--pink-strong); }
.breadcrumb {
  display: flex;
  gap: 0.55rem;
  padding: 1rem 5vw;
  color: var(--muted);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--line);
}
.breadcrumb a {
  color: var(--pink-strong);
  font-weight: 800;
}
.breadcrumb a::after {
  content: "/";
  margin-left: 0.55rem;
  color: var(--muted);
}
.job-list {
  display: grid;
  gap: 2rem;
}
.job-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.job-content { padding: 1rem; }
.job-meta {
  display: grid;
  gap: 0.7rem;
  margin: 1.4rem 0;
}
.job-meta div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}
.job-meta dt { font-weight: 900; }
.job-meta dd { margin: 0; }
.type-grid {
  display: grid;
  gap: 2rem;
}
.type-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}
.model-list {
  display: grid;
  gap: 1.5rem;
}
.model-profile-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.model-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
}
.model-profile-body h2 {
  margin: 0 0 0.9rem;
  font-size: 2rem;
}
.model-profile-body p {
  max-width: 680px;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.timeline {
  display: grid;
  max-width: 920px;
  margin: 0 auto;
  gap: 1rem;
}
.faq-list {
  display: grid;
  max-width: 920px;
  margin: 0 auto;
  gap: 0.8rem;
}
.faq-list.compact { max-width: 820px; }
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(42, 28, 36, 0.08);
}
.faq-list summary {
  cursor: pointer;
  padding: 1rem 1.2rem;
  font-weight: 900;
}
.faq-list details p { padding: 0 1.2rem 1.1rem; }
.link-panel {
  display: block;
  color: var(--ink);
  background: var(--soft);
}
.link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}
.link-grid a {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
}
.contact-copy { align-self: start; }
.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-status {
  padding: 1rem 1.1rem;
  color: #8b2a4f;
  background: #fff0f5;
  border: 1px solid #f6c9d7;
  border-radius: 18px;
  font-weight: 800;
}
.form-status-error {
  color: #8a2d2d;
  background: #fff4f4;
  border-color: #f2caca;
}
.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 900;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 0.9rem;
  color: var(--ink);
  background: var(--soft);
  font: inherit;
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
}
.contact-form textarea { resize: vertical; }
.article-list {
  display: grid;
  max-width: 900px;
  margin: 0 auto;
  gap: 1.2rem;
}
.article-list article {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.article-card .button {
  margin-top: 0.6rem;
}
.article-body {
  max-width: 920px;
  margin: 0 auto;
}
.article-body h2 {
  margin: 3rem 0 1rem;
  font-size: 1.8rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.article-body h3 {
  margin: 1.8rem 0 0.55rem;
  font-size: 1.22rem;
  overflow-wrap: anywhere;
}
.article-body p {
  margin-bottom: 1rem;
  overflow-wrap: anywhere;
}
.article-check-grid {
  margin-top: 1.4rem;
}
.site-footer {
  display: grid;
  gap: 1.2rem;
  padding: 3rem 5vw;
  color: var(--ink);
  background: #fff0f5;
  border-top: 1px solid var(--line);
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
}
.site-footer a { font-weight: 800; }
.footer-brand { margin-bottom: 0.8rem; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.65rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(159, 91, 112, 0.08);
}
.social-link-x {
  gap: 0.45rem;
}
.social-link-x::before {
  content: "X";
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--white);
  background: #22141a;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}
.notice-box .social-link {
  margin-top: 0.8rem;
}

@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; }
  .site-header {
    position: sticky;
  }
  .nav-toggle {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
  }
  .global-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 5vw;
    left: 5vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .global-nav.is-open { display: flex; }
  .global-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }
  .hero h1 { font-size: 2.7rem; }
  .page-hero h1 { font-size: 2.25rem; }
  .card-grid.three,
  .card-grid.jobs-overview,
  .steps,
  .link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-menu { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 761px) {
  .home-page .site-header {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header { padding: 0.75rem 1rem; }
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .hero,
  .page-hero {
    min-height: 68vh;
    padding: 5rem 1.2rem 4rem;
  }
  .page-hero { min-height: 44vh; }
  .page-hero > div:not(.hero-overlay) {
    max-width: calc(100vw - 2.4rem);
    padding: 1.15rem 1rem;
    border-radius: 18px;
    background: rgba(53, 28, 36, 0.32);
  }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(38, 35, 38, 0.72), rgba(38, 35, 38, 0.42));
  }
  .page-hero .hero-overlay {
    background:
      linear-gradient(180deg, rgba(25, 13, 18, 0.12), rgba(25, 13, 18, 0.18)),
      linear-gradient(90deg, rgba(44, 22, 30, 0.22) 0%, rgba(61, 31, 40, 0.08) 54%, rgba(61, 31, 40, 0.02) 100%);
  }
  .hero h1,
  .page-hero h1 {
    font-size: 1.36rem;
    line-height: 1.35;
    word-break: break-all;
  }
  .hero-lead,
  .page-hero p:last-child {
    font-size: 0.95rem;
    word-break: break-all;
  }
  .hero-entry {
    left: 6.9%;
    top: 72.7%;
    width: 86.3%;
    height: 6.8%;
  }
  .hero-line {
    left: 6.9%;
    top: 80.8%;
    width: 86.3%;
    height: 6.8%;
  }
  .quick-links,
  .home-menu,
  .card-grid.three,
  .card-grid.jobs-overview,
  .steps,
  .feature-list,
  .link-grid,
  .intro-grid,
  .split-band,
  .contact-layout,
  .job-detail,
.type-card,
.model-profile-card { grid-template-columns: 1fr; }
  .quick-links a,
  .home-menu a { min-height: 64px; }
  .section { padding: 4rem 1.2rem; }
  .section h2,
  .link-panel h2,
  .cta-band h2 { font-size: 1.65rem; }
  .cta-band {
    display: grid;
    padding: 3rem 1.2rem;
  }
  .link-panel { padding: 3rem 1.2rem; }
  .breadcrumb { padding: 0.8rem 1.2rem; }
  .job-meta div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}
