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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--armr-font, "Noto Sans JP", -apple-system, sans-serif);
  line-height: 1.75;
  color: #1A1A1A;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, textarea, select {
  font: inherit;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

::selection {
  background: #FFC107;
  color: #1A1A1A;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 16px;
  border-radius: 0;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  line-height: 1.4;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn--lg {
  padding: 18px 36px;
  font-size: 16px;
}
.btn--block {
  width: 100%;
}
.btn--primary {
  background: #0A0A0A;
  color: #fff;
}
.btn--primary:hover {
  background: #C8102E;
}
.btn--accent {
  background: #C8102E;
  color: #fff;
}
.btn--accent:hover {
  background: #0A0A0A;
}
.btn--ghost {
  background: transparent;
  color: #0A0A0A;
  border-color: #0A0A0A;
}
.btn--ghost:hover {
  background: #0A0A0A;
  color: #fff;
}
.btn--outline {
  background: transparent;
  color: #0A0A0A;
  border-color: #0A0A0A;
}
.btn--outline:hover {
  background: #0A0A0A;
  color: #fff;
}
.btn span {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:hover span {
  transform: translateX(4px);
}

.sec-heading {
  text-align: left;
  margin-bottom: 64px;
  max-width: 880px;
}
.sec-heading--light .sec-heading__h2 {
  color: #fff;
}
.sec-heading--light .sec-heading__lead {
  color: rgba(255, 255, 255, 0.78);
}
.sec-heading__label {
  display: inline-block;
  font-family: "Montserrat", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #6B6B6B;
  padding: 0;
  background: transparent;
  margin-bottom: 16px;
  position: relative;
  padding-left: 36px;
}
.sec-heading__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 1px;
  background: #0A0A0A;
}
.sec-heading__label--accent {
  color: #C8102E;
}
.sec-heading__label--accent::before {
  background: #C8102E;
}
.sec-heading__h2 {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: #0A0A0A;
  margin: 0 0 16px;
}
.sec-heading__h2 em {
  font-style: normal;
  color: #0A0A0A;
  text-decoration: underline;
  text-decoration-color: #C8102E;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
@media (max-width: 767px) {
  .sec-heading__h2 {
    font-size: 28px;
  }
}
.sec-heading__h2--white {
  color: #fff;
}
.sec-heading__h2--white em {
  color: #fff;
  text-decoration-color: #C8102E;
}
.sec-heading__lead {
  font-size: 16px;
  color: #6B6B6B;
  max-width: 720px;
  margin: 0;
  line-height: 1.95;
}
.sec-heading__lead--white {
  color: rgba(255, 255, 255, 0.78);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #E5E5E5;
  transition: border-color 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 40px;
}
@media (max-width: 767px) {
  .site-header__inner {
    height: 64px;
    padding: 0 16px;
    gap: 16px;
  }
}
.site-header__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.site-header__logo-en {
  font-family: "Montserrat", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: #0A0A0A;
  letter-spacing: 0.04em;
}
.site-header__logo-jp {
  font-size: 11px;
  font-weight: 500;
  color: #6B6B6B;
  margin-top: 4px;
  letter-spacing: 0.12em;
}
@media (max-width: 767px) {
  .site-header__logo-en {
    font-size: 14px;
  }
  .site-header__logo-jp {
    font-size: 10px;
  }
}
.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: #0A0A0A;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  transition: background 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}
.site-header__cta:hover {
  background: #C8102E;
}
@media (max-width: 767px) {
  .site-header__cta {
    padding: 6px 14px;
    font-size: 12px;
  }
}
.site-header__cta-arrow {
  display: inline-block;
}

.site-nav {
  flex: 1;
}
@media (max-width: 767px) {
  .site-nav {
    position: static;
  }
}
.site-nav__toggle {
  display: none;
}
@media (max-width: 767px) {
  .site-nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 6px;
    margin-left: auto;
    justify-content: center;
    align-items: center;
  }
  .site-nav__toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background: #0A0A0A;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .site-nav__toggle[aria-expanded=true] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .site-nav__toggle[aria-expanded=true] span:nth-child(2) {
    opacity: 0;
  }
  .site-nav__toggle[aria-expanded=true] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}
.site-nav__list {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .site-nav__list {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    transform: translateY(-120%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid #E5E5E5;
    opacity: 0;
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  .site-nav__list[data-open=true] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}
.site-nav__list li a {
  font-size: 13px;
  font-weight: 700;
  color: #0A0A0A;
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-nav__list li a:hover {
  opacity: 0.6;
}
@media (max-width: 767px) {
  .site-nav__list li a {
    padding: 16px 16px;
    display: block;
    border-bottom: 1px solid #E5E5E5;
  }
}

.site-footer {
  background: #0A0A0A;
  color: #F4F4F4;
  padding-top: 96px;
}
@media (max-width: 767px) {
  .site-footer {
    padding-top: 64px;
  }
}
.site-footer__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 767px) {
  .site-footer__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 64px;
}
@media (max-width: 767px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 24px;
  }
}
.site-footer__company {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.site-footer__tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.site-footer__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}
.site-footer__tel {
  font-family: "Montserrat", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.3;
}
.site-footer__tel a {
  color: #fff;
}
.site-footer__tel span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  margin-top: 4px;
}
.site-footer__office p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}
.site-footer__office p strong {
  display: block;
  color: #C8102E;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.site-footer__copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}
.site-footer__copy p {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 767px) {
  .site-footer__copy p {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.site-footer__copy p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.sec-hero {
  background: #fff;
  padding-top: 72px;
}
@media (max-width: 767px) {
  .sec-hero {
    padding-top: 64px;
  }
}
.sec-hero__photo {
  position: relative;
  width: 100%;
  height: 72vh;
  min-height: 480px;
  max-height: 760px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .sec-hero__photo {
    height: 56vh;
    min-height: 360px;
  }
}
.sec-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 30%;
  display: block;
}
.sec-hero__body {
  max-width: 1320px;
  margin: 0 auto;
  padding: 64px 40px 96px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}
@media (max-width: 767px) {
  .sec-hero__body {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 16px 64px;
  }
}
.sec-hero__head {
  min-width: 0;
}
.sec-hero__kicker {
  font-family: "Montserrat", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #6B6B6B;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .sec-hero__kicker {
    font-size: 11px;
    margin-bottom: 16px;
  }
}
.sec-hero__kicker-dot {
  display: none;
}
.sec-hero__title-jp {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #0A0A0A;
  margin: 0 0 16px;
}
.sec-hero__title-jp em {
  font-style: normal;
  color: #0A0A0A;
  text-decoration: underline;
  text-decoration-color: #C8102E;
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}
@media (max-width: 767px) {
  .sec-hero__title-jp {
    font-size: 36px;
    line-height: 1.3;
  }
}
.sec-hero__title-en {
  font-family: "Montserrat", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #9B9B9B;
  margin: 0;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .sec-hero__title-en {
    font-size: 14px;
  }
}
.sec-hero__foot {
  padding-bottom: 8px;
}
@media (max-width: 767px) {
  .sec-hero__foot {
    padding-bottom: 0;
  }
}
.sec-hero__lead {
  font-size: 18px;
  line-height: 2;
  color: #6B6B6B;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .sec-hero__lead {
    font-size: 16px;
  }
}
.sec-hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.sec-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: #0A0A0A;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 0;
  transition: background 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.sec-hero__cta:hover {
  background: #C8102E;
}
.sec-hero__cta-arrow {
  display: inline-block;
  font-family: "Montserrat", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.sec-hero__link {
  font-size: 16px;
  font-weight: 700;
  color: #0A0A0A;
  border-bottom: 1px solid #0A0A0A;
  padding-bottom: 4px;
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.sec-hero__link:hover {
  opacity: 0.6;
}

.job-body, .sec-contact, .sec-faq, .sec-requirements, .sec-voices, .sec-environment, .sec-day-timeline, .sec-culture, .sec-young-leaders, .sec-jobs, .sec-numbers, .sec-intro {
  padding: 96px 0;
}
@media (max-width: 767px) {
  .job-body, .sec-contact, .sec-faq, .sec-requirements, .sec-voices, .sec-environment, .sec-day-timeline, .sec-culture, .sec-young-leaders, .sec-jobs, .sec-numbers, .sec-intro {
    padding: 64px 0;
  }
}

.job-body__inner, .job-hero__inner, .sec-contact__inner, .sec-faq__inner, .sec-requirements__inner, .sec-voices__inner, .sec-environment__inner, .sec-day-timeline__inner, .sec-culture__inner, .sec-young-leaders__inner, .sec-jobs__inner, .sec-numbers__inner, .sec-intro__office, .sec-intro__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .job-body__inner, .job-hero__inner, .sec-contact__inner, .sec-faq__inner, .sec-requirements__inner, .sec-voices__inner, .sec-environment__inner, .sec-day-timeline__inner, .sec-culture__inner, .sec-young-leaders__inner, .sec-jobs__inner, .sec-numbers__inner, .sec-intro__office, .sec-intro__inner {
    padding: 0 16px;
  }
}

.sec-intro {
  background: #fff;
}
.sec-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}
@media (max-width: 767px) {
  .sec-intro__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
}
.sec-intro__photo {
  overflow: hidden;
  aspect-ratio: 3/4;
}
.sec-intro__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sec-intro__photo--sub {
  display: none;
}
.sec-intro__body {
  font-size: 16px;
  line-height: 2;
  color: #6B6B6B;
}
.sec-intro__body p {
  margin-bottom: 1.5em;
}
.sec-intro__body strong {
  color: #0A0A0A;
  font-weight: 700;
}
.sec-intro__office {
  position: relative;
  padding-top: 40px;
}
@media (max-width: 767px) {
  .sec-intro__office {
    padding-top: 16px;
  }
}
.sec-intro__office-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 767px) {
  .sec-intro__office-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
}
.sec-intro__office-grid li {
  overflow: hidden;
  aspect-ratio: 4/5;
}
.sec-intro__office-grid li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.sec-intro__office-grid li:hover img {
  transform: scale(1.04);
}
.sec-intro__office-caption {
  position: absolute;
  right: 40px;
  bottom: -8px;
  transform: translateY(100%);
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0A0A0A;
  letter-spacing: 0.05em;
  background: #fff;
  padding: 8px 14px;
}
@media (max-width: 767px) {
  .sec-intro__office-caption {
    font-size: 16px;
    right: 16px;
    padding: 4px 8px;
  }
}

.sec-intro__office-item--bear img {
  object-position: 70% 78% !important;
}

.sec-intro__office-item--whiteboard img {
  object-position: 28% center !important;
}

.sec-numbers {
  background: #fff;
}
.sec-numbers__row {
  display: grid;
  gap: 0;
  border: 1px solid #E5E5E5;
  margin-top: -1px;
}
.sec-numbers__row--hero {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .sec-numbers__row--hero {
    grid-template-columns: 1fr;
  }
}
.sec-numbers__row--mid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .sec-numbers__row--mid {
    grid-template-columns: 1fr;
  }
}
.sec-numbers__row--small {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 767px) {
  .sec-numbers__row--small {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sec-numbers__footer {
  margin-top: 40px;
  padding: 16px 24px;
  background: #F5F5F5;
  font-size: 13px;
  line-height: 1.85;
  color: #6B6B6B;
  border-left: 2px solid #C8102E;
}
.sec-numbers__footer-mark {
  color: #C8102E;
  font-weight: 700;
  margin-right: 4px;
}
.sec-numbers__footer strong {
  color: #0A0A0A;
  font-weight: 700;
}

.num-card {
  background: #fff;
  border-right: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  margin: 0 -1px -1px 0;
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
  transition: background 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
@media (max-width: 767px) {
  .num-card {
    padding: 24px;
    min-height: 140px;
  }
}
.num-card:hover {
  background: #0A0A0A;
}
.num-card:hover .num-card__num,
.num-card:hover .num-card__unit,
.num-card:hover .num-card__label,
.num-card:hover .num-card__en {
  color: #fff;
}
.num-card:hover .num-card__en::before {
  background: #C8102E;
}
.num-card__en {
  font-family: "Montserrat", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #9B9B9B;
  margin: 0 0 16px;
  padding-left: 28px;
  position: relative;
  text-transform: uppercase;
  transition: color 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.num-card__en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 1px;
  background: #0A0A0A;
  transition: background 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.num-card__value {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0 0 16px;
}
.num-card__num {
  font-family: "Montserrat", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #0A0A0A;
  font-variant-numeric: tabular-nums;
  transition: color 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.num-card__unit {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #6B6B6B;
  transition: color 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.num-card__label {
  font-size: 12px;
  line-height: 1.7;
  color: #6B6B6B;
  margin: 0;
  transition: color 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.num-card--hero {
  min-height: 280px;
  padding: 64px 40px;
}
@media (max-width: 767px) {
  .num-card--hero {
    min-height: 220px;
  }
}
.num-card--hero .num-card__num {
  font-size: 120px;
}
@media (max-width: 767px) {
  .num-card--hero .num-card__num {
    font-size: 80px;
  }
}
.num-card--hero .num-card__unit {
  font-size: 18px;
}
.num-card--hero .num-card__label {
  font-size: 14px;
}
.num-card--mid {
  min-height: 220px;
}
.num-card--mid .num-card__num {
  font-size: 72px;
}
@media (max-width: 767px) {
  .num-card--mid .num-card__num {
    font-size: 52px;
  }
}
.num-card--small {
  min-height: 160px;
  padding: 24px;
}
.num-card--small .num-card__num {
  font-size: 48px;
}
@media (max-width: 767px) {
  .num-card--small .num-card__num {
    font-size: 36px;
  }
}
.num-card--small .num-card__unit {
  font-size: 13px;
}

.sec-jobs {
  background: #fff;
}
.sec-jobs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 767px) {
  .sec-jobs__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.job-card {
  background: #fff;
  border: 1px solid #E5E5E5;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.job-card:hover {
  border-color: #0A0A0A;
}
.job-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.job-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.job-card__type {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #0A0A0A;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  letter-spacing: 0.1em;
}
.job-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.job-card__title {
  font-size: 22px;
  font-weight: 900;
  color: #0A0A0A;
  margin-bottom: 8px;
}
.job-card__tagline {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #0A0A0A;
  margin-bottom: 16px;
}
.job-card__summary {
  font-size: 13px;
  line-height: 1.85;
  color: #6B6B6B;
  margin-bottom: 16px;
}
.job-card__meta {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 4px 12px;
  font-size: 12px;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid #E5E5E5;
}
.job-card__meta dt {
  color: #9B9B9B;
  font-weight: 700;
}
.job-card__meta dd {
  color: #0A0A0A;
}
.job-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #0A0A0A;
  font-size: 14px;
  align-self: flex-start;
  border-bottom: 1px solid #0A0A0A;
  padding-bottom: 2px;
}
.job-card__link span {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.job-card__link:hover span {
  transform: translateX(4px);
}

.sec-young-leaders {
  background: #0A0A0A;
  color: #fff;
}
.sec-young-leaders__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 767px) {
  .sec-young-leaders__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.sec-young-leaders__body {
  font-size: 16px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 24px;
}
.sec-young-leaders__body p {
  margin-bottom: 1.3em;
}
.sec-young-leaders__body strong {
  color: #fff;
  font-weight: 700;
}
.sec-young-leaders__quote {
  margin-top: 40px;
  padding: 16px 24px;
  border-left: 2px solid #C8102E;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  color: #fff;
}
.sec-young-leaders__photos {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 2fr 1fr;
  gap: 16px;
  height: 540px;
}
@media (max-width: 767px) {
  .sec-young-leaders__photos {
    height: 380px;
  }
}
.sec-young-leaders__photo {
  overflow: hidden;
}
.sec-young-leaders__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sec-young-leaders__photo--main {
  grid-column: 1/3;
  grid-row: 1/2;
}
.sec-young-leaders__photo--sub {
  grid-column: 1/3;
  grid-row: 2/3;
}

.sec-culture {
  background: #fff;
}
.sec-culture__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}
@media (max-width: 767px) {
  .sec-culture__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
}
.sec-culture__photo {
  overflow: hidden;
  aspect-ratio: 4/5;
}
.sec-culture__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sec-culture__body {
  font-size: 16px;
  line-height: 2;
  color: #6B6B6B;
  margin-top: 24px;
}
.sec-culture__body p {
  margin-bottom: 1.4em;
}
.sec-culture__body strong {
  color: #0A0A0A;
  font-weight: 700;
}

.sec-culture__people {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
@media (max-width: 767px) {
  .sec-culture__people {
    padding: 0 16px;
  }
}

.sec-culture__people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 767px) {
  .sec-culture__people-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
}
.sec-culture__people-grid li {
  overflow: hidden;
  aspect-ratio: 4/5;
}
.sec-culture__people-grid li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.sec-culture__people-grid li:hover img {
  transform: scale(1.04);
}

.sec-culture__people-item--talk img {
  object-position: 30% center !important;
}

.sec-culture__people-item--meeting img {
  object-position: 50% 40% !important;
}

.sec-culture__people-item--gather img {
  object-position: 50% 35% !important;
}

.sec-culture__people-item--work img {
  object-position: 50% 55% !important;
}

.sec-culture__people-caption {
  position: absolute;
  right: 40px;
  bottom: -8px;
  transform: translateY(100%);
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0A0A0A;
  letter-spacing: 0.05em;
  background: #fff;
  padding: 8px 14px;
}
@media (max-width: 767px) {
  .sec-culture__people-caption {
    font-size: 16px;
    right: 16px;
    padding: 4px 8px;
  }
}

.sec-day-timeline {
  background: #F5F5F5;
}
.sec-day-timeline__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .sec-day-timeline__head {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-bottom: 40px;
  }
}
.sec-day-timeline__head .sec-heading {
  margin-bottom: 0;
  flex: 1;
  min-width: 280px;
}
.sec-day-timeline__toggle {
  display: inline-flex;
  background: #fff;
  border: 1px solid #E5E5E5;
  padding: 4px;
  gap: 0;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .sec-day-timeline__toggle {
    width: 100%;
  }
}
.sec-day-timeline__panels {
  position: relative;
}

.day-tab {
  appearance: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 12px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  color: #6B6B6B;
}
@media (max-width: 767px) {
  .day-tab {
    flex: 1;
    padding: 10px 16px;
  }
}
.day-tab__en {
  font-family: "Montserrat", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
}
.day-tab__jp {
  font-size: 13px;
  font-weight: 700;
}
.day-tab.is-active {
  background: #0A0A0A;
  color: #fff;
}
.day-tab:hover:not(.is-active) {
  background: #F5F5F5;
  color: #0A0A0A;
}

.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: none;
}
.timeline.is-active {
  display: block;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #E5E5E5;
}
@media (max-width: 767px) {
  .timeline::before {
    left: 50px;
  }
}
.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .timeline__item {
    grid-template-columns: 50px 1fr;
    gap: 16px;
  }
}
.timeline__item:last-child {
  margin-bottom: 0;
}
.timeline__marker {
  position: relative;
  padding-top: 6px;
  z-index: 2;
}
.timeline__time {
  font-family: "Montserrat", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 900;
  font-size: 13px;
  background: #0A0A0A;
  color: #fff;
  padding: 6px 0;
  text-align: center;
  width: 60px;
}
@media (max-width: 767px) {
  .timeline__time {
    width: 42px;
    font-size: 11px;
  }
}
.timeline__body {
  background: #fff;
  padding: 16px 24px;
  overflow: hidden;
}
.timeline__photo {
  margin: calc(-1 * 16px) calc(-1 * 24px) 16px;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.timeline__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.timeline__title {
  font-size: 22px;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 6px;
}
.timeline__desc {
  font-size: 13px;
  line-height: 1.85;
  color: #6B6B6B;
}

.sec-environment {
  background: #fff;
}
.env-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #E5E5E5;
  border: 1px solid #E5E5E5;
}
@media (max-width: 767px) {
  .env-grid {
    grid-template-columns: 1fr;
  }
}

.env-card {
  background: #fff;
  padding: 40px 24px;
}
.env-card__icon {
  display: none;
}
.env-card__title {
  font-size: 22px;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 8px;
}
.env-card__desc {
  font-size: 13px;
  line-height: 1.85;
  color: #6B6B6B;
}

.sec-voices {
  background: #fff;
}
.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .voice-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.voice-card {
  background: #fff;
  border: 1px solid #E5E5E5;
  display: grid;
  grid-template-columns: 200px 1fr;
  transition: border-color 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
@media (max-width: 767px) {
  .voice-card {
    grid-template-columns: 1fr;
  }
}
.voice-card:hover {
  border-color: #0A0A0A;
}
.voice-card__media {
  position: relative;
  background: #F5F5F5;
  overflow: hidden;
}
@media (max-width: 767px) {
  .voice-card__media {
    aspect-ratio: 4/3;
  }
}
.voice-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.voice-card__no {
  position: absolute;
  top: 0;
  left: 0;
  background: #0A0A0A;
  color: #fff;
  font-family: "Montserrat", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 6px 12px;
}
.voice-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.voice-card__status {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 12px;
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #E5E5E5;
}
.voice-card__status div {
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.voice-card__status dt {
  font-family: "Montserrat", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #9B9B9B;
  text-transform: uppercase;
  min-width: 28px;
}
.voice-card__status dd {
  font-size: 12px;
  color: #0A0A0A;
  font-weight: 500;
  margin: 0;
}
.voice-card__quote {
  font-size: 13px;
  line-height: 1.95;
  color: #0A0A0A;
  margin: 0;
  padding: 0 0 0 16px;
  border-left: 2px solid #C8102E;
  position: relative;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
}
.voice-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: auto;
}
.voice-card__tags li {
  font-size: 11px;
  color: #6B6B6B;
  padding: 4px 10px;
  border: 1px solid #E5E5E5;
  border-radius: 9999px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.voice-card:hover .voice-card__tags li {
  border-color: #0A0A0A;
  color: #0A0A0A;
}

.sec-requirements {
  background: #F5F5F5;
}
.req-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid #E5E5E5;
  margin-bottom: 40px;
}

.req-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.req-table th, .req-table td {
  padding: 16px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid #E5E5E5;
}
.req-table thead th {
  background: #0A0A0A;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}
.req-table thead th:first-child {
  background: #0A0A0A;
}
.req-table tbody th {
  background: #F5F5F5;
  font-weight: 700;
  color: #0A0A0A;
  white-space: nowrap;
}

.req-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.sec-faq {
  background: #fff;
}
.sec-faq__inner {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid #E5E5E5;
}

.faq-item {
  background: #fff;
  border-bottom: 1px solid #E5E5E5;
}
.faq-item details summary {
  list-style: none;
  padding: 16px 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
}
.faq-item details summary::-webkit-details-marker {
  display: none;
}
.faq-item__q-mark, .faq-item__a-mark {
  font-family: "Montserrat", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
  width: 24px;
}
.faq-item__q-mark {
  color: #0A0A0A;
}
.faq-item__a-mark {
  color: #C8102E;
}
.faq-item__q-text {
  flex: 1;
  font-weight: 700;
  font-size: 16px;
  color: #0A0A0A;
  line-height: 1.6;
}
.faq-item__q-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  margin-left: auto;
}
.faq-item__q-icon::before, .faq-item__q-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #0A0A0A;
}
.faq-item__q-icon::before {
  width: 12px;
  height: 1px;
}
.faq-item__q-icon::after {
  width: 1px;
  height: 12px;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
details[open] .faq-item__q-icon::after {
  opacity: 0;
}
.faq-item__a {
  padding: 0 0 16px;
  padding-left: 40px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.faq-item__a-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.95;
  color: #6B6B6B;
}

.sec-contact {
  background: #0A0A0A;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.sec-contact__bg {
  display: none;
}
.sec-contact__overlay {
  display: none;
}
.sec-contact__inner {
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 767px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 40px;
}
.contact-card__label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.contact-card__tel {
  display: block;
  font-family: "Montserrat", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .contact-card__tel {
    font-size: 24px;
  }
}
.contact-card__hours {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.apply-form__row {
  margin-bottom: 16px;
}
.apply-form__row label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  margin-bottom: 4px;
}
.apply-form__row input, .apply-form__row select, .apply-form__row textarea {
  width: 100%;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #0A0A0A;
  font-size: 14px;
  margin-top: 6px;
}
.apply-form__row input:focus, .apply-form__row select:focus, .apply-form__row textarea:focus {
  outline: 2px solid #C8102E;
  outline-offset: 1px;
}
.apply-form__row textarea {
  resize: vertical;
  min-height: 90px;
}

.job-page {
  background: #fff;
}

.job-hero {
  position: relative;
  height: 44vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  margin-top: 72px;
}
@media (max-width: 767px) {
  .job-hero {
    margin-top: 64px;
  }
}
.job-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.job-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.job-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
}
.job-hero__inner {
  position: relative;
  z-index: 2;
}
.job-hero__breadcrumb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}
.job-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
}
.job-hero__breadcrumb span {
  color: #fff;
  font-weight: 700;
}
.job-hero__type {
  font-family: "Montserrat", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  margin-bottom: 16px;
}
.job-hero__title {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .job-hero__title {
    font-size: 36px;
  }
}
.job-hero__catch {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.job-body__inner {
  max-width: 920px;
}

.job-block {
  margin-bottom: 64px;
}
.job-block__h {
  font-size: 40px;
  font-weight: 900;
  color: #0A0A0A;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E5E5E5;
}
@media (max-width: 767px) {
  .job-block__h {
    font-size: 28px;
  }
}
.job-block__list {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}
.job-block__list li {
  padding: 16px;
  background: #F5F5F5;
  font-size: 14px;
  line-height: 1.7;
}
.job-block p {
  font-size: 16px;
  line-height: 2;
  color: #6B6B6B;
  margin-bottom: 1.5em;
}

.job-table {
  width: 100%;
  background: #fff;
  border: 1px solid #E5E5E5;
}
.job-table th, .job-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #E5E5E5;
  font-size: 14px;
  line-height: 1.7;
}
.job-table th {
  background: #F5F5F5;
  font-weight: 700;
  color: #0A0A0A;
  width: 30%;
  vertical-align: top;
}
@media (max-width: 767px) {
  .job-table th {
    width: auto;
    display: block;
    padding-bottom: 4px;
  }
}
.job-table td {
  color: #6B6B6B;
}
@media (max-width: 767px) {
  .job-table td {
    display: block;
    padding-top: 4px;
  }
}
.job-table tr:last-child th, .job-table tr:last-child td {
  border-bottom: none;
}

.job-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 64px;
}
@media (max-width: 767px) {
  .job-cta {
    flex-direction: column;
  }
}

.site-header.is-scrolled {
  border-bottom-color: #0A0A0A;
}

html {
  scroll-padding-top: 80px;
}

body {
  padding-top: 0;
}

.front-page {
  padding-top: 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-template-page-job {
  padding-top: 72px;
}
