/* Common styles shared across all pages */

/* === Appear animation system === */
.js-enabled [data-appear] {
  opacity: 0;
}
.js-enabled [data-appear="up"] {
  transform: translateY(var(--appear-distance, 20px));
}
.js-enabled [data-appear="down"] {
  transform: translateY(calc(-1 * var(--appear-distance, 48px)));
}
.js-enabled [data-appear="right"] {
  transform: translateX(var(--appear-distance, 40px));
}
.js-enabled [data-appear="scale"] {
  transform: scale(var(--appear-scale, 1.05));
}
.js-enabled [data-appear="scale-down"] {
  transform: scale(var(--appear-scale, 0.8));
}
.js-enabled [data-appear="zoom"] {
  opacity: 1;
  transform: scale(var(--appear-scale, 1.05));
}
.js-enabled [data-appear="stretch-y"] {
  opacity: 1;
  transform: scaleY(0);
}

/* SectionHeading component */
.section-heading {
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  padding: 0px;
  margin: 0px 0px 32px;
}

.section-heading__en {
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  margin: 0px 0px 0px 8px;
  padding: 0px;
  width: calc(100% - 8px);
}

.section-heading__line {
  background: var(--color-accent);
  border-radius: var(--radius-2xl);
  height: 4px;
  margin: 10px 0px;
  width: 70px;
}

.section-heading__ja {
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: var(--fs-xl);
  font-weight: 800;
  line-height: 1.4;
  text-align: left;
  margin: 0px 0px 0px 8px;
  padding: 0px;
  width: calc(100% - 8px);
}

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

/* === Skip link === */
.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* === Focus styles === */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* === Reduced motion === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.header {
display: flex;
place-content: center;
align-items: center;
backdrop-filter: blur(10px);
background: rgba(255, 255, 255, 0.9);
filter: blur(0px);
flex-flow: row;
height: 80px;
left: 0px;
margin: 0px;
padding: 48px 0px;
position: fixed;
top: 0px;
transition-delay: 1400ms;
transition-duration: 800ms;
width: 100%;
z-index: 100;
}

.header__inner {
display: flex;
place-content: center space-between;
align-items: center;
flex-flow: row;
padding: 0px 20px;
max-width: 1120px;
width: 100%;
}

.header__logo {
display: flex;
place-content: center flex-start;
align-items: center;
flex-flow: row;
padding: 0px;
}

.header__logo:hover {
opacity: 0.4;
transform: scale(1, 1);
}

.header__logo-text {
color: rgb(0, 0, 0);
font-family: var(--font-heading);
font-size: 26px;
font-weight: 300;
letter-spacing: 0.1em;
line-height: 1;
margin: 0px;
text-align: center;
}

.header__nav {
display: flex;
place-content: center;
align-items: center;
color: var(--color-white);
flex-flow: row;
margin: 0px;
padding: 0px;
}

.header__nav-link {
display: flex;
place-content: center;
align-items: center;
position: relative;
height: 26px;
padding: 0px 16px;
}

.header__nav-text {
color: rgb(0, 0, 0);
font-family: var(--font-sans);
font-size: var(--fs-sm);
font-weight: 600;
letter-spacing: 0.1em;
line-height: 1;
margin: 0px;
padding: 0px;
text-align: center;
}

.header__nav-text--home {
letter-spacing: 0.2em;
}

.header__nav-link::after {
content: '';
background: var(--color-accent);
inset: auto 0px 0px;
height: 2px;
margin: 0px;
position: absolute;
transform: scaleX(0);
transition: transform 0.3s var(--ease-default);
}

.header__nav-link:hover::after {
transform: scaleX(0.9);
}

.header__contact-link {
display: flex;
align-items: center;
justify-content: center;
position: relative;
border-width: 1px;
border-style: solid;
border-color: rgb(0, 0, 0);
border-radius: var(--radius-sm);
height: 40px;
margin: 0px 0px 0px 24px;
padding: 0px;
width: 140px;
max-width: calc(100% - 24px);
}

.header__contact-link:hover {
background: rgb(0, 0, 0);
}

.header__contact-icon {
display: flex;
align-items: center;
color: var(--color-text);
font-size: var(--fs-xl);
padding: 0px;
}

.header__contact-link:hover .header__contact-icon {
color: var(--color-white);
}

.header__contact-text {
color: var(--color-text);
font-family: var(--font-sans);
font-size: var(--fs-sm);
font-weight: 600;
letter-spacing: 0.1em;
line-height: 1.4;
margin: 0px 0px 0px 8px;
text-align: center;
max-width: calc(100% - 8px);
}

.header__contact-link:hover .header__contact-text {
color: var(--color-white);
}

.header__menu-btn {
display: none;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 5px;
width: 44px;
height: 44px;
margin: 0;
padding: 0;
border: none;
background: none;
cursor: pointer;
flex-shrink: 0;
}

.header__menu-line {
display: block;
width: 22px;
height: 2px;
background: rgb(0, 0, 0);
border-radius: 1px;
transition: transform 0.35s var(--ease-default), opacity 0.25s var(--ease-default);
transform-origin: center;
}

.header__menu-btn.is-open .header__menu-line:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}

.header__menu-btn.is-open .header__menu-line:nth-child(2) {
opacity: 0;
}

.header__menu-btn.is-open .header__menu-line:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}

body {
background: var(--color-white);
transition: background 0.5s var(--ease-default);
}

body.header-menu-open {
overflow: hidden;
}

:root {
--color-accent: rgb(255, 205, 41);
--color-accent-warm: rgb(246, 214, 46);
--color-primary: rgb(30, 90, 159);
--color-text: rgb(51, 51, 51);
--color-text-dark: rgb(30, 30, 30);
--color-gray: rgb(170, 170, 170);
--color-gray-light: rgb(204, 204, 204);
--color-gray-lighter: rgb(238, 238, 238);
--color-gray-border: rgb(221, 221, 221);
--color-white: rgb(255, 255, 255);
--color-bg-white: rgb(255, 255, 255);
--font-sans: Inter;
--font-heading: Montserrat;
--font-jp: 'Noto Sans JP';
--font-display: Outfit;
--font-accent: 'Readex Pro';
--font-condensed: 'Roboto Condensed';
--font-button: Poppins;
--ease-default: var(--ease-default);
--ease-bounce: var(--ease-bounce);
--ease-subtle: cubic-bezier(0, 0, 0.99, 0.98);
--ease-smooth: cubic-bezier(0.58, 0.21, 0.41, 0.96);
--ease-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
--fs-2xs: 11px;
--fs-xs: 12px;
--fs-sm: 14px;
--fs-base-sm: 15px;
--fs-base: 16px;
--fs-md: 18px;
--fs-lg: 20px;
--fs-xl: 24px;
--fs-2xl: 28px;
--fs-3xl: 36px;
--fs-4xl: 40px;
--fs-6xl: 56px;
--radius-sm: 4px;
--radius-md: 8px;
--radius-base: 10px;
--radius-lg: 32px;
--radius-xl: 48px;
--radius-2xl: 128px;
--radius-full: 50%;
}

/* Footer */

.footer-wrap {
place-content: center;
margin: 0px;
padding: 0px;
width: 100%;
}

.footer-contact {
display: flex;
height: 480px;
margin: 120px 0px 0px;
padding: 0px;
max-width: 1120px;
width: 100%;
}

.footer-contact__inner {
place-content: center;
height: 480px;
overflow: hidden;
width: 100%;
}

.footer-contact__layout {
place-content: center flex-start;
align-items: center;
background: rgb(231, 244, 252);
border-radius: 240px;
flex-flow: row;
height: 100%;
padding: 0px;
width: 100%;
}

.footer-contact__image {
place-content: flex-start flex-end;
align-items: flex-start;
border-radius: 240px;
flex-flow: column;
height: 100%;
padding: 0px;
width: 480px;
z-index: 1;
}

.footer-contact__image::after {
content: '';
background: var(--color-accent);
border-radius: var(--radius-full);
height: 210px;
margin: 0px;
width: 210px;
z-index: -3;
}

.footer-contact__body {
place-content: center flex-start;
align-items: center;
flex-flow: row;
margin: 24px 0px 0px 80px;
max-width: calc(100% - 80px);
}

.footer-contact__text {
place-content: center;
padding: 0px;
width: 440px;
}

.footer-contact__title-en {
color: var(--color-text-dark);
font-family: var(--font-heading);
font-size: var(--fs-4xl);
font-weight: 400;
letter-spacing: 0.1em;
line-height: 1.4;
padding: 0px;
text-align: center;
}

.footer-contact__title-ja {
color: var(--color-text-dark);
font-family: var(--font-sans);
font-size: var(--fs-lg);
font-weight: 600;
height: 18px;
letter-spacing: 0.1em;
line-height: 1.4;
margin: 0px 0px 23px 8px;
text-align: left;
max-width: calc(100% - 8px);
}

.footer-contact__phone {
color: var(--color-primary);
font-family: var(--font-heading);
font-size: var(--fs-4xl);
font-weight: 700;
letter-spacing: 0.1em;
line-height: 2;
text-align: justify;
justify-content: space-between;
}

.footer-contact__hours {
color: var(--color-text-dark);
font-family: var(--font-sans);
font-size: var(--fs-lg);
font-weight: 400;
height: 18px;
line-height: 1.4;
margin: 0px 0px 23px 8px;
text-align: left;
max-width: calc(100% - 8px);
}

.footer-contact__btn {
background: var(--color-white);
border-width: 1px;
border-style: solid;
border-color: rgb(0, 0, 0);
border-radius: var(--radius-2xl);
box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 0px 0px;
color: var(--color-text);
font-family: var(--font-button);
font-size: var(--fs-base-sm);
font-weight: 400;
height: 56px;
line-height: 1.4;
margin: 8px 0px 0px;
padding: 12px;
text-align: left;
width: 220px;
}

.footer-contact__btn:hover {
background: var(--color-primary);
border-width: 1px;
border-style: solid;
border-color: var(--color-primary);
}

.footer-contact__btn-icon {
color: rgb(0, 0, 0);
font-size: var(--fs-xl);
padding: 0px;
}

.footer-contact__btn:hover .footer-contact__btn-icon {
color: var(--color-white);
}

.footer-contact__btn-label {
color: var(--color-text);
font-family: var(--font-sans);
font-size: var(--fs-sm);
font-weight: 600;
line-height: 1.4;
margin: 0px 0px 0px 8px;
text-align: center;
max-width: calc(100% - 8px);
}

.footer-contact__btn:hover .footer-contact__btn-label {
color: var(--color-white);
}

.footer-contact__address {
display: flex;
flex-flow: column;
align-items: center;
}

.footer-totop {
place-content: flex-end center;
align-items: flex-end;
flex-flow: column;
height: 150px;
width: 100%;
}

.footer-totop__link {
place-content: center;
align-items: center;
background: var(--color-accent);
border-radius: var(--radius-full);
flex-flow: column;
height: 62px;
margin: 0px 80px 0px 0px;
padding: 0px;
position: relative;
width: 62px;
max-width: calc(100% - 80px);
}

.footer-totop__link:hover {
margin: -12px 80px 0px 0px;
transform: translate(0px, 0px) scale(1.2, 1.2);
transition-timing-function: ease;
max-width: calc(100% - 80px);
}

.footer-totop__icon {
color: var(--color-text);
font-size: var(--fs-xl);
}

.footer-totop__link:hover .footer-totop__icon {
color: var(--color-text-dark);
transform: scale(1.2, 1.2);
}

.footer-divider {
background: var(--color-accent);
border-radius: 560px 560px 0px 0px;
height: 500px;
margin: -60px 0px 0px;
position: relative;
width: 580px;
z-index: -1;
}

.footer-info {
background: var(--color-accent);
margin: -430px 0px 0px;
padding: 64px 32px;
width: 100%;
}

.footer-slogan {
place-content: center;
gap: 10px;
margin: 0px;
padding: 0px;
}

.footer-slogan__en {
color: var(--color-white);
font-family: var(--font-heading);
font-size: var(--fs-3xl);
font-weight: 500;
line-height: 1.4;
margin: 0px;
text-align: center;
}

.footer-slogan__ja {
color: var(--color-text-dark);
font-family: var(--font-heading);
font-size: var(--fs-md);
font-weight: 700;
line-height: 1.4;
text-align: center;
}

.footer-links {
place-content: center;
margin: 40px 0px 48px;
padding: 0px;
max-width: 900px;
width: 100%;
}

.footer-links__item {
color: var(--color-text);
display: none;
font-family: var(--font-sans);
font-size: var(--fs-lg);
font-weight: 400;
line-height: 1.4;
text-align: center;
}

.footer-nav {
place-content: center space-between;
align-items: center;
border-width: 0px 0px 1px;
border-style: solid;
border-color: rgb(0, 0, 0);
flex-flow: row;
height: 60px;
max-width: 900px;
width: 100%;
}

.footer-nav__brand {
color: rgb(0, 0, 0);
font-family: var(--font-heading);
font-size: var(--fs-lg);
font-weight: 300;
letter-spacing: 0.1em;
line-height: 1;
margin: 0px 80px 0px 0px;
text-align: center;
max-width: calc(100% - 80px);
}

.footer-nav__menu {
place-content: center;
align-items: center;
color: var(--color-white);
flex-flow: row;
padding: 0px;
}

.footer-nav__link {
place-content: center;
height: 26px;
padding: 0px 16px;
color: rgb(0, 0, 0);
font-family: var(--font-sans);
font-size: var(--fs-sm);
font-weight: 600;
letter-spacing: 0.1em;
line-height: 1;
text-align: center;
}

.footer-nav__link::after {
content: '';
background: var(--color-white);
inset: auto 0px 0px;
height: 2px;
margin: 0px;
position: absolute;
transform: scaleX(0);
transition: transform 0.3s var(--ease-default);
}

.footer-nav__link:hover::after {
transform: scaleX(0.9);
}

.footer-company {
place-content: flex-start center;
align-items: flex-start;
align-self: flex-start;
flex-flow: column;
gap: 10px;
margin: 40px 0px 0px;
max-width: 900px;
width: 100%;
}

.footer-company__name--mobile {
color: var(--color-text);
display: none;
font-family: var(--font-sans);
font-size: var(--fs-base);
font-weight: 600;
line-height: 1.4;
text-align: center;
width: 100%;
}

.footer-company__name {
color: var(--color-text-dark);
font-family: var(--font-sans);
font-size: var(--fs-base);
font-weight: 600;
line-height: 1.4;
margin: 0px 0px 8px;
text-align: left;
max-width: 900px;
width: 100%;
}

address {
font-style: normal;
}

figure {
margin: 0;
}

.footer-office {
flex-flow: row;
place-content: center;
margin: 0px;
padding: 0px;
}

.footer-office--shibuya {
margin: 16px 0px 0px;
}

.footer-office--kamiike {
margin: 16px 0px 0px;
}

.footer-office__badge {
place-content: center;
align-items: center;
border-width: 1px;
border-style: solid;
border-color: rgb(0, 0, 0);
border-radius: var(--radius-xl);
flex-flow: column;
height: 48px;
margin: 0px 24px 0px 0px;
width: 120px;
max-width: calc(100% - 24px);
}

.footer-office__badge-text {
color: var(--color-text);
font-family: var(--font-jp);
font-size: var(--fs-base);
font-weight: 400;
letter-spacing: 0.15em;
line-height: 1.4;
padding: 0px;
text-align: center;
}

.footer-office__detail {
color: var(--color-text-dark);
font-family: var(--font-condensed);
font-size: var(--fs-sm);
font-weight: 400;
letter-spacing: 0.1em;
line-height: 1.7;
text-align: left;
}

.footer-logo {
height: 40px;
width: 160px;
}

.footer-logo::before {
background-repeat: no-repeat;
background-size: contain;
}

.footer-brand {
color: var(--color-text-dark);
display: none;
font-family: var(--font-heading);
font-size: var(--fs-2xs);
font-weight: 400;
line-height: 1.4;
margin: 40px 0px 0px;
text-align: center;
}

.footer-copyright {
color: var(--color-text-dark);
font-family: var(--font-heading);
font-size: var(--fs-2xs);
font-weight: 400;
line-height: 1.4;
margin: 40px 0px 0px;
text-align: center;
}

/* PageHero component */
.page-hero {
  flex-flow: row;
  place-content: center;
  margin: 120px 0px 0px;
  width: 100%;
}

.page-hero__image {
  place-content: flex-start flex-end;
  align-items: flex-start;
  border-radius: 180px;
  flex-flow: column;
  height: 490px;
  margin: 0px -640px 0px 0px;
  position: relative;
  transition-delay: 500ms;
  transition-duration: 2000ms;
  transition-timing-function: var(--ease-bounce);
  width: 750px;
  z-index: 0;
  max-width: calc(100% + 640px);
}

.page-hero__image::before {
  background-image: var(--hero-bg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-hero__text {
  place-content: flex-start;
  align-items: flex-start;
  flex-flow: column;
  height: 210px;
  margin: 0px 0px 120px -460px;
  padding: 0px;
  width: 360px;
  max-width: calc(100% + 460px);
}

.page-hero__en {
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

.page-hero__ja {
  color: var(--color-text);
  font-family: var(--font-jp);
  font-size: var(--fs-xl);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.page-hero__desc {
  color: var(--color-text);
  font-family: var(--font-jp);
  font-size: var(--fs-lg);
  font-weight: 700;
  line-height: 1.7;
  margin: 32px 0px 0px;
  text-align: left;
}

.page-hero__text::after {
  content: '';
  background: var(--color-accent);
  border-radius: var(--radius-full);
  height: 130px;
  margin: -60px 0px 0px -60px;
  padding: 0px;
  position: relative;
  width: 130px;
  z-index: -1;
  flex-shrink: 0;
}

/* Page-specific hero overrides */

/* Service: mobile image margin */

/* Company: mobile image margin (different from service) */

/* Company: accent circle offset */
.page-hero--company .page-hero__text::after {
  margin: -220px 0px 0px -60px;
}

/* Contact: image background-size + text layout */
.page-hero--contact .page-hero__image::before {
  background-position: center;
  background-size: 1020px;
}

/* AccessInfo component */
.access-info {
  place-content: flex-start;
  align-items: flex-start;
  flex-flow: row;
  gap: 32px;
  max-width: 880px;
  padding: 0px;
  width: 100%;
}

.access-info + .access-info {
  margin: 40px 0px 0px;
}

.access-info__map {
  width: 434px;
}

.access-info__frame {
  height: 280px;
  margin: 0px 0px 16px;
  width: 100%;
}

.access-info__detail {
  place-content: flex-start center;
  align-items: flex-start;
  flex: 1;
  flex-flow: column;
  padding: 0px;
}

.access-info__content {
  place-content: flex-start;
  align-items: flex-start;
  flex: 1 1 0%;
  flex-flow: column;
}

.access-info__name {
  color: var(--color-text-dark);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 600;
  line-height: 1.4;
  margin: 0px 0px 16px;
  text-align: left;
}

.access-info__address {
  color: var(--color-text-dark);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.75;
  margin: 0px 0px 16px;
  text-align: left;
  width: 100%;
}

.access-info__access {
  color: var(--color-text-dark);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.75;
  text-align: left;
  width: 100%;
}

/* Fieldset/legend base styles */
fieldset {
  border: none;
  padding: 0;
  margin: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/* HistoryEvent component */
.history-event {
  place-content: flex-start;
  align-items: flex-start;
  background: var(--color-white);
  flex-flow: row;
  height: 92px;
  padding: 0px;
  width: 100%;
}

.history-event:first-child {
  background: transparent;
}

.history-event__year {
  place-content: flex-end;
  align-items: flex-end;
  flex-flow: row;
  height: 35px;
  padding: 0px;
  width: 129px;
}

.history-event__year-num {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin: 0px 8px 0px 0px;
  text-align: center;
  max-width: calc(100% - 8px);
}

.history-event__year-suffix {
  color: var(--color-primary);
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.history-event__line {
  border-width: 0px 1px 0px 0px;
  border-style: solid;
  border-color: var(--color-gray);
  height: 100%;
  margin: 0px 24px 0px 0px;
  padding: 0px;
  transform-origin: center top;
  width: 51px;
  max-width: calc(100% - 24px);
}

.history-event:first-child .history-event__line {
  height: calc(100% - 24px);
  margin: 24px 24px 0px 0px;
}

.history-event__dot {
  background: var(--color-accent-warm);
  border-radius: var(--radius-full);
  inset: 8px -10px auto auto;
  height: 20px;
  margin: 0px;
  position: absolute;
  width: 20px;
}

.history-event:first-child .history-event__dot {
  inset: -13px -10px auto auto;
}

.history-event__text {
  place-content: flex-start;
  align-items: flex-start;
  flex-flow: column;
  height: 100%;
  padding: 16px;
}

.history-event__desc {
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  width: 100%;
}

/* Table base styles */
table {
  display: table;
  border-collapse: separate;
  border-spacing: 0;
}

thead {
  display: table-header-group;
}

tbody {
  display: table-row-group;
}

tr {
  display: table-row;
}

th,
td {
  display: table-cell;
}

/* Interview card */

.interview-card__header {
  place-content: center space-between;
  align-items: center;
  flex-flow: row;
  width: 100%;
}

.interview-card__profile {
  place-content: flex-start center;
  align-items: flex-start;
  flex-flow: column;
  margin: 0px 24px 0px 0px;
  padding: 0px;
  max-width: calc(100% - 24px);
}

.interview-card__name {
  background: rgb(0, 0, 0);
  color: var(--color-white);
  font-family: var(--font-jp);
  font-size: var(--fs-base);
  font-weight: 500;
  height: 28px;
  line-height: 1.4;
  margin: 0px;
  text-align: center;
  width: 220px;
}

.interview-card__catchphrase {
  color: var(--color-text);
  font-family: var(--font-jp);
  font-size: var(--fs-xl);
  font-weight: 700;
  line-height: 1.4;
  margin: 12px 0px 0px;
  text-align: center;
}

.interview-card__photo {
  border-radius: var(--radius-full);
  height: 140px;
  width: 140px;
}

.interview-card__photo::before {
  background-image: var(--interview-image);
}

.interview-card__qa {
  place-content: flex-start;
  align-items: flex-start;
  flex-flow: column;
  margin: 24px 0px 0px;
  width: 100%;
}

.interview-card__qa:first-of-type {
  margin-top: 18px;
}

.interview-card__qa:last-child {
  margin-bottom: 120px;
}

.interview-card__question {
  color: var(--color-text);
  font-family: var(--font-jp);
  font-size: var(--fs-base);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: left;
}

.interview-card__answer {
  color: var(--color-text);
  font-family: var(--font-jp);
  font-size: var(--fs-base);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 12px 0px 0px;
  text-align: left;
}

/* Job card */

.job-card {
  background: var(--color-accent);
  border-radius: 24px;
  overflow: hidden;
  padding: 40px;
  width: 100%;
}

.job-card__inner {
  background: var(--color-white);
  border-radius: 20px;
  padding-bottom: 24px;
  width: 100%;
}

.job-card__header {
  border-width: 0px 0px 1px;
  border-style: solid;
  border-color: rgb(183, 183, 183);
  padding: 0px;
  width: 100%;
}

.job-card__label {
  color: rgb(0, 0, 0);
  font-family: var(--font-accent);
  font-size: var(--fs-sm);
  font-weight: 700;
  line-height: 1.4;
  margin: 40px 0px 0px;
  text-align: center;
  width: 100%;
}

.job-card__title {
  color: rgb(0, 0, 0);
  font-family: var(--font-accent);
  font-size: var(--fs-3xl);
  font-weight: 700;
  line-height: 1.4;
  margin: 16px 0px 24px;
  text-align: center;
}

.job-card__item {
  place-content: center flex-start;
  align-items: center;
  border-width: 0px 0px 1px;
  border-style: dotted;
  border-color: var(--color-gray);
  flex-flow: row;
  margin: 0px;
  padding: 0px;
  width: 100%;
}

.job-card__item:last-of-type {
  border-width: 0px;
}

.job-card__dt {
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 600;
  line-height: 1.4;
  margin: 0px 80px 0px 64px;
  padding: 24px 8px;
  text-align: left;
  width: 100px;
  max-width: calc(100% - 144px);
}

.job-card__dd {
  flex: 1 1 0%;
  font-family: var(--font-jp);
  padding: 8px;
}

.job-card__value {
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  width: 100%;
}

.job-card__entry-title {
  color: rgb(0, 0, 0);
  font-family: var(--font-accent);
  font-size: var(--fs-2xl);
  font-weight: 700;
  line-height: 1.4;
  margin: 40px 0px 0px;
  text-align: center;
  width: 100%;
}

.job-card__entry-sub {
  color: rgb(0, 0, 0);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.4;
  margin: 0px;
  text-align: center;
  width: 100%;
}

.job-card__links {
  flex-flow: row;
  gap: 16px;
  place-content: center;
  margin: 20px 0px;
  padding: 0px;
}

.job-card__link {
  background: rgb(0, 0, 0);
  border-radius: 28px;
  color: var(--color-white);
  display: flex;
  font-family: var(--font-jp);
  font-size: var(--fs-base);
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin: 0px;
  min-width: 214px;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  transition-duration: 800ms;
  z-index: 1;
}

.job-card__link:hover {
  background: var(--color-white);
  color: rgb(0, 0, 0);
}

/* Scroll animation visible state */

@media screen and (max-width: 1140px) {
.footer-contact__image::after {
  display: none;
  }

.footer-nav {
  display: none;
  }
}

@media screen and (max-width: 840px) {
.header {
  display: flex;
  justify-content: space-between;
  padding: 20px 16px;
  }

.header__inner {
  padding: 0px;
  position: relative;
  z-index: 110;
  }

.header__logo {
  position: relative;
  z-index: 110;
  }

.header__logo-text {
  font-size: var(--fs-base);
  }

.header__nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0px;
  transform: none;
  width: 100vw;
  min-height: 100dvh;
  background: rgb(255, 255, 255);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0px;
  padding: 96px 0px 40px;
  place-content: flex-start;
  align-items: stretch;
  z-index: 90;
  max-height: 100dvh;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  overflow-y: auto;
  transition: opacity 0.3s var(--ease-subtle), visibility 0.3s var(--ease-subtle);
  pointer-events: none;
  }

.header__nav.is-open {
  opacity: 1;
  visibility: visible;
  box-shadow: none;
  pointer-events: auto;
  }

.header__nav .header__nav-link,
  .header__nav .header__contact-link {
  border-width: 0px 0px 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.08);
  height: auto;
  width: min(calc(100% - 40px), 520px);
  margin: 0px auto;
  padding: 20px 24px;
  justify-content: center;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s var(--ease-subtle), transform 0.3s var(--ease-subtle);
  }

.header__nav .header__contact-link {
  border-radius: 0px;
  max-width: none;
  }

.header__nav .header__contact-link:last-child {
  border-bottom: none;
  }

.header__nav.is-open .header__nav-link,
  .header__nav.is-open .header__contact-link {
  opacity: 1;
  transform: translateY(0);
  }

.header__nav-text,
.header__contact-text {
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  }

.header__nav-text--home {
  letter-spacing: 0.1em;
  }

.header__nav.is-open .header__nav-link:nth-child(1) { transition-delay: 0.04s; }
.header__nav.is-open .header__nav-link:nth-child(2) { transition-delay: 0.08s; }
.header__nav.is-open .header__nav-link:nth-child(3) { transition-delay: 0.12s; }
.header__nav.is-open .header__nav-link:nth-child(4) { transition-delay: 0.16s; }
.header__nav.is-open .header__contact-link { transition-delay: 0.2s; }

.header__menu-btn {
  display: flex;
  position: relative;
  z-index: 110;
  }

.header__contact-link {
  border: none;
  width: min(calc(100% - 40px), 520px);
  max-width: none;
  height: auto;
  margin: 0px auto;
  }

.header__contact-icon {
  display: none;
  }

.header__contact-text {
  font-size: 18px;
  margin: 0;
  max-width: none;
  }

.footer-contact__inner {
  height: 400px;
  }

.footer-contact__body {
  margin: 24px 0px 0px 24px;
  max-width: calc(100% - 24px);
  }

.footer-divider {
  left: auto;
  right: 122px;
  top: auto;
  }

.footer-nav__brand {
  font-size: var(--fs-base);
  }

.footer-nav__menu {
  display: none;
  }

.access-info {
    flex-flow: column;
    gap: 72px;
  }

.access-info__detail {
    place-content: stretch flex-start;
    align-items: stretch;
    flex-flow: row;
  }

.access-info__name {
    background: rgb(255, 252, 234);
    margin: 0px 16px 0px 0px;
    padding: 8px;
    width: 88px;
    max-width: calc(100% - 16px);
  }

.history-event {
    flex-flow: column;
    height: auto;
  }

.history-event__year {
    place-content: flex-start;
    align-items: center;
    flex-flow: row;
    margin: 0px 0px 0px 28px;
    position: relative;
    width: auto;
    height: auto;
  }

.history-event__year-num {
    font-size: 22px;
  }

.history-event__year-suffix {
    font-size: var(--fs-sm);
  }

.history-event__line {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 22px;
    margin: 0px;
    border-width: 0px 0px 0px 1px;
    max-width: none;
  }

  .history-event:first-child .history-event__line {
    margin: 0px;
    height: 100%;
  }

.history-event__dot {
    position: absolute;
    inset: auto;
    left: -10px;
    top: 2px;
  }

  .history-event:first-child .history-event__dot {
    inset: auto;
    left: -10px;
    top: 2px;
  }

.history-event__text {
    flex: none;
    margin: 4px 0px 16px 28px;
    height: auto;
    padding: 0px 16px 0px 0px;
  }

.job-card__dt {
    margin: 0px 40px;
    width: 110px;
    max-width: calc(100% - 80px);
  }

.job-card__link {
    font-size: var(--fs-sm);
  }
}

@media screen and (max-width: 540px) {
.footer-links__item--news {
    display: none;
  }

.section-heading__en {
    font-size: var(--fs-xl);
    margin: 0px;
    width: 100%;
  }

  .section-heading__ja {
    font-size: var(--fs-base);
    margin: 0px;
    width: 100%;
  }

.header {
  display: flex;
  }

.header__inner {
  padding: 0px;
  }

.header__nav {
  padding: 92px 0px 32px;
  }

.header__nav .header__nav-link,
  .header__nav .header__contact-link,
  .header__contact-link {
  width: min(calc(100% - 24px), 520px);
  padding: 18px 20px;
  }

.header__menu-btn {
  display: flex;
  }

.footer-contact {
  height: auto;
  margin: 0px;
  padding-bottom: 0px;
  }

.footer-contact__inner {
  height: 100%;
  }

.footer-contact__layout {
  flex-flow: column;
  border-radius: 0px;
  padding-bottom: 64px;
  }

.footer-contact__image {
  border-radius: 0px;
  height: 180px;
  width: 100%;
  }

.footer-contact__body {
  margin: 48px 0px 0px;
  }

.footer-contact__title-en {
  font-size: var(--fs-3xl);
  }

.footer-contact__phone {
  line-height: 1.6;
  text-align: center;
  width: 100%;
  }

.footer-contact__hours {
  font-size: var(--fs-md);
  }

.footer-wrap {
  background: rgb(231, 244, 252);
  }

.footer-totop {
  height: 0px;
  z-index: 1;
  }

.footer-totop__link {
  inset: 0px;
  margin: -50px 30px 0px 0px;
  max-width: calc(100% - 30px);
  z-index: 10;
  }

.footer-divider {
  border-radius: 240px 240px 0px 0px;
  inset: 0px;
  height: 120px;
  margin: -16px 0px 0px;
  padding: 0px;
  width: 240px;
  z-index: 5;
  }

.footer-info {
  margin: -70px 0px 0px;
  }

.footer-links {
  place-content: flex-start center;
  align-items: center;
  flex-flow: column;
  margin: 16px 0px 48px;
  }

.footer-company {
  order: 2;
  }

.footer-links__item {
  border-width: 0px 0px 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.15);
  display: flex;
  font-family: var(--font-jp);
  font-size: var(--fs-base);
  font-weight: 500;
  justify-content: center;
  margin: 0px;
  padding: 12px 0px;
  text-align: center;
  width: 80%;
  }

.footer-company {
  place-content: center;
  align-items: center;
  }

.footer-company__name--mobile {
  display: flex;
  justify-content: center;
  margin: 0px 0px 16px;
  }

.footer-company__name {
  display: none;
  }

.footer-office {
  border-width: 0px;
  flex-flow: column;
  padding: 0px;
  width: 410px;
  }

.footer-office--shibuya,
.footer-office--kamiike {
  margin: 16px 0px 0px;
  }

.footer-office__badge {
  height: 36px;
  margin: 0px 12px 0px 0px;
  width: 100px;
  max-width: calc(100% - 12px);
  }

.footer-office__badge-text {
  font-size: var(--fs-sm);
  }

.footer-office__detail {
  margin: 15px 0px 0px;
  }

.footer-brand {
  display: flex;
  font-size: var(--fs-lg);
  margin: 24px 0px 0px;
  }

.footer-copyright {
  margin: 12px 0px 0px;
  }

.page-hero__image {
    border-radius: 180px 0px 0px 180px;
    inset: 0px;
    height: 320px;
    width: 400px;
  }

  .page-hero__text {
    place-content: flex-end;
    height: auto;
    margin: 0px 0px 0px -16px;
    max-width: calc(100% + 16px);
  }

  .page-hero__text::after {
    inset: 0px;
  }

.page-hero--service {
  height: 600px;
    width: 390px;
  }

  .page-hero--service .page-hero__image {
      margin: -136px 0px 176px 136px;
    max-width: calc(100% - 136px);
  }

  .page-hero--service .page-hero__text {
      margin: 0px 0px 0px -88px;
      max-width: calc(100% + 88px);
    transform: translateY(214px);
  }

  .page-hero--service .page-hero__desc {
    margin: 60px 0px 0px;
  }

.page-hero--company {
  height: 530px;
    width: 390px;
  }

  .page-hero--company .page-hero__image {
    margin: -68px 0px 78px 80px;
    max-width: calc(100% - 80px);
  }

  .page-hero--company .page-hero__text {
    margin: 0px 0px 0px -24px;
    max-width: calc(100% + 24px);
    transform: translateY(44px);
  }

  .page-hero--company .page-hero__desc {
    margin: 48px 0px 0px;
  }

.page-hero--contact {
    place-content: flex-start center;
    align-items: flex-start;
    width: 590px;
  }

  .page-hero--contact .page-hero__image {
    margin: -20px 0px 280px 140px;
    max-width: calc(100% - 140px);
  }

  .page-hero--contact .page-hero__text {
    place-content: flex-start flex-end;
    height: calc(50% + 280px);
    margin: 0px 0px -280px -100px;
  }

.access-info {
    gap: 0px;
    width: 100%;
  }

.access-info + .access-info {
    margin: 48px 0px 0px;
  }

.access-info__map {
    width: 100%;
  }

.access-info__detail {
    margin: 16px 0px 0px;
    width: 100%;
  }

.access-info__content {
    width: 100%;
  }

.access-info__name {
    margin: 0px 16px 0px 0px;
  }

.interview-card__header {
    flex-flow: column-reverse;
    width: 100%;
  }

.interview-card__photo {
    height: 120px;
    width: 120px;
    margin: -40px 0px 16px;
  }

.interview-card__profile {
    margin: 0px;
    max-width: 100%;
    align-items: center;
  }

.interview-card__catchphrase {
    font-size: var(--fs-lg);
    text-align: left;
  }

.interview-card__qa {
    width: 400px;
  }

.job-card {
    padding: 6px;
  }

.job-card__entry-title {
    font-size: var(--fs-lg);
    margin: 24px 0px 0px;
  }

.job-card__header {
    width: 400px;
  }

.job-card__title {
    font-size: var(--fs-2xl);
  }

.job-card__item {
    place-content: flex-start;
    align-items: flex-start;
    flex-flow: column;
    padding: 12px 8px;
    width: 400px;
  }

.job-card__dt {
    margin: 0px;
    padding: 8px;
    width: 100%;
  }

.job-card__dd {
    width: 100%;
  }

.job-card__links {
    flex-flow: column;
    margin: 16px 0px;
  }
}
