@charset "UTF-8";
:root {
  --hero-bg: #88a7d4;
  --hero-overlay-strong: rgba(136, 167, 212, 0.92);
  --text-main: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.92);
  --text-faint: rgba(255, 255, 255, 0.82);
  --line-soft: rgba(255, 255, 255, 0.72);
  --button-main: #2c5cab;
  --button-main-hover: #214d94;
  --shadow-soft: 0 24px 80px rgba(40, 67, 116, 0.18);
  --container: min(1200px, 90%);
  --section-heading: #0d55ac;
  --section-text: #828282;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text-main);
  background: #ffffff;
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

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

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

.hero {
  position: relative;
  min-height: 720px;
  height: 100vh;
  max-height: 960px;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(180deg, rgba(150, 181, 224, 0.16), rgba(150, 181, 224, 0.04)), var(--hero-bg);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background: linear-gradient(180deg, var(--hero-overlay-strong) 0%, rgba(136, 167, 212, 0.84) 44%, rgba(136, 167, 212, 0.72) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(136, 167, 212, 0) 0%, rgba(115, 148, 198, 0.16) 100%);
  pointer-events: none;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(180deg, rgba(136, 167, 212, 0.2), rgba(136, 167, 212, 0.08)), url("../../src/recruit/fv.webp");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.96;
  transform: scale(1.02);
}

.site-header {
  position: relative;
  z-index: 9999;
  width: var(--container);
  margin: 0 auto;
  padding: 58px 0 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: nowrap;
}

.site-brand {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-shadow: 0 10px 30px rgba(72, 95, 142, 0.18);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.site-nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__item {
  position: relative;
}
.site-nav__item > a {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  color: var(--text-soft);
  white-space: nowrap;
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}
.site-nav__item > a:hover, .site-nav__item > a:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}

.site-nav__item--current > a {
  opacity: 1;
}

.site-nav__item--has-children > a::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transform-origin: center;
}

.site-nav__submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 240px;
  margin: 0;
  padding: 12px 0;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(17, 30, 55, 0.95);
  box-shadow: 0 18px 40px rgba(8, 15, 29, 0.28);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}
.site-nav__submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 10px;
}
.site-nav__submenu a {
  display: block;
  padding: 11px 20px;
  color: #ffffff;
  line-height: 1.5;
}

.site-nav__submenu--wide {
  min-width: 320px;
}

.site-nav__item:hover > .site-nav__submenu,
.site-nav__item:focus-within > .site-nav__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.cat-name {
  display: block;
}

.site-nav__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  min-height: 56px;
  padding: 0 23px;
  border: 2px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.site-nav__button:hover, .site-nav__button:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.site-header__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  width: 50px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 120;
  transition: background-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}
.site-header__menu-toggle span {
  display: block;
  width: 50px;
  height: 4px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.is-mobile-menu-open {
  overflow: hidden;
}

.mobile-menu {
  display: none;
}

.hero__content {
  width: min(1080px, 100vw - 64px);
  margin: 0 auto;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -60%);
  text-align: center;
}

.hero__title {
  margin: 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 0.01em;
  text-shadow: 0 14px 40px rgba(69, 96, 146, 0.18);
}

.hero__lead {
  margin: 22px 0 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-soft);
}

.hero__subcopy {
  margin: 6px 0 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--text-faint);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
  min-width: min(100%, 278px);
  min-height: 84px;
  padding: 0 40px;
  border-radius: 12px;
  background: var(--button-main);
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}
.hero__cta:hover, .hero__cta:focus-visible {
  background: var(--button-main-hover);
  transform: translateY(-2px);
  box-shadow: 0 30px 90px rgba(36, 72, 129, 0.3);
}

.hero__anchors {
  position: absolute;
  inset: 0 auto auto 0;
  width: 0;
  height: 0;
  overflow: hidden;
}

.recruit-main {
  background: #ffffff;
}

.intro-section {
  padding: 200px 0 130px;
}

.intro-section__inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(520px, 1fr);
  -moz-column-gap: 70px;
       column-gap: 70px;
  row-gap: 96px;
  align-items: center;
}

.intro-block {
  min-width: 0;
}

.intro-block--image img {
  display: block;
  width: 100%;
  height: auto;
}

.intro-block--company-visual {
  padding-top: 10px;
}

.intro-block--design-visual {
  padding-right: 34px;
}

.intro-block--design-copy {
  padding-left: 18px;
}

.intro-copy {
  max-width: 560px;
}

.intro-copy__title {
  margin: 0 0 26px;
  color: var(--section-heading);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}

.intro-copy__text {
  margin: 0;
  color: var(--section-text);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.55;
}
.intro-copy__text p {
  margin: 0;
}

.intro-copy__list {
  margin: 20px 0 26px;
  padding-left: 28px;
}

.works-section {
  position: relative;
  overflow: hidden;
  padding: 0px 0 50px;
}

.works-section__decoration {
  position: relative;
  pointer-events: none;
}

.works-section__media {
  position: relative;
}

.works-section__media picture,
.works-section__media img {
  display: block;
  width: 100%;
  height: auto;
}

.works-section__media picture {
  opacity: 0;
}

.works-section__cogs {
  position: absolute;
  inset: 0;
}

.works-section__cog {
  position: absolute;
  display: block;
  height: auto;
  transform-origin: center;
  animation: works-cog-spin 24s linear infinite;
}

.works-section__media .works-section__cog--1 {
  top: 30%;
  left: 0.2%;
  width: 3.5%;
  animation-duration: 7s;
  animation-direction: reverse;
}
.works-section__media .works-section__cog--2 {
  top: 58%;
  left: 1.6%;
  width: 2.75%;
  animation-duration: 7s;
  animation-direction: reverse;
}
.works-section__media .works-section__cog--3 {
  top: 30%;
  left: 2.9%;
  width: 6.85%;
  animation-duration: 22s;
}
.works-section__media .works-section__cog--4 {
  top: 11%;
  left: 23.5%;
  width: 11.7%;
  animation-duration: 32s;
  animation-direction: reverse;
}
.works-section__media .works-section__cog--5 {
  top: 2%;
  left: 32.8%;
  width: 5.2%;
  animation-duration: 15s;
}
.works-section__media .works-section__cog--6 {
  top: 52%;
  left: 32.5%;
  width: 8.3%;
  animation-duration: 19.5s;
}
.works-section__media .works-section__cog--7 {
  top: 30%;
  left: 40%;
  width: 6.9%;
  animation-duration: 20s;
}
.works-section__media .works-section__cog--8 {
  top: 32%;
  left: 46%;
  width: 2.95%;
  animation-duration: 7s;
  animation-direction: reverse;
}
.works-section__media .works-section__cog--9 {
  top: 58.1%;
  left: 45.3%;
  width: 3.2%;
  animation-duration: 7s;
  animation-direction: reverse;
}
.works-section__media .works-section__cog--10 {
  top: 34.8%;
  left: 87%;
  width: 3.1%;
  animation-duration: 10s;
  animation-direction: reverse;
}
.works-section__media .works-section__cog--11 {
  top: 59.1%;
  left: 87.7%;
  width: 2.2%;
  animation-duration: 8s;
  animation-direction: reverse;
}
.works-section__media .works-section__cog--12 {
  top: 43%;
  left: 88.9%;
  width: 4.3%;
  animation-duration: 18s;
}
.works-section__media .works-section__cog--13 {
  top: 8.7%;
  left: 91.5%;
  width: 5.9%;
  animation-duration: 26s;
  animation-direction: reverse;
}
.works-section__media .works-section__cog--14 {
  top: 10%;
  left: 96.9%;
  width: 2.7%;
  animation-duration: 7s;
}
.works-section__media .works-section__cog--15 {
  top: 33.5%;
  left: 96.2%;
  width: 3.1%;
  animation-duration: 8s;
}

@media (max-width: 768px) {
  .works-section__media .works-section__cog--1 {
    display: none;
  }
  .works-section__media .works-section__cog--2 {
    display: none;
  }
  .works-section__media .works-section__cog--3 {
    display: none;
  }
  .works-section__media .works-section__cog--4 {
    top: 2%;
    left: -0.5%;
    width: 21.7%;
    animation-duration: 32s;
    animation-direction: reverse;
  }
  .works-section__media .works-section__cog--5 {
    top: -1%;
    left: 16.9%;
    width: 10.2%;
    animation-duration: 15s;
  }
  .works-section__media .works-section__cog--6 {
    top: 21%;
    left: 16.5%;
    width: 15.3%;
    animation-duration: 19.5s;
  }
  .works-section__media .works-section__cog--7 {
    top: 11%;
    left: 30.5%;
    width: 12.5%;
    animation-duration: 20s;
  }
  .works-section__media .works-section__cog--8 {
    top: 12%;
    left: 41.7%;
    width: 5.55%;
    animation-duration: 7s;
    animation-direction: reverse;
  }
  .works-section__media .works-section__cog--9 {
    top: 23.3%;
    left: 40.3%;
    width: 6.2%;
    animation-duration: 7s;
    animation-direction: reverse;
  }
  .works-section__media .works-section__cog--10 {
    top: 58.8%;
    left: 46.7%;
    width: 12.1%;
    animation-duration: 11s;
    animation-direction: reverse;
  }
  .works-section__media .works-section__cog--11 {
    top: 82.1%;
    left: 49.7%;
    width: 8.2%;
    animation-duration: 8s;
    animation-direction: reverse;
  }
  .works-section__media .works-section__cog--12 {
    top: 66%;
    left: 54.6%;
    width: 17.3%;
    animation-duration: 18s;
  }
  .works-section__media .works-section__cog--13 {
    top: 31.9%;
    left: 64.5%;
    width: 24.4%;
    animation-duration: 26s;
    animation-direction: reverse;
  }
  .works-section__media .works-section__cog--14 {
    top: 35%;
    left: 86.9%;
    width: 10.7%;
    animation-duration: 8.5s;
  }
  .works-section__media .works-section__cog--15 {
    top: 57.5%;
    left: 83.9%;
    width: 12.1%;
    animation-duration: 8.5s;
  }
}
@keyframes works-cog-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.works-section__inner {
  position: relative;
  width: var(--container);
  margin: 0 auto;
}

.works-section__heading {
  margin: 0 0 54px;
  color: #0d55ac;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.25;
}

.works-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 44px;
  align-items: start;
}

.works-section__side {
  display: grid;
  gap: 42px;
  padding-top: 4px;
}

.works-card {
  position: relative;
}

.works-card__image img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
}

.works-card__body {
  margin-top: 14px;
}

.works-card__title {
  margin: 0 0 6px;
  color: #000000;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

.works-card__desc {
  margin: 0;
  color: #828282;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
}

.works-card--featured {
  padding-right: 22px;
}
.works-card--featured .works-card__image {
  max-width: 690px;
}
.works-card--featured .works-card__body {
  margin-top: 18px;
  padding-left: 8px;
}

.works-card--compact {
  padding-left: 18px;
}
.works-card--compact .works-card__image {
  max-width: 680px;
}

.works-card__number {
  position: absolute;
  top: -8px;
  left: 0;
  z-index: -1;
  color: rgba(13, 85, 172, 0.06);
  font-size: 120px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}

.works-card__number img {
  display: block;
  width: 100%;
  height: auto;
}

.works-card--02 .works-card__number {
  left: -14px;
}

.works-card--03 .works-card__number {
  top: -28px;
  left: 0px;
  width: 30%;
  font-size: 0;
  z-index: auto !important;
}

.job-section {
  padding: 0px 0 116px;
}

.job-section__inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 44px;
  align-items: start;
}

.job-section__content {
  max-width: 700px;
}

.job-section__heading {
  margin: 0 0 76px;
  color: #0d55ac;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.25;
}

.job-section__role {
  margin: 0 0 14px;
  color: #000000;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

.job-section__summary {
  margin: 0;
  color: #828282;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
}

.job-section__details {
  margin: 72px 0 0;
}

.job-section__detail + .job-section__detail {
  margin-top: 54px;
}

.job-section__detail dt {
  margin: 0 0 14px;
  color: #000000;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

.job-section__detail dd {
  margin: 0;
  color: #828282;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
}

.job-section__visual {
  justify-self: end;
}

.job-section__visual img {
  display: block;
  width: min(100%, 760px);
  height: auto;
}

.stories-section {
  position: relative;
  overflow: hidden;
  padding: 172px 0 172px;
  background-image: url("../../src/recruit/bg.webp");
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.stories-section__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 50px 0;
}

.stories-section__heading {
  margin: 0 0 44px;
  color: #0d55ac;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
}

.stories-carousel {
  --stories-gap: 22px;
  --stories-per-view: 3;
  position: relative;
  padding-inline: 0;
}

.stories-carousel__viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.stories-carousel__track {
  display: flex;
  gap: var(--stories-gap);
  align-items: stretch;
  transition: transform 320ms ease;
  will-change: transform;
}

.stories-card {
  flex: 0 0 calc((100% - var(--stories-gap) * (var(--stories-per-view) - 1)) / var(--stories-per-view));
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0 0 28px;
  border-radius: 28px;
  background: #ffffff;
}

.stories-card__media {
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
}

.stories-card__media img {
  display: block;
  width: 90%;
  margin: 0 auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}

.stories-carousel.is-dragging .stories-carousel__viewport {
  cursor: grabbing;
}

.stories-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 20px 0;
}

.stories-card__title {
  margin: 0 0 22px;
  color: #0d55ac;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
}

.stories-card__qa {
  margin: 0;
}

.stories-card__qa p {
  margin: 0;
  color: #828282;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
}

.stories-card__qa p + p {
  margin-top: 20px;
}

.stories-card__qa strong {
  display: block;
  margin-bottom: 6px;
  color: #0d55ac;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.stories-card__qa strong + br {
  display: none;
}

.stories-card__qa-item + .stories-card__qa-item {
  margin-top: 20px;
}

.stories-card__qa dt {
  margin: 0;
  color: #0d55ac;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.stories-card__qa dd {
  margin: 6px 0 0;
  color: #828282;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
}

.stories-carousel__arrow {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translateY(-50%);
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  transition: opacity 180ms ease;
}
.stories-carousel__arrow::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
}
.stories-carousel__arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.stories-carousel__arrow--prev {
  left: -56px;
}
.stories-carousel__arrow--prev::before {
  border-width: 18px 26px 18px 0;
  border-color: transparent #ffffff transparent transparent;
}

.stories-carousel__arrow--next {
  right: -56px;
}
.stories-carousel__arrow--next::before {
  border-width: 18px 0 18px 26px;
  border-color: transparent transparent transparent #ffffff;
}

.stories-carousel__pagination {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}
.stories-carousel__pagination button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, opacity 180ms ease;
}
.stories-carousel__pagination button.is-active {
  background: #ffffff;
  transform: scale(1.15);
}

.gaps-section {
  padding: 118px 0 132px;
  background: #ffffff;
}

.gaps-section__inner {
  width: var(--container);
  margin: 0 auto;
}

.gaps-section__heading {
  margin: 0;
  color: #0d55ac;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
}

.gaps-section__lead {
  margin: 14px 0 0;
  color: #828282;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
}

.gaps-list {
  display: grid;
  gap: 38px;
  margin-top: 36px;
  width: 1000px;
  margin: 100px auto;
  max-width: 90%;
}

.gap-card {
  position: relative;
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.16, 1, 0.3, 1), filter 720ms ease;
  transition-delay: calc(var(--reveal-order, 0) * 140ms);
  will-change: opacity, transform, filter;
  margin-top: 70px;
}

.gap-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .gap-card {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}
.gap-card__question {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 16px 24px 16px 200px;
  border-radius: 18px 18px 0 0;
  background: #0d55ac;
}

.gap-card__qmark {
  position: absolute;
  top: -60px;
  left: 40px;
  display: inline-flex;
  justify-content: center;
  width: 125px;
  padding-top: 25px;
  height: 125px;
  border-radius: 50%;
  background: #0d55ac;
  color: #ffffff;
  font-size: 62px;
  font-weight: 600;
  line-height: 1;
}

.gap-card__title {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
}

.gap-card__answer {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 34px 28px 34px 28px;
  border-radius: 0 0 18px 18px;
  background: #d4ebfd;
}

.gap-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gap-card__icon img {
  display: block;
  width: min(84px, 100%);
  height: auto;
}

.gap-card__body {
  color: #39414d;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.95;
}
.gap-card__body p {
  margin: 0;
}
.gap-card__body p + p {
  margin-top: 10px;
}

.videos-section {
  padding: 8px 0 146px;
  background: #ffffff;
}

.videos-section__inner {
  width: var(--container);
  margin: 0 auto;
}

.videos-section__heading {
  margin: 0;
  color: #0d55ac;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
}

.videos-section__lead {
  margin: 14px 0 0;
  color: #828282;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}

.videos-carousel {
  --stories-gap: 30px;
  --stories-per-view: 3;
  margin-top: 36px;
  padding-inline: 0;
}

.video-card {
  flex: 0 0 calc((100% - var(--stories-gap) * (var(--stories-per-view) - 1)) / var(--stories-per-view));
  min-width: 0;
}

.video-card__frame {
  overflow: hidden;
  aspect-ratio: 380/223;
  background: #d9d9d9;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.video-card__frame img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}

.video-card--placeholder .video-card__frame {
  background: #d9d9d9;
}

.stories-carousel.is-dragging .video-card__frame {
  cursor: grabbing;
}

.videos-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 28px;
}

.videos-carousel .stories-carousel__arrow {
  position: static;
  top: auto;
  width: 22px;
  height: 22px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}
.videos-carousel .stories-carousel__arrow::before {
  display: none;
}
.videos-carousel .stories-carousel__arrow::after {
  display: block;
  color: #cde3fb;
  font-size: 40px;
  font-weight: 600;
  line-height: 0.4;
  text-align: center;
}

.videos-carousel .stories-carousel__arrow--prev::after {
  content: "<";
}

.videos-carousel .stories-carousel__arrow--next::after {
  content: ">";
}

.videos-carousel .stories-carousel__pagination {
  gap: 22px;
  margin-top: 0;
}
.videos-carousel .stories-carousel__pagination button {
  width: 16px;
  height: 16px;
  background: #d8e9fc;
}
.videos-carousel .stories-carousel__pagination button.is-active {
  background: #b9d6f7;
  transform: none;
}

.numbers-section {
  padding: 0 0 132px;
  background: #ffffff;
}

.numbers-section__inner {
  width: var(--container);
  margin: 0 auto;
}

.numbers-section__heading {
  margin: 0 0 28px;
  color: #0d55ac;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
}

.numbers-section__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.numbers-section__row + .numbers-section__row {
  margin-top: 18px;
}

.numbers-card {
  min-width: 0;
}

.numbers-card img {
  display: block;
  width: 100%;
  height: auto;
}

.career-section {
  padding: 0 0 144px;
  background: #ffffff;
}

.career-section__inner {
  width: var(--container);
  margin: 0 auto;
}

.career-section__heading {
  margin: 0;
  color: #0d55ac;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
}

.career-section__lead {
  margin: 14px 0 0;
  color: #828282;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
}

.career-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.career-step {
  min-width: 0;
}

.career-step__shape {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 224px;
  padding: 28px 58px 28px 28px;
  background: #cfe2f7;
  clip-path: polygon(0 0, calc(100% - 82px) 0, 100% 50%, calc(100% - 82px) 100%, 0 100%);
  filter: drop-shadow(0 5px 0 rgba(0, 0, 0, 0.08));
}

.career-step__title {
  margin: 0;
  color: #0d55ac;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.career-step__body {
  margin-top: 18px;
  color: #0d55ac;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
}
.career-step__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-left: 16px;
}
.career-step__body li {
  margin: 0;
  list-style: "・";
}
.career-step__body li + li {
  margin-top: 14px;
}

.career-step__note {
  margin-top: 14px;
  color: #828282;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.career-section__summary {
  margin-top: 38px;
  color: #828282;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.85;
  text-align: center;
}
.career-section__summary p {
  margin: 0;
}

.message-section {
  padding: 0 0 148px;
  background: #ffffff;
}

.message-section__inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 478px);
  gap: 54px;
  align-items: center;
}

.message-section__content {
  min-width: 0;
}

.message-section__heading {
  margin: 0;
  color: #0d55ac;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
}

.message-section__meta {
  margin: 26px 0 0;
  color: #828282;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}

.message-section__body {
  margin-top: 28px;
  color: #333333;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.75;
}
.message-section__body p {
  margin: 0;
}
.message-section__body p + p {
  margin-top: 28px;
}

.message-section__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.message-section__visual img {
  display: block;
  width: min(100%, 478px);
  height: auto;
}

.guideline-section {
  position: relative;
  padding: 156px 0 156px;
  background: linear-gradient(180deg, #8fd2f3 0%, #8fd2f3 18%, #8fd2f3 100%);
  overflow: hidden;
  margin-bottom: 100px;
}
.guideline-section::before, .guideline-section::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 160px;
  pointer-events: none;
}
.guideline-section::before {
  top: 0;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
.guideline-section::after {
  bottom: 0;
  background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.guideline-section__card {
  position: relative;
  width: min(1500px, 100%);
  margin: 0 auto;
  padding: 82px 80px 78px;
  border-radius: 40px;
  background: #ffffff;
}

.guideline-section__heading {
  margin: 0;
  color: #0d55ac;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.guideline-section__eyebrow {
  margin: 4px 0 0;
  color: #b7b7b7;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-align: center;
}

.guideline-section__lead {
  color: #333333;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
  margin: 42px auto;
}

.guideline-table {
  margin-top: 54px;
  position: relative;
}
.guideline-table::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 176px;
  border-top: 2px solid #8fd2f3;
}
.guideline-table::after {
  content: "";
  position: absolute;
  top: 0;
  left: 176px;
  right: 0;
  border-top: 2px solid #bdbdbd;
}

.guideline-row {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
}

.guideline-row__label,
.guideline-row__value {
  padding: 20px 18px;
}

.guideline-row__label {
  border-bottom: 2px solid #8fd2f3;
  color: #0d55ac;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
}

.guideline-row__value {
  border-bottom: 2px solid #bdbdbd;
  color: #333333;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
}
.guideline-row__value th {
  vertical-align: top;
  min-width: 82px;
}
.guideline-row__value p {
  margin: 0;
}

.guideline-row__value--links a {
  display: block;
  color: #66a6eb;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}
.guideline-row__value--links a + a {
  margin-top: 6px;
}
.guideline-row__value--links p {
  margin-top: 10px;
  color: #b7b7b7;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}

.guideline-row__value--contact a {
  display: inline-block;
  margin-top: 2px;
  color: #bebebe;
  text-decoration: underline;
  font-size: 16px;
}

.guideline-row__value--other p {
  line-height: 1.55;
}
.guideline-row__value--other p:last-child {
  margin-top: 6px;
  color: #b7b7b7;
  font-size: 16px;
  font-weight: 500;
}

.faq-section {
  padding: 0 0 126px;
  background: #ffffff;
}

.faq-section__inner {
  width: var(--container);
  margin: 0 auto;
}

.faq-section__header {
  display: flex;
  align-items: flex-end;
  gap: 36px;
  margin-bottom: 34px;
}

.faq-section__heading {
  margin: 0;
  color: #0d55ac;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
}

.faq-section__lead {
  margin: 0 0 8px;
  color: #828282;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 48px;
}

.faq-card {
  min-width: 0;
  padding: 34px 48px 42px;
  background: #d4ebfd;
}

.faq-card__question {
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 4px solid rgba(255, 255, 255, 0.9);
  color: #0d55ac;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.45;
}

.faq-card__answer {
  margin-top: 24px;
  color: #333333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}
.faq-card__answer p {
  margin: 0;
}
.faq-card__answer p + p {
  margin-top: 8px;
}
.faq-card__answer a {
  color: inherit;
  text-decoration: none;
}

.entry-section {
  padding: 0 0 132px;
  background: #ffffff;
}

.entry-section__inner {
  width: min(972px, 100vw - 48px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: end;
  gap: 24px;
  padding: 42px 28px 0 56px;
  border-radius: 20px;
  background: #d4ebfd;
}

.entry-section__content {
  padding-bottom: 42px;
}

.entry-section__lead {
  margin: 0;
  color: #0d55ac;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
}

.entry-section__button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 26px;
  min-height: 88px;
  padding: 0 96px 0 40px;
  border-radius: 999px;
  background: #245caf;
  color: #ffffff;
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 6px 12px rgba(42, 75, 126, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
.entry-section__button::after {
  content: ">";
  position: absolute;
  top: 3%;
  right: 30px;
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
}
.entry-section__button:hover, .entry-section__button:focus-visible {
  background: #1d509c;
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(42, 75, 126, 0.28);
}

.entry-section__visual {
  align-self: end;
}

.entry-section__visual img {
  display: block;
  width: min(100%, 176px);
  height: auto;
  margin-left: auto;
}

.site-footer {
  padding: 0 0 84px;
  background: #ffffff;
}

.site-footer__inner {
  width: min(1280px, 100vw - 64px);
  margin: 0 auto;
  padding-top: 60px;
  border-top: 1px solid #e2e2e2;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 40px 56px;
  align-items: start;
}

.site-footer__brand {
  margin: 0;
  color: #111111;
  font-size: clamp(24px, 2.05vw, 30px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: minmax(150px, 0.95fr) minmax(300px, 1.45fr) minmax(240px, 1.1fr);
  gap: 32px 40px;
  align-items: start;
}

.site-footer__column {
  display: grid;
  align-content: start;
  gap: 20px;
  min-width: 0;
}

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

.site-footer__subnav {
  display: grid;
  gap: 10px 18px;
  padding-left: 16px;
  border-left: 1px solid #d8e4ee;
}

.site-footer__column a {
  color: #303030;
  display: inline;
  line-height: 1.45;
  transition: opacity 180ms ease;
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
  justify-self: start;
}
.site-footer__column a:hover, .site-footer__column a:focus-visible {
  opacity: 0.7;
}

.site-footer__link {
  color: #15365b;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.site-footer__sublink {
  position: relative;
  padding-left: 14px;
  color: #55616f !important;
  font-size: 15px !important;
  font-weight: 400;
  line-height: 1.5;
}

.site-footer__sublink::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

@media (max-width: 1280px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    padding: 16px 20px 10px;
    z-index: 80;
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    transition: background-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
  }
  .site-header.is-scrolled {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  }
  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: 100%;
    align-items: center;
    gap: 12px;
  }
  .site-brand {
    justify-self: start;
  }
  .site-nav {
    display: none;
  }
  .mobile-menu {
    display: none;
  }
  .site-header__menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 1;
    justify-self: end;
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    gap: 7px;
    border-radius: 12px;
  }
  .site-header__menu-toggle span {
    width: 34px;
    height: 4px;
  }
  .site-header__menu-toggle[aria-expanded=true] span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .site-header__menu-toggle[aria-expanded=true] span:nth-child(2) {
    opacity: 0;
  }
  .site-header__menu-toggle[aria-expanded=true] span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  body.is-mobile-menu-open .mobile-menu {
    display: block;
    position: fixed;
    top: 82px;
    left: 12px;
    right: 12px;
    z-index: 70;
    padding: 24px 20px;
    border-radius: 20px;
    background: rgba(18, 28, 48, 0.92);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
    max-height: calc(100vh - 112px);
    overflow-y: auto;
  }
  .mobile-menu__list,
  .mobile-menu__submenu {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .mobile-menu__item + .mobile-menu__item {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .mobile-menu__item > a,
  .mobile-menu__submenu a {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.7;
  }
  .mobile-menu__item > a {
    display: block;
    font-weight: 600;
  }
  .mobile-menu__submenu {
    margin-top: 10px;
    padding-top: 10px;
    padding-left: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mobile-menu__submenu li + li {
    margin-top: 8px;
  }
}
@media (max-width: 1100px) {
  .stories-carousel__arrow {
    display: none;
  }
  :root {
    --container: min(100vw - 48px, 1200px);
  }
  .hero__content {
    padding-top: 220px;
  }
  .intro-section {
    padding: 80px 0 96px;
  }
  .intro-section__inner {
    grid-template-columns: 1fr;
    row-gap: 48px;
  }
  .intro-block--design-visual {
    order: 4;
  }
  .intro-block--design-copy {
    order: 3;
  }
  .intro-block--design-visual,
  .intro-block--design-copy {
    padding: 0;
  }
  .works-card--compact .works-card__image {
    margin-bottom: 50px;
  }
  .works-section {
    padding: 92px 0 84px;
  }
  .works-section__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .works-section__side {
    display: contents;
    gap: 52px;
    padding-top: 0;
  }
  .works-card--02 {
    order: 1;
  }
  .works-card--featured {
    order: 2;
  }
  .works-card--03 {
    order: 3;
  }
  .works-card--featured,
  .works-card--compact {
    padding: 0;
  }
  .job-section {
    padding: 88px 0 96px;
  }
  .job-section__inner {
    width: calc(100vw - 48px);
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .job-section__content {
    max-width: none;
  }
  .job-section__heading {
    margin-bottom: 44px;
    font-size: 42px;
  }
  .job-section__role,
  .job-section__detail dt {
    font-size: 22px;
  }
  .job-section__summary,
  .job-section__detail dd {
    font-size: 18px;
  }
  .job-section__details {
    margin-top: 72px;
  }
  .job-section__detail + .job-section__detail {
    margin-top: 36px;
  }
  .job-section__visual {
    justify-self: center;
    max-width: 780px;
  }
  .stories-section {
    padding: 104px 0 112px;
  }
  .stories-section__inner {
    width: calc(100vw - 48px);
  }
  .stories-section__heading {
    margin-bottom: 32px;
    font-size: 42px;
  }
  .stories-carousel {
    --stories-gap: 18px;
    --stories-per-view: 2;
    padding-inline: 0;
  }
  .stories-carousel__arrow--prev {
    left: -28px;
  }
  .stories-carousel__arrow--next {
    right: -28px;
  }
  .gaps-section {
    padding: 96px 0 108px;
  }
  .gaps-section__inner {
    width: calc(100vw - 48px);
  }
  .gaps-section__heading {
    font-size: 42px;
  }
  .gap-card__title {
    font-size: 20px;
  }
  .videos-section {
    padding: 0 0 112px;
  }
  .videos-section__inner {
    width: calc(100vw - 48px);
  }
  .videos-section__heading {
    font-size: 42px;
  }
  .videos-section__lead {
    font-size: 16px;
  }
  .videos-carousel {
    --stories-gap: 22px;
  }
  .numbers-section {
    padding: 0 0 108px;
  }
  .numbers-section__inner {
    width: calc(100vw - 48px);
  }
  .numbers-section__heading {
    font-size: 42px;
  }
  .numbers-section__row {
    gap: 18px;
  }
  .career-section {
    padding: 0 0 116px;
  }
  .career-section__inner {
    width: calc(100vw - 48px);
  }
  .career-section__heading {
    font-size: 42px;
  }
  .career-section__lead {
    font-size: 16px;
  }
  .career-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }
  .career-step__shape {
    min-height: 208px;
  }
  .career-step__title {
    font-size: 26px;
  }
  .career-section__summary {
    font-size: 16px;
  }
  .message-section {
    padding: 0 0 116px;
  }
  .message-section__inner {
    width: calc(100vw - 48px);
    grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
    gap: 36px;
  }
  .message-section__heading {
    font-size: 42px;
  }
  .message-section__meta {
    margin-top: 22px;
    font-size: 22px;
  }
  .message-section__body {
    font-size: 16px;
  }
  .guideline-section {
    padding: 72px 0 108px;
  }
  .guideline-section__card {
    width: calc(100vw - 48px);
    padding: 64px 40px 60px;
  }
  .guideline-section__heading {
    font-size: 42px;
  }
  .guideline-section__eyebrow {
    font-size: 24px;
  }
  .guideline-row {
    grid-template-columns: 148px minmax(0, 1fr);
  }
  .faq-section {
    padding: 0 0 108px;
  }
  .faq-section__inner {
    width: calc(100vw - 48px);
  }
  .faq-section__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .faq-section__heading {
    font-size: 42px;
  }
  .faq-section__lead {
    margin: 0;
    font-size: 16px;
  }
  .faq-grid {
    gap: 20px;
  }
  .faq-card {
    padding: 28px 28px 32px;
  }
  .faq-card__question {
    font-size: 24px;
  }
  .faq-card__answer {
    font-size: 16px;
  }
  .entry-section {
    padding: 0 0 108px;
  }
  .entry-section__inner {
    width: min(972px, 100vw - 48px);
    grid-template-columns: minmax(0, 1fr) 180px;
    padding: 36px 24px 0 32px;
  }
  .entry-section__lead {
    font-size: 20px;
  }
  .entry-section__button {
    min-height: 78px;
    padding: 0 88px 0 32px;
    font-size: 28px;
  }
  .entry-section__button::after {
    right: 26px;
    font-size: 58px;
  }
  .site-footer {
    padding-bottom: 60px;
  }
  .site-footer__inner {
    width: calc(100vw - 48px);
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .site-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 28px;
  }
  .site-footer__link {
    font-size: 18px;
  }
  .site-footer__sublink {
    font-size: 15px !important;
  }
}
@media (max-width: 1024px) {
  .site-header {
    padding: 14px 18px 9px;
  }
  .site-header__inner {
    gap: 10px;
  }
  .site-brand {
    font-size: 18px;
  }
  .site-header__menu-toggle {
    width: 48px;
    height: 48px;
    gap: 6px;
  }
  .site-header__menu-toggle span {
    width: 30px;
    height: 3px;
  }
  .site-header__menu-toggle[aria-expanded=true] span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .site-header__menu-toggle[aria-expanded=true] span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  body.is-mobile-menu-open .mobile-menu {
    top: 76px;
  }
}
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  :root {
    --container: 90%;
  }
  .hero {
    min-height: 100svh;
    height: auto;
    max-height: none;
    padding-bottom: 56px;
  }
  .hero::before {
    background: linear-gradient(180deg, rgba(136, 167, 212, 0.9) 0%, rgba(136, 167, 212, 0.78) 52%, rgba(136, 167, 212, 0.72) 100%);
  }
  .hero::after {
    height: 58%;
  }
  .hero__bg {
    background-position: center bottom;
    background-size: cover;
    transform: none;
    opacity: 0.9;
  }
  .site-brand {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }
  .site-header {
    padding: 12px 16px 8px;
  }
  .site-header__inner {
    gap: 8px;
  }
  .site-header__menu-toggle {
    width: 44px;
    height: 44px;
    gap: 5px;
  }
  .site-header__menu-toggle span {
    width: 28px;
    height: 3px;
  }
  .site-header__menu-toggle[aria-expanded=true] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .site-header__menu-toggle[aria-expanded=true] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  body.is-mobile-menu-open .mobile-menu {
    top: 68px;
  }
  .hero__content {
    width: calc(100vw - 48px);
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .hero__title {
    width: 400px;
    max-width: 100%;
    font-size: 20px;
    line-height: 1.42;
    text-shadow: none;
  }
  .hero__lead {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.45;
  }
  .hero__subcopy {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.8;
  }
  .hero__cta {
    margin-top: 46px;
    width: min(100%, 278px);
    min-height: 82px;
    padding-inline: 28px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.02em;
    box-shadow: 0 18px 34px rgba(35, 74, 138, 0.22);
  }
  .intro-section {
    padding: 56px 0 72px;
  }
  .intro-section__inner {
    row-gap: 36px;
  }
  .intro-copy {
    max-width: none;
  }
  .intro-copy__title {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .intro-copy__list {
    margin: 16px 0 22px;
    padding-left: 24px;
  }
  .intro-block--design-visual {
    order: 4;
  }
  .intro-block--design-copy {
    order: 3;
  }
  .intro-copy__text,
  .intro-copy__list {
    font-size: 14px;
    line-height: 1.8;
  }
  .works-section {
    padding: 0px 0 68px;
  }
  .works-section__heading {
    margin-bottom: 32px;
    font-size: 20px;
  }
  .works-section__grid,
  .works-section__side {
    gap: 36px;
  }
  .works-card__title {
    font-size: 16px;
  }
  .works-card__desc {
    font-size: 14px;
    line-height: 1.7;
  }
  .works-card__number {
    font-size: 88px;
  }
  .works-card--03 .works-card__number {
    width: 40%;
  }
  .job-section {
    padding: 64px 0 72px;
  }
  .job-section__inner {
    width: calc(100vw - 24px);
    gap: 28px;
  }
  .job-section__heading {
    margin-bottom: 28px;
    font-size: 20px;
  }
  .job-section__role,
  .job-section__detail dt {
    font-size: 16px;
    line-height: 1.5;
  }
  .job-section__summary,
  .job-section__detail dd {
    font-size: 14px;
    line-height: 1.7;
  }
  .job-section__details {
    margin-top: 42px;
  }
  .job-section__detail + .job-section__detail {
    margin-top: 24px;
  }
  .stories-section {
    padding: 78px 0 88px;
    background-position: center;
  }
  .stories-section__inner {
    width: calc(100vw - 24px);
  }
  .stories-section__heading {
    margin-bottom: 24px;
    font-size: 20px;
    line-height: 1.3;
  }
  .stories-carousel {
    --stories-gap: 14px;
    --stories-per-view: 1;
    padding-inline: 0;
  }
  .stories-card {
    padding-bottom: 24px;
    border-radius: 20px;
  }
  .stories-card__media {
    border-radius: 20px;
  }
  .stories-card__content {
    padding: 18px 16px 0;
  }
  .stories-card__title {
    margin-bottom: 18px;
    font-size: 16px;
  }
  .stories-card__qa p + p,
  .stories-card__qa-item + .stories-card__qa-item {
    margin-top: 16px;
  }
  .stories-card__qa p,
  .stories-card__qa strong,
  .stories-card__qa dt {
    font-size: 14px;
  }
  .stories-card__qa dd {
    font-size: 14px;
  }
  .stories-carousel__arrow {
    width: 44px;
    height: 44px;
  }
  .stories-carousel__arrow--prev {
    left: -10px;
  }
  .stories-carousel__arrow--prev::before {
    border-width: 15px 22px 15px 0;
  }
  .stories-carousel__arrow--next {
    right: -10px;
  }
  .stories-carousel__arrow--next::before {
    border-width: 15px 0 15px 22px;
  }
  .stories-carousel__pagination {
    gap: 12px;
    margin-top: 24px;
  }
  .stories-carousel__pagination button {
    width: 10px;
    height: 10px;
  }
  .gaps-section {
    padding: 38px 0 0px;
  }
  .gaps-section__inner {
    width: 90%;
  }
  .gaps-section__heading {
    font-size: 20px;
  }
  .gaps-section__lead {
    font-size: 16px;
    line-height: 1.7;
  }
  .gaps-list {
    gap: 28px;
    margin-top: 28px;
    max-width: 100%;
  }
  .gap-card__question {
    min-height: 64px;
    padding: 34px 16px 34px 26px;
    border-radius: 14px 14px 0 0;
  }
  .gap-card__qmark {
    top: -60px;
    left: 50%;
    transform: translate(-50%, 0);
    padding-top: 15px;
  }
  .gap-card__title {
    font-size: 16px;
    line-height: 1.5;
    position: relative;
    z-index: 3;
  }
  .gap-card__answer {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 16px 18px;
    border-radius: 0 0 14px 14px;
  }
  .gap-card__icon {
    justify-content: flex-start;
    margin: 0 auto;
  }
  .gap-card__icon img {
    width: 64px;
  }
  .gap-card__body {
    font-size: 14px;
    line-height: 1.8;
  }
  .videos-section {
    padding: 0 0 88px;
  }
  .videos-section__inner {
    width: 90%;
  }
  .videos-section__heading {
    font-size: 20px;
  }
  .videos-section__lead {
    font-size: 16px;
    line-height: 1.8;
  }
  .videos-carousel {
    --stories-gap: 14px;
    margin-top: 28px;
  }
  .videos-carousel__controls {
    gap: 16px;
    margin-top: 24px;
  }
  .videos-carousel .stories-carousel__arrow {
    width: 18px;
    height: 18px;
  }
  .videos-carousel .stories-carousel__arrow::after {
    font-size: 30px;
  }
  .videos-carousel .stories-carousel__pagination {
    gap: 14px;
  }
  .videos-carousel .stories-carousel__pagination button {
    width: 10px;
    height: 10px;
  }
  .numbers-section {
    padding: 0 0 88px;
  }
  .numbers-section__inner {
    width: 90%;
  }
  .numbers-section__heading {
    margin-bottom: 22px;
    font-size: 20px;
  }
  .numbers-section__row,
  .numbers-section__row--top,
  .numbers-section__row--bottom {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .numbers-section__row + .numbers-section__row {
    margin-top: 14px;
  }
  .career-section {
    padding: 0 0 92px;
  }
  .career-section__inner {
    width: 90%;
  }
  .career-section__heading {
    font-size: 20px;
  }
  .career-section__lead {
    font-size: 16px;
    line-height: 1.8;
  }
  .career-flow {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 28px;
  }
  .career-step__shape {
    min-height: 180px;
    padding: 24px 20px 44px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 32px), 50% 100%, 0 calc(100% - 32px));
  }
  .career-step__title {
    font-size: 28px;
  }
  .career-step__body {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.75;
  }
  .career-step__note {
    font-size: 14px;
  }
  .career-section__summary {
    margin-top: 28px;
    font-size: 14px;
    line-height: 1.9;
    text-align: left;
  }
  .message-section {
    padding: 0 0 96px;
  }
  .message-section__inner {
    width: calc(100vw - 24px);
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .message-section__heading {
    font-size: 20px;
  }
  .message-section__meta {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.6;
  }
  .message-section__body {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.8;
  }
  .message-section__body p + p {
    margin-top: 20px;
  }
  .message-section__visual {
    order: 2;
    justify-content: center;
  }
  .message-section__visual img {
    width: min(78vw, 360px);
  }
  .guideline-section {
    padding: 56px 0 88px;
  }
  .guideline-section__card {
    width: calc(100vw - 24px);
    padding: 48px 18px 44px;
    border-radius: 28px;
  }
  .guideline-section__heading {
    font-size: 20px;
  }
  .guideline-section__eyebrow {
    font-size: 16px;
  }
  .guideline-section__lead {
    margin-top: 28px;
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
  }
  .guideline-table {
    margin-top: 32px;
  }
  .guideline-row {
    grid-template-columns: 1fr;
  }
  .guideline-row__label,
  .guideline-row__value {
    padding: 14px 8px;
  }
  .guideline-row__label {
    padding-bottom: 4px;
    font-size: 14px;
    border-bottom: 0;
  }
  .guideline-row__value {
    padding-top: 0;
    font-size: 14px;
    line-height: 1.75;
    position: relative;
  }
  .guideline-row__value th {
    vertical-align: top;
    min-width: 58px;
  }
  .guideline-row__value::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 176px;
    border-bottom: 2px solid #8fd2f3;
  }
  .faq-section {
    padding: 0 0 88px;
  }
  .faq-section__inner {
    width: calc(100vw - 24px);
  }
  .faq-section__header {
    gap: 10px;
    margin-bottom: 24px;
  }
  .faq-section__heading {
    font-size: 20px;
  }
  .faq-section__lead {
    font-size: 16px;
    line-height: 1.8;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .faq-card {
    padding: 24px 20px 26px;
  }
  .faq-card__question {
    padding-bottom: 14px;
    border-bottom-width: 3px;
    font-size: 16px;
    line-height: 1.5;
  }
  .faq-card__answer {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.75;
  }
  .entry-section {
    padding: 0 0 88px;
  }
  .entry-section__inner {
    width: calc(100vw - 24px);
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 18px 0;
    border-radius: 22px;
  }
  .entry-section__content {
    padding-bottom: 12px;
  }
  .entry-section__lead {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 20px;
  }
  .entry-section__button {
    min-height: 64px;
    margin-top: 18px;
    padding: 0 64px 0 22px;
    font-size: 18px;
  }
  .entry-section__button::after {
    right: 18px;
    top: 12%;
    font-size: 40px;
  }
  .entry-section__visual img {
    width: min(48vw, 130px);
    margin: 0 auto;
  }
  .site-footer {
    padding-bottom: 44px;
  }
  .site-footer__inner {
    width: calc(100vw - 24px);
    padding-top: 36px;
    gap: 28px;
  }
  .site-footer__brand {
    font-size: 24px;
    text-align: center;
  }
  .site-footer__nav {
    display: none;
  }
}/*# sourceMappingURL=recruit.css.map */
