:root {
  --color-base: #f7fbf4;
  --color-surface: #ffffff;
  --color-ink: #16313b;
  --color-brand: #2d9cdb;
  --color-brand-deep: #1e7aae;
  --color-accent: #ffb547;
  --color-accent-line: #d27d00;
  --color-support: #76b66b;
  --color-support-text: #49803f;
  --content-width: 720px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
	min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--color-ink);
  background: var(--color-base);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

a {
  color: var(--color-brand-deep);
}

a:focus-visible {
  outline: 3px solid var(--color-brand-deep);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--color-base);
  background: var(--color-ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  width: min(calc(100% - 40px), var(--content-width));
  margin-inline: auto;
}

.site-header {
  border-bottom: 1px solid color-mix(in srgb, var(--color-ink) 20%, transparent);
  background: var(--color-base);
}

.site-header__inner {
  display: grid;
  gap: 12px;
  padding-block: 18px;
}

.site-title {
  max-width: 32rem;
  margin: 0;
  font-weight: 700;
  line-height: 1.5;
}

.site-title a {
  color: var(--color-ink);
  text-decoration: none;
}

.site-nav p,
.top-section {
  padding-block: 72px;
  border-bottom: 1px solid color-mix(in srgb, var(--color-ink) 15%, transparent);
}

.top-hero {
  position: relative;
  display: grid;
  min-height: max(640px, 82svh);
  padding-block: 0;
  align-items: end;
  overflow: hidden;
  color: var(--color-base);
  background: var(--color-ink);
  border-top: 10px solid var(--color-brand);
}

.top-hero__media,
.top-hero__media::after,
.top-hero__media img {
  position: absolute;
  inset: 0;
}

.top-hero__media {
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, var(--color-brand-deep), var(--color-ink) 68%);
}

.top-hero__media::after {
  z-index: 1;
  content: "";
  background:
    linear-gradient(to bottom, rgba(10, 29, 34, 0.58) 0%, rgba(10, 29, 34, 0.7) 45%, rgba(10, 29, 34, 0.96) 100%);
}

.top-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}

.top-hero__media img[hidden] {
  display: none;
}

.top-hero__media figcaption {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 14px;
  left: 20px;
  color: var(--color-base);
  font-size: 13px;
  line-height: 1.7;
  text-align: right;
}

.top-hero__media.is-image-unavailable figcaption {
  display: none;
}

.top-hero__content {
  position: relative;
  z-index: 2;
  padding-block: 88px 88px;
}

.top-hero__label {
  color: var(--color-base);
}

.top-hero h1 {
  max-width: 28rem;
  font-size: 18px;
  line-height: 1.6;
}

.top-hero__copy {
  max-width: 18em;
  margin: 22px 0 0;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.recruitment-status {
  width: fit-content;
  max-width: 100%;
  margin-top: 28px;
  padding: 14px 16px;
  border-left: 4px solid var(--color-accent);
  color: var(--color-ink);
  background: color-mix(in srgb, var(--color-base) 94%, transparent);
}

.recruitment-status p {
  margin: 0;
}

.recruitment-status__label {
  font-weight: 700;
}

.recruitment-status__description {
  margin-top: 2px !important;
  font-size: 14px;
}

.primary-cta {
  display: inline-flex;
  min-height: 52px;
  margin-top: 20px;
  padding: 12px 20px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-accent-line);
  color: var(--color-ink);
  background: var(--color-accent);
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

.primary-cta:hover {
  background: #ffc66f;
}

.provisional-note {
  margin: 14px 0 0;
  color: var(--color-base);
  font-size: 13px;
}

.top-hero[data-recruitment-code="paused"] .recruitment-status,
.top-hero[data-recruitment-code="cancelled"] .recruitment-status {
  border-left-style: double;
  border-left-width: 7px;
}

.section-heading {
  display: grid;
  gap: 16px;
}

.section-link {
  width: fit-content;
  color: var(--color-brand-deep);
  font-weight: 700;
  text-underline-offset: 0.25em;
}

.news-list {
  margin: 24px 0 0;
  padding: 0;
  border-top: 2px solid var(--color-ink);
  list-style: none;
}

.news-item {
  border-bottom: 1px solid color-mix(in srgb, var(--color-ink) 25%, transparent);
}

.news-item__link {
  display: grid;
  gap: 8px;
  padding-block: 22px;
  color: var(--color-ink);
  text-decoration: none;
}

.news-item__link:hover h3 {
  color: var(--color-brand-deep);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.news-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  color: var(--color-ink);
  font-size: 13px;
  line-height: 1.7;
}

.news-item__category,
.news-item__pin {
  display: inline-flex;
  min-height: 28px;
  padding-inline: 9px;
  align-items: center;
  border: 1px solid var(--color-brand-deep);
}

.news-item__pin {
  border-color: var(--color-support-text);
  font-weight: 700;
}

.news-item h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}

.news-item--pinned {
  border-bottom-width: 2px;
}

.news-empty {
  margin-top: 28px;
  padding: 22px;
  border-left: 5px solid var(--color-support);
  background: var(--color-surface);
}

.news-empty p {
  margin: 0;
}

.news-empty p + p,
.news-empty .section-link {
  margin-top: 8px;
}

.recruitment-summary {
  background: color-mix(in srgb, var(--color-support) 9%, var(--color-base));
}

.recruitment-summary__lead {
  max-width: 38rem;
  margin: 18px 0 0;
}

.recruitment-overview {
  margin-top: 28px;
  padding-bottom: 24px;
  border-top: 8px solid var(--color-brand-deep);
  background: var(--color-surface);
}

.recruitment-summary__status {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-bottom: 4px solid var(--color-accent);
  color: var(--color-base);
  background: var(--color-ink);
}

.recruitment-summary__status p {
  margin: 0;
}

.recruitment-summary__status-label {
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}

.recruitment-summary__status-description {
  font-size: 14px;
}

.recruitment-summary[data-recruitment-code="paused"] .recruitment-overview,
.recruitment-summary[data-recruitment-code="cancelled"] .recruitment-overview {
  border-top-style: double;
}

.recruitment-facts {
  display: grid;
  margin: 0;
}

.recruitment-fact {
  min-width: 0;
  padding: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--color-ink) 22%, transparent);
}

.recruitment-fact dt {
  color: var(--color-brand-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.recruitment-fact dd {
  margin: 6px 0 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.65;
}

.recruitment-fact dd span {
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.recruitment-summary__cta {
  margin-inline: 20px;
}

.experience-story {
  margin-top: 52px;
}

.experience-scene + .experience-scene {
  margin-top: 96px;
}

.experience-scene__header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding-top: 18px;
  align-items: end;
  border-top: 2px solid var(--color-ink);
}

.experience-scene__number {
  margin: 0;
  color: var(--color-brand-deep);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 52px;
  font-weight: 700;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  font-kerning: none;
  line-height: 1;
  letter-spacing: -0.03em;
}

.experience-scene h3 {
  margin: 0;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 22px;
  line-height: 1.5;
  text-wrap: balance;
}

.experience-scene__body,
.experience-scene__empty {
  max-width: 38rem;
  margin: 28px 0 0;
  font-size: 17px;
  line-height: 2;
}

.experience-scene__empty {
  color: var(--color-brand-deep);
}

.experience-scene__media {
  width: calc(100% + 40px);
  margin: 36px 0 0 -20px;
  background: var(--color-ink);
}

.experience-scene__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1274 / 853;
  object-fit: cover;
}

.experience-scene__media--illustration {
  background: color-mix(in srgb, var(--color-brand) 8%, var(--color-base));
}

.experience-scene__media--illustration img {
  padding: 24px;
  object-fit: contain;
}

.experience-scene__media figcaption {
  padding: 10px 20px 12px;
  color: var(--color-base);
  font-size: 13px;
  line-height: 1.7;
  text-align: right;
}

.experience-scene__perspective {
  display: grid;
  width: calc(100% + 40px);
  margin: 36px 0 0 -20px;
  row-gap: 8px;
  isolation: isolate;
}

.experience-scene__perspective-frame {
  grid-column: 1;
  grid-row: 1;
  width: 92%;
  margin: 0;
  box-shadow: 0 18px 34px rgba(22, 28, 26, 0.2);
}

.experience-scene__perspective-frame--1 {
  z-index: 1;
  justify-self: start;
  opacity: 0.72;
  transform: translateY(0);
}

.experience-scene__perspective-frame--2 {
  z-index: 2;
  justify-self: end;
  opacity: 1;
  transform: translateY(48px);
}

.experience-scene__perspective-note {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  margin: 0;
  padding: 12px 14px;
  border-left: 4px solid var(--color-support);
  background: var(--color-ink);
  color: var(--color-base);
  font-size: 13px;
  line-height: 1.7;
}

.experience-scene__perspective-note--1 {
  grid-column: 1;
  grid-row: 2;
  margin-top: 48px;
}

.experience-scene__perspective-note--2 {
  grid-column: 1;
  grid-row: 3;
}

.experience-scene__perspective-label {
  color: var(--color-support);
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.experience-scene__media-fallback,
.experience-scene__media--empty p {
  margin: 0;
  padding: 64px 20px;
  color: var(--color-base);
  font-weight: 700;
  text-align: center;
}

.experience-scene__media.is-image-unavailable img,
.experience-scene__media.is-image-unavailable figcaption,
.experience-scene__media-fallback[hidden] {
  display: none;
}

.experience-scene__media.is-image-unavailable .experience-scene__media-fallback {
  display: block;
}

.experience-scene__voice {
  width: calc(100% - 24px);
  margin: 32px 0 0 auto;
  padding: 20px 22px;
  border-left: 5px solid var(--color-support-text);
  background: color-mix(in srgb, var(--color-support) 13%, var(--color-surface));
}

.experience-scene__voice p {
  margin: 0;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

@media (prefers-reduced-motion: no-preference) {
  .has-scene-motion .experience-scene[data-scene-motion-state="pending"] .experience-scene__header,
  .has-scene-motion .experience-scene[data-scene-motion-state="pending"] .experience-scene__body,
  .has-scene-motion .experience-scene[data-scene-motion-state="pending"] .experience-scene__voice {
    opacity: 0;
    transform: translateY(12px);
    transition: none;
  }

  .has-scene-motion .experience-scene[data-scene-motion-state="pending"] .experience-scene__media img {
    opacity: 0;
    transition: none;
  }

  .has-scene-motion .experience-scene[data-scene-motion-state="revealed"] .experience-scene__header,
  .has-scene-motion .experience-scene[data-scene-motion-state="revealed"] .experience-scene__body,
  .has-scene-motion .experience-scene[data-scene-motion-state="revealed"] .experience-scene__voice {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 400ms ease-out, transform 400ms ease-out;
  }

  .has-scene-motion .experience-scene[data-scene-motion-state="revealed"] .experience-scene__body {
    transition-delay: 120ms;
  }

  .has-scene-motion .experience-scene[data-scene-motion-state="revealed"] .experience-scene__voice {
    transition-delay: 240ms;
  }

  .has-scene-motion .experience-scene[data-scene-motion-state="revealed"] .experience-scene__media img {
    opacity: 1;
    transition: opacity 600ms ease-out;
  }

  .has-scene-motion .experience-scene--perspective[data-scene-motion-state="pending"] [data-perspective-state="before"] .experience-scene__perspective-frame--1 {
    z-index: 2;
    opacity: 1;
    transform: translateY(48px);
  }

  .has-scene-motion .experience-scene--perspective[data-scene-motion-state="pending"] [data-perspective-state="before"] .experience-scene__perspective-frame--2 {
    z-index: 1;
    opacity: 0.72;
    transform: translateY(0);
  }

  .has-scene-motion .experience-scene--perspective[data-scene-motion-state="revealed"] .experience-scene__perspective-frame {
    transition: opacity 600ms ease-out, transform 700ms ease-out;
  }
}

.experience-story__ending {
  margin: 96px 0 0;
  padding: 36px 0;
  border-top: 2px solid var(--color-brand-deep);
  border-bottom: 2px solid var(--color-brand-deep);
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.65;
  text-align: center;
  text-wrap: balance;
}

.experience-story__ending--empty {
  color: var(--color-brand-deep);
  font-size: 18px;
}

.lower-section-lead {
  max-width: 38rem;
  margin: 18px 0 0;
}

.schedule-list {
  margin: 32px 0 0;
  padding: 0;
  border-top: 2px solid var(--color-ink);
  list-style: none;
}

.schedule-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  padding-block: 24px;
  border-bottom: 1px solid color-mix(in srgb, var(--color-ink) 24%, transparent);
}

.schedule-item__number {
  color: var(--color-brand-deep);
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.schedule-item h3,
.schedule-item p {
  margin: 0;
}

.schedule-item h3 {
  font-size: 18px;
  line-height: 1.6;
}

.schedule-item__date {
  margin-top: 6px !important;
  color: var(--color-brand-deep);
  font-weight: 700;
}

.schedule-item__note {
  margin-top: 4px !important;
  font-size: 14px;
  line-height: 1.7;
}

#notices {
  background: color-mix(in srgb, var(--color-support) 8%, var(--color-base));
}

.notices-list {
  margin: 28px 0 0;
  padding: 0;
  border-top: 2px solid var(--color-support-text);
  list-style: none;
}

.notices-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  padding-block: 18px;
  border-bottom: 1px solid color-mix(in srgb, var(--color-support-text) 34%, transparent);
}

.notices-list li::before {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 2px solid var(--color-support-text);
  border-radius: 50%;
  content: "!";
  color: var(--color-support-text);
  font-weight: 800;
  line-height: 1;
}

.notices-empty,
.faq-empty {
  margin-top: 28px;
  padding: 22px;
  border-left: 5px solid var(--color-support);
  background: var(--color-surface);
}

.notices-empty p,
.faq-empty p {
  margin: 0;
}

.notices-empty p + p,
.faq-empty p + p {
  margin-top: 6px;
}

.notices-empty .section-link,
.empty-state-links {
  margin-top: 10px;
}

.empty-state-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.faq-list {
  margin-top: 28px;
  border-top: 2px solid var(--color-ink);
}

.faq-list[hidden],
.faq-empty[hidden],
.faq-group[hidden] {
  display: none;
}

/* One section per FAQ category. */
.faq-group + .faq-group {
  margin-top: 44px;
}

.faq-group__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
}

/* The heading already separates the sections; a second rule under it doubles up. */
.faq-group__title + .faq-list {
  margin-top: 14px;
}

.faq-item {
  border-bottom: 1px solid color-mix(in srgb, var(--color-ink) 26%, transparent);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  width: 100%;
  min-height: 64px;
  padding: 18px 0;
  align-items: center;
  gap: 18px;
  border: 0;
  color: var(--color-ink);
  background: transparent;
  font: inherit;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
  text-align: left;
  cursor: pointer;
}

.faq-question:hover {
  color: var(--color-brand-deep);
}

.faq-question:focus-visible {
  outline: 3px solid var(--color-brand-deep);
  outline-offset: 4px;
}

.faq-question__mark {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  border: 2px solid var(--color-brand-deep);
  border-radius: 50%;
}

.faq-question__mark::before,
.faq-question__mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  content: "";
  background: var(--color-brand-deep);
  transform: translate(-50%, -50%);
}

.faq-question__mark::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-question__mark::after {
  opacity: 0;
}

.faq-answer {
  max-width: 40rem;
  padding: 0 52px 22px 0;
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
  margin-top: 0;
  margin-bottom: 12px;
}

.final-cta {
  border-top: 8px solid var(--color-brand);
  color: var(--color-base);
  background: var(--color-ink);
}

.final-cta .section-label {
  color: var(--color-accent);
}

.final-cta__lead {
  max-width: 38rem;
  margin: 18px 0 0;
}

.final-cta__status {
  display: grid;
  gap: 4px;
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 5px solid var(--color-accent);
  color: var(--color-ink);
  background: var(--color-base);
}

.final-cta__status p {
  margin: 0;
}

.final-cta__status-label {
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.final-cta__status-description {
  font-size: 14px;
}

.final-cta__button {
  min-width: min(100%, 20rem);
}

.final-cta[data-recruitment-code="paused"] .final-cta__status,
.final-cta[data-recruitment-code="cancelled"] .final-cta__status {
  border-left-style: double;
  border-left-width: 8px;
}

.section-label {
  margin: 0 0 10px;
  color: var(--color-brand-deep);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.top-hero .section-label {
  color: var(--color-base);
}

h1,
h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.01em;
}

h1 {
  font-size: 28px;
  line-height: 1.4;
}

h2 {
  font-size: 22px;
  line-height: 1.5;
}

.site-footer {
  color: var(--color-base);
  background: var(--color-ink);
}

.site-footer__inner {
  display: grid;
  gap: 12px;
  padding-block: 48px;
}

@media (min-width: 768px) {
  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .top-section {
    padding-block: 88px;
  }

  .top-hero {
    padding-block: 0;
  }

  .top-hero__content {
    padding-block: 112px 96px;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .recruitment-summary__status {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 24px;
    align-items: center;
  }

  .recruitment-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recruitment-fact:nth-child(odd) {
    border-right: 1px solid color-mix(in srgb, var(--color-ink) 22%, transparent);
  }

  .experience-scene__number {
    font-size: 72px;
  }

  .experience-scene h3 {
    font-size: 30px;
  }

  .schedule-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .schedule-item__number {
    font-size: 30px;
  }

  .schedule-item > div {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    column-gap: 28px;
  }

  .schedule-item__date {
    margin-top: 0 !important;
  }

  .schedule-item__note {
    grid-column: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .experience-scene__perspective {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 0;
  }

  .experience-scene__perspective-frame,
  .experience-scene__perspective-frame--1,
  .experience-scene__perspective-frame--2 {
    z-index: auto;
    grid-area: auto;
    width: 100%;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .experience-scene__perspective-frame--1 {
    grid-column: 1;
    grid-row: 1;
  }

  .experience-scene__perspective-note--1 {
    grid-column: 1;
    grid-row: 2;
    margin-top: 0;
    margin-bottom: 16px;
  }

  .experience-scene__perspective-frame--2 {
    grid-column: 1;
    grid-row: 3;
  }

  .experience-scene__perspective-note--2 {
    grid-column: 1;
    grid-row: 4;
  }
}

@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
  .experience-scene__perspective {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
  }

  .experience-scene__perspective-frame--1 {
    grid-column: 1;
    grid-row: 1;
  }

  .experience-scene__perspective-frame--2 {
    grid-column: 2;
    grid-row: 1;
  }

  .experience-scene__perspective-note--1 {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 0;
  }

  .experience-scene__perspective-note--2 {
    grid-column: 2;
    grid-row: 2;
  }
}

/* TOP-only desktop shell. Side regions remain non-rendered below 1100px. */
.desktop-shell-741__body {
  min-width: 0;
}

.desktop-photo-area,
.desktop-menu {
  display: none;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (min-width: 1100px) {
  .desktop-shell-741 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px 200px;
    align-items: stretch;
    min-width: 0;
  }

  .desktop-shell-741__body {
    z-index: 1;
    grid-column: 2;
    grid-row: 1;
    border-inline: 1px solid color-mix(in srgb, var(--color-ink) 20%, transparent);
    background: var(--color-base);
  }

  .desktop-photo-area {
    display: block;
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    background:
      linear-gradient(145deg, color-mix(in srgb, var(--color-brand) 10%, var(--color-base)), var(--color-base) 58%, color-mix(in srgb, var(--color-support) 10%, var(--color-base)));
  }

  .desktop-photo-area__sticky {
    position: sticky;
    top: 0;
    display: grid;
    min-height: 100svh;
    padding: clamp(24px, 4vw, 64px) 10%;
    place-items: center;
  }

  .desktop-photo-area__heading {
    position: absolute;
    top: clamp(24px, 4vw, 64px);
    right: 10%;
    left: 10%;
    display: flex;
    justify-content: space-between;
    color: var(--color-brand-deep);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
  }

  .desktop-phone-frame {
    width: min(44%, calc((100svh - 280px) * 0.5625));
    min-width: 210px;
    max-width: 360px;
    margin: 0 auto;
  }

  .desktop-phone-frame__screen {
    position: relative;
    isolation: isolate;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border: 2px solid #16313b;
    border-radius: clamp(24px, 3vw, 38px);
    background: transparent;
  }

  .desktop-phone-frame__screen img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .desktop-photo-slider {
    width: 100%;
  }

  .desktop-photo-slide {
    position: absolute;
    z-index: 0;
    inset: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 600ms ease-out,
      visibility 0s linear 600ms;
  }

  .desktop-photo-slide.is-active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    transition:
      opacity 600ms ease-out,
      visibility 0s linear 0s;
  }

  .desktop-photo-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .desktop-phone-frame__screen img[hidden] {
    display: none;
  }

  .desktop-phone-frame__fallback {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 20px;
    place-items: center;
    color: var(--color-ink);
    background: color-mix(in srgb, var(--color-brand) 10%, var(--color-base));
    font-size: 13px;
    font-weight: 700;
    text-align: center;
  }

  .desktop-phone-frame__fallback:not([hidden]) {
    display: grid;
  }

  .desktop-photo-slider__meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: start;
    min-height: 92px;
    margin-top: 12px;
  }

  .desktop-photo-slider__meta[hidden] {
    display: none;
  }

  .desktop-photo-slider__credit,
  .desktop-photo-slider__position {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
  }

  .desktop-photo-slider__credit:empty {
    min-height: 1px;
  }

  .desktop-photo-slider__position {
    color: var(--color-brand-deep);
    font-weight: 700;
    white-space: nowrap;
  }

  .desktop-photo-slider__controls {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .desktop-photo-slider__controls[hidden] {
    display: none;
  }

  .desktop-photo-slider__controls button {
    min-height: 44px;
    padding: 6px 4px;
    border: 1px solid var(--color-ink);
    border-radius: 0;
    color: var(--color-ink);
    background: transparent;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    cursor: pointer;
  }

  .desktop-photo-slider__controls button:hover:not(:disabled) {
    background: color-mix(in srgb, var(--color-brand) 12%, var(--color-base));
  }

  .desktop-photo-slider__controls button:focus-visible,
  .desktop-phone-frame__screen:focus-visible {
    outline: 3px solid var(--color-brand-deep);
    outline-offset: 3px;
  }

  .desktop-photo-slider__controls button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
  }

  .desktop-menu {
    display: block;
    grid-column: 3;
    grid-row: 1;
    min-width: 0;
    border-left: 1px solid color-mix(in srgb, var(--color-ink) 18%, transparent);
    background: var(--color-surface);
  }

  .desktop-menu__sticky {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    padding: 18px 8px;
  }

  .desktop-menu__label {
    margin: 0 0 10px;
    color: var(--color-brand-deep);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
  }

  .desktop-section-nav {
    display: grid;
    gap: 2px;
  }

  .desktop-section-nav a {
    display: flex;
    min-height: 44px;
    padding: 7px 5px;
    flex-direction: column;
    justify-content: center;
    border-left: 3px solid transparent;
    color: var(--color-ink);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .desktop-section-nav a:hover {
    background: color-mix(in srgb, var(--color-brand) 9%, var(--color-surface));
  }

  .desktop-section-nav a[aria-current="location"] {
    border-left-color: var(--color-brand-deep);
    background: color-mix(in srgb, var(--color-brand) 14%, var(--color-surface));
  }

  .desktop-section-nav__current {
    margin-top: 2px;
    color: var(--color-brand-deep);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .desktop-menu__cta {
    display: grid;
    gap: 7px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid color-mix(in srgb, var(--color-ink) 20%, transparent);
  }

  .desktop-menu__cta p {
    margin: 0;
    color: var(--color-ink);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
  }

  .desktop-menu__cta a {
    display: grid;
    min-height: 44px;
    padding: 8px 5px;
    place-items: center;
    color: var(--color-ink);
    background: var(--color-accent);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    text-decoration: none;
  }

  .desktop-menu__cta[data-recruitment-code="paused"] a,
  .desktop-menu__cta[data-recruitment-code="cancelled"] a {
    border: 2px double var(--color-ink);
  }

  .top-section {
    scroll-margin-top: 12px;
  }
}

/* Tinted section surfaces need the ink token to retain WCAG AA contrast. */
.recruitment-summary .section-label,
.recruitment-summary .summary-provisional-note,
#notices .section-label,
#notices .summary-provisional-note,
.desktop-section-nav__current {
  color: var(--color-ink);
}

@media (min-width: 1100px) and (prefers-reduced-motion: reduce) {
  .desktop-photo-slide,
  .desktop-photo-slide.is-active {
    transition: none;
  }
}

/* STEP 11: サイト共通ナビゲーション、募集状態の常時表示、TEAM案内 */

.site-title a {
  color: inherit;
  text-decoration: none;
}

.site-title a:hover {
  text-decoration: underline;
}

.site-header__aside {
  display: grid;
  gap: 10px;
}

.site-header__state {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  justify-self: start;
  margin: 0;
  padding: 4px 12px;
  border: 1px solid color-mix(in srgb, var(--color-ink) 35%, transparent);
  border-left: 4px solid var(--color-brand-deep);
  background: var(--color-surface);
}

.site-header__state[data-recruitment-code="paused"],
.site-header__state[data-recruitment-code="cancelled"] {
  border-left-style: double;
  border-left-width: 6px;
  border-left-color: var(--color-accent-line);
}

.site-header__state-caption {
  color: color-mix(in srgb, var(--color-ink) 75%, transparent);
  font-size: 13px;
}

.site-header__state-label {
  font-size: 14px;
  font-weight: 700;
}

.site-nav__list,
.site-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__list a,
.site-footer__nav-list a {
  display: inline-block;
  padding-block: 6px;
  font-size: 14px;
}

.site-footer__nav-list a {
  color: var(--color-base);
}

.site-footer__inner {
  gap: 20px;
}

.site-footer__nav {
  padding-bottom: 18px;
  border-bottom: 1px solid color-mix(in srgb, var(--color-base) 30%, transparent);
}

.site-footer__organizers {
  display: grid;
  gap: 6px;
}

.site-footer__note {
  color: color-mix(in srgb, var(--color-base) 80%, transparent);
  font-size: 13px;
}

.site-footer a:focus-visible,
.final-cta a:focus-visible {
  outline-color: var(--color-accent);
}

.team-guidance {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid color-mix(in srgb, var(--color-base) 45%, transparent);
}

.team-guidance p {
  margin: 0;
}

.team-guidance__state {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
}

.team-guidance__caption {
  font-size: 13px;
}

.team-guidance__label {
  padding: 2px 10px;
  color: var(--color-ink);
  background: var(--color-base);
  font-size: 13px;
  font-weight: 700;
}

.team-guidance[data-team-code="publication_suspended"] .team-guidance__label {
  border: 2px double var(--color-ink);
}

.team-guidance__text {
  font-size: 14px;
}

.final-cta .section-link {
  color: var(--color-accent);
}

@media (min-width: 768px) {
  .site-header__aside {
    justify-items: end;
  }

  .site-header__state {
    justify-self: end;
  }

  .site-nav__list {
    justify-content: flex-end;
  }
}

@media (min-width: 1100px) {
  .site-header__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-header__aside {
    justify-items: start;
  }

  .site-header__state {
    justify-self: start;
  }

  .site-nav__list {
    justify-content: flex-start;
  }
}

/* STEP 12: 下層ページ共通レイアウトとWordPress本文スタイル */

.page-main {
  padding-block: 28px 72px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.breadcrumbs li + li::before {
  margin-right: 8px;
  color: color-mix(in srgb, var(--color-ink) 55%, transparent);
  content: "/";
}

.breadcrumbs [aria-current="page"] {
  color: color-mix(in srgb, var(--color-ink) 75%, transparent);
}

.page-header {
  padding-bottom: 24px;
  border-bottom: 2px solid var(--color-ink);
}

.page-header h1 {
  margin: 0;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
}

.page-header__lead {
  max-width: 38rem;
  margin: 16px 0 0;
}

.page-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin: 14px 0 0;
  font-size: 14px;
}

.page-header__category {
  padding: 2px 10px;
  border: 1px solid color-mix(in srgb, var(--color-ink) 35%, transparent);
}

.prose {
  margin-top: 40px;
  overflow-wrap: anywhere;
}

.prose > * {
  margin-block: 0 20px;
}

.prose > *:last-child {
  margin-bottom: 0;
}

.prose h2 {
  margin-block: 48px 18px;
  padding-left: 14px;
  border-left: 6px solid var(--color-brand);
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 22px;
  line-height: 1.5;
}

.prose h3 {
  margin-block: 36px 14px;
  font-size: 18px;
  line-height: 1.6;
}

.prose h4,
.prose h5,
.prose h6 {
  margin-block: 28px 12px;
  font-size: 16px;
  line-height: 1.6;
}

.prose :is(h2, h3, h4, h5, h6):first-child {
  margin-top: 0;
}

.prose :is(ul, ol) {
  padding-left: 1.4em;
}

.prose li + li {
  margin-top: 8px;
}

.prose li > :is(ul, ol) {
  margin-top: 8px;
}

.prose a {
  text-underline-offset: 3px;
}

.prose a:hover {
  color: var(--color-brand);
}

.prose strong {
  font-weight: 700;
}

.prose em {
  font-style: italic;
}

.prose blockquote {
  padding: 4px 0 4px 18px;
  border-left: 4px solid var(--color-support);
  color: color-mix(in srgb, var(--color-ink) 85%, transparent);
}

.prose blockquote p:last-child {
  margin-bottom: 0;
}

.prose :is(img, video) {
  max-width: 100%;
  height: auto;
}

.prose figure {
  margin-inline: 0;
}

.prose figcaption {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.7;
}

.prose hr,
.prose .wp-block-separator {
  height: 1px;
  margin-block: 40px;
  border: 0;
  background: color-mix(in srgb, var(--color-ink) 25%, transparent);
}

.prose :is(table, .wp-block-table table) {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.prose :is(th, td) {
  padding: 10px 12px;
  border: 1px solid color-mix(in srgb, var(--color-ink) 25%, transparent);
  text-align: left;
  vertical-align: top;
}

.prose th {
  background: color-mix(in srgb, var(--color-brand) 12%, var(--color-surface));
}

.prose .wp-block-table {
  overflow-x: auto;
}

.prose :is(code, kbd) {
  padding: 2px 6px;
  background: color-mix(in srgb, var(--color-ink) 8%, var(--color-surface));
  font-size: 14px;
}

.prose pre {
  padding: 16px;
  overflow-x: auto;
  background: color-mix(in srgb, var(--color-ink) 8%, var(--color-surface));
  font-size: 13px;
  line-height: 1.7;
}

.prose .wp-block-button__link {
  display: inline-block;
  min-height: 44px;
  padding: 12px 22px;
  color: var(--color-ink);
  background: var(--color-accent);
  font-weight: 700;
  text-decoration: none;
}

.prose .wp-block-embed iframe {
  display: block;
  width: 100%;
  max-width: 100%;
}

.prose :is(.alignwide, .alignfull) { max-width: 100%; margin-inline: 0; }
.prose .aligncenter { margin-inline: auto; text-align: center; }
.prose .alignleft { float: left; max-width: min(50%, 320px); margin: 0 20px 16px 0; }
.prose .alignright { float: right; max-width: min(50%, 320px); margin: 0 0 16px 20px; }
.prose::after { display: block; clear: both; content: ""; }
.prose :is(.wp-block-columns, .wp-block-gallery) { gap: 20px; }
.prose .wp-block-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr)); padding: 0; list-style: none; }
.prose .wp-block-gallery figure { margin: 0; }
.prose :is(.wp-block-cover, .wp-block-media-text) { overflow: hidden; border-radius: 18px; }
.prose .wp-block-cover { min-height: 280px; padding: 24px; }
.prose .wp-block-cover :is(p, h2, h3) { color: inherit; }
.prose .wp-block-pullquote { padding-block: 28px; border-block: 3px solid var(--color-support); text-align: center; }
.prose .wp-block-file { display: flex; flex-wrap: wrap; gap: 10px 16px; align-items: center; }
.prose .wp-block-file__button { display: inline-grid; min-height: 44px; padding: 10px 16px; place-items: center; color: var(--color-base); background: var(--color-brand-deep); text-decoration: none; }
.prose .wp-block-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.prose :is(.wp-block-audio audio, .wp-block-video video) { width: 100%; }
.prose :is(.wp-block-embed__wrapper, iframe) { max-width: 100%; }
.prose details { padding: 14px 16px; border: 1px solid color-mix(in srgb, var(--color-ink) 24%, transparent); }
.prose summary { min-height: 44px; padding-block: 9px; font-weight: 700; cursor: pointer; }

@media (max-width: 599px) {
  .prose :is(.alignleft, .alignright) { float: none; max-width: 100%; margin-inline: 0; }
  .prose .wp-block-media-text { display: block; }
}

.news-archive {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid color-mix(in srgb, var(--color-ink) 20%, transparent);
}

.news-archive .news-item {
  border-bottom: 1px solid color-mix(in srgb, var(--color-ink) 20%, transparent);
}

.news-archive .news-item__link {
  display: grid;
  gap: 6px;
  padding-block: 20px;
}

.news-archive h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
}

.pagination {
  margin-top: 32px;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.pagination .page-numbers {
  display: inline-grid;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 12px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--color-ink) 30%, transparent);
  text-decoration: none;
}

.pagination .page-numbers.current {
  color: var(--color-base);
  background: var(--color-ink);
  border-color: var(--color-ink);
  font-weight: 700;
}

.pagination .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.post-nav {
  display: grid;
  gap: 12px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--color-ink) 20%, transparent);
}

.post-nav a {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  font-size: 15px;
}

.post-nav a span {
  color: color-mix(in srgb, var(--color-ink) 70%, transparent);
  font-size: 13px;
}

.back-link {
  margin-top: 32px;
  font-size: 14px;
}

.team-list {
  display: grid;
  gap: 16px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.team-card a {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--color-ink) 25%, transparent);
  border-left: 6px solid var(--color-support);
  color: inherit;
  background: var(--color-surface);
  text-decoration: none;
}

.team-card a:hover h2 {
  text-decoration: underline;
}

.team-card__number {
  color: var(--color-support-text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.team-card h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

.team-card__catchcopy {
  margin: 0;
  font-size: 15px;
}

.team-card__theme {
  margin: 0;
  font-size: 14px;
}

.team-card__theme span {
  margin-right: 10px;
  padding: 2px 8px;
  background: color-mix(in srgb, var(--color-support) 25%, var(--color-surface));
  font-size: 13px;
}

.team-state {
  margin-top: 40px;
  padding: 24px 20px;
  border: 1px solid color-mix(in srgb, var(--color-ink) 25%, transparent);
  border-left: 6px solid var(--color-accent-line);
  background: var(--color-surface);
}

.team-state h1 {
  margin: 12px 0 0;
  font-size: 22px;
  line-height: 1.5;
}

.team-state__label {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.team-state__text {
  margin: 12px 0 0;
}

.team-detail-facts {
  display: grid;
  gap: 6px;
  margin: 28px 0 0;
  padding: 18px 20px;
  border-left: 5px solid var(--color-brand);
  background: var(--color-surface);
}

.team-detail-facts dt {
  font-size: 13px;
  font-weight: 700;
}

.team-detail-facts dd {
  margin: 0;
}

.team-detail-media {
  margin: 28px 0 0;
}

.team-detail-media img {
  width: 100%;
  height: auto;
}

.team-detail-reel {
  margin-top: 32px;
}

.contact-route {
  margin-top: 40px;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--color-ink) 25%, transparent);
  background: var(--color-surface);
}

.contact-route__label {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.contact-route__address {
  margin: 8px 0 0;
  font-size: 17px;
  overflow-wrap: anywhere;
}

.not-found {
  padding-block: 32px 0;
}

.not-found h1 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.5;
}

.not-found__links {
  display: grid;
  gap: 4px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.not-found__links a {
  display: inline-block;
  padding-block: 8px;
}

.page-cta {
  display: grid;
  gap: 8px;
  margin-top: 56px;
  padding: 24px 20px;
  border-top: 8px solid var(--color-brand);
  color: var(--color-base);
  background: var(--color-ink);
}

.page-cta p {
  margin: 0;
}

.page-cta__label {
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.page-cta__description {
  font-size: 14px;
}

.page-cta .primary-cta {
  margin-top: 12px;
  justify-self: start;
}

.page-cta[data-recruitment-code="paused"],
.page-cta[data-recruitment-code="cancelled"] {
  border-top-style: double;
  border-top-width: 10px;
}

@media (min-width: 768px) {
  .page-main {
    padding-block: 32px 96px;
  }

  .page-header h1 {
    font-size: 30px;
  }

  .post-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .post-nav a:last-child {
    text-align: right;
  }

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

  .not-found__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 開発用の仮内容注記は、明るい背景の下層ページでも読める色を既定にする。 */
.provisional-note {
  color: var(--color-brand-deep);
}

.top-hero .provisional-note {
  color: var(--color-base);
}

.prose > .provisional-note,
.team-detail-reel.provisional-note,
.contact-route .provisional-note {
  padding: 12px 14px;
  border-left: 4px solid var(--color-accent-line);
  background: var(--color-surface);
  line-height: 1.7;
}

/* STEP 13: プラグイン要素（NEWS絞り込み・FAQ検索・お問い合わせ） */

.secondary-cta {
  display: inline-grid;
  min-height: 44px;
  padding: 10px 18px;
  place-items: center;
  border: 2px solid var(--color-ink);
  color: var(--color-ink);
  background: var(--color-surface);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
}

.news-filter {
  margin-top: 32px;
}

.news-filter ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-filter :is(a, button) {
  display: inline-flex;
  min-height: 44px;
  padding: 8px 14px;
  align-items: center;
  gap: 8px;
  border: 1px solid color-mix(in srgb, var(--color-ink) 30%, transparent);
  color: var(--color-ink);
  background: var(--color-surface);
  font-family: inherit;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}

.news-filter :is(a[aria-current="page"], button[aria-pressed="true"]) {
  border-color: var(--color-ink);
  color: var(--color-base);
  background: var(--color-ink);
  font-weight: 700;
}

.news-filter__count {
  margin: 12px 0 0;
  font-size: 13px;
}

.faq-tools {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  padding: 20px;
  border-left: 5px solid var(--color-brand);
  background: var(--color-surface);
}

.faq-tools label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
}

.faq-tools__search-field {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.faq-tools__search-field input {
  flex: 1 1 12rem;
  min-height: 44px;
  padding: 8px 12px;
  border: 2px solid color-mix(in srgb, var(--color-ink) 35%, transparent);
  color: var(--color-ink);
  background: var(--color-base);
  font-family: inherit;
  font-size: 16px;
}

.faq-tools__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.faq-tools__filters button {
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid color-mix(in srgb, var(--color-ink) 30%, transparent);
  color: var(--color-ink);
  background: var(--color-base);
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
}

.faq-tools__filters button[aria-pressed="true"] {
  border-color: var(--color-ink);
  color: var(--color-base);
  background: var(--color-ink);
  font-weight: 700;
}

.faq-tools__count {
  margin: 0;
  font-size: 13px;
}

.faq-item__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.faq-item__categories span {
  padding: 2px 10px;
  background: color-mix(in srgb, var(--color-support) 25%, var(--color-surface));
  font-size: 13px;
}

.inquiry {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 2px solid var(--color-ink);
}

.inquiry h2 {
  margin: 0;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 22px;
  line-height: 1.5;
}

.inquiry-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: inquiry-step;
}

.inquiry-steps li {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid color-mix(in srgb, var(--color-ink) 30%, transparent);
  font-size: 13px;
}

.inquiry-steps li::before {
  counter-increment: inquiry-step;
  content: counter(inquiry-step);
  font-weight: 700;
}

.inquiry-steps li[aria-current="step"] {
  border-color: var(--color-ink);
  color: var(--color-base);
  background: var(--color-ink);
  font-weight: 700;
}

.inquiry-notice {
  margin: 20px 0 0;
  padding: 12px 14px;
  border-left: 5px solid var(--color-accent-line);
  background: var(--color-surface);
  font-size: 14px;
}

.inquiry-form {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.inquiry-form__lead {
  margin: 0;
}

.inquiry-errors {
  padding: 16px 18px;
  border-left: 5px solid var(--color-accent-line);
  background: var(--color-surface);
}

.inquiry-errors p {
  margin: 0 0 8px;
}

.inquiry-errors ul {
  margin: 0;
  padding-left: 1.2em;
  font-size: 14px;
}

.inquiry-field {
  display: grid;
  gap: 8px;
}

.inquiry-field > label {
  font-size: 15px;
  font-weight: 700;
}

.inquiry-required {
  margin-left: 10px;
  padding: 2px 8px;
  color: var(--color-ink);
  background: var(--color-accent);
  font-size: 13px;
}

.inquiry-field :is(input[type="text"], input[type="email"], select, textarea) {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 2px solid color-mix(in srgb, var(--color-ink) 35%, transparent);
  color: var(--color-ink);
  background: var(--color-surface);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.7;
}

.inquiry-field textarea {
  min-height: 180px;
  resize: vertical;
}

.inquiry-field :is(input, select, textarea):focus-visible {
  outline: 3px solid var(--color-brand-deep);
  outline-offset: 2px;
}

.inquiry-field [aria-invalid="true"] {
  border-color: var(--color-accent-line);
}

.inquiry-field__error {
  margin: 0;
  color: var(--color-accent-line);
  font-size: 14px;
  font-weight: 700;
}

.inquiry-field--consent label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  font-weight: 400;
}

.inquiry-field--consent input {
  width: 24px;
  height: 24px;
  margin-top: 4px;
  flex: none;
}

.inquiry-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.inquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.inquiry-confirm {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid color-mix(in srgb, var(--color-ink) 20%, transparent);
}

.inquiry-confirm > div {
  display: grid;
  gap: 4px;
  padding-block: 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--color-ink) 20%, transparent);
}

.inquiry-confirm dt {
  font-size: 13px;
  font-weight: 700;
}

.inquiry-confirm dd {
  margin: 0;
  white-space: pre-wrap;
}

.inquiry-receipt {
  margin-top: 28px;
  padding: 24px 20px;
  border-left: 6px solid var(--color-support);
  background: var(--color-surface);
}

.inquiry-receipt p {
  margin: 0 0 12px;
}

.inquiry-receipt__label {
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.inquiry-copy summary {
  padding: 10px 0;
  font-size: 14px;
  cursor: pointer;
}

.inquiry-copy__body {
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.inquiry-copy__body textarea {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid color-mix(in srgb, var(--color-ink) 35%, transparent);
  background: var(--color-base);
  font-family: inherit;
  font-size: 14px;
  line-height: 1.7;
}

.inquiry-copy__button {
  justify-self: start;
}

.inquiry-copy__status {
  margin: 0;
  font-size: 13px;
}

@media (min-width: 768px) {
  .inquiry-confirm > div {
    grid-template-columns: 12rem minmax(0, 1fr);
    gap: 16px;
    align-items: baseline;
  }
}

/* hidden属性は display 指定より常に優先し、未表示の段や絞り込み結果を残さない。 */
[hidden] {
  display: none !important;
}

/* お問い合わせの送信手順と注意 */
.inquiry-notes {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 6px solid var(--color-accent-line);
  background: var(--color-surface);
}

.inquiry-notes__title {
  margin: 0 0 10px;
  font-size: 15px;
}

.inquiry-notes ul {
  margin: 0;
  padding-left: 1.2em;
  font-size: 14px;
  line-height: 1.8;
}

.inquiry-notes li + li {
  margin-top: 6px;
}

.inquiry-notes__fallback {
  margin: 20px 0 0;
  padding: 12px 14px;
  border-left: 5px solid var(--color-ink);
  background: var(--color-surface);
  font-size: 14px;
}

/* 一覧カードと記事のアイキャッチ画像 */
.team-card__media {
  margin: -20px -20px 4px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card a {
  overflow: hidden;
}

.news-featured {
  margin: 32px 0 0;
}

.news-featured img {
  width: 100%;
  height: auto;
}

.news-featured figcaption,
.team-detail-media figcaption {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.7;
}

/* 企画名のタイトル画像。画像側に濃色の下地があるため、余白で独立した板として見せる。 */
.site-title {
  max-width: none;
}

.site-title a {
  display: inline-block;
  line-height: 0;
}

.site-title img {
  display: block;
  width: auto;
  height: 52px;
  max-width: 100%;
}

.site-footer__wordmark {
  margin: 0 0 4px;
  line-height: 0;
}

.site-footer__wordmark img {
  display: block;
  width: auto;
  height: 56px;
  max-width: 100%;
}

@media (min-width: 768px) {
  .site-title img {
    height: 40px;
  }

  .site-footer__wordmark img {
    height: 64px;
  }
}

@media (min-width: 1100px) {
  .site-title img {
    height: 56px;
  }
}

/* 写真クレジットの集約ログ（フッター） */
.photo-credits {
  margin-block-start: 24px;
  padding-block-start: 16px;
  border-block-start: 1px solid color-mix(in srgb, var(--color-base) 30%, transparent);
}

.photo-credits summary {
  color: var(--color-base);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.photo-credits summary:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.photo-credits__list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.photo-credits__list li {
  display: grid;
  gap: 2px;
  padding-block: 8px;
  border-block-start: 1px solid color-mix(in srgb, var(--color-base) 18%, transparent);
}

.photo-credits__list li:first-child {
  border-block-start: 0;
}

.photo-credits__label {
  display: block;
  color: color-mix(in srgb, var(--color-base) 80%, transparent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.photo-credits__text {
  display: block;
  color: var(--color-base);
  font-size: 13px;
  line-height: 1.7;
}

/* design-proposals（採用ベース案C）反映: HERO全画面・半円化 */
.top-hero {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  min-height: 100svh;
  padding-block: clamp(32px, 5svh, 64px) 56px;
  overflow: hidden;
  color: var(--color-ink);
  background: var(--color-base);
  border-top: 0;
}

.top-hero::before {
  position: absolute;
  z-index: 0;
  right: -110px;
  bottom: -80px;
  width: 256px;
  height: 256px;
  content: "";
  background: var(--color-accent);
  border-radius: 50%;
}

.top-hero__media {
  position: relative;
  z-index: 1;
  flex: none;
  inset: auto;
  height: clamp(300px, 45svh, 480px);
  margin: 0 20px;
  overflow: hidden;
  background: var(--color-ink);
  border-radius: 50vw 50vw 0 0;
}

.top-hero__media::after {
  background: linear-gradient(to bottom, transparent 62%, rgba(22, 49, 59, 0.4) 100%);
}

.top-hero__content {
  position: relative;
  z-index: 1;
  padding-block: 40px 0;
}

.top-hero__label,
.top-hero .section-label,
.top-hero .provisional-note {
  color: var(--color-ink);
}

@media (min-width: 768px) {
  .top-hero__content {
    padding-block: 48px 0;
  }

  .top-hero__media {
    height: clamp(320px, 48svh, 560px);
    margin-inline: clamp(24px, 6vw, 64px);
  }
}

@media (min-width: 1100px) {
  .top-hero {
    min-height: 100vh;
  }
}

/* design-proposals反映: セクション見出しのゴーストナンバー */
.section-heading__number {
  margin: 0 0 -8px;
  color: color-mix(in srgb, var(--color-brand) 20%, transparent);
  font-family: Georgia, "Hiragino Mincho ProN", serif;
  font-size: clamp(48px, 12vw, 72px);
  font-weight: 700;
  line-height: 1;
}

.section-heading {
  position: relative;
}

.section-heading .section-heading__number {
  order: -1;
  grid-column: 1 / -1;
  width: 100%;
}

@media (min-width: 768px) {
  .section-heading__number {
    font-size: 88px;
  }
}

/* design-proposals反映: 体験物語カードの交互半円配置 */
.experience-scene__media,
.experience-scene__compare {
  overflow: hidden;
  border-radius: 50vw 50vw 12px 12px;
}

.experience-scene:nth-of-type(even) .experience-scene__media,
.experience-scene:nth-of-type(even) .experience-scene__compare {
  border-radius: 12px 12px 50vw 50vw;
}

/* design-proposals反映: Scene 05のドラッグ比較スライダー */
.experience-scene__compare {
  background: var(--color-ink);
}

.experience-scene__compare-stage {
  position: relative;
  background: color-mix(in srgb, var(--color-support) 22%, var(--color-base));
}

.experience-scene__compare-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.experience-scene__compare-stage img.experience-scene__compare-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.experience-scene__compare-after {
  min-width: 0;
}

.experience-scene__compare-label,
.experience-scene__compare-divider,
.experience-scene__compare-range {
  display: none;
}

.has-compare-slider .experience-scene__compare-stage {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.has-compare-slider .experience-scene__compare-images {
  position: absolute;
  inset: 0;
  display: block;
}

.has-compare-slider .experience-scene__compare-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.has-compare-slider .experience-scene__compare-after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 var(--compare-position));
}

.has-compare-slider .experience-scene__compare-label {
  position: absolute;
  z-index: 2;
  top: 12px;
  display: block;
  margin: 0;
  padding: 4px 8px;
  color: var(--color-base);
  background: rgba(22, 49, 59, 0.78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.has-compare-slider .experience-scene__compare-label--left {
  left: 12px;
}

.has-compare-slider .experience-scene__compare-label--right {
  right: 12px;
}

.has-compare-slider .experience-scene__compare-divider {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: var(--compare-position);
  display: block;
  width: 3px;
  background: var(--color-base);
  box-shadow: 0 0 0 1px rgba(22, 49, 59, 0.35);
  transform: translateX(-50%);
  pointer-events: none;
}

.has-compare-slider .experience-scene__compare-divider i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--color-ink);
  background: var(--color-accent);
  border: 2px solid var(--color-base);
  border-radius: 50%;
  font-style: normal;
  font-weight: 700;
  place-items: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 16px rgba(22, 49, 59, 0.3);
}

.has-compare-slider .experience-scene__compare-range {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.has-compare-slider .experience-scene__compare-stage:focus-within {
  outline: 3px solid var(--color-brand-deep);
  outline-offset: -3px;
}

.has-compare-slider .experience-scene__compare-stage:focus-within .experience-scene__compare-divider i {
  box-shadow: 0 0 0 4px var(--color-brand-deep);
}

/* design-proposals反映: モバイルハンバーガーメニュー */
.menu-toggle {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 9px 12px;
  color: var(--color-ink);
  background: var(--color-base);
  border: 1px solid var(--color-ink);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.menu-toggle[hidden] {
  display: none;
}

.menu-toggle__icon {
  display: grid;
  gap: 3px;
  width: 18px;
}

.menu-toggle__icon i {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.site-nav[hidden] {
  display: none;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .site-nav[hidden] {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-toggle__icon i {
    transition: none;
  }
}

/* design-proposals反映: PC右レールの意匠をproposal-cに近づける */
@media (min-width: 1100px) {
  .desktop-menu__cta a {
    border-radius: 999px;
  }
}

/* フッター3分割（主催・協力 / サイトマップ / SNS・関連リンク） */
.site-footer__columns {
  display: grid;
  gap: 32px;
  padding-block: 48px 24px;
}

.site-footer__column-heading {
  margin: 0 0 12px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.site-footer__column--sitemap .site-footer__nav {
  padding-bottom: 0;
  border-bottom: 0;
}

.site-footer__column--sitemap .site-footer__nav-list {
  display: grid;
  gap: 8px;
}

.site-footer__related-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__related-list a {
  color: var(--color-base);
  font-size: 14px;
}

.site-footer__divider {
  margin: 16px 0;
  border: 0;
  border-top: 1px solid color-mix(in srgb, var(--color-base) 30%, transparent);
}

.site-footer__copyright {
  margin: 24px 0 0;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--color-base) 20%, transparent);
  color: color-mix(in srgb, var(--color-base) 75%, transparent);
  font-size: 13px;
}

@media (min-width: 768px) {
  .site-footer__columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
  }
}

/* クリック/タップ時のリップル演出とホバー時の変化を、操作可能な要素に共通で適用する */
a,
button {
  transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease, opacity 150ms ease;
}

button:not(:disabled),
.primary-cta,
.secondary-cta,
.section-link,
.menu-toggle,
.faq-question:not(:disabled) {
  cursor: pointer;
}

.section-link:hover {
  color: var(--color-ink);
  text-decoration-thickness: 2px;
}

.secondary-cta:hover {
  color: var(--color-base);
  background: var(--color-ink);
}

.menu-toggle:hover {
  border-color: var(--color-brand-deep);
  background: color-mix(in srgb, var(--color-brand) 8%, var(--color-base));
}

.site-nav__list a:hover,
.site-footer__nav-list a:hover,
.site-footer__related-list a:hover,
.desktop-menu__cta a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.desktop-photo-slider__controls button:hover:not(:disabled),
.inquiry-copy__button:hover,
[data-inquiry-confirm]:hover,
[data-inquiry-edit]:hover {
  filter: brightness(0.96);
}

.has-ripple {
  position: relative;
  overflow: hidden;
}

.tamasanpo-ripple {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.28;
  transform: scale(0);
  pointer-events: none;
  animation: tamasanpo-ripple-expand 550ms ease-out;
}

@keyframes tamasanpo-ripple-expand {
  to {
    transform: scale(1);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  a,
  button {
    transition: none;
  }

  .tamasanpo-ripple {
    display: none;
  }
}
