@charset "UTF-8";
.js-fade-in {
  opacity: 0;
  animation-duration: 400ms;
  animation-fill-mode: both;
  animation-iteration-count: 1;
}
.js-fade-in.is-effect-active {
  animation-name: fadeIn;
}

.js-swipe-in {
  animation-duration: 400ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
  opacity: 0;
}
@media all and (min-width: 768px) {
  .js-swipe-in {
    clip-path: inset(0 100% 0 0);
  }
  .js-swipe-in.is-effect-active {
    animation-name: swipe-in;
  }
}
@media not all and (min-width: 768px) {
  .js-swipe-in.is-effect-active {
    animation-name: fadeIn;
  }
}

.top-container {
  position: relative;
  z-index: 8;
  color: #fff;
}

.top-background {
  background-color: #444;
  padding-top: 17.9487179487vw;
  background-image: url("/career_second/assets/images/top/bg_top_sp.jpg"), url("/career_second/assets/images/top/bg_bottom_sp.jpg");
}
@media not all and (min-width: 768px) {
  .top-background {
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: right top, right bottom;
  }
}
@media all and (min-width: 768px) {
  .top-background {
    padding-top: 11.8055555556vw;
    background-image: url("/career_second/assets/images/top/bg_top.jpg"), url("/career_second/assets/images/top/bg_bottom.jpg");
  }
}
@media all and (min-width: 1440px) {
  .top-background {
    padding-top: 170px;
  }
}

.top-mv {
  position: fixed;
  z-index: 2;
  background-color: #d5d5d5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.top-mv__image {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.top-mv__inner {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  max-height: 100dvh;
  opacity: 0;
  transition-duration: 400ms;
  transition-property: opacity;
}
.top-mv.is-active .top-mv__inner {
  opacity: 1;
}
.top-mv__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.3) 0, rgba(0, 0, 0, 0.3) 49%, transparent 50%);
  background-position: center;
  background-size: 89.7435897436vw 58.9743589744vw;
  filter: blur(12.8205128205vw);
}
@media all and (min-width: 768px) {
  .top-mv__inner::before {
    background-size: 60.4166666667vw 15.9722222222vw;
    filter: blur(3.4722222222vw);
  }
}
.top-mv__text {
  position: relative;
  opacity: 0;
  animation-duration: 1600ms;
}
.top-mv__star {
  position: absolute;
  opacity: 0;
  width: 41.0256410256vw;
  height: 24.6153846154vw;
  right: -2.0512820513vw;
  top: 24.6153846154vw;
  animation-name: fadeInOut;
  animation-timing-function: linear;
  animation-duration: 4800ms;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  mix-blend-mode: screen;
}
@media all and (min-width: 768px) {
  .top-mv__star {
    right: 11.1111111111vw;
    top: 25vw;
    width: 11.1111111111vw;
    height: 6.6666666667vw;
  }
}
.top-mv__star::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: image-set(url("/career_second/assets/images/top/mv_star.png") 1x, url("/career_second/assets/images/top/mv_star@2x.png") 2x);
  background-size: 100% auto;
  animation-name: mvStar;
  animation-duration: 960ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}
.top-mv__scroll {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-family: var(--font-en);
  font-size: 3.0769230769vw;
}
@media all and (min-width: 768px) {
  .top-mv__scroll {
    font-size: 0.8333333333vw;
  }
}
.top-mv__scroll::after {
  content: "";
  border-left: 1px solid #fff;
  height: 7.6923076923vw;
  margin-top: 2.5641025641vw;
  margin-bottom: 4.1025641026vw;
  animation-name: scrollGuide;
  animation-duration: 1600ms;
  animation-iteration-count: infinite;
}
@media all and (min-width: 768px) {
  .top-mv__scroll::after {
    height: 2.0833333333vw;
    border-left-width: 1px;
    margin-top: 1.1111111111vw;
    margin-bottom: 0.6944444444vw;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scrollGuide {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  50% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(100% 0 0 0);
  }
}
@keyframes mvStar {
  0% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  50% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  100% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  15% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes swipe-in {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.top-message {
  position: relative;
  z-index: 4;
  margin-top: 100vh;
  color: #fff;
}
@media not all and (min-width: 768px) {
  .top-message {
    background-image: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.8) 73.8461538462vw);
    background-repeat: no-repeat;
    padding-top: 73.8461538462vw;
    padding-right: 5.1282051282vw;
    padding-bottom: 41.0256410256vw;
    padding-left: 7.6923076923vw;
  }
}
@media all and (min-width: 768px) {
  .top-message {
    background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8) 10.4166666667vw);
    padding-top: 14.7222222222vw;
    padding-bottom: 15.2777777778vw;
  }
}
@media all and (min-width: 1440px) {
  .top-message {
    background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8) 150px);
    padding-top: 212px;
    padding-bottom: 220;
  }
}
.top-message__inner {
  position: relative;
  margin-right: auto;
  margin-left: auto;
}
@media all and (min-width: 768px) {
  .top-message__inner {
    max-width: 77.7777777778vw;
  }
}
@media all and (min-width: 1440px) {
  .top-message__inner {
    max-width: 1120px;
  }
}
.top-message__title {
  margin-bottom: 12.3076923077vw;
  font-feature-settings: "palt";
  font-size: 7.1794871795vw;
  font-weight: 400;
  line-height: 1.85;
}
@media not all and (min-width: 768px) {
  .top-message__title {
    white-space: nowrap;
  }
}
@media all and (min-width: 768px) {
  .top-message__title {
    margin-bottom: 5.5555555556vw;
    font-size: 3.3333333333vw;
    line-height: 1.625;
  }
}
@media all and (min-width: 1440px) {
  .top-message__title {
    margin-bottom: 80px;
    font-size: 48px;
  }
}
.top-message__paragraph {
  font-size: 4.1025641026vw;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media all and (min-width: 768px) {
  .top-message__paragraph {
    font-size: 1.3888888889vw;
    line-height: 2.3;
  }
}
@media all and (min-width: 1440px) {
  .top-message__paragraph {
    font-size: 20px;
  }
}
.top-message__paragraph:not(:last-child) {
  margin-bottom: 1.6em;
}
@media all and (min-width: 768px) {
  .top-message__paragraph:not(:last-child) {
    margin-bottom: 1em;
  }
}
.top-message__star {
  position: absolute;
}
@media not all and (min-width: 768px) {
  .top-message__star {
    bottom: -36.9230769231vw;
    right: -5.1282051282vw;
    height: 68.7179487179vw;
    width: 42.0512820513vw;
  }
}
@media all and (min-width: 768px) {
  .top-message__star {
    right: 0;
    top: -3.75vw;
    width: 27.0833333333vw;
    height: 51.0416666667vw;
  }
}
@media all and (min-width: 1440px) {
  .top-message__star {
    top: -54px;
    width: 390px;
    height: 735px;
  }
}
.top-message__star::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  background-image: image-set(url("/career_second/assets/images/top/shooting_star_1.png") 1x, url("/career_second/assets/images/top/shooting_star_1@2x.png") 2x);
  background-size: 100% auto;
  animation-duration: 1800ms;
  animation-delay: 600ms;
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-play-state: stop;
}
.top-message__star::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: image-set(url("/career_second/assets/images/top/shooting_star_2.png") 1x, url("/career_second/assets/images/top/shooting_star_2@2x.png") 2x);
  background-size: 100% auto;
}
.top-message__star.is-effect-active::before {
  animation-name: shooting_star;
  animation-play-state: running;
}
@keyframes shooting_star {
  0% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

.top-anchor {
  margin-right: auto;
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media not all and (min-width: 768px) {
  .top-anchor {
    grid-column-gap: 2.5641025641vw;
    padding-left: 5.1282051282vw;
    padding-right: 5.1282051282vw;
    margin-bottom: 16.4102564103vw;
  }
}
@media all and (min-width: 768px) {
  .top-anchor {
    width: 58.3333333333vw;
    grid-column-gap: 2.0833333333vw;
    margin-bottom: 10vw;
  }
}
@media all and (min-width: 1440px) {
  .top-anchor {
    width: 840px;
    grid-column-gap: 30px;
    margin-bottom: 144px;
  }
}
.top-anchor__item {
  display: flex;
  align-items: center;
  background-color: #fff;
}
@media not all and (min-width: 768px) {
  .top-anchor__item {
    justify-content: center;
    flex-direction: column;
    height: 22.0512820513vw;
    border-radius: 1.0256410256vw;
    padding-top: 3.0769230769vw;
    padding-bottom: 3.0769230769vw;
  }
}
@media all and (min-width: 768px) {
  .top-anchor__item {
    justify-content: space-between;
    height: 4.8611111111vw;
    border-radius: 0.2777777778vw;
    padding-left: 1.6666666667vw;
    padding-right: 1.6666666667vw;
  }
}
@media all and (min-width: 1440px) {
  .top-anchor__item {
    height: 70px;
    border-radius: 4px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
.top-anchor__item-label {
  color: #000;
  font-size: 3.5897435897vw;
  letter-spacing: 0.09em;
}
@media not all and (min-width: 768px) {
  .top-anchor__item-label {
    margin-top: auto;
  }
}
@media all and (min-width: 768px) {
  .top-anchor__item-label {
    font-size: 1.1111111111vw;
  }
}
@media all and (min-width: 1440px) {
  .top-anchor__item-label {
    font-size: 16px;
  }
}
.top-anchor__item-arrow {
  width: 4.1025641026vw;
  height: 4.1025641026vw;
  --icon-color: rgb( var(--color-main) );
}
@media not all and (min-width: 768px) {
  .top-anchor__item-arrow {
    margin-top: auto;
  }
}
@media all and (min-width: 768px) {
  .top-anchor__item-arrow {
    width: 1.1111111111vw;
    height: 1.1111111111vw;
  }
}
@media all and (min-width: 1440px) {
  .top-anchor__item-arrow {
    width: 16px;
    height: 16px;
  }
}

.top-department {
  margin-right: auto;
  margin-left: auto;
}
@media not all and (min-width: 768px) {
  .top-department {
    margin-bottom: 24.6153846154vw;
    padding-left: 5.1282051282vw;
    padding-right: 5.1282051282vw;
    overflow: hidden;
  }
}
@media all and (min-width: 768px) {
  .top-department {
    margin-bottom: 11.1111111111vw;
    max-width: 88.8888888889vw;
    padding-left: 2.7777777778vw;
    padding-right: 2.7777777778vw;
  }
}
@media all and (min-width: 1440px) {
  .top-department {
    margin-bottom: 160px;
    max-width: 1280px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
.top-department__header {
  margin-bottom: 10.2564102564vw;
}
@media all and (min-width: 768px) {
  .top-department__header {
    margin-bottom: 4.4444444444vw;
  }
}
@media all and (min-width: 1440px) {
  .top-department__header {
    margin-bottom: 64px;
  }
}
.top-department__header-en {
  font-family: var(--font-en);
  font-weight: 400;
}
@media not all and (min-width: 768px) {
  .top-department__header-en {
    font-size: 7.9487179487vw;
    letter-spacing: 0;
    white-space: nowrap;
    margin-bottom: 2.0512820513vw;
  }
}
@media all and (min-width: 768px) {
  .top-department__header-en {
    margin-bottom: 1.1111111111vw;
    font-size: 4.4444444444vw;
    letter-spacing: 0.06em;
  }
}
@media all and (min-width: 1440px) {
  .top-department__header-en {
    margin-bottom: 16px;
    font-size: 64px;
  }
}
.top-department__header-em {
  display: block;
  font-style: normal;
  font-size: 12.3076923077vw;
}
@media all and (min-width: 768px) {
  .top-department__header-em {
    display: inline;
    font-size: inherit;
  }
}
.top-department__header-jp {
  line-height: 1;
  font-size: 4.6153846154vw;
}
@media all and (min-width: 768px) {
  .top-department__header-jp {
    font-size: 1.3888888889vw;
  }
}
@media all and (min-width: 1440px) {
  .top-department__header-jp {
    font-size: 20px;
  }
}
@media not all and (min-width: 768px) {
  .top-department__video {
    display: flex;
    flex-direction: column;
    margin-bottom: 12.3076923077vw;
  }
}
@media all and (min-width: 768px) {
  .top-department__video {
    display: grid;
    align-items: center;
    grid-template-columns: auto auto;
    grid-column-gap: 4.1666666667vw;
    justify-content: space-between;
    margin-bottom: 6.6666666667vw;
  }
}
@media all and (min-width: 1440px) {
  .top-department__video {
    grid-column-gap: 60px;
    margin-bottom: 96px;
  }
}
@media (hover: hover) {
  .top-department__video-thumbnail:hover .top-department__video-image {
    filter: brightness(0.5);
  }
  .top-department__video-thumbnail:hover::after {
    transform: scale(1.04);
  }
}
.top-department__video-thumbnail {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4.1025641026vw;
  width: 100%;
  height: auto;
  overflow: hidden;
  aspect-ratio: 500/281;
  cursor: pointer;
}
@media all and (min-width: 768px) {
  .top-department__video-thumbnail {
    margin-bottom: 2.2222222222vw;
    width: 58.3333333333vw;
  }
}
@media all and (min-width: 1440px) {
  .top-department__video-thumbnail {
    margin-bottom: 32px;
    width: 840px;
  }
}
.top-department__video-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
}
@media (hover: hover) {
  .top-department__video-image {
    transition-property: filter, opacity;
    transition-duration: 320ms;
  }
}
.top-department__video-thumbnail::after {
  content: "";
  position: relative;
  border-radius: 50%;
  background-color: rgba(var(--color-main), 0.9);
  background-image: url("/career_second/assets/images/icon_play.svg");
  background-position: center;
  background-size: 5.641025641vw;
  width: 14.358974359vw;
  height: 14.358974359vw;
}
@media all and (min-width: 768px) {
  .top-department__video-thumbnail::after {
    width: 5vw;
    height: 5vw;
    background-size: auto auto;
  }
}
@media all and (min-width: 1440px) {
  .top-department__video-thumbnail::after {
    width: 72px;
    height: 72px;
  }
}
@media (hover: hover) {
  .top-department__video-thumbnail::after {
    transition-property: transform;
    transition-duration: 240ms;
  }
}
@media not all and (min-width: 768px) {
  .top-department__video-meta {
    order: 2;
  }
}
@media not all and (min-width: 768px) {
  .top-department__video-en {
    display: none;
  }
}
@media all and (min-width: 768px) {
  .top-department__video-en {
    font-family: var(--font-en);
    font-size: 1.1111111111vw;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
  }
}
@media all and (min-width: 1440px) {
  .top-department__video-en {
    font-size: 16px;
  }
}
.top-department__video-jp {
  font-size: 4.1025641026vw;
  font-weight: 400;
  text-align: center;
}
@media all and (min-width: 768px) {
  .top-department__video-jp {
    font-size: 2.0833333333vw;
    text-align: left;
  }
}
@media all and (min-width: 1440px) {
  .top-department__video-jp {
    font-size: 30px;
  }
}
@media all and (min-width: 768px) {
  .top-department__video-jp::after {
    content: "";
    display: block;
    margin-top: 1.6666666667vw;
    margin-bottom: 1.6666666667vw;
    width: 3.3333333333vw;
    border-bottom: 1px solid rgb(var(--color-main));
  }
}
@media all and (min-width: 1440px) {
  .top-department__video-jp::after {
    margin-top: 24px;
    margin-bottom: 24px;
    width: 48px;
  }
}
.top-department__video-catch {
  display: none;
}
@media all and (min-width: 768px) {
  .top-department__video-catch {
    display: block;
    margin-bottom: 1.6666666667vw;
    font-size: 1.6666666667vw;
    font-weight: 400;
    line-height: 1.6;
  }
}
@media all and (min-width: 1440px) {
  .top-department__video-catch {
    margin-bottom: 24px;
    font-size: 24px;
  }
}
.top-department__video-text {
  display: none;
}
@media all and (min-width: 768px) {
  .top-department__video-text {
    display: block;
    font-size: 1.1111111111vw;
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 2;
  }
}
@media all and (min-width: 1440px) {
  .top-department__video-text {
    font-size: 16px;
  }
}
.top-department__links {
  display: flex;
  justify-content: center;
}
@media all and (min-width: 768px) {
  .top-department__links {
    max-width: 77.7777777778vw;
    margin-right: auto;
    margin-left: auto;
    padding-left: 4.1666666667vw;
    padding-right: 4.1666666667vw;
  }
}
@media all and (min-width: 1440px) {
  .top-department__links {
    max-width: 1120px;
    padding-left: 60px;
    padding-right: 60px;
  }
}
.top-department__link {
  position: relative;
  border-bottom: 1px solid #afafaf;
}
@media (hover: hover) {
  .top-department__link:hover::after {
    width: 100%;
  }
  .top-department__link:hover .top-department__link-image {
    transform: scale(1.06);
  }
}
.top-department__link::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 0;
  pointer-events: none;
  border-bottom: 1px solid #fff;
  transition-property: width;
  transition-duration: 320ms;
}
@media all and (min-width: 768px) {
  .top-department__link::after {
    border-bottom: 1px solid #fff;
  }
}
.top-department__link-thumbnail {
  margin-bottom: 4.1025641026vw;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  .top-department__link-thumbnail {
    margin-bottom: 1.3888888889vw;
  }
}
@media all and (min-width: 1440px) {
  .top-department__link-thumbnail {
    margin-bottom: 20px;
  }
}
.top-department__link-image {
  width: 100%;
  height: auto;
  transition-property: transform;
  transition-duration: 400ms;
}
.top-department__link-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4.1025641026vw;
}
@media all and (min-width: 768px) {
  .top-department__link-name {
    margin-bottom: 1.3888888889vw;
  }
}
@media all and (min-width: 1440px) {
  .top-department__link-name {
    margin-bottom: 20px;
  }
}
.top-department__link-label {
  line-height: 1;
  font-size: 3.5897435897vw;
}
@media all and (min-width: 768px) {
  .top-department__link-label {
    font-size: 1.5277777778vw;
  }
}
@media all and (min-width: 1440px) {
  .top-department__link-label {
    font-size: 22px;
  }
}
.top-department__link-icon {
  width: 4.1025641026vw;
  height: 4.1025641026vw;
  --icon-color: #fff;
}
@media all and (min-width: 768px) {
  .top-department__link-icon {
    width: 1.1111111111vw;
    height: 1.1111111111vw;
  }
}
@media all and (min-width: 1440px) {
  .top-department__link-icon {
    width: 16px;
    height: 16px;
  }
}
@media all and (min-width: 768px) {
  .top-department__business {
    display: flex;
    gap: 4.1666666667vw;
  }
}
@media all and (min-width: 1440px) {
  .top-department__business {
    gap: 60px;
  }
}
.top-department__business-img {
  width: 100%;
}
@media all and (min-width: 768px) {
  .top-department__business-img {
    display: block;
    width: 39.5833333333vw;
  }
}
@media all and (min-width: 1440px) {
  .top-department__business-img {
    width: 570px;
  }
}
.top-department__business-img img {
  width: 100%;
  height: auto;
}
@media all and (min-width: 768px) {
  .top-department__business-img img {
    width: auto;
    height: 34.7222222222vw;
  }
}
@media all and (min-width: 1440px) {
  .top-department__business-img img {
    width: auto;
    height: 500px;
  }
}
.top-department__business-head {
  padding-top: 5.1282051282vw;
  margin-bottom: 3.5897435897vw;
}
@media all and (min-width: 768px) {
  .top-department__business-head {
    padding-top: 1.0416666667vw;
    margin-bottom: 1.9444444444vw;
  }
}
@media all and (min-width: 1440px) {
  .top-department__business-head {
    padding-top: 15px;
    margin-bottom: 28px;
  }
}
.top-department__business-label {
  font-size: 2.8205128205vw;
  margin-bottom: 0.5128205128vw;
  letter-spacing: 0.05em;
}
@media all and (min-width: 768px) {
  .top-department__business-label {
    font-size: 0.9722222222vw;
    margin-bottom: 0.5555555556vw;
  }
}
@media all and (min-width: 1440px) {
  .top-department__business-label {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.top-department__business-ttl {
  font-size: 5.1282051282vw;
  letter-spacing: 0.05em;
}
@media all and (min-width: 768px) {
  .top-department__business-ttl {
    font-size: 1.8055555556vw;
  }
}
@media all and (min-width: 1440px) {
  .top-department__business-ttl {
    font-size: 26px;
  }
}
.top-department__business-txt {
  font-size: 3.0769230769vw;
  letter-spacing: 0.03em;
  line-height: 1.95;
}
@media all and (min-width: 768px) {
  .top-department__business-txt {
    font-size: 1.1111111111vw;
  }
}
@media all and (min-width: 1440px) {
  .top-department__business-txt {
    font-size: 16px;
  }
}
.top-department__items {
  margin-top: 5.1282051282vw;
}
@media all and (min-width: 768px) {
  .top-department__items {
    margin-top: 2.7777777778vw;
  }
}
@media all and (min-width: 1440px) {
  .top-department__items {
    margin-top: 40px;
  }
}
.top-department__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media not all and (min-width: 768px) {
  .top-department__item {
    width: 100%;
    height: 11.5384615385vw;
    border-bottom: 1px solid #fff;
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
  .top-department__item.is-effect-active {
    animation-duration: 0s;
  }
}
@media all and (min-width: 768px) {
  .top-department__item {
    width: 12.5vw;
    height: 4.1666666667vw;
    padding-right: 0.5555555556vw;
    border-bottom: 1px solid #afafaf;
  }
}
@media all and (min-width: 1440px) {
  .top-department__item {
    width: 180px;
    height: 60px;
    padding-right: 8px;
  }
}
@media (hover: hover) {
  .top-department__item:hover::after {
    width: 100%;
  }
}
.top-department__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 0;
  border-bottom: 1px solid #fff;
  pointer-events: none;
  transition-property: width;
  transition-duration: 320ms;
}
.top-department__item-label {
  font-size: 3.5897435897vw;
}
@media all and (min-width: 768px) {
  .top-department__item-label {
    font-size: 1.5277777778vw;
  }
}
@media all and (min-width: 1440px) {
  .top-department__item-label {
    font-size: 22px;
  }
}
.top-department__item-label--line2 {
  line-height: 1.4;
  font-size: 3.0769230769vw;
}
@media all and (min-width: 768px) {
  .top-department__item-label--line2 {
    font-size: 0.9722222222vw;
  }
}
@media all and (min-width: 1440px) {
  .top-department__item-label--line2 {
    font-size: 14px;
  }
}
.top-department__item-icon {
  flex-shrink: 0;
  --icon-color: #fff;
  width: 4.1025641026vw;
  height: 4.1025641026vw;
}
@media all and (min-width: 768px) {
  .top-department__item-icon {
    width: 1.1111111111vw;
    height: 1.1111111111vw;
  }
}
@media all and (min-width: 1440px) {
  .top-department__item-icon {
    width: 16px;
    height: 16px;
  }
}

.top-interview {
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30.7692307692vw;
}
@media all and (min-width: 768px) {
  .top-interview {
    max-width: 88.8888888889vw;
    padding-left: 2.7777777778vw;
    padding-right: 2.7777777778vw;
    margin-bottom: 11.1111111111vw;
  }
}
@media all and (min-width: 1440px) {
  .top-interview {
    max-width: 1280px;
    padding-left: 40px;
    padding-right: 40px;
    margin-bottom: 160px;
  }
}
@media not all and (min-width: 768px) {
  .top-interview__header {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 8.2051282051vw;
  }
}
@media all and (min-width: 768px) {
  .top-interview__header {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    grid-column-gap: 0.8333333333vw;
    margin-bottom: 2.7777777778vw;
  }
}
@media all and (min-width: 1440px) {
  .top-interview__header {
    grid-column-gap: 12px;
    margin-bottom: 40px;
  }
}
@media not all and (min-width: 768px) {
  .top-interview__header-en {
    font-size: 10.7692307692vw;
  }
}
.top-interview__slider {
  margin-bottom: 10.2564102564vw;
}
@media all and (min-width: 768px) {
  .top-interview__slider {
    margin-bottom: 2.7777777778vw;
  }
}
@media all and (min-width: 1440px) {
  .top-interview__slider {
    margin-bottom: 40px;
  }
}
.top-interview__item {
  padding-bottom: 0.5128205128vw;
}
@media all and (min-width: 768px) {
  .top-interview__item {
    padding-bottom: 0.1388888889vw;
  }
}
@media all and (min-width: 1440px) {
  .top-interview__item {
    padding-bottom: 2px;
  }
}
.top-interview__item:hover .top-interview__item-image {
  transform: scale(1.06);
}
.top-interview__item-thumbnail {
  position: relative;
  overflow: hidden;
  margin-bottom: 4.1025641026vw;
}
@media all and (min-width: 768px) {
  .top-interview__item-thumbnail {
    margin-bottom: 1.1111111111vw;
  }
}
@media all and (min-width: 1440px) {
  .top-interview__item-thumbnail {
    margin-bottom: 16px;
  }
}
.top-interview__item-catch {
  position: absolute;
  bottom: 10.2564102564vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition-property: opacity;
  transition-duration: 400ms;
}
@media all and (min-width: 768px) {
  .top-interview__item-catch {
    bottom: 2.0833333333vw;
  }
}
@media all and (min-width: 1440px) {
  .top-interview__item-catch {
    bottom: 30px;
  }
}
.top-interview__item-bullet {
  position: relative;
  display: flex;
  align-items: center;
  height: 7.1794871795vw;
  padding-right: 0.4em;
  padding-bottom: 0.5128205128vw;
  padding-left: 0.4em;
  letter-spacing: 0;
  font-feature-settings: "palt";
  font-size: 5.641025641vw;
  font-style: italic;
  line-height: 1;
  background-color: rgb(var(--color-main));
  white-space: nowrap;
}
@media all and (min-width: 768px) {
  .top-interview__item-bullet {
    height: 2.5vw;
    padding-bottom: 0.1388888889vw;
    font-size: 1.3888888889vw;
  }
}
@media all and (min-width: 1440px) {
  .top-interview__item-bullet {
    height: 36px;
    padding-bottom: 2px;
    font-size: 20px;
  }
}
@media not all and (min-width: 768px) {
  .top-interview__item-bullet--small {
    font-size: 4.6153846154vw;
    letter-spacing: -0.04em;
  }
}
.top-interview__item-bullet:not(:last-child) {
  margin-bottom: 1.0256410256vw;
}
@media all and (min-width: 768px) {
  .top-interview__item-bullet:not(:last-child) {
    margin-bottom: 0.2777777778vw;
  }
}
@media all and (min-width: 1440px) {
  .top-interview__item-bullet:not(:last-child) {
    margin-bottom: 4px;
  }
}
.top-interview__item-bullet::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom right, rgba(var(--color-main)) 50%, transparent calc(50% + 1px));
  width: 1.5384615385vw;
}
@media all and (min-width: 768px) {
  .top-interview__item-bullet::after {
    width: 0.4166666667vw;
  }
}
@media all and (min-width: 1440px) {
  .top-interview__item-bullet::after {
    width: 6px;
  }
}
.top-interview__item-image {
  height: auto;
  width: 100%;
  transition-duration: 400ms;
  transition-property: width, height, transform;
}
.top-interview__item-name {
  display: flex;
  align-items: flex-end;
  padding-left: 0.5128205128vw;
  margin-bottom: 5.1282051282vw;
}
@media not all and (min-width: 768px) {
  .top-interview__item-name {
    white-space: nowrap;
  }
}
@media all and (min-width: 768px) {
  .top-interview__item-name {
    margin-bottom: 1.1111111111vw;
    padding-left: 0.1388888889vw;
  }
}
@media all and (min-width: 1440px) {
  .top-interview__item-name {
    margin-bottom: 16px;
    padding-left: 2px;
  }
}
.top-interview__item-jp {
  font-size: 5.641025641vw;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media all and (min-width: 768px) {
  .top-interview__item-jp {
    font-size: 1.5277777778vw;
  }
}
@media all and (min-width: 1440px) {
  .top-interview__item-jp {
    font-size: 22px;
  }
}
.top-interview__item-separate {
  width: 0;
  height: 6.6666666667vw;
  margin-left: 2.0512820513vw;
  margin-right: 5.1282051282vw;
  border-left: 1px solid rgb(var(--color-main));
  text-indent: 100%;
  overflow: hidden;
  transform: rotate(38deg);
  transform-origin: center bottom;
}
@media all and (min-width: 768px) {
  .top-interview__item-separate {
    height: 1.6666666667vw;
    margin-left: 0.5555555556vw;
    margin-right: 1.3888888889vw;
    border-left-width: 1px;
  }
}
@media all and (min-width: 1440px) {
  .top-interview__item-separate {
    height: 24px;
    margin-left: 8px;
    margin-right: 20px;
  }
}
.top-interview__item-en {
  color: #c8c8c8;
  font-size: 3.0769230769vw;
  letter-spacing: 0.04em;
}
@media all and (min-width: 768px) {
  .top-interview__item-en {
    font-size: 0.6944444444vw;
  }
}
@media all and (min-width: 1440px) {
  .top-interview__item-en {
    font-size: 10px;
  }
}
.top-interview__item-labels {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0.5128205128vw;
}
@media all and (min-width: 768px) {
  .top-interview__item-labels {
    padding-left: 0.1388888889vw;
  }
}
@media all and (min-width: 1440px) {
  .top-interview__item-labels {
    padding-left: 2px;
  }
}
.top-interview__item-label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.641025641vw;
  margin-right: 2.5641025641vw;
  padding-left: 0.5em;
  padding-right: 0.5em;
  border: 1px solid #d5d5d5;
  color: #d5d5d5;
  font-family: var(--font-sans);
  font-size: 3.0769230769vw;
  font-weight: 300;
  line-height: 1;
  text-align: center;
}
@media all and (min-width: 768px) {
  .top-interview__item-label {
    height: 1.5277777778vw;
    margin-right: 0.6944444444vw;
    font-size: 0.8333333333vw;
  }
}
@media all and (min-width: 1440px) {
  .top-interview__item-label {
    height: 22px;
    margin-right: 10px;
    font-size: 12px;
  }
}
.top-interview__nav {
  display: flex;
  align-items: center;
  margin-bottom: 8.2051282051vw;
}
@media not all and (min-width: 768px) {
  .top-interview__nav {
    padding-right: 5.1282051282vw;
    padding-left: 5.1282051282vw;
  }
}
@media all and (min-width: 768px) {
  .top-interview__nav {
    margin-bottom: 3.3333333333vw;
    display: none;
  }
}
@media all and (min-width: 1440px) {
  .top-interview__nav {
    margin-bottom: 48px;
  }
}
.top-interview__nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.8888888889vw;
  height: 3.8888888889vw;
  border: 1px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1.1111111111vw;
  flex-shrink: 0;
}
@media not all and (min-width: 768px) {
  .top-interview__nav-button {
    display: none;
  }
}
@media all and (min-width: 1440px) {
  .top-interview__nav-button {
    width: 56px;
    height: 56px;
  }
}
.top-interview__nav-button:active {
  transform: translateY(1px);
  background-color: rgba(255, 255, 255, 0.2);
}
.top-interview__nav-icon {
  width: 2.5vw;
  height: 2.5vw;
  --icon-color: #fff;
}
@media all and (min-width: 1440px) {
  .top-interview__nav-icon {
    width: 36px;
    height: 36px;
  }
}
.top-interview__nav-indicator {
  --progress: 0;
  position: relative;
  display: flex;
  width: 100%;
}
@media all and (min-width: 768px) {
  .top-interview__nav-indicator {
    margin-left: 2.7777777778vw;
  }
}
@media all and (min-width: 1440px) {
  .top-interview__nav-indicator {
    margin-left: 40px;
  }
}
.top-interview__nav-indicator::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--progress);
  height: 100%;
  background-color: rgb(var(--color-main));
  transition-property: width;
  transition-duration: 320ms;
}
.top-interview__nav-segment {
  background-color: #afafaf;
  height: 0.5128205128vw;
  flex-grow: 1;
  text-indent: 100%;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  .top-interview__nav-segment {
    height: 0.1388888889vw;
  }
}
@media all and (min-width: 1440px) {
  .top-interview__nav-segment {
    height: 2px;
  }
}
.top-interview__caution {
  display: flex;
  font-size: 3.5897435897vw;
  font-family: var(--font-sans);
  font-weight: 300;
}
@media not all and (min-width: 768px) {
  .top-interview__caution {
    padding-right: 5.1282051282vw;
    padding-left: 5.1282051282vw;
    line-height: 1.85;
  }
}
@media all and (min-width: 768px) {
  .top-interview__caution {
    font-size: 0.9722222222vw;
  }
}
@media all and (min-width: 1440px) {
  .top-interview__caution {
    font-size: 14px;
  }
}
.top-interview__caution::before {
  content: "※";
}

.top-environment {
  margin-right: auto;
  margin-left: auto;
}
@media not all and (min-width: 768px) {
  .top-environment {
    padding-left: 5.1282051282vw;
    padding-right: 5.1282051282vw;
    margin-bottom: 24.6153846154vw;
  }
}
@media all and (min-width: 768px) {
  .top-environment {
    margin-bottom: 9.7222222222vw;
    max-width: 88.8888888889vw;
    padding-left: 2.7777777778vw;
    padding-right: 2.7777777778vw;
  }
}
@media all and (min-width: 1440px) {
  .top-environment {
    margin-bottom: 140px;
    max-width: 1280px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
.top-environment__header {
  margin-bottom: 10.2564102564vw;
}
@media all and (min-width: 768px) {
  .top-environment__header {
    margin-bottom: 2.7777777778vw;
  }
}
@media all and (min-width: 1440px) {
  .top-environment__header {
    margin-bottom: 40px;
  }
}
@media not all and (min-width: 768px) {
  .top-environment__header-en {
    margin-bottom: 4.1025641026vw;
    letter-spacing: 0;
    font-size: 12.3076923077vw;
  }
}
@media all and (min-width: 768px) {
  .top-environment__header-en {
    margin-bottom: 1.3888888889vw;
  }
}
@media all and (min-width: 1440px) {
  .top-environment__header-en {
    margin-bottom: 20px;
  }
}
.top-environment__image {
  display: none;
}
@media all and (min-width: 768px) {
  .top-environment__image {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 5.5555555556vw;
  }
}
@media all and (min-width: 1440px) {
  .top-environment__image {
    margin-bottom: 80px;
  }
}
.top-environment__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 4.6153846154vw;
  grid-row-gap: 10.2564102564vw;
  margin-bottom: 8.2051282051vw;
}
@media all and (min-width: 768px) {
  .top-environment__list {
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 2.7777777778vw;
    margin-bottom: 4.8611111111vw;
  }
}
@media all and (min-width: 1440px) {
  .top-environment__list {
    grid-column-gap: 40px;
    margin-bottom: 70px;
  }
}
.top-environment__item {
  position: relative;
  padding-bottom: 6.1538461538vw;
  border-bottom: 1px solid #afafaf;
}
@media all and (min-width: 768px) {
  .top-environment__item {
    padding-bottom: 1.1111111111vw;
    border-bottom: 1px solid #afafaf;
  }
}
@media all and (min-width: 1440px) {
  .top-environment__item {
    padding-bottom: 16px;
  }
}
@media (hover: hover) {
  .top-environment__item:hover::after {
    width: 100%;
  }
}
.top-environment__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 0;
  pointer-events: none;
  border-bottom: 1px solid #fff;
  transition-property: width;
  transition-duration: 320ms;
}
@media all and (min-width: 768px) {
  .top-environment__item::after {
    border-bottom: 1px solid #fff;
  }
}
.top-environment__item-thumbnail {
  margin-bottom: 6.1538461538vw;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  .top-environment__item-thumbnail {
    margin-bottom: 1.1111111111vw;
  }
}
@media all and (min-width: 1440px) {
  .top-environment__item-thumbnail {
    margin-bottom: 16px;
  }
}
.top-environment__item-image {
  display: block;
  width: 100%;
  transition-property: transform;
  transition-duration: 400ms;
}
@media (hover: hover) {
  .top-environment__item:hover .top-environment__item-image {
    transform: scale(1.04);
  }
}
.top-environment__item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  --icon-color: #fff;
}
.top-environment__item-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top-environment__item-label {
  font-size: 3.5897435897vw;
}
@media all and (min-width: 768px) {
  .top-environment__item-label {
    font-size: 1.25vw;
  }
}
@media all and (min-width: 1440px) {
  .top-environment__item-label {
    font-size: 18px;
  }
}
.top-environment__item-icon {
  width: 4.1025641026vw;
  height: 4.1025641026vw;
}
@media all and (min-width: 768px) {
  .top-environment__item-icon {
    width: 1.1111111111vw;
    height: 1.1111111111vw;
  }
}
@media all and (min-width: 1440px) {
  .top-environment__item-icon {
    width: 16px;
    height: 16px;
  }
}
.top-environment__item.is-comingsoon {
  position: relative;
  pointer-events: none;
}
.top-environment__item.is-comingsoon a {
  pointer-events: none;
  cursor: default;
}
.top-environment__caution {
  display: flex;
  font-family: var(--font-sans);
  font-weight: 300;
}
@media not all and (min-width: 768px) {
  .top-environment__caution {
    font-size: 3.5897435897vw;
    line-height: 1.85;
  }
}
@media all and (min-width: 768px) {
  .top-environment__caution {
    font-size: 0.9722222222vw;
  }
}
@media all and (min-width: 1440px) {
  .top-environment__caution {
    font-size: 14px;
  }
}
.top-environment__caution::before {
  content: "※";
}

.top-about {
  padding-left: 5.1282051282vw;
  padding-right: 5.1282051282vw;
  margin-bottom: 32.8205128205vw;
}
@media all and (min-width: 768px) {
  .top-about {
    padding-left: 2.7777777778vw;
    padding-right: 2.7777777778vw;
    margin-bottom: 11.1111111111vw;
  }
}
@media all and (min-width: 1440px) {
  .top-about {
    padding-left: 40px;
    padding-right: 40px;
    margin-bottom: 160px;
  }
}
.top-about__inner {
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}
@media not all and (min-width: 768px) {
  .top-about__inner {
    transition-property: height;
    transition-duration: 400ms;
    height: var(--collapse-height);
    border-bottom: 1px solid #afafaf;
  }
  .top-about__inner.is-open {
    height: var(--open-height);
    border-bottom-color: transparent;
  }
}
@media all and (min-width: 768px) {
  .top-about__inner {
    max-width: 88.8888888889vw;
  }
}
@media all and (min-width: 1440px) {
  .top-about__inner {
    max-width: 1280px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
.top-about__header {
  align-items: center;
}
@media not all and (min-width: 768px) {
  .top-about__header {
    display: flex;
    align-items: center;
    border-top: 1px solid #afafaf;
    border-bottom: 1px solid #afafaf;
    padding-top: 4.1025641026vw;
    padding-bottom: 4.1025641026vw;
  }
}
@media all and (min-width: 768px) {
  .top-about__header {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-column-gap: 2.7777777778vw;
    margin-bottom: 2.2222222222vw;
  }
}
@media all and (min-width: 1440px) {
  .top-about__header {
    grid-column-gap: 40px;
    margin-bottom: 30px;
  }
}
@media not all and (min-width: 768px) {
  .top-about__header-en {
    font-size: 10.7692307692vw;
  }
}
@media not all and (min-width: 768px) {
  .top-about__header-jp {
    margin-left: 1em;
    font-size: 4.1025641026vw;
  }
}
.top-about__header-plus {
  position: relative;
  margin-left: auto;
  margin-right: 4.1025641026vw;
  width: 4.6153846154vw;
  height: 0;
  border-bottom: 1px solid #fff;
}
@media all and (min-width: 768px) {
  .top-about__header-plus {
    display: none;
  }
}
.top-about__header-plus::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: inherit;
  width: 100%;
  transform: rotate(90deg);
  transition-property: transform;
  transition-duration: 400ms;
}
.top-about__inner.is-open .top-about__header-plus::after {
  transform: rotate(0);
}
.top-about__list {
  display: grid;
}
@media not all and (min-width: 768px) {
  .top-about__list {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 4.1025641026vw;
    margin-bottom: 16.4102564103vw;
  }
}
@media all and (min-width: 768px) {
  .top-about__list {
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 2.2222222222vw;
    grid-row-gap: 1.1111111111vw;
    margin-bottom: 5.5555555556vw;
  }
}
@media all and (min-width: 1440px) {
  .top-about__list {
    grid-column-gap: 32px;
    grid-row-gap: 16px;
    margin-bottom: 80px;
  }
}
.top-about__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media not all and (min-width: 768px) {
  .top-about__item {
    height: 17.9487179487vw;
    border-bottom: 1px solid #fff;
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
  .top-about__item.is-effect-active {
    animation-duration: 0s;
  }
}
@media all and (min-width: 768px) {
  .top-about__item {
    height: 5.5555555556vw;
    padding-right: 0.5555555556vw;
    border-bottom: 1px solid #afafaf;
  }
}
@media all and (min-width: 1440px) {
  .top-about__item {
    height: 80px;
    padding-right: 8px;
  }
}
@media (hover: hover) {
  .top-about__item:hover::after {
    width: 100%;
  }
}
@media not all and (min-width: 768px) {
  .top-about__item--dei {
    grid-column: 1/3;
  }
}
.top-about__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 0;
  border-bottom: 1px solid #fff;
  pointer-events: none;
  transition-property: width;
  transition-duration: 320ms;
}
.top-about__item-label {
  font-size: 3.5897435897vw;
}
@media all and (min-width: 768px) {
  .top-about__item-label {
    font-size: 1.1111111111vw;
  }
}
@media all and (min-width: 1440px) {
  .top-about__item-label {
    font-size: 16px;
  }
}
.top-about__item-label--line2 {
  line-height: 1.4;
  font-size: 3.0769230769vw;
}
@media all and (min-width: 768px) {
  .top-about__item-label--line2 {
    font-size: 0.9722222222vw;
  }
}
@media all and (min-width: 1440px) {
  .top-about__item-label--line2 {
    font-size: 14px;
  }
}
.top-about__item-icon {
  flex-shrink: 0;
  --icon-color: #fff;
  width: 4.1025641026vw;
  height: 4.1025641026vw;
}
@media all and (min-width: 768px) {
  .top-about__item-icon {
    width: 1.1111111111vw;
    height: 1.1111111111vw;
  }
}
@media all and (min-width: 1440px) {
  .top-about__item-icon {
    width: 16px;
    height: 16px;
  }
}
.top-about__caution {
  display: flex;
  font-family: var(--font-sans);
  font-weight: 300;
}
@media not all and (min-width: 768px) {
  .top-about__caution {
    font-size: 3.5897435897vw;
    line-height: 1.85;
  }
}
@media all and (min-width: 768px) {
  .top-about__caution {
    font-size: 0.9722222222vw;
  }
}
@media all and (min-width: 1440px) {
  .top-about__caution {
    font-size: 14px;
  }
}
.top-about__caution::before {
  content: "※";
}

.top-flow {
  margin-right: auto;
  margin-left: auto;
}
@media not all and (min-width: 768px) {
  .top-flow {
    padding-top: 24.6153846154vw;
    padding-left: 5.1282051282vw;
    padding-right: 5.1282051282vw;
    margin-bottom: 24.6153846154vw;
  }
}
@media all and (min-width: 768px) {
  .top-flow {
    margin-top: 11.1111111111vw;
    margin-bottom: 11.6666666667vw;
    max-width: 88.8888888889vw;
    padding-left: 2.7777777778vw;
    padding-right: 2.7777777778vw;
  }
}
@media all and (min-width: 1440px) {
  .top-flow {
    margin-top: 160px;
    margin-bottom: 168px;
    max-width: 1280px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
.top-flow__header {
  margin-bottom: 7.6923076923vw;
}
@media all and (min-width: 768px) {
  .top-flow__header {
    margin-bottom: 2.7777777778vw;
  }
}
@media all and (min-width: 1440px) {
  .top-flow__header {
    margin-bottom: 40px;
  }
}
@media not all and (min-width: 768px) {
  .top-flow__header-en {
    font-size: 10.7692307692vw;
    letter-spacing: 0;
  }
}
@media all and (min-width: 768px) {
  .top-flow__header-en {
    margin-bottom: 1.25vw;
  }
}
@media all and (min-width: 1440px) {
  .top-flow__header-en {
    margin-bottom: 18px;
  }
}
.top-flow__list {
  counter-reset: flow-step;
  display: grid;
  grid-template-columns: 100%;
}
@media not all and (min-width: 768px) {
  .top-flow__list {
    grid-row-gap: 12.8205128205vw;
    margin-bottom: 7.6923076923vw;
  }
}
@media all and (min-width: 768px) {
  .top-flow__list {
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 4.1666666667vw;
    margin-bottom: 3.3333333333vw;
  }
}
@media all and (min-width: 1440px) {
  .top-flow__list {
    grid-column-gap: 60px;
    margin-bottom: 48px;
  }
}
.top-flow__step {
  position: relative;
  background-color: #efefef;
  background-image: linear-gradient(to bottom right, transparent 50%, rgba(213, 213, 213, 0.2) 50%);
  counter-increment: flow-step;
  color: #222;
}
@media not all and (min-width: 768px) {
  .top-flow__step {
    display: grid;
    grid-template-columns: 26.1538461538vw auto;
    grid-column-gap: 5.1282051282vw;
    grid-template-rows: repeat(3, auto);
    padding: 8.2051282051vw 5.1282051282vw;
    border-top: 0.5128205128vw solid rgb(var(--color-main));
  }
}
@media all and (min-width: 768px) {
  .top-flow__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 3.0555555556vw;
    padding-bottom: 1.3888888889vw;
    min-height: 25.9722222222vw;
    border-top-width: 0.1388888889vw;
  }
}
@media all and (min-width: 1440px) {
  .top-flow__step {
    padding-top: 44px;
    padding-bottom: 20px;
    min-height: 374px;
    border-top-width: 2px;
  }
}
.top-flow__step:not(:last-child)::after {
  content: "";
  position: absolute;
  border-color: transparent;
  border-style: solid;
}
@media not all and (min-width: 768px) {
  .top-flow__step:not(:last-child)::after {
    top: calc(100% + 4.6153846154vw);
    left: 38.4615384615vw;
    border-top-color: #afafaf;
    border-top-width: 5.1282051282vw;
    border-right-width: 6.4102564103vw;
    border-bottom-width: 0;
    border-left-width: 6.4102564103vw;
  }
}
@media all and (min-width: 768px) {
  .top-flow__step:not(:last-child)::after {
    top: 11.8055555556vw;
    left: calc(100% + 1.5277777778vw);
    border-top-width: 1.1805555556vw;
    border-right-width: 0;
    border-bottom-width: 1.1805555556vw;
    border-left-width: 1.25vw;
    border-left-color: #afafaf;
  }
}
@media all and (min-width: 1440px) {
  .top-flow__step:not(:last-child)::after {
    top: 170px;
    left: calc(100% + 22px);
    border-top-width: 17px;
    border-right-width: 0;
    border-bottom-width: 17px;
    border-left-width: 18px;
  }
}
.top-flow__step-num {
  font-family: var(--font-en);
  color: rgb(var(--color-main));
  letter-spacing: 0.04em;
  line-height: 1;
  font-size: 5.641025641vw;
  margin-bottom: 3.0769230769vw;
}
@media not all and (min-width: 768px) {
  .top-flow__step-num {
    grid-column: 2/3;
  }
}
@media all and (min-width: 768px) {
  .top-flow__step-num {
    margin-bottom: 0.8333333333vw;
    font-size: 1.5277777778vw;
    text-align: center;
  }
}
@media all and (min-width: 1440px) {
  .top-flow__step-num {
    margin-bottom: 12px;
    font-size: 22px;
  }
}
.top-flow__step-num::after {
  content: counter(flow-step, decimal-leading-zero);
  font-family: var(--font-jp);
}
.top-flow__step-name {
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media not all and (min-width: 768px) {
  .top-flow__step-name {
    grid-column: 2/3;
    font-size: 5.641025641vw;
    margin-bottom: 4.1025641026vw;
  }
}
@media all and (min-width: 768px) {
  .top-flow__step-name {
    margin-bottom: 1.6666666667vw;
    font-size: 1.5277777778vw;
  }
}
@media all and (min-width: 1440px) {
  .top-flow__step-name {
    margin-bottom: 24px;
    font-size: 22px;
  }
}
@media not all and (min-width: 768px) {
  .top-flow__step-icon {
    grid-column: 1/2;
    grid-row: 1/5;
    align-self: center;
    width: 26.1538461538vw;
    height: 26.1538461538vw;
  }
}
@media all and (min-width: 768px) {
  .top-flow__step-icon {
    margin-bottom: 1.1111111111vw;
    width: 7.0833333333vw;
    height: 7.0833333333vw;
  }
}
@media all and (min-width: 1440px) {
  .top-flow__step-icon {
    margin-bottom: 16px;
    width: 102px;
    height: 102px;
  }
}
.top-flow__step-text {
  line-height: 1.86;
}
@media not all and (min-width: 768px) {
  .top-flow__step-text {
    grid-column: 2/3;
    font-size: 3.5897435897vw;
    line-height: 1.86;
  }
}
@media all and (min-width: 768px) {
  .top-flow__step-text {
    padding-right: 2.2222222222vw;
    padding-left: 2.2222222222vw;
    font-size: 1.0416666667vw;
  }
}
@media all and (min-width: 1440px) {
  .top-flow__step-text {
    padding-right: 32px;
    padding-left: 32px;
    font-size: 15px;
  }
}
.top-flow__step-annotation {
  margin-top: auto;
  font-family: var(--font-sans);
  font-weight: 400;
  color: #737373;
}
@media not all and (min-width: 768px) {
  .top-flow__step-annotation {
    margin-top: 1em;
    font-size: 3.3333333333vw;
  }
}
@media all and (min-width: 768px) {
  .top-flow__step-annotation {
    font-size: 0.9027777778vw;
  }
}
@media all and (min-width: 1440px) {
  .top-flow__step-annotation {
    font-size: 13px;
  }
}
.top-flow__caution {
  display: flex;
  font-family: var(--font-sans);
  font-weight: 300;
}
@media not all and (min-width: 768px) {
  .top-flow__caution {
    font-size: 3.5897435897vw;
  }
}
@media all and (min-width: 768px) {
  .top-flow__caution {
    font-size: 0.9722222222vw;
    justify-content: center;
  }
}
@media all and (min-width: 1440px) {
  .top-flow__caution {
    font-size: 14px;
  }
}
.top-flow__caution::before {
  content: "※";
}

.top-support {
  margin-right: auto;
  margin-left: auto;
  display: grid;
}
@media not all and (min-width: 768px) {
  .top-support {
    grid-template-columns: 100%;
    padding-left: 5.1282051282vw;
    padding-right: 5.1282051282vw;
    padding-bottom: 24.6153846154vw;
  }
}
@media all and (min-width: 768px) {
  .top-support {
    max-width: 88.8888888889vw;
    padding-left: 2.7777777778vw;
    padding-right: 2.7777777778vw;
    padding-bottom: 12.5vw;
    align-items: flex-end;
    grid-template-columns: auto 48.6111111111vw;
    grid-row-gap: 5.5555555556vw;
    column-gap: 5.5555555556vw;
  }
}
@media all and (min-width: 1440px) {
  .top-support {
    max-width: 1280px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 180px;
    grid-template-columns: auto 700px;
    grid-row-gap: 80px;
    column-gap: 80px;
  }
}
.top-support__header {
  margin-bottom: 8.2051282051vw;
}
@media all and (min-width: 768px) {
  .top-support__header {
    margin-bottom: 2.2222222222vw;
  }
}
@media all and (min-width: 1440px) {
  .top-support__header {
    margin-bottom: 32px;
  }
}
@media all and (min-width: 768px) {
  .top-support__header-en {
    margin-bottom: 1.3888888889vw;
  }
}
@media all and (min-width: 1440px) {
  .top-support__header-en {
    margin-bottom: 20px;
  }
}
.top-support__figure {
  display: block;
  height: auto;
}
@media not all and (min-width: 768px) {
  .top-support__figure {
    margin-right: auto;
    margin-left: auto;
    width: 84.6153846154vw;
    margin-bottom: 16.4102564103vw;
  }
}
@media all and (min-width: 768px) {
  .top-support__figure {
    width: auto;
    height: 27.0833333333vw;
  }
}
@media all and (min-width: 1440px) {
  .top-support__figure {
    height: 390px;
  }
}
@media not all and (min-width: 768px) {
  .top-support__column {
    margin-bottom: 8.2051282051vw;
  }
}
.top-support__catch {
  margin-bottom: 5.1282051282vw;
  font-size: 5.641025641vw;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media all and (min-width: 768px) {
  .top-support__catch {
    margin-bottom: 2.7777777778vw;
    font-size: 2.7777777778vw;
  }
}
@media all and (min-width: 1440px) {
  .top-support__catch {
    margin-bottom: 40px;
    font-size: 40px;
  }
}
.top-support__intro {
  font-size: 3.5897435897vw;
  line-height: 2;
}
@media all and (min-width: 768px) {
  .top-support__intro {
    font-size: 1.25vw;
  }
}
@media all and (min-width: 1440px) {
  .top-support__intro {
    font-size: 18px;
  }
}
.top-support__list {
  display: grid;
}
@media not all and (min-width: 768px) {
  .top-support__list {
    grid-template-columns: 100%;
    grid-row-gap: 15.3846153846vw;
  }
}
@media all and (min-width: 768px) {
  .top-support__list {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 5.5555555556vw;
    grid-column: 1/3;
  }
}
@media all and (min-width: 1440px) {
  .top-support__list {
    grid-column-gap: 80px;
  }
}
.top-support__item-image {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 5.641025641vw;
}
@media all and (min-width: 768px) {
  .top-support__item-image {
    margin-bottom: 1.6666666667vw;
  }
}
@media all and (min-width: 1440px) {
  .top-support__item-image {
    margin-bottom: 24px;
  }
}
.top-support__item-title {
  margin-bottom: 5.1282051282vw;
  font-size: 6.1538461538vw;
}
@media all and (min-width: 768px) {
  .top-support__item-title {
    margin-bottom: 1.1111111111vw;
    font-size: 1.8055555556vw;
  }
}
@media all and (min-width: 1440px) {
  .top-support__item-title {
    margin-bottom: 16px;
    font-size: 26px;
  }
}
.top-support__item-title::before {
  content: "■";
  margin-right: 0.2em;
  font-size: inherit;
}
.top-support__item-text {
  color: #efefef;
  line-height: 2.1;
  font-family: var(--font-sans);
  font-size: 3.5897435897vw;
  font-weight: 300;
}
@media all and (min-width: 768px) {
  .top-support__item-text {
    font-size: 1.1111111111vw;
  }
}
@media all and (min-width: 1440px) {
  .top-support__item-text {
    font-size: 16px;
  }
}

.top-recruitment {
  padding-top: 24.6153846154vw;
  padding-bottom: 32.8205128205vw;
  background-color: #efefef;
  color: #222;
}
@media all and (min-width: 768px) {
  .top-recruitment {
    padding: 11.1111111111vw 2.7777777778vw;
  }
}
@media all and (min-width: 1440px) {
  .top-recruitment {
    padding: 160px 0;
  }
}
.top-recruitment__inner {
  margin-right: auto;
  margin-left: auto;
}
@media all and (min-width: 768px) {
  .top-recruitment__inner {
    max-width: 88.8888888889vw;
  }
}
@media all and (min-width: 1440px) {
  .top-recruitment__inner {
    max-width: 1280px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
.top-recruitment__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media not all and (min-width: 768px) {
  .top-recruitment__header {
    margin-bottom: 11.2820512821vw;
  }
}
@media all and (min-width: 768px) {
  .top-recruitment__header {
    margin-bottom: 5.5555555556vw;
  }
}
@media all and (min-width: 1440px) {
  .top-recruitment__header {
    margin-bottom: 80px;
  }
}
@media not all and (min-width: 768px) {
  .top-recruitment__list {
    padding-right: 7.6923076923vw;
    padding-left: 7.6923076923vw;
  }
}
.top-recruitment__row {
  display: grid;
}
@media not all and (min-width: 768px) {
  .top-recruitment__row {
    grid-template-columns: 100%;
    grid-row-gap: 2.5641025641vw;
    border-bottom: 1px solid #c8c8c8;
    padding-bottom: 6.1538461538vw;
    margin-bottom: 6.1538461538vw;
  }
}
@media all and (min-width: 768px) {
  .top-recruitment__row {
    grid-template-columns: minmax(auto, 11.1111111111vw) 1fr;
    grid-column-gap: 11.1111111111vw;
    border-bottom: 1px solid #c8c8c8;
    margin-bottom: 2.2222222222vw;
    padding-bottom: 2.2222222222vw;
  }
}
@media all and (min-width: 1440px) {
  .top-recruitment__row {
    grid-template-columns: minmax(auto, 160px) 1fr;
    grid-column-gap: 160px;
    margin-bottom: 32px;
    padding-bottom: 32px;
  }
}
.top-recruitment__head {
  font-size: 5.1282051282vw;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media all and (min-width: 768px) {
  .top-recruitment__head {
    padding-left: 1.3888888889vw;
    font-size: 1.3888888889vw;
  }
}
@media all and (min-width: 1440px) {
  .top-recruitment__head {
    padding-left: 20px;
    font-size: 20px;
  }
}
.top-recruitment__text {
  font-family: var(--font-sans);
  font-size: 3.5897435897vw;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.85;
}
@media all and (min-width: 768px) {
  .top-recruitment__text {
    line-height: 1.75;
    font-size: 1.1111111111vw;
  }
}
@media all and (min-width: 1440px) {
  .top-recruitment__text {
    font-size: 16px;
  }
}
.top-recruitment__text:not(:last-child) {
  margin-bottom: 2em;
}
.top-recruitment__annotation {
  display: flex;
  color: #737373;
  margin-top: 4.1025641026vw;
  font-size: 3.0769230769vw;
  line-height: 1.6;
}
@media all and (min-width: 768px) {
  .top-recruitment__annotation {
    margin-top: 1em;
    font-size: 0.9722222222vw;
  }
}
@media all and (min-width: 1440px) {
  .top-recruitment__annotation {
    font-size: 14px;
  }
}
.top-recruitment__annotation::before {
  content: "※";
}
.top-recruitment__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #737373;
  margin-left: 8.2051282051vw;
  height: 10.2564102564vw;
  border-radius: 9.7435897436vw;
  padding-left: 6.1538461538vw;
  padding-right: 4.1025641026vw;
}
@media all and (min-width: 768px) {
  .top-recruitment__button {
    margin-left: 1.6666666667vw;
    padding-left: 1.6666666667vw;
    padding-right: 1.1111111111vw;
    width: fit-content;
    height: 2.7777777778vw;
    border-radius: 2.6388888889vw;
  }
}
@media all and (min-width: 1440px) {
  .top-recruitment__button {
    margin-left: 24px;
    padding-left: 24px;
    padding-right: 16px;
    height: 40px;
    border-radius: 38px;
  }
}
@media (hover: hover) {
  .top-recruitment__button {
    transition-property: opacity;
    transition-duration: 400ms;
  }
  .top-recruitment__button:hover {
    opacity: 0.8;
  }
}
.top-recruitment__button-label {
  margin-right: 1.5384615385vw;
  color: #fff;
  font-size: 3.5897435897vw;
}
@media all and (min-width: 768px) {
  .top-recruitment__button-label {
    margin-right: 0.4166666667vw;
    font-size: 0.9722222222vw;
  }
}
@media all and (min-width: 1440px) {
  .top-recruitment__button-label {
    margin-right: 6px;
    font-size: 14px;
  }
}
.top-recruitment__button-icon {
  width: 4.1025641026vw;
  height: 4.1025641026vw;
}
@media all and (min-width: 768px) {
  .top-recruitment__button-icon {
    width: 1.1111111111vw;
    height: 1.1111111111vw;
  }
}
@media all and (min-width: 1440px) {
  .top-recruitment__button-icon {
    width: 16px;
    height: 16px;
  }
}

.u-asterisk {
  font-style: normal;
  font-size: 0.6em;
  vertical-align: text-top;
}

.p-return {
  position: sticky;
  bottom: 0;
  z-index: 128;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.p-return__button {
  position: absolute;
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-en);
  display: flex;
  align-items: center;
  justify-content: center;
  right: 4.1025641026vw;
  bottom: 4.1025641026vw;
  width: 14.358974359vw;
  height: 14.358974359vw;
  font-size: 3.5897435897vw;
  background-color: #950000;
  text-align: center;
}
@media all and (min-width: 768px) {
  .p-return__button {
    background-color: #737373;
    right: 1.3888888889vw;
    bottom: 1.3888888889vw;
    width: 4.4444444444vw;
    height: 4.4444444444vw;
    font-size: 0.9722222222vw;
  }
}
@media all and (min-width: 1440px) {
  .p-return__button {
    right: 20px;
    bottom: 20px;
    width: 64px;
    height: 64px;
    font-size: 14px;
  }
}
@media (hover: hover) {
  .p-return__button {
    transition-property: background-color;
    transition-duration: 400ms;
  }
  .p-return__button:hover {
    background-color: #950000;
  }
}

/*# sourceMappingURL=top.css.map */
