:root {
  --yozora: #2f2f2f;
  --asamoya: #e7ecec;
  --muchu: #d56e59;
  --kaiho: #8aadd8;
  --hizashi: #fcfcfc;
  --text: #2f2f2f;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: clamp(13.65px, 4.2667vw, 16px);
}

body {
  margin: 0;
  background: var(--asamoya);
  color: var(--text);
  font-family: "Zen Kaku Gothic New", "Inter", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.7;
  letter-spacing: 0;
}

body.is-locked {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

strong {
  font-weight: 700;
}

.pc-only {
  display: none !important;
}

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

button {
  color: inherit;
  font: inherit;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 12px 28px;
  border: 0;
  border-radius: 999px;
  background: var(--muchu);
  color: var(--hizashi);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 12px 20px;
  pointer-events: none;
}

.header__logo,
.header__fixed-button,
.header__menu {
  pointer-events: auto;
}

.header__logo {
  display: block;
  width: 119px;
}

.header__fixed-button {
  position: fixed;
  z-index: 59;
  right: 8px;
  bottom: calc(8px + env(safe-area-inset-bottom));
  left: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  background: var(--muchu);
  color: var(--hizashi);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.header__fixed-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header.is-open .header__fixed-button {
  opacity: 0;
  pointer-events: none;
}

.header__menu {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: var(--yozora);
  box-shadow: none;
  cursor: pointer;
}

.header__menu-line {
  position: absolute;
  left: 16px;
  width: 24px;
  height: 1px;
  background: var(--hizashi);
  transition: opacity 0.2s ease, transform 0.2s ease, top 0.2s ease;
}

.header__menu-line:first-child {
  top: 20px;
}

.header__menu-line:nth-child(2) {
  top: 28px;
}

.header__menu-line:last-child {
  top: 36px;
}

.header.is-open .header__menu-line:first-child {
  top: 28px;
  transform: rotate(35deg);
}

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

.header.is-open .header__menu-line:last-child {
  top: 28px;
  transform: rotate(-35deg);
}

.header__nav {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 88px 32px 0;
  background: var(--yozora);
  color: var(--hizashi);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  overflow-y: scroll;
}

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

.header__nav-inner {
  display: grid;
  gap: 18px;
  width: min(100%, 360px);
  padding-bottom: calc(64px + env(safe-area-inset-bottom));
}

.header__nav-link {
  display: grid;
  gap: 2px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(252, 252, 252, 0.18);
  transition: opacity 0.2s ease;
}

.header__nav-en {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.header__nav-ja {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.82;
  white-space: nowrap;
}

.header__nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  margin-top: 16px;
  border-radius: 999px;
  background: var(--muchu);
  color: var(--hizashi);
  font-size: 1.125rem;
  font-weight: 700;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.fv {
  overflow: hidden;
  padding: 96px 0 40px;
  background: var(--asamoya);
}

.fv__gallery {
  width: 100%;
  overflow: hidden;
}

.fv__track {
  display: flex;
  width: max-content;
  animation: fv-scroll 34s linear infinite;
}

.fv__image {
  width: 1560px;
  max-width: none;
  height: 290px;
  object-fit: cover;
  padding: 0 6px;
}

@keyframes fv-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.fv__inner {
  padding: 28px 20px 0;
}

.fv__subtitle {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  margin: 0 0 24px;
  padding: 3px 12px;
  background: var(--text);
  color: var(--hizashi);
  font-size: 0.8125rem;
  font-weight: 700;
}

.fv__title {
  max-width: 380px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 2.875rem;
  font-weight: 900;
  line-height: 1.16;
}

.fv__lead {
  margin: 26px 0 32px;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.5;
}

.fv__button {
  width: 100%;
}

.movie {
  overflow: hidden;
  padding: 0 0 64px;
}

.movie__swiper {
  --movie-slide-width: calc((100% - 4px) / 1.2);
  --movie-slide-gap: 20px;
  --movie-arrow-size: 28px;
  overflow: visible;
}

.movie__list {
  align-items: center;
}

.movie__item {
  overflow: hidden;
  border-radius: 0;
  transition: opacity 0.2s ease;
}

.movie__item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.movie__prev,
.movie__next {
  z-index: 2;
  width: var(--movie-arrow-size);
  height: var(--movie-arrow-size);
  margin-top: calc(var(--movie-arrow-size) / -2);
  color: var(--yozora);
}

.movie__next {
  right: auto;
  left: calc(50% + var(--movie-slide-width) / 2 + var(--movie-slide-gap) / 2 - var(--movie-arrow-size) / 2);
}

.movie__prev {
  left: calc(50% - var(--movie-slide-width) / 2 - var(--movie-slide-gap) / 2 - var(--movie-arrow-size) / 2);
  right: auto;
}
.movie__prev::before,
.movie__next::before,
.movie__prev::after,
.movie__next::after {
  content: "";
  position: absolute;
  left: 11px;
  width: 1.5px;
  height: 8px;
  border-radius: 1px;
  background: currentColor;
  transform-origin: 50% 50%;
}

.movie__prev::before,
.movie__next::before {
  top: 7px;
}

.movie__prev::after {
  top: 13px;
}

.movie__next::after {
  top: 13px;
}

.movie__prev::before {
  transform: rotate(45deg);
}

.movie__prev::after {
  transform: rotate(-45deg);
}

.movie__next::before {
  transform: rotate(-45deg);
}

.movie__next::after {
  transform: rotate(45deg);
}

.business {
  overflow: hidden;
  padding: 58px 0 64px;
  background: var(--yozora);
  color: var(--hizashi);
}

.business__inner {
  padding: 0 20px;
}

.business__text {
  margin: 0 0 22px;
  text-align: center;
}

.business__title,
.business__growth-title {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 24px;
}

.business__visual {
  position: relative;
  margin: 32px 0 28px;
}

.business__ship {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.business__map {
  position: absolute;
  right: -8px;
  bottom: -32px;
  width: 78%;
}

.business__growth-title {
  font-size: 1.5rem;
  letter-spacing: .05em;
}

.business__growth-title strong {
  font-size: 1.85rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.business__growth {
  padding-top: 56px;
}

.business__growth-text {
  margin: 28px 0 0;
  text-align: center;
}

.business__road-wrap {
  margin-top: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.business__road {
  width: max-content;
  padding: 0 20px 8px;
  scroll-snap-align: start;
}

.business__road::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
}

.business__road img {
  width: 1200px;
  max-width: none;
  height: 190px;
  object-fit: cover;
}

.section-heading {
  padding: 0 20px;
  text-align: center;
}

.section-heading__label,
.value__label,
.faq__label {
  margin: 0 0 8px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.section-heading__title,
.value__title,
.faq__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.7;
}

.interview__label {
  font-size: 2rem;
  font-weight: bold;
  font-family: "Inter", sans-serif;

}

.interview__title {
  font-size: 0.9375rem;
}

.section-heading__text,
.section-heading__note,
.interview__text,
.value__text {
  margin: 28px 0 0;
  text-align: left;
}

.section-heading__note {
  font-size: 0.8125rem;
}

.intern {
  padding: 64px 0;
  background: var(--asamoya);
  color: var(--yozora);
}

.intern__flow {
  margin: 48px 0;
}

.intern__flow-label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 29px;
  margin: 0 20px 16px;
  background: var(--text);
  color: var(--hizashi);
  font-weight: 700;
}

.intern__flow-scroll {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}

.intern__flow-scroll img {
  padding: 0 20px;
}

.intern__flow-scroll::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
}

.intern__flow-scroll img {
  width: 912px;
  max-width: none;
  height: auto;
  margin-left: 20px;
  scroll-snap-align: start;
}

.intern__program {
  overflow: hidden;
  margin-top: 48px;
  background: transparent;
  color: var(--yozora);
}

.intern__bubble {
  position: relative;
  min-height: 72px;
  margin: 0;
  padding: 10px 20px 14px;
  background: var(--yozora);
  color: var(--hizashi);
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.intern__bubble strong {
  font-size: 1.625rem;
}

.intern__bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 21px;
  height: 21px;
  background: var(--yozora);
  transform: translateX(-50%) rotate(45deg);
}

.intern__info {
  padding: 24px 20px 0;
}

.intern__meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.intern__date {
  position: relative;
  margin: 0;
  padding-left: 25px;
  color: var(--yozora);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.05;
  white-space: nowrap;
}

.intern__date::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--muchu);
}

.intern__date strong {
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
}

.intern__tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0;
  padding: 6px 8px;
  background: var(--yozora);
  color: var(--hizashi);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.intern__tag span {
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.intern__title {
  margin: 24px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.intern__sub {
  margin: 6px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}

.intern__text {
  margin: 24px 0 0;
  font-size: 0.9375rem;
}

.intern__photos {
  margin-top: 30px;
  padding-bottom: 0;
  overflow: visible;
}

.intern__main-image {
  display: none;
}

.intern__photo {
  width: 314px;
  aspect-ratio: 314 / 195;
  object-fit: cover;
}

.intern__pagination .swiper-pagination-bullet {
  background: var(--hizashi);
}

.intern__thumbs {
  display: none;
}

.intern__feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}

.intern__feature-list li {
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 92px;
  min-width: 0;
  padding: 6px 4px 8px;
  border-radius: 10px;
  background: var(--hizashi);
  color: var(--yozora);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.intern__feature-list img {
  width: 40px;
  height: 40px;
  margin-bottom: 2px;
}

.intern__kawatabi {
  display: grid;
  gap: 16px;
  margin: 20px;
  padding: 20px;
  background: var(--hizashi);
}

.intern__kawatabi img {
  width: 100%;
  aspect-ratio: 323 / 170;
  object-fit: cover;
}

.intern__kawatabi h4,
.intern__kawatabi p {
  margin: 0;
}

.intern__kawatabi h4 {
  font-size: 1.25rem;
  font-family: "Inter", "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 12px;
}

.intern__kawatabi h4 span {
  display: block;
  font-size: 1rem;
}

.intern__button {
  width: calc(100% - 40px);
  margin: 40px 20px 0;
}

.document {
  padding: 40px 0 0;
  background: var(--asamoya);
}

.document__heading {
  padding: 0 20px 51px;
  text-align: center;
}

.document__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}

.document__lead {
  margin: 24px 0 0;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

.document__tabs {
  display: grid;
  grid-template-columns: minmax(0, 200px) minmax(0, 200px);
  align-items: end;
  justify-content: center;
  gap: 2px;
}

.document__tab {
  min-height: 64px;
  padding: 6px 8px;
  border: 0;
  background: var(--yozora);
  color: var(--hizashi);
  font-family: "Inter", "Zen Kaku Gothic New", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
}

.document__tab span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
}

.document__tab.is-active {
  min-height: 80px;
  background: var(--kaiho);
  color: var(--hizashi);
}

.document__panel {
  padding: 42px 20px 64px;
  background: var(--hizashi);
  color: var(--yozora);
  text-align: center;
}

.document__panel[hidden] {
  display: none;
}

.document__panel-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.7;
}

.document__panel-text {
  margin: 24px 0 36px;
  line-height: 1.8;
}

.document__steps {
  position: relative;
  display: grid;
  gap: 8px;
  max-width: 244px;
  margin: 0 auto 32px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.document__steps::before {
  content: "";
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 7px;
  width: 2px;
  background: var(--muchu);
}

.document__steps li {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 28px;
}

.document__steps li::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--muchu);
  transform: translateY(-50%);
}

.document__steps span {
  padding-left: 30px;
  color: var(--muchu);
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  white-space: nowrap;
}

.document__steps strong {
  font-size: 0.9375rem;
  font-weight: 700;
  white-space: nowrap;
}

.document__button {
  width: min(100%, 363px);
  border: 2px solid var(--yozora);
  background: transparent;
  color: var(--yozora);
}

.cta {
  background: var(--yozora);
  color: var(--hizashi);
  text-align: center;
}

.cta__inner {
  padding: 64px 20px;
}

.cta__title {
  margin: 0;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.7;
}

.cta__text {
  margin: 34px 0 0;
  font-weight: 700;
  line-height: 2;
}

.cta__note {
  margin: 32px 0 0;
  font-size: 0.8125rem;
}

.cta__button {
  width: min(100%, 362px);
  margin-top: 40px;
}

.cta__copyright {
  margin: 72px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
}

.interview {
  padding: 64px 0 0;
}

.interview__heading {
  padding: 0 20px 48px;
  text-align: center;
}

.interview__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.interview__item {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: var(--yozora);
  color: var(--hizashi);
}

.interview__img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.interview__item::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(to bottom, rgba(47, 47, 47, 0), rgba(47, 47, 47, 0.86));
}

.interview__body {
  position: absolute;
  z-index: 1;
  left: 12px;
  right: 12px;
  bottom: 18px;
  display: grid;
  gap: 8px;
}

.interview__name {
  font-weight: 700;
}

.interview__role {
  justify-self: start;
  padding: 2px 6px;
  background: var(--hizashi);
  color: var(--yozora);
  font-size: 0.625rem;
  font-weight: 700;
}

.interview__copy {
  font-size: 0.75rem;
  font-weight: 700;
}

.interview__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  min-height: 32px;
  border-radius: 32px;
  background: var(--kaiho);
  color: var(--hizashi);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: background-color 0.2s ease;
}

.growth {
  padding: 64px 0;
}

.growth__list {
  display: grid;
  gap: 20px;
  padding: 40px 20px 0;
}

.growth__item {
  overflow: hidden;
  background: var(--hizashi);
}

.growth__item img {
  width: 100%;
  aspect-ratio: 362 / 195;
  object-fit: cover;
}

.growth__item h3 {
  margin: 18px 24px 6px;
  font-size: 1.25rem;
  font-weight: 700;
}

.growth__item ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0 24px 24px 40px;
}

.growth__item li::marker {
  color: var(--kaiho);
}

.value {
  overflow: hidden;
  padding: 40px 0 0;
}

.value__heading {
  padding: 0 20px 31px;
  text-align: center;
}

.value__list {
  display: grid;
}

.value__item {
  margin: 0;
  background: var(--yozora);
  color: var(--hizashi);
}

.value__item h3 {
  position: relative;
  margin: 0;
  padding: 17px 20px 18px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.value__item h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 20px;
  height: 20px;
  background: var(--yozora);
  transform: translateX(-50%) rotate(45deg);
}

.value__item img {
  width: 100%;
  aspect-ratio: 402 / 232;
  object-fit: cover;
}

.faq {
  padding: 64px 0;
  background: var(--hizashi);
}

.faq__inner {
  padding: 0 20px;
}

.faq__heading {
  text-align: center;
}

.faq__list {
  display: grid;
  gap: 8px;
  margin-top: 32px;
}

.faq__item {
  overflow: hidden;
  border-radius: 8px;
  background: var(--asamoya);
}

.faq__question {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 60px;
  padding: 12px 48px 12px 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  color: var(--muchu);
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  transform: translateY(-50%);
}

.faq__item[open] .faq__question::after {
  content: "−";
}

.faq__answer {
  margin: 0;
  padding: 0 16px 18px;
}

.interview-detail {
  background: var(--asamoya);
  color: var(--yozora);
}

.interview-detail__fv {
  display: flex;
  flex-direction: column;
  padding: 80px 0 64px;
}

.interview-detail__fv-inner,
.interview-detail__content {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 20px;
}

.interview-detail__label,
.interview-detail__section-label {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.interview-detail__title {
  margin: 18px 0 0;
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.35;
}

.interview-detail__person {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.interview-detail__name,
.interview-detail__role {
  margin: 0;
}

.interview-detail__name {
  font-size: 1.125rem;
  font-weight: 700;
}

.interview-detail__role {
  justify-self: start;
  padding: 4px 8px;
  background: var(--hizashi);
  font-size: 0.8125rem;
  font-weight: 700;
}

.interview-detail__lead {
  margin: 32px 0 0;
  font-weight: 500;
  line-height: 2;
}

.interview-detail__hero,
.interview-detail__image {
  margin: 40px 0 0;
}

.interview-detail__hero {
  order: -1;
  margin-top: 0;
  margin-bottom: 24px;
}

.interview-detail__hero img,
.interview-detail__image img {
  width: 100%;
  aspect-ratio: 402 / 260;
  object-fit: cover;
}

.interview-detail__image img {
  border-radius: 10px;
}

.interview-detail__profile,
.interview-detail__career {
  padding: 28px 20px;
  border-radius: 10px;
  background: var(--hizashi);
}

.interview-detail__career,
.interview-detail__section,
.interview-detail__related,
.interview-detail__back {
  margin-top: 56px;
}

.interview-detail__section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.interview-detail__section-title,
.interview-detail__section h2 {
  margin: 0;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.55;
}

.interview-detail__profile p,
.interview-detail__section p {
  margin: 0;
  line-height: 2;
}

.interview-detail__section h2 + p {
  margin-top: 24px;
}

.interview-detail__section p + p {
  margin-top: 24px;
}

.interview-detail__section p strong {
  font-size: 1.125em;
  line-height: 1.7;
}

.interview-detail__section p strong::before,
.interview-detail__section p strong::after {
  content: '"';
}

.interview-detail__timeline {
  position: relative;
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.interview-detail__timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 7px;
  width: 2px;
  background: var(--muchu);
}

.interview-detail__timeline li {
  position: relative;
  display: grid;
  gap: 4px;
  padding-left: 34px;
}

.interview-detail__timeline li::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 7px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--muchu);
}

.interview-detail__timeline span {
  color: var(--muchu);
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
}

.interview-detail__timeline p {
  margin: 0;
  font-weight: 700;
  line-height: 1.7;
}

.interview-detail__quote {
  margin-top: 64px;
  padding: 0 20px;
}

.interview-detail__quote p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--yozora);
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.7;
}

.interview-detail__related-list {
  display: grid;
  gap: 16px;
}

.interview-detail__related-item {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 112px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--hizashi);
  color: var(--yozora);
}

.interview-detail__related-item img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.interview-detail__related-item span {
  display: grid;
  gap: 6px;
  padding-right: 14px;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.6;
}

.interview-detail__related-item strong {
  font-size: 1rem;
}

.interview-detail__back {
  padding-bottom: 64px;
  text-align: center;
}

.interview-detail__back-button {
  width: min(100%, 262px);
}

@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .header__fixed-button:hover,
  .header__nav-button:hover {
    opacity: 0.82;
    transform: translateY(-1px);
  }

  .header__nav-link:hover {
    opacity: 0.68;
  }

  .movie__item:hover {
    opacity: 0.86;
  }

  .interview__item:hover .interview__img,
  .interview-detail__related-item:hover img {
    transform: scale(1.06);
  }

  .interview__item:hover .interview__button {
    background: #6f98c8;
  }

  .interview-detail__related-item:hover {
    color: var(--muchu);
  }
}

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

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(47, 47, 47, 0.72);
}

.modal__dialog {
  position: relative;
  width: min(100%, 900px);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  background: var(--hizashi);
  color: var(--yozora);
  border-radius: 10px;
}

.modal__close {
  position: sticky;
  z-index: 2;
  top: 8px;
  right: 8px;
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-left: auto;
  border: 0;
  background: var(--yozora);
  color: var(--hizashi);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.modal__content {
  display: grid;
  gap: 20px;
  padding: 20px;
}

.modal__content[hidden] {
  display: none;
}

.modal__block {
  padding: 20px;
  background: var(--asamoya);
  border-radius: 10px;
}

.modal__label,
.modal__main {
  margin: 0;
}

.modal__label {
  font-size: 0.9375rem;
}

.modal__main {
  margin-top: 4px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--muchu);
}

.modal__main small {
  font-size: 0.9375rem;
}

.modal__main strong {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
}

.modal__list {
  display: grid;
  gap: 6px;
  margin: 18px 0 0;
  padding-left: 18px;
}

@media (min-width: 768px) {
  html {
    font-size: 100%;
  }

  .sp-only {
    display: none !important;
  }

  .pc-only {
    display: revert !important;
  }

  body {
    font-size: 1rem;
  }

  .header {
    height: 96px;
    padding: 20px;
  }

  .header__menu {
    top: 20px;
    right: 20px;
  }

  .header__fixed-button {
    top: 20px;
    right: 92px;
    bottom: auto;
    left: auto;
    width: 220px;
    min-height: 56px;
    transform: translateY(-8px);
  }

  .header__fixed-button.is-visible {
    transform: translateY(0);
  }

  .header__nav-inner {
    width: min(100%, 720px);
  }

  .fv {
    padding-top: 120px;
  }

  .fv__image {
    width: 2334px;
    height: 434px;
    padding: 0 9px;
  }

  .fv__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 40px;
    align-items: end;
    max-width: var(--max);
    margin: 0 auto;
    padding: 46px 40px 0;
  }

  .fv__subtitle,
  .fv__title,
  .fv__lead {
    grid-column: 1;
  }

  .fv__subtitle {
    font-size: 1.125rem;
    width: 440px;
    justify-content: center;
  }

  .fv__title {
    max-width: 780px;
    font-size: 4rem;
  }

  .fv__lead {
    font-size: 1.375rem;
    margin-bottom: 0;
  }

  .fv__button {
    grid-column: 2;
    grid-row: 2 / 4;
    align-self: center;
    justify-self: end;
    width: 262px;
  }

  .movie {
    padding: 32px 40px 96px;
  }

  .movie__swiper {
    max-width: var(--max);
    margin: 0 auto;
  }

  .movie__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    transform: none !important;
  }

  .movie__item:nth-child(n + 4) {
    display: none;
  }

  .movie__item {
    width: auto !important;
  }

  .movie__prev,
  .movie__next {
    display: none;
  }

  .business {
    padding: 100px 0;
  }

  .business__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 56px 64px;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 40px;
  }

  .business__intro {
    grid-column: 1;
    grid-row: 1;
    max-width: 520px;
    margin: 0;
    text-align: left;
  }

  .business__title,
  .business__growth-title {
    text-align: center;
  }

  .business__title {
    font-size: 2.5rem;
    margin-bottom: 48px;
  }

  .business__intro .business__title {
    text-align: left;
  }

  .business__intro .business__text {
    margin: 24px 0 0;
    text-align: left;
    font-size: 1.125rem;
    line-height: 2;
  }

  .business__visual {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
  }

  .business__growth {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-top: 0;
    max-width: 760px;
    margin: 0 auto;
  }

  .business__growth-title {
    font-size: 2rem;
  }

  .business__growth-title strong {
    font-size: 3rem;
  }

  .business__road-wrap {
    max-width: var(--max);
    margin: 48px auto 0;
  }

  .business__road {
    width: 100%;
    padding: 0 40px;
  }

  .business__road img {
    width: 100%;
    height: auto;
  }

  .intern {
    padding: 96px 0;
  }

  .intern__inner,
  .document__inner,
  .growth__inner,
  .faq__inner {
    max-width: var(--max);
    margin: 0 auto;
  }

  .section-heading {
    max-width: 760px;
    margin: 0 auto;
  }

  .section-heading__title,
  .interview__title,
  .value__title,
  .faq__title {
    font-size: 2rem;
  }

  .intern__program {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: 0 32px;
    margin: 56px 40px 0;
    overflow: visible;
  }

  .intern__bubble {
    grid-column: 1 / -1;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-right: max(40px, calc((100vw - var(--max)) / 2 + 40px));
    padding-left: max(40px, calc((100vw - var(--max)) / 2 + 40px));
    font-size: 2rem;
  }

  .intern__bubble strong {
    font-size: 2.5rem;
  }

  .intern__info {
    display: flex;
    flex-direction: column;
    padding: 72px 0 0;
  }

  .intern__title {
    order: 1;
    margin-top: 0;
  }

  .intern__sub {
    order: 2;
  }

  .intern__text {
    order: 3;
  }

  .intern__meta {
    order: 4;
    margin-top: 28px;
  }

  .intern__feature-list {
    order: 5;
  }

  .intern__photos {
    min-width: 0;
    align-self: start;
    margin-top: 80px;
    padding-bottom: 0;
    overflow: visible;
  }

  .intern__main-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .intern__photo-list {
    display: none;
    height: auto;
    transform: none !important;
    overflow: hidden;
  }

  .intern__photo {
    display: none;
    width: 100% !important;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .intern__photo.is-active {
    display: block;
  }

  .intern__thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 12px;
  }

  .intern__thumb {
    display: block;
    padding: 0;
    border: 2px solid transparent;
    background: transparent;
    cursor: pointer;
    opacity: 0.62;
    transition: opacity 0.2s ease, border-color 0.2s ease;
  }

  .intern__thumb.is-active {
    border-color: var(--yozora);
    opacity: 1;
  }

  .intern__thumb img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .intern__kawatabi {
    grid-column: 1 / -1;
    grid-template-columns: 320px 1fr;
    align-items: center;
    margin: 24px 0 0;
  }

  .intern__button {
    display: flex;
    width: 262px;
    margin: 40px auto 0;
  }

  .document {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .document__heading {
    max-width: 720px;
    margin: 0 auto;
  }

  .document__title {
    font-size: 2.25rem;
  }

  .document__tabs,
  .document__panel {
    max-width: 860px;
    margin: 0 auto;
  }

  .document__button {
    width: 262px;
  }

  .cta__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 88px 40px;
  }

  .cta--last .cta__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 24px 80px;
    text-align: left;
  }

  .cta--last .cta__button {
    margin-top: 0;
  }

  .cta--last .cta__copyright {
    grid-column: 1 / -1;
  }

  .interview {
    padding-top: 96px;
  }

  .interview__heading {
    max-width: 760px;
    margin: 0 auto;
  }

  .interview__list {
    grid-template-columns: repeat(4, 1fr);
  }

  .interview__item,
  .interview__img {
    min-height: 420px;
  }

  .interview__name {
    font-size: 1.5rem;
  }

  .interview__role {
    font-size: 1rem;
  }

  .interview__copy {
    font-size: 1.25rem;
  }

  .interview__button {
    width: 140px;
    min-height: 38px;
    font-size: 0.875rem;
  }

  .intern__flow-scroll img {
    width: calc(100% - 40px);
    padding: 0;
    margin: 0 auto;
  }

  .growth {
    padding: 96px 0;
  }

  .growth__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 48px 40px 0;
  }

  .growth__item h3 {
    font-size: 1.5rem;
  }

  .value {
    padding-top: 100px;
  }

  .value__heading {
    max-width: 520px;
    margin: 0 auto;
    padding-bottom: 64px;
  }

  .value__list {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq {
    padding: 100px 0;
  }

  .faq__list {
    max-width: 960px;
    margin: 42px auto 0;
  }

  .interview-detail__fv {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 56px;
    width: min(100%, var(--max));
    margin: 0 auto;
    padding: 144px 40px 96px;
  }

  .interview-detail__fv-inner {
    order: 0;
    padding: 0;
  }

  .interview-detail__title {
    font-size: 4rem;
  }

  .interview-detail__lead {
    max-width: 650px;
  }

  .interview-detail__hero {
    order: 0;
    margin: 0;
    padding-top: 0;
  }

  .interview-detail__hero img {
    aspect-ratio: 5 / 6;
    border-radius: 10px;
  }

  .interview-detail__content {
    max-width: 960px;
    padding: 0 40px;
  }

  .interview-detail__profile,
  .interview-detail__career {
    padding: 40px;
  }

  .interview-detail__section,
  .interview-detail__image {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
  }

  .interview-detail__career,
  .interview-detail__section,
  .interview-detail__related,
  .interview-detail__back {
    margin-top: 80px;
  }

  .interview-detail__section-title,
  .interview-detail__section h2 {
    font-size: 2rem;
    margin-bottom: 24px;
  }

  .interview-detail__timeline li {
    grid-template-columns: 180px 1fr;
    gap: 24px;
  }

  .interview-detail__quote {
    margin-top: 80px;
    padding: 0 40px;
  }

  .interview-detail__quote p {
    font-size: 2rem;
  }

  .interview-detail__related-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .interview-detail__related-item {
    grid-template-columns: 180px 1fr;
    min-height: 180px;
  }

  .interview-detail__related-item img {
    width: 180px;
    height: 180px;
  }

  .interview-detail__related-item span {
    padding-right: 24px;
    font-size: 0.9375rem;
  }

  .interview-detail__back {
    padding-bottom: 96px;
  }

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