@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@300;400;500;700&family=GFS+Didot&family=Raleway:wght@400;500;600;700;800&family=Urbanist:wght@400;700&display=swap');

:root {
  --white: #ffffff;
  --offwhite: #f8f6f2;
  --cream: #f0ece4;
  --ink: #1a1a1a;
  --ink-light: #3a3a3a;
  --ink-muted: #6a6a6a;
  --gold: #b0b0b0;
  --gold-light: #d8d8d8;
  --star-bg: url('../images/bg-star.png');
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Didot', 'GFS Didot', 'Noto Serif JP', serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  padding-top: 88px;
}

/* ── HERO ── */
#hero {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: #18191e;
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-hint span {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Didot', 'GFS Didot', serif;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.5);
  animation: scrollPulse 2s infinite;
}

.section-label {
  font-family: 'Didot', 'GFS Didot', serif;
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 32px;
  display: block;
}

/* ── DOMAIN ── */
#domain {
  padding: 80px 60px;
  background: var(--white);
  position: relative;
}

#domain .inner {
  max-width: 1000px;
  margin: 0 auto;
}

#domain .top-text {
  text-align: center;
  margin-bottom: 48px;
}

#domain .top-text h2 {
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  line-height: 1.9;
  color: var(--ink);
  margin-bottom: 20px;
}

#domain .main-domain {
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  font-family: 'Didot', 'GFS Didot', serif;
  font-style: italic;
}

.domain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(176, 176, 176, 0.15);
}

.domain-card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 36px 28px;
  text-align: center;
  transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.domain-card:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.domain-card .num {
  font-family: 'Didot', 'GFS Didot', serif;
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 10px;
  display: block;
  font-weight: 300;
}

.domain-card h3 {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.8;
}

/* ── OBJECTIVES (STAR) ── */
#objectives {
  min-height: 100vh;
  position: relative;
  background-image: var(--star-bg);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  image-rendering: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px;
  overflow: hidden;
}

#objectives .overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 28, 0.15);
}

#objectives .inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  width: 100%;
  text-align: center;
}

#objectives .section-label {
  color: #9eb8e8;
}

#objectives .star-title {
  font-family: 'Didot', 'GFS Didot', serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.35em;
  margin-bottom: 12px;
  text-shadow: 0 4px 32px rgba(255, 255, 255, 0.15);
}

#objectives .star-sub {
  font-size: 0.9rem;
  color: rgba(200, 220, 255, 0.75);
  letter-spacing: 0.2em;
  margin-bottom: 70px;
  display: block;
}

.star-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.star-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
  background: #fff;
  border: 1px solid rgba(176, 176, 176, 0.2);
  border-top: 2px solid rgba(176, 176, 176, 0.5);
  border-radius: 0;
  cursor: default;
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
  isolation: isolate;
}

.star-card:hover {
  background: #fff;
  transform: translateY(-8px);
  border-color: rgba(176, 176, 176, 0.4);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.star-card .letter {
  font-family: 'Didot', 'GFS Didot', serif;
  font-size: clamp(3.5rem, 5vw, 5.5rem);
  color: transparent;
  background-image: var(--star-bg);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 18px;
  display: block;
  transition: transform 0.4s ease;
}

.star-card:hover .letter {
  transform: scale(1.06);
}

.star-card .meaning {
  font-size: 0.9rem;
  color: var(--ink-muted);
  letter-spacing: 0.07em;
  line-height: 2.0;
  font-weight: 300;
  opacity: 1;
  transform: none;
  transition: opacity 0.4s ease;
}

.star-card .keyword {
  font-size: 0.9rem;
  color: #000000;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: 'Didot', 'GFS Didot', serif;
  margin-bottom: 16px;
  transition: opacity 0.4s ease;
}

.star-card:hover .keyword {
  opacity: 0.6;
}

.star-card:hover .meaning {
  opacity: 1;
}

/* ── BUSINESSES ── */
#businesses {
  padding: 72px 13vw;
  background: linear-gradient(to bottom, #ffffff 0%, rgba(220, 232, 242, 0.45) 18%, rgba(220, 232, 242, 0.45) 100%);
}

#businesses .inner {
  max-width: 1100px;
  margin: 0 auto;
}

#businesses .section-header {
  text-align: center;
  margin-bottom: 48px;
}

#businesses .section-header h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--ink);
}

.biz-block {
  margin-bottom: 60px;
}

.biz-block:last-child {
  margin-bottom: 0;
}

.biz-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.biz-inner.reverse .biz-text {
  order: 2;
}

.biz-inner.reverse .biz-img {
  order: 1;
}

.biz-img {
  background-image: url('../images/bg-biz.png');
  background-size: cover;
  background-position: center;
  min-height: 420px;
  filter: brightness(0.92) saturate(1.1);
}

.biz-img.dental {
  background-image: url('../images/bg-dental.png');
}

.biz-text {
  padding: 44px 48px;
  background: #f0f0f0;
}

.biz-tag {
  font-family: 'Didot', 'GFS Didot', serif;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.biz-text h3 {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 28px;
}

.biz-text p {
  font-size: 0.88rem;
  line-height: 2.3;
  color: var(--ink-light);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  font-size: 0.9rem;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  padding: 6px 0;
  border-bottom: 1px solid var(--cream);
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-list li::before {
  content: '—';
  color: var(--gold);
  font-size: 0.8rem;
}

/* ── MESSAGE ── */
#message {
  min-height: 70vh;
  position: relative;
  background: linear-gradient(to right, #e4f0fa, #fef0eb);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  padding: 120px 60px;
  overflow: hidden;
}

.msg-photo {
  position: relative;
  flex-shrink: 0;
  z-index: 2;
}

.msg-photo img {
  display: block;
  width: 320px;
  height: auto;
  object-fit: cover;
}

.msg-photo::before,
.msg-photo::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-style: solid;
  border-color: rgba(176, 176, 176, 0.5);
}

.msg-photo::before {
  top: -8px;
  left: -8px;
  border-width: 1.5px 0 0 1.5px;
}

.msg-photo::after {
  bottom: -8px;
  right: -8px;
  border-width: 0 1.5px 1.5px 0;
}

#message .overlay {
  position: absolute;
  inset: 0;
  background: rgba(248, 246, 242, 0.03);
}

#message .content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 56px 68px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 2px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

#message .section-label {
  font-size: 1.05rem;
}

#message h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--ink);
  margin-bottom: 36px;
  line-height: 1.6;
}

#message p {
  font-size: 1.0rem;
  line-height: 2.5;
  color: var(--ink-light);
  font-weight: 300;
  letter-spacing: 0.07em;
  margin-bottom: 16px;
}

#message .ceo {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(176, 176, 176, 0.3);
  font-size: 1.0rem;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
}

/* ── SCHEDULE & VOICES ── */
#schedule-voices {
  padding: 80px 24px 100px;
  background: linear-gradient(to bottom, rgba(220, 232, 242, 0.45) 0%, rgba(220, 232, 242, 0.45) 82%, #ffffff 100%);
  overflow: visible;
}

#schedule-voices.voices-open {
  padding-bottom: 680px;
}

#schedule-voices .inner {
  max-width: 1400px;
  margin: 0 auto;
  overflow: visible;
  position: relative;
}

/* 左右写真帯 */
.sv-side-strip {
  position: fixed;
  top: 88px;
  width: 12vw;
  height: calc(100vh - 88px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  z-index: 0;
}

.sv-side-strip.left {
  left: 0;
}

.sv-side-strip.right {
  right: 0;
}

.sv-side-strip img {
  flex: 1;
  width: 100%;
  object-fit: cover;
  min-height: 0;
}

#schedule-voices .section-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

#schedule-voices .section-header h2 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--ink);
}

#schedule-voices .sv-box {
  display: flex;
  gap: 0;
  border: 1px solid rgba(160, 185, 200, 0.50);
  border-radius: 2px;
  overflow: visible;
  background: transparent;
  position: relative;
  z-index: 1;
  max-width: 72%;
  margin-left: auto;
  margin-right: auto;
}

#schedule-voices .sv-left {
  flex: 0 0 38%;
  padding: 16px 16px;
  border-right: 1px solid rgba(160, 185, 200, 0.35);
  min-width: 0;
}

#sv-box .sv-left {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
}

#sv-box .sv-left-main {
  flex: 1;
  min-width: 0;
}

#sv-box .sv-photo-side {
  width: 155px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: 24px;
}

#sv-box .sv-photo-side .sv-pd-item {
  overflow: hidden;
}

#sv-box .sv-photo-side .sv-pd-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

#sv-box .sv-photo-side .sv-pd-item:hover img {
  transform: scale(1.05);
}

#sv-box .sv-photo-side .sv-pd-label {
  display: block;
  margin-top: 5px;
  text-align: center;
  font-family: 'Didot', 'GFS Didot', serif;
  font-style: italic;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
}

#schedule-voices .sv-right {
  flex: 1;
  padding: 16px 16px;
  min-width: 0;
  position: relative;
}

#schedule-voices .col-hd {
  margin-bottom: 22px;
}

#schedule-voices .col-hd .en {
  font-family: 'Didot', 'GFS Didot', serif;
  font-style: italic;
  font-size: 0.8rem;
  letter-spacing: 0.42em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

#schedule-voices .col-hd h3 {
  font-size: 1.0rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: var(--ink);
}

#schedule-voices .sv-title-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

#schedule-voices .sv-title-toggle .sv-arr {
  font-size: 0.75rem;
  color: var(--gold);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#schedule-voices .sv-title-toggle.is-open .sv-arr {
  transform: rotate(180deg);
}

#schedule-voices .sv-tl {
  display: none;
  opacity: 0;
}

#schedule-voices .sv-tl-hd {
  margin: 20px 0 16px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

#schedule-voices .sv-tl-hd .en {
  font-family: 'Didot', 'GFS Didot', serif;
  font-style: italic;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
}

#schedule-voices .sv-tl-hd h4 {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--ink);
  margin-top: 4px;
}

#schedule-voices .sv-items {
  position: relative;
}

#schedule-voices .sv-vline {
  position: absolute;
  left: 36px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(176, 176, 176, 0.6), rgba(176, 176, 176, 0.2));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

#schedule-voices .sv-item {
  display: flex;
  align-items: flex-start;
  padding: 9px 0;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

#schedule-voices .sv-t {
  width: 46px;
  text-align: right;
  flex-shrink: 0;
  padding-top: 2px;
  font-family: 'Didot', 'GFS Didot', serif;
  font-style: italic;
  font-size: 1.0rem;
  color: var(--gold);
}

#schedule-voices .sv-dc {
  width: 18px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

#schedule-voices .sv-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--offwhite);
  box-shadow: 0 0 0 1px rgba(176, 176, 176, 0.35);
  position: relative;
  z-index: 1;
}

#schedule-voices .sv-cnt {
  padding-left: 10px;
  flex: 1;
}

#schedule-voices .sv-task {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--ink-light);
}

#schedule-voices .sv-desc {
  font-size: 0.9rem;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
  margin-top: 2px;
  line-height: 1.65;
}

/* photo duo inside schedule */
#schedule-voices .sv-photo-duo {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(160, 185, 200, 0.15);
}

#schedule-voices .sv-pd-item {
  flex: 1;
  overflow: hidden;
}

#schedule-voices .sv-pd-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

#schedule-voices .sv-pd-item:hover img {
  transform: scale(1.05);
}

#schedule-voices .sv-pd-label {
  display: block;
  margin-top: 6px;
  text-align: center;
  font-family: 'Didot', 'GFS Didot', serif;
  font-style: italic;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
}

/* qa accordion */
#schedule-voices .qa-item {
  position: relative;
  border-bottom: 1px solid rgba(176, 176, 176, 0.18);
}

#schedule-voices .qa-item:first-child {
  border-top: 1px solid rgba(176, 176, 176, 0.18);
}

#schedule-voices .qa-hd {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 6px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}

#schedule-voices .qa-hd:hover {
  background: rgba(176, 176, 176, 0.04);
}

#schedule-voices .qa-item.open .qa-hd {
  background: rgba(176, 176, 176, 0.05);
}

#schedule-voices .qa-num {
  font-family: 'Didot', 'GFS Didot', serif;
  font-style: italic;
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  flex-shrink: 0;
}

#schedule-voices .qa-text {
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  flex: 1;
  transition: color 0.22s;
}

#schedule-voices .qa-item.open .qa-text {
  color: var(--ink);
}

#schedule-voices .qa-arrow {
  font-size: 0.78rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#schedule-voices .qa-item.open .qa-arrow {
  transform: rotate(180deg);
}

#schedule-voices .qa-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: -420px;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border: 1px solid rgba(176, 176, 176, 0.28);
  border-top: 2px solid var(--ink);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.13), 0 4px 16px rgba(0, 0, 0, 0.07);
  padding: 24px 32px 28px;
}

#schedule-voices .qa-panel.open {
  display: block;
  animation: svPanelIn 0.38s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes svPanelIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#schedule-voices .cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

#schedule-voices .voice-card {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  column-gap: 16px;
  border: 1px solid rgba(176, 176, 176, 0.18);
  border-top: 2px solid var(--gold-light);
  padding: 20px 22px;
  transition: box-shadow 0.3s, transform 0.3s, border-top-color 0.3s;
}

#schedule-voices .voice-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
  transform: translateY(-2px);
  border-top-color: var(--gold);
}

#schedule-voices .card-num {
  grid-column: 1;
  grid-row: 1;
  font-family: 'Didot', 'GFS Didot', serif;
  font-style: italic;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  display: block;
  margin-bottom: 12px;
}

#schedule-voices .card-person {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(176, 176, 176, 0.18);
}

#schedule-voices .card-name {
  font-size: 1.02rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--ink);
}

#schedule-voices .card-sep {
  display: none;
}

#schedule-voices .card-role {
  font-family: 'Didot', 'GFS Didot', serif;
  font-style: italic;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 3px;
}

#schedule-voices .card-quote {
  grid-column: 1 / 3;
  grid-row: 3;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(176, 176, 176, 0.18);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 2.0;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
}

#schedule-voices .card-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid rgba(176, 160, 120, 0.35);
  background: linear-gradient(135deg, #f5f3ee 60%, #ede8dc);
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  justify-self: end;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#schedule-voices .card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* 展開パネルが後続ブロックより前面に出るよう重なり順を確保 */
#schedule-voices .sv-box:not(#mgr-box) {
  position: relative;
  z-index: 2;
}

#schedule-voices #mgr-box {
  position: relative;
  z-index: 1;
}

/* ── MANAGER Q&A inline panels ── */
.mgr-qa-item {
  position: relative;
  border-bottom: 1px solid rgba(176, 176, 176, 0.18);
}

.mgr-qa-item:first-of-type {
  border-top: 1px solid rgba(176, 176, 176, 0.18);
}

.mgr-qa-item.open .qa-hd {
  background: rgba(176, 176, 176, 0.05);
}

.mgr-qa-item.open .qa-text {
  color: var(--ink);
}

.mgr-qa-item.open .qa-arrow {
  transform: rotate(180deg);
}

.mgr-qa-panel {
  display: none;
  padding: 16px 10px 22px 10px;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 2.0;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  border-top: 1px solid rgba(176, 176, 176, 0.12);
}

.mgr-qa-panel.open {
  display: block;
  animation: svPanelIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.mgr-qa-panel p {
  margin: 0;
}

/* ── MANAGER PHOTO ── */
.mgr-col-hd {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.mgr-col-hd-text {
  flex: 1;
}

.mgr-photo {
  width: 130px;
  height: 160px;
  flex-shrink: 0;
  display: block;
  border-radius: 2px;
  object-fit: cover;
  object-position: top;
}

/* ── RECRUIT ── */
#recruit {
  padding: 72px 60px;
  background: var(--white);
  position: relative;
}

#recruit .inner {
  max-width: 1000px;
  margin: 0 auto;
}

#recruit .section-header {
  text-align: center;
  margin-bottom: 52px;
}

#recruit .section-header h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--ink);
  margin-bottom: 16px;
}

#recruit .concept {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  font-family: 'Didot', 'GFS Didot', serif;
  font-style: italic;
}

.recruit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.recruit-box h3 {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 28px;
  font-family: 'Didot', 'GFS Didot', serif;
  text-transform: uppercase;
}

.recruit-box p {
  font-size: 0.86rem;
  line-height: 2.3;
  color: var(--ink-light);
  font-weight: 300;
  letter-spacing: 0.06em;
}

.persona-list {
  list-style: none;
}

.persona-list li {
  font-size: 0.86rem;
  color: var(--ink-light);
  padding: 10px 0;
  border-bottom: 1px solid var(--cream);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.7;
  letter-spacing: 0.06em;
  font-weight: 300;
}

.persona-list li::before {
  content: '▷';
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.conditions-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.conditions-table th,
.conditions-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--cream);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.conditions-table th {
  color: var(--ink-muted);
  width: 35%;
  background: var(--white);
  font-weight: 400;
}

.conditions-table td {
  color: var(--ink-light);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-bottom: 60px;
}

.job-card {
  padding: 36px 32px;
  background: var(--white);
  transition: background 0.3s;
}

.job-card:hover {
  background: var(--cream);
}

.job-card .job-title {
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin-bottom: 10px;
  font-weight: 400;
}

.job-card .job-desc {
  font-size: 0.9rem;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  line-height: 1.9;
  font-weight: 300;
}

/* ── CONTACT CTA ── */
#contact-cta {
  position: relative;
  padding: 110px 60px;
  text-align: center;
  background: #e8f4f8;
  overflow: hidden;
}

#contact-cta .ct-en {
  position: relative;
  font-family: 'Didot', 'GFS Didot', serif;
  font-size: 2.8rem;
  letter-spacing: 0.45em;
  color: var(--ink);
  margin-bottom: 10px;
}

#contact-cta .ct-ja {
  position: relative;
  font-size: 0.88rem;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
  margin-bottom: 48px;
}

#contact-cta .ct-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 44px;
  border: 1px solid rgba(26, 26, 26, 0.45);
  border-radius: 100px;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

#contact-cta .ct-btn:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* ── FOOTER ── */
footer {
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding: 28px 60px 0;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.footer-brand .footer-logo {
  height: 56px;
  width: auto;
  display: block;
  align-self: flex-start;
}

.footer-brand-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  text-decoration: none;
}

.footer-brand-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.3;
}

.footer-nav {
  display: flex;
  align-items: center;
  font-size: 0.78rem;
}

.footer-nav a {
  color: var(--ink);
  text-decoration: none;
  padding: 0 14px;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-nav a:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-tel {
  text-align: right;
}

.tel-row {
  display: flex;
  align-items: center;
  gap: 9px;
  justify-content: flex-end;
}

.tel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 22px;
  border: 1.5px solid var(--ink);
  border-radius: 3px;
  font-size: 0.8rem;
  line-height: 1;
}

.tel-num {
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: var(--ink);
}

.tel-hours {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-top: 4px;
}

.footer-copy {
  text-align: center;
  padding: 16px 0;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
}

/* ── ANIMATIONS ── */
@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.15);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* divider */
.divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto;
}

/* ── フッター 2行レイアウト（～1480px） ── */
@media (max-width: 1480px) {
  .footer-main {
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .footer-brand {
    flex: 0 0 auto;
  }

  .footer-nav a {
    white-space: nowrap;
    padding: 0 10px;
  }

  .tel-num {
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .hero-band-inner {
    padding: 36px 36px 36px 36px;
  }

  .star-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .star-card {
    aspect-ratio: 1 / 1;
  }

  .biz-inner {
    grid-template-columns: 1fr;
  }

  .biz-inner.reverse .biz-text,
  .biz-inner.reverse .biz-img {
    order: unset;
  }

  .biz-img {
    min-height: 260px;
  }

  .recruit-grid {
    grid-template-columns: 1fr;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .welfare-list {
    gap: 6px;
  }

  .domain-grid {
    grid-template-columns: 1fr;
  }

  #contact-cta {
    padding: 80px 24px;
  }

  #contact-cta .ct-en {
    font-size: 2rem;
  }

  footer {
    padding: 24px 24px 0;
  }

  .footer-main {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }

  .footer-brand .footer-logo {
    margin: 0 auto;
  }

  .footer-brand-link {
    align-items: center;
  }

  .footer-brand-sub {
    text-align: center;
  }

  .footer-brand .footer-company {
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-nav a:first-child {
    border-left: none;
  }

  .footer-tel {
    text-align: center;
  }

  .tel-row {
    justify-content: center;
  }
}

/* ---- Career Path ---- */
.career-block {
  margin-bottom: 60px;
  padding: 52px 56px;
  background: rgba(205, 222, 235, 0.42);
  border-radius: 2px;
}

.career-header {
  margin-bottom: 48px;
}

.career-en {
  display: block;
  font-family: 'Didot', 'GFS Didot', serif;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.career-title {
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--ink);
}

.career-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.career-step {
  display: flex;
  gap: 36px;
}

.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 52px;
}

.step-num {
  width: 52px;
  height: 52px;
  background: transparent;
  color: rgba(110, 135, 150, 0.90);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Didot', 'GFS Didot', serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(160, 185, 200, 0.50);
  box-shadow:
    0 0 18px 6px rgba(180, 205, 220, 0.22),
    0 0 40px 12px rgba(180, 205, 220, 0.10),
    inset 0 0 18px 6px rgba(180, 205, 220, 0.22),
    inset 0 0 40px 12px rgba(180, 205, 220, 0.10);
}

.step-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, rgba(160, 185, 200, 0.5), rgba(160, 185, 200, 0.1));
  min-height: 40px;
  margin: 8px 0;
}

.step-body {
  padding: 12px 0 36px;
  flex: 1;
}

.career-step.last .step-body {
  padding-bottom: 0;
}

.step-period {
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  font-family: 'Didot', 'GFS Didot', serif;
  margin-bottom: 6px;
}

.step-theme {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--ink);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.86rem;
  line-height: 2.2;
  color: var(--ink-light);
  font-weight: 300;
  letter-spacing: 0.06em;
}

/* ---- Sub grid ---- */
.recruit-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}

.recruit-sub-card {
  padding: 40px 44px;
  border: 1px solid #f0f0f0;
  border-top: 2px solid var(--gold);
  background: rgba(220, 232, 242, 0.48);
}

.sub-card-title {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  font-family: 'Didot', 'GFS Didot', serif;
  margin-bottom: 24px;
}

.feature-check-list {
  list-style: none;
}

.feature-check-list li {
  font-size: 0.86rem;
  color: var(--ink-light);
  padding: 11px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.feature-check-list li::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.skill-tag-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.skill-tag-list li {
  font-size: 0.9rem;
  color: var(--ink);
  padding: 10px 16px;
  background: rgba(205, 222, 235, 0.42);
  letter-spacing: 0.06em;
  line-height: 1.6;
  border-left: 2px solid var(--gold);
}

.welfare-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.welfare-list li {
  padding: 18px 20px;
  background: var(--cream);
  border-left: 2px solid var(--gold);
  font-size: 0.9rem;
  color: var(--ink-light);
  letter-spacing: 0.06em;
  line-height: 1.6;
}

@media (max-width: 680px) {
  .recruit-sub-grid {
    grid-template-columns: 1fr;
  }

  .career-block {
    padding: 36px 28px;
  }

  .career-step {
    gap: 20px;
  }

  .welfare-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.welfare-inline {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.welfare-inline li {
  font-size: 0.9rem;
  color: var(--ink-light);
  background: var(--cream);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

/* ════ VISION + MISSION ════ */
#vision-mission {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

/* サークルエリア（バウンス物理用コンテナ） */
.vm-inner {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 640px;
}

/* ── circles ── */
.vm-circle {
  width: 460px;
  height: 460px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  will-change: transform;
  touch-action: none;
  cursor: grab;
  transition: box-shadow 0.15s ease;
}

.vm-circle.vm-grabbed {
  cursor: grabbing;
}

.vision-circle {
  background: transparent;
  border: 1px solid rgba(160, 185, 200, 0.50);
  box-shadow:
    0 0 18px 6px rgba(180, 205, 220, 0.22),
    0 0 40px 12px rgba(180, 205, 220, 0.10),
    inset 0 0 18px 6px rgba(180, 205, 220, 0.22),
    inset 0 0 40px 12px rgba(180, 205, 220, 0.10);
}

.mission-circle {
  background: transparent;
  border: 1px solid rgba(160, 185, 200, 0.50);
  box-shadow:
    0 0 18px 6px rgba(180, 205, 220, 0.22),
    0 0 40px 12px rgba(180, 205, 220, 0.10),
    inset 0 0 18px 6px rgba(180, 205, 220, 0.22),
    inset 0 0 40px 12px rgba(180, 205, 220, 0.10);
}

/* 衝突時のグロー */
.vision-circle.vm-hit {
  box-shadow:
    0 0 28px 10px rgba(180, 205, 220, 0.40),
    0 0 60px 20px rgba(180, 205, 220, 0.18),
    inset 0 0 28px 10px rgba(180, 205, 220, 0.40),
    inset 0 0 60px 20px rgba(180, 205, 220, 0.18);
}

.mission-circle.vm-hit {
  box-shadow:
    0 0 28px 10px rgba(180, 205, 220, 0.40),
    0 0 60px 20px rgba(180, 205, 220, 0.18),
    inset 0 0 28px 10px rgba(180, 205, 220, 0.40),
    inset 0 0 60px 20px rgba(180, 205, 220, 0.18);
}

.vm-circle-inner {
  padding: 0 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.vm-en {
  font-family: 'Didot', 'GFS Didot', serif;
  font-size: 0.9rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.vision-circle .vm-en {
  color: rgba(130, 155, 170, 0.75);
}

.mission-circle .vm-en {
  color: rgba(130, 155, 170, 0.75);
}

.vm-divider {
  width: 40px;
  height: 1px;
}

.vision-circle .vm-divider {
  background: rgba(160, 185, 200, 0.4);
}

.mission-circle .vm-divider {
  background: rgba(160, 185, 200, 0.4);
}

.vm-main {
  font-family: 'Didot', 'GFS Didot', 'Noto Serif JP', serif;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 300;
  letter-spacing: 0.14em;
  line-height: 1.9;
}

.vision-circle .vm-main {
  color: rgba(110, 135, 150, 0.90);
}

.mission-circle .vm-main {
  color: rgba(110, 135, 150, 0.90);
}

.vm-sub {
  font-size: 0.9rem;
  line-height: 2.1;
  letter-spacing: 0.07em;
  font-weight: 300;
  color: rgba(130, 155, 170, 0.65);
  margin-top: -6px;
}

/* ── float animations ── */
@keyframes floatA {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-18px) rotate(0.4deg);
  }

  66% {
    transform: translateY(-8px) rotate(-0.3deg);
  }
}

@keyframes floatB {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  40% {
    transform: translateY(-14px) rotate(-0.5deg);
  }

  70% {
    transform: translateY(-22px) rotate(0.3deg);
  }
}

.float-a {
  animation: floatA 7s ease-in-out infinite;
}

.float-b {
  animation: floatB 8.5s ease-in-out infinite;
  animation-delay: 1.2s;
}

@media (max-width: 860px) {
  .vm-inner {
    height: 540px;
  }

  .vm-circle {
    width: 370px;
    height: 370px;
  }

  .vm-circle-inner {
    padding: 0 40px;
  }

  .vm-main {
    font-size: 0.96rem;
  }
}

@media (max-width: 660px) {
  .vm-circle {
    width: 300px;
    height: 300px;
  }

  .vm-inner {
    height: 400px;
  }
}

/* ═══ Section transition fades ═══ */
/* vm (photo) → domain (white): bottom fade */
#vision-mission::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
  z-index: 3;
}

/* domain (white) top — no pseudo needed, domain bg is white */
/* domain → objectives: domain bottom fade to transparent, objectives has overlay */
#domain::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(248, 246, 242, 0.0));
  pointer-events: none;
  z-index: 1;
}

/* objectives top fade (photo appears from white) */
#objectives::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(to bottom, var(--white), transparent);
  pointer-events: none;
  z-index: 3;
}

/* objectives bottom fade to white */
#objectives::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
  z-index: 3;
}

/* message top fade */
#message::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, var(--white), transparent);
  pointer-events: none;
  z-index: 3;
}

/* message bottom fade to white */
#message::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
  z-index: 3;
}

/* 背景写真：帯が通り過ぎた後にフェードイン */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url('../images/wall.jpg') center center / cover no-repeat;
  opacity: 0;
  animation: heroBgReveal 0.55s ease 1.05s forwards;
}

@keyframes heroBgReveal {
  to {
    opacity: 1;
  }
}

/* 帯：右→左に走り抜けて消える */
.hero-sweep {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.93);
  border-left: 3px solid var(--gold);
  z-index: 20;
  animation: heroSweep 1.1s cubic-bezier(0.77, 0, 0.18, 1) 0.1s forwards;
}

@keyframes heroSweep {
  0% {
    left: 100%;
  }

  42% {
    left: 0%;
  }

  58% {
    left: 0%;
  }

  100% {
    left: -100%;
  }
}

/* コンテンツ全体：帯が去った後にフェードアップ */
.hero-content {
  position: relative;
  z-index: 5;
  opacity: 0;
  animation: heroContentIn 0.8s ease 1.4s forwards;
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* テキスト背景カード：文字の範囲だけに白半透明 */
.hero-band-inner {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 44px 64px 44px 52px;
  position: relative;
  border-left: 3px solid var(--gold);
}

.hero-band-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--gold), rgba(176, 176, 176, 0.15), transparent);
}

/* テキスト要素（親のフェードで一括登場） */
.hero-en {
  font-family: 'Didot', 'GFS Didot', serif;
  font-style: italic;
  font-size: 0.8rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #7888b8;
  margin-bottom: 20px;
  display: block;
}

.hero-main-copy {
  font-size: clamp(1.7rem, 2.5vw, 2.7rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  line-height: 1.85;
  color: #2c3860;
}

.hero-accent-bar {
  width: 48px;
  height: 1px;
  margin: 26px 0;
  background: linear-gradient(to right, rgba(165, 200, 240, 0.8), rgba(195, 175, 235, 0.8));
}

.hero-sub-copy {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  line-height: 2.1;
  color: #6878a0;
}

.hero-recruit-tag {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Didot', 'GFS Didot', serif;
  font-size: 0.8rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #8898c0;
}

.hero-recruit-tag::before {
  content: '';
  width: 18px;
  height: 1px;
  flex-shrink: 0;
  background: rgba(160, 185, 225, 0.6);
}

/* ── KINDERGARTEN MARQUEE ── */
.kg-marquee {
  overflow: visible;
  padding: 20px 0 28px;
  background: transparent;
  pointer-events: none;
  line-height: 1.4;
}

.kg-marquee-track {
  display: flex;
  width: max-content;
  animation: kgScroll 166s linear infinite;
}

@keyframes kgScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.kg-marquee-text {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(4.5rem, 11vw, 10rem);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding: 0 0.15em 0.15em;
  display: inline-block;
  background: linear-gradient(90deg,
      rgba(194, 194, 194, 0.45) 0%,
      rgba(194, 194, 194, 0.45) 10%,
      rgba(201, 164, 140, 0.55) 30%,
      rgba(212, 146, 126, 0.58) 50%,
      rgba(200, 168, 152, 0.52) 70%,
      rgba(194, 194, 194, 0.45) 90%,
      rgba(194, 194, 194, 0.45) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ── SITE HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.05);
}

.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.site-header__brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  text-decoration: none;
  flex-shrink: 0;
  margin-left: -40px;
}

.site-header__brand-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
}

.site-header__brand-img {
  height: 52px;
  width: auto;
  display: block;
  align-self: flex-start;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  flex-wrap: nowrap;
  height: 88px;
}

.site-header__nav > li {
  height: 100%;
  display: flex;
  align-items: center;
}

.site-header__nav li a {
  display: flex;
  align-items: center;
  padding: 0 18px;
  height: 100%;
  font-family: 'Didot', 'GFS Didot', serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s;
}

.site-header__nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.site-header__nav li a:hover {
  color: var(--gold);
}

.site-header__nav li a:hover::after {
  transform: scaleX(1);
}

.site-header__nav li a.is-active {
  color: var(--gold);
}

.site-header__nav li a.is-active::after {
  transform: scaleX(1);
}

/* ハンバーガー（スマホ用） */
.site-header__menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.site-header__menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s, background 0.25s;
}

@media (max-width: 1240px) {
  .site-header__inner {
    padding: 0 20px;
  }

  .site-header__brand {
    margin-left: 0;
  }

  .site-header__menu-btn {
    display: flex;
    margin-left: auto;
  }

  .site-header__inner > nav {
    display: contents;
  }

  .site-header__nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    height: auto;
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .site-header__nav.is-open {
    max-height: 500px;
    padding: 12px 0 24px;
  }

  .site-header__nav > li {
    height: auto;
  }

  .site-header__nav li a {
    height: auto;
    white-space: normal;
    line-height: 1;
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .site-header__nav li a::after {
    display: none;
  }
}

/* ═══════════════════════════════════════════
     MOBILE RESPONSIVE  ≤768px
  ═══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── ヘッダー高さ調整 ── */
  .site-header__inner {
    height: 64px;
  }

  body {
    padding-top: 64px;
  }

  .site-header__brand-img {
    height: 36px;
  }

  .sv-side-strip {
    top: 64px;
    height: calc(100vh - 64px);
  }

  .site-header__nav {
    top: 64px;
  }

  /* ── HERO ── */
  #hero {
    align-items: flex-start;
    padding-top: 80px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-band-inner {
    padding: 24px 20px 24px 18px;
    margin: 0 16px;
  }

  .hero-main-copy {
    font-size: clamp(1.4rem, 7vw, 2rem);
    letter-spacing: 0.14em;
  }

  .hero-sub-copy {
    font-size: 0.78rem;
  }

  .hero-accent-bar {
    margin: 18px 0;
  }

  .hero-recruit-tag {
    margin-top: 20px;
  }

  /* ── VISION / MISSION サークル ── */
  /* JSがinline styleでleft/topを設定するため!importantで上書き */
  .vm-inner {
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 24px !important;
    padding: 40px 16px 48px !important;
  }

  .vm-circle {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 260px !important;
    height: 260px !important;
    animation: none !important;
    cursor: default !important;
  }

  .float-a,
  .float-b {
    animation: none !important;
  }

  .vm-circle-inner {
    padding: 0 24px;
  }

  .vm-main {
    font-size: 0.92rem;
  }

  .vm-sub {
    font-size: 0.8rem;
    line-height: 1.9;
  }

  /* ── KINDERGARTEN MARQUEE ── */
  .kg-marquee {
    padding: 14px 0 20px;
  }

  .kg-marquee-text {
    font-size: clamp(3rem, 9vw, 5rem);
  }

  /* ── DOMAIN ── */
  #domain {
    padding: 56px 20px;
  }

  #domain .inner {
    padding: 0;
  }

  .domain-grid {
    grid-template-columns: 1fr !important;
  }

  .domain-card {
    padding: 18px 20px;
  }

  /* ── OBJECTIVES (STAR) ── */
  #objectives {
    padding: 80px 20px;
    background-attachment: scroll;
    /* iOS fixed bg バグ回避 */
  }

  .star-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px;
  }

  .star-card {
    aspect-ratio: auto;
    min-height: 0;
    padding: 24px 14px 20px;
  }

  .star-card .letter {
    font-size: clamp(2.2rem, 9vw, 3rem);
    margin-bottom: 10px;
    background-attachment: scroll;
    /* iOS fixed bg バグ回避 */
  }

  .star-card .keyword {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
  }

  .star-card .meaning {
    font-size: 0.76rem;
    line-height: 1.7;
    letter-spacing: 0.04em;
  }

  /* ── BUSINESSES (働き方) ── */
  #businesses {
    padding: 56px 20px;
  }

  #businesses .inner {
    padding: 0;
  }

  .career-block {
    padding: 28px 18px;
    margin-bottom: 36px;
  }

  .career-step {
    gap: 16px;
  }

  .step-num {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }

  .step-marker {
    width: 40px;
  }

  .step-body {
    padding: 8px 0 28px;
  }

  .biz-inner {
    grid-template-columns: 1fr;
  }

  .biz-inner.reverse .biz-text,
  .biz-inner.reverse .biz-img {
    order: unset;
  }

  .biz-img {
    min-height: 220px;
  }

  .biz-text {
    padding: 32px 20px;
  }

  .recruit-sub-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
  }

  .recruit-sub-card {
    padding: 28px 20px;
  }

  .welfare-list {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ── SCHEDULE & VOICES (一緒に働く仲間たち) ── */
  .sv-side-strip {
    display: none;
  }

  #schedule-voices {
    padding: 60px 16px 80px;
  }

  #schedule-voices.voices-open {
    padding-bottom: 80px;
  }

  #schedule-voices .sv-box {
    flex-direction: column;
    max-width: 100%;
  }

  #schedule-voices .sv-left {
    flex: none;
    border-right: none;
    border-bottom: 1px solid rgba(160, 185, 200, 0.35);
    padding: 16px 12px;
  }

  #sv-box .sv-photo-side {
    display: none;
  }

  #sv-box .sv-left {
    flex-direction: column;
  }

  #schedule-voices .sv-right {
    padding: 16px 12px;
  }

  /* QAパネルを絶対配置から静的配置に変更 */
  #schedule-voices .qa-panel {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    margin-top: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  #schedule-voices .cards-grid {
    grid-template-columns: 1fr;
  }

  #schedule-voices .voice-card {
    padding: 16px;
  }

  /* マネージャーボックス内パネル */
  #mgr-box {
    margin-top: 16px;
  }

  .mgr-col-hd {
    flex-direction: column-reverse;
    gap: 12px;
  }

  .mgr-photo {
    width: 100%;
    height: auto;
    max-width: 180px;
    align-self: center;
  }

  /* ── MESSAGE ── */
  #message {
    flex-direction: column;
    padding: 60px 20px;
    gap: 28px;
  }

  #message .content {
    padding: 28px 20px;
    max-width: 100%;
  }

  .msg-photo {
    align-self: center;
  }

  .msg-photo img {
    width: 180px;
  }

  /* ── RECRUIT (採用情報) ── */
  #recruit {
    padding: 56px 20px;
  }

  #recruit .inner {
    padding: 0;
  }

  .recruit-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .welfare-inline {
    gap: 6px;
  }

  /* ── FOOTER ── */
  footer {
    padding: 32px 16px 0;
  }
}

/* ── 超小型端末 (≤480px) 追加調整 ── */
@media (max-width: 480px) {
  .hero-band-inner {
    margin: 0 8px;
  }

  .hero-main-copy {
    letter-spacing: 0.1em;
  }

  .vm-circle {
    width: 220px !important;
    height: 220px !important;
  }

  .star-grid {
    grid-template-columns: 1fr;
  }

  .star-card {
    padding: 22px 20px;
  }

  .star-card .letter {
    font-size: 2.8rem;
  }

  .star-card .meaning {
    font-size: 0.82rem;
  }
}

#sec-tabnav {
  display: none;
}
