/*
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Oswald', sans-serif;
font-family: 'Roboto', sans-serif;
*/
:root {
  --vw: 1vw;
}

@media screen and (min-width: 1025px) {
  .for-mb {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  .for-pc {
    display: none;
  }
}
@media screen and (min-width: 501px) and (max-width: 1024px) {
  .for-pc {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .for-pc {
    display: auto;
  }
}

.nowrap {
  display: inline-block;
  white-space: nowrap;
}

html, body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  color: #333;
}
html *, body * {
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
html *:focus, body *:focus {
  outline: none;
}

html {
  height: -webkit-fill-available;
}

body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
}
@media screen and (min-width: 501px) and (max-width: 1024px) {
  body {
    font-size: 15px;
  }
}
@media screen and (min-width: 1025px) {
  body {
    font-size: 15px;
  }
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: #000;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.en {
  font-family: "Oswald", sans-serif;
}

.num {
  font-family: "Roboto", sans-serif;
}

#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
}
@media screen and (min-width: 501px) and (max-width: 1024px) {
  #header {
    font-size: 15px;
  }
}
@media screen and (min-width: 1025px) {
  #header {
    width: 100%;
    font-size: 15px;
  }
}
#header .logo {
  position: relative;
  margin: 0 0 0 5.3333333333vw;
  line-height: 1;
  font-size: 1em;
  width: 42.6666666667vw;
}
@media screen and (min-width: 1025px) {
  #header .logo {
    width: auto;
    margin: 0 0 0 32px;
  }
}
#header .logo::before {
  content: "";
  position: absolute;
  z-index: 9;
  inset: 0;
  background-image: url(../images/header-logo-w.svg);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
}
#header #site-navigation .nav-button {
  width: 16vw;
  height: 16vw;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}
#header #site-navigation .nav-button:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right top, #00146e 0%, #2cbeff 100%);
  transition: opacity 0.4s;
}
#header #site-navigation .nav-button .bar {
  position: absolute;
  display: block;
  background: #fff;
  width: 30px;
  height: 2px;
  left: 0;
  right: 15px;
  margin: auto 0 auto auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: 15% 50%;
  z-index: 1;
}
#header #site-navigation .nav-button .bar.bar1 {
  top: 24px;
}
#header #site-navigation .nav-button .bar.bar2 {
  top: 34px;
}
#header #site-navigation #nav-content {
  position: fixed;
  top: 0;
  left: 0;
  transition: right 0.4s;
  background: linear-gradient(to right top, #00146e 0%, #2cbeff 100%);
  width: 100vw;
  height: 100vh;
  overflow: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
@media screen and (min-width: 1025px) {
  #header #site-navigation #nav-content {
    position: static;
    width: auto;
    height: 70px;
    background: none;
    flex-direction: row;
    justify-content: right;
    gap: 35px;
    padding-top: 0;
    opacity: 1;
    visibility: visible;
  }
}
#header #site-navigation #nav-content ul {
  list-style: none;
  margin: 0;
  padding: 26.6666666667vw 12.5333333333vw 0;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 1025px) {
  #header #site-navigation #nav-content ul {
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 0;
    margin-bottom: 0;
  }
}
#header #site-navigation #nav-content ul a {
  position: relative;
  display: block;
  padding: 5.3333333333vw 0;
  font-size: 4.2666666667vw;
  color: #fff;
  white-space: nowrap;
}
@media screen and (min-width: 1025px) {
  #header #site-navigation #nav-content ul a {
    padding: 0 0 5px 0;
    color: #000;
    font-size: 15px;
  }
}
#header #site-navigation #nav-content ul a:after {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  background-color: #0077DE;
  left: 0;
  bottom: 0;
  animation: 2s;
  transform: scale(0, 1);
  transition: transform 600ms cubic-bezier(0.19, 1, 0.22, 1);
  transform-origin: left top;
}
@media screen and (min-width: 1025px) {
  #header #site-navigation #nav-content ul a:hover:after {
    width: 100%;
    transform: scale(1, 1);
  }
}
#header #site-navigation #nav-content ul li:last-of-type a {
  border-bottom: none;
}
#header #site-navigation #nav-content .jobinfo {
  aspect-ratio: 280/80;
  width: 74.6666666667vw;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  letter-spacing: 0.03em;
  font-size: 9.0666666667vw;
}
@media screen and (min-width: 1025px) {
  #header #site-navigation #nav-content .jobinfo {
    aspect-ratio: 200/70;
    width: 200px;
    background: linear-gradient(to right top, #00146e 0%, #2cbeff 100%);
    font-size: 34px;
    line-height: 1;
    padding-bottom: 5px;
    color: #fff;
    transition: opacity 0.4s;
  }
  #header #site-navigation #nav-content .jobinfo:hover {
    opacity: 0.7;
  }
}
#header #site-navigation #nav-content .jobinfo .label {
  font-weight: 300;
}
@media screen and (max-width: 500px) {
  #header #site-navigation #nav-content .jobinfo .label {
    background: linear-gradient(to right top, #00146e 0%, #2cbeff 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
@media screen and (min-width: 1025px) {
  #header #site-navigation #nav-content .jobinfo .label {
    font-size: 34px;
    color: #fff;
  }
}
#header:has(.gnav.opened) .logo::before {
  opacity: 1;
}
#header:has(.gnav.opened) #site-navigation .nav-button {
  position: relative;
  z-index: 1;
}
#header:has(.gnav.opened) #site-navigation .nav-button:before {
  opacity: 0;
}
#header:has(.gnav.opened) #site-navigation .nav-button .bar1 {
  transform: rotate(28deg);
}
#header:has(.gnav.opened) #site-navigation .nav-button .bar2 {
  transform: rotate(-28deg);
}
#header:has(.gnav.opened) #site-navigation #nav-content {
  opacity: 1;
  visibility: visible;
}

#main .head .subject {
  font-size: 13.3333333333vw;
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
  margin-bottom: 1.0666666667vw;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  #main .head .subject {
    font-size: 76px;
    margin-bottom: 0;
  }
}
#main .head .subject:first-letter {
  background: linear-gradient(to right top, #00146e 0%, #2cbeff 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
#main .head .subtitle {
  font-size: 4vw;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 1;
  text-align: center;
  margin-bottom: 8vw;
}
@media screen and (min-width: 1025px) {
  #main .head .subtitle {
    font-size: 18px;
    margin-bottom: 29px;
  }
}

#mainvisual {
  position: sticky;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  background-image: url(../images/mv-bg.svg), url(../images/mv-bg2-mb.svg);
  background-position: left top, right top 100.8vw;
  background-size: 72.8vw auto, 93.8666666667vw auto;
  background-repeat: no-repeat;
  min-height: 100dvh;
}
@media screen and (min-width: 1025px) {
  #mainvisual {
    background-image: url(../images/mv-bg.svg), url(../images/mv-bg2.svg);
    background-position: left top, right top 22.22dvh;
    /*
            background-size: 
                minpx2vw(824, 1920) auto,
                minpx2vw(1548, 1920) auto;
    */
    background-size: min(42.9375vw, 687px) auto, min(80.625vw, 1290px) auto;
  }
}
#mainvisual::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 100.8vw;
  aspect-ratio: 352/200;
  width: 93.8666666667vw;
  right: 0;
  background-image: url(../images/mv-bg3-mb.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 1025px) {
  #mainvisual::before {
    aspect-ratio: 1548/798;
    background-image: url(../images/mv-bg3.svg);
    top: 22.22dvh;
    width: min(80.625vw, 1290px);
  }
}
#mainvisual .img {
  position: absolute;
  top: 77.3333333333vw;
  right: 0;
  left: 0;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 550/900;
  width: 58.6666666667vw;
}
@media screen and (min-width: 1025px) {
  #mainvisual .img {
    top: 9.25dvh;
    left: 55.36%;
    right: unset;
    margin: unset;
    height: min(83.33dvh, 900px);
    width: auto;
  }
}
@media screen and (min-width: 1025px) and (max-aspect-ratio: 40/27) {
  #mainvisual .img {
    width: 34.3079922027vw;
    height: auto;
  }
}
#mainvisual .img img {
  width: 58.6666666667vw;
  border-radius: 9999px;
}
@media screen and (min-width: 1025px) {
  #mainvisual .img img {
    width: auto;
  }
}
#mainvisual .txt {
  position: absolute;
  z-index: 2;
  top: 24vw;
  left: 12.8vw;
}
@media screen and (min-width: 1025px) {
  #mainvisual .txt {
    top: 25.92dvh;
    left: unset;
    right: 50.3%;
  }
}
#mainvisual .txt img {
  display: block;
}
#mainvisual .txt .catch-sub {
  width: 45.3333333333vw;
  margin-bottom: 5.3333333333vw;
  aspect-ratio: 320/60;
}
@media screen and (min-width: 1025px) {
  #mainvisual .txt .catch-sub {
    width: auto;
    height: min(5.55dvh, 60px);
    margin-bottom: min(4.62dvh, 50px);
  }
}
@media screen and (min-width: 1025px) and (max-aspect-ratio: 40/27) {
  #mainvisual .txt .catch-sub {
    width: 19.8048780488vw;
    height: auto;
  }
}
#mainvisual .txt .catch-main {
  width: 74.6666666667vw;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 1025px) {
  #mainvisual .txt .catch-main {
    aspect-ratio: 703/310;
    width: auto;
    height: min(28.7dvh, 310px);
    margin-bottom: min(4.62dvh, 50px);
  }
}
@media screen and (min-width: 1025px) and (max-aspect-ratio: 40/27) {
  #mainvisual .txt .catch-main {
    width: 43.8596491228vw;
    height: auto;
  }
}
#mainvisual .txt .catch-copy {
  width: 45.3333333333vw;
}
@media screen and (min-width: 1025px) {
  #mainvisual .txt .catch-copy {
    aspect-ratio: 320/41;
    width: auto;
    height: min(3.79dvh, 41px);
  }
}
@media screen and (min-width: 1025px) and (max-aspect-ratio: 40/27) {
  #mainvisual .txt .catch-copy {
    width: 19.8830409357vw;
    height: auto;
  }
}
#mainvisual .scroll {
  position: absolute;
  z-index: 0;
  left: calc(6vw - 5px);
  bottom: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #0077DE;
  font-size: 10px;
  font-family: "Oswald", sans-serif;
}
@media screen and (min-width: 1025px) {
  #mainvisual .scroll {
    left: 3%;
    bottom: 37px;
    font-size: 14px;
  }
}
#mainvisual .scroll .line {
  width: 1px;
  height: 87px;
  background-color: #0077DE;
  position: relative;
}
#mainvisual .scroll .line:after {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 3px;
  height: 100%;
  background-color: #0077DE;
  animation: scroll 3s cubic-bezier(0.7, 0, 0, 0.7) infinite;
}
#mainvisual .scroll .label {
  writing-mode: vertical-rl;
  line-height: 1;
}

@keyframes flip-in-ver-right {
  0% {
    transform: rotateY(-80deg);
    opacity: 0;
  }
  100% {
    transform: rotateY(0);
    opacity: 1;
  }
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
#contents {
  position: relative;
}

#message {
  position: relative;
  padding: 41.0666666667vw 12.8vw 37.3333333333vw;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media screen and (min-width: 1025px) {
  #message {
    padding-top: 160px;
    padding-bottom: 271px;
  }
}
@media screen and (min-width: 1025px) {
  #message .inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
#message .message__subject {
  font-size: 6.4vw;
  font-weight: 700;
  text-align: left;
  color: #0077DE;
  margin-bottom: 8vw;
}
@media screen and (min-width: 1025px) {
  #message .message__subject {
    font-size: 40px;
    margin-bottom: 70px;
  }
}
#message .message__body {
  display: block;
  width: 72vw;
  margin-bottom: 10.9333333333vw;
}
@media screen and (min-width: 1025px) {
  #message .message__body {
    width: 805px;
    margin-bottom: 82px;
  }
}
#message .message__foot {
  display: block;
  width: 56vw;
}
@media screen and (min-width: 1025px) {
  #message .message__foot {
    width: 858px;
  }
}

#work {
  background: #fff;
  padding-top: 26.6666666667vw;
  padding-bottom: 25.6vw;
}
@media screen and (min-width: 1025px) {
  #work {
    padding-top: 143px;
    padding-bottom: 166px;
  }
}
#work .head {
  margin-bottom: 17.0666666667vw;
}
@media screen and (min-width: 1025px) {
  #work .head {
    margin-bottom: 123px;
  }
}
#work .work__dept {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
#work .work__dept:not(:last-child) {
  margin-bottom: 15.4666666667vw;
}
@media screen and (min-width: 1025px) {
  #work .work__dept:not(:last-child) {
    margin-bottom: 117px;
  }
}
#work .dept__name {
  color: #0077DE;
  text-align: center;
  margin-bottom: 4.5333333333vw;
}
@media screen and (min-width: 1025px) {
  #work .dept__name {
    margin-bottom: 25px;
  }
}
#work .dept__name::after {
  content: "";
  display: block;
  aspect-ratio: 30/2;
  width: 8vw;
  margin-left: auto;
  margin-right: auto;
  background-color: #0077DE;
}
@media screen and (min-width: 1025px) {
  #work .dept__name::after {
    aspect-ratio: 30/3;
    width: 30px;
    height: auto;
  }
}
#work .dept__name .sub {
  font-size: 3.2vw;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 0.5333333333vw;
}
@media screen and (min-width: 1025px) {
  #work .dept__name .sub {
    font-size: 16px;
    margin-bottom: 0;
  }
}
#work .dept__name .main {
  font-size: 8vw;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 3.7333333333vw;
}
@media screen and (min-width: 1025px) {
  #work .dept__name .main {
    font-size: 50px;
    margin-bottom: 23px;
  }
}
#work .dept__lead {
  font-size: 4vw;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.66;
  text-align: center;
  margin-bottom: 6.9333333333vw;
}
@media screen and (min-width: 1025px) {
  #work .dept__lead {
    font-size: 22px;
    line-height: 1.63;
    margin-bottom: 34px;
  }
}
#work .dept__desc {
  border-top: 1px solid #CCE4F9;
  padding-top: 8vw;
  margin-left: 5.8666666667vw;
  margin-right: 5.8666666667vw;
  font-size: 3.4666666667vw;
  line-height: 1.76;
  margin-bottom: 10.1333333333vw;
}
@media screen and (min-width: 1025px) {
  #work .dept__desc {
    padding-top: 30px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 46px;
    -moz-columns: 2;
         columns: 2;
    -moz-column-gap: 72px;
         column-gap: 72px;
    -moz-column-fill: auto;
         column-fill: auto;
    height: 240px;
    font-size: 16px;
    line-height: 2.12;
  }
}
#work .dept__interview {
  background-color: #EDF5FD;
  background-image: url(../images/dept-interview-bg.svg), url(../images/dept-interview-bg2.svg);
  background-position: left 4.5333333333vw top -0.2666666667vw, right bottom;
  background-size: 59.7333333333vw auto, 66.6666666667vw auto;
  background-repeat: no-repeat;
  margin-left: 5.8666666667vw;
  margin-right: 5.8666666667vw;
  border-radius: 2.6666666667vw;
  padding: 10.6666666667vw 6.6666666667vw 12vw;
}
@media screen and (min-width: 1025px) {
  #work .dept__interview {
    margin: 0;
    border-radius: 20px;
    background-position: left 39px top -2px, right bottom;
    background-size: 445px auto, 414px auto;
    padding: 70px 80px 73px;
  }
}
#work .interview__summary {
  color: #0077DE;
  font-size: 4.2666666667vw;
  padding-bottom: 1.3333333333vw;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #0077DE;
  margin-bottom: 4.8vw;
}
@media screen and (min-width: 1025px) {
  #work .interview__summary {
    font-size: 22px;
    padding-bottom: 9px;
    border-bottom-width: 2px;
    margin-bottom: 27px;
  }
}
#work .interview__detail {
  font-size: 3.4666666667vw;
  font-weight: 500;
  line-height: 1.77;
}
@media screen and (min-width: 1025px) {
  #work .interview__detail {
    font-size: 16px;
    line-height: 2.12;
  }
}

#numbers {
  position: relative;
  color: #333;
  padding-top: 29.0666666667vw;
  padding-bottom: 21.3333333333vw;
  padding-left: 6.1333333333vw;
  padding-right: 6.1333333333vw;
  /*
      .numbers__bg {
          position: absolute;
          inset: 0;
          margin: auto;
          z-index: -1;
          background-image: 
              url(../images/numbers-bg.jpg);
          background-blend-mode: 
              multiply,
              normal;
          background-size:
              cover,
              cover;
          background-position:
              center center,
              center center;
          background-repeat: no-repeat;
          @include mq('pc') {
              height: 3800px;
          }
      }
  */
}
@media screen and (min-width: 1025px) {
  #numbers {
    padding-top: 150px;
    padding-bottom: 112px;
    padding-left: 0;
    padding-right: 0;
  }
}
#numbers::before {
  content: "";
  display: block;
  background-image: linear-gradient(to right top, rgba(0, 20, 110, 0.8) 0%, rgba(44, 190, 255, 0.8) 100%), url(../images/data-bg-mb.jpg);
  background-blend-mode: multiply, normal;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
  height: 100lvh;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  #numbers::before {
    background-image: linear-gradient(to right top, rgba(0, 20, 110, 0.8) 0%, rgba(44, 190, 255, 0.8) 100%), url(../images/data-bg.jpg);
  }
}
#numbers .numbers__headbg {
  position: absolute;
  z-index: -1;
  top: 14.6666666667vw;
  right: 0;
  mix-blend-mode: multiply;
  aspect-ratio: 296/168;
  width: 78.9333333333vw;
  background-image: url(../images/numbers-head-bg-mb.svg);
  background-size: 78.9333333333vw auto;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media screen and (min-width: 1025px) {
  #numbers .numbers__headbg {
    top: 70px;
    left: calc(50% - 660px);
    aspect-ratio: 945/390;
    width: 945px;
    background-image: url(../images/numbers-head-bg.svg);
    background-size: 945px auto;
  }
}
#numbers .inner {
  display: flex;
  flex-direction: column;
  gap: 8vw;
}
@media screen and (min-width: 1025px) {
  #numbers .inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
#numbers .head {
  position: relative;
  padding-left: 6.6666666667vw;
  margin-bottom: 1.8666666667vw;
}
@media screen and (min-width: 1025px) {
  #numbers .head {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
  }
}
#numbers .head .subject {
  text-align: left;
  width: 48vw;
  margin-bottom: 4.5333333333vw;
}
@media screen and (min-width: 1025px) {
  #numbers .head .subject {
    width: 260px;
    margin-bottom: 28px;
  }
}
#numbers .head .lead {
  font-size: 4vw;
  font-weight: bold;
  text-align: left;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (min-width: 1025px) {
  #numbers .head .lead {
    font-size: 16px;
    line-height: 1.75;
  }
}
#numbers .topic {
  position: relative;
  z-index: 1;
  background-color: #fff;
  border-radius: 2.6666666667vw;
  padding-top: 8vw;
  padding-bottom: 9.0666666667vw;
}
@media screen and (min-width: 1025px) {
  #numbers .topic {
    width: 485px;
    padding-top: 40px;
    padding-bottom: unset;
    border-radius: 10px;
  }
}
#numbers .topic.full {
  width: 100%;
}
#numbers .topic .term {
  display: inline-block;
  text-align: center;
  margin: 0;
  width: 100%;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 1025px) {
  #numbers .topic .term {
    margin-bottom: 0;
  }
}
#numbers .topic .term span {
  display: inline-block;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  border-radius: 9999px;
  background: #0077DE;
  color: #fff;
  font-size: 4.8vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 1.3333333333vw 5.3333333333vw 1.6vw;
}
@media screen and (min-width: 1025px) {
  #numbers .topic .term span {
    padding: 3px 30px 6px;
    font-size: 22px;
  }
}
#numbers .topic .number {
  font-weight: bold;
  line-height: 1;
}
#numbers .topic.workers {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 9.8666666667vw;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.workers {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: unset;
    align-items: unset;
    gap: 19px 28px;
    width: 600px;
    padding-left: 41px;
    padding-right: 41px;
    padding-bottom: 35px;
  }
  #numbers .topic.workers .term {
    width: 100%;
  }
}
#numbers .topic.workers .img {
  width: 58.1333333333vw;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.workers .img {
    width: 300px;
  }
}
#numbers .topic.workers .number {
  font-size: 24vw;
  line-height: 1.44;
  margin-top: -1.3333333333vw;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.workers .number {
    font-size: 90px;
    margin-top: 0;
    margin-bottom: 0;
  }
}
#numbers .topic.workers .number .unit {
  font-size: 13.3333333333vw;
  font-weight: 700;
  margin-left: 1.6vw;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.workers .number .unit {
    margin-left: 6px;
    font-size: 50px;
  }
}
#numbers .topic.workers .note {
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: -5.3333333333vw;
  font-size: 3.2vw;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.workers .note {
    margin-top: -13px;
    margin-left: 0;
    font-size: 14px;
  }
}
#numbers .topic.age {
  padding-bottom: 5.6vw;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.age {
    min-width: 735px;
    padding-bottom: 55px;
  }
}
#numbers .topic.age .sexuality {
  margin-top: -4.8vw;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.age .sexuality {
    margin-top: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
  }
}
#numbers .topic.age .men, #numbers .topic.age .women {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 10px;
  margin-bottom: 6.4vw;
  gap: 3.2vw;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.age .men, #numbers .topic.age .women {
    margin-top: 30px;
    gap: 16px;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 0;
  }
}
#numbers .topic.age .men .img, #numbers .topic.age .women .img {
  width: 14.1333333333vw;
  padding-bottom: 0vw;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.age .men .img, #numbers .topic.age .women .img {
    width: 69px;
    padding-bottom: 10px;
  }
}
#numbers .topic.age .men .txt dl, #numbers .topic.age .women .txt dl {
  display: flex;
  align-items: flex-end;
  margin-bottom: 0;
  gap: 1.3333333333vw;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.age .men .txt dl, #numbers .topic.age .women .txt dl {
    max-width: 264px;
    width: auto;
    gap: 5px;
    margin-top: 5px;
  }
}
#numbers .topic.age .men .txt dl:last-child, #numbers .topic.age .women .txt dl:last-child {
  margin-top: 1.3333333333vw;
}
#numbers .topic.age .men .txt dl dt, #numbers .topic.age .women .txt dl dt {
  font-size: 5.8666666667vw;
  font-weight: 700;
  line-height: 1.1;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.age .men .txt dl dt, #numbers .topic.age .women .txt dl dt {
    width: 60px;
    font-size: 30px;
    white-space: nowrap;
  }
}
#numbers .topic.age .men .txt dl dd, #numbers .topic.age .women .txt dl dd {
  margin: 0;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.age .men .txt dl dd, #numbers .topic.age .women .txt dl dd {
    width: 200px;
  }
}
#numbers .topic.age .men .txt dl .number, #numbers .topic.age .women .txt dl .number {
  font-size: 16vw;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.age .men .txt dl .number, #numbers .topic.age .women .txt dl .number {
    font-size: 80px;
  }
}
#numbers .topic.age .men .txt dl .number .unit, #numbers .topic.age .women .txt dl .number .unit {
  font-size: 8vw;
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.age .men .txt dl .number .unit, #numbers .topic.age .women .txt dl .number .unit {
    font-size: 40px;
  }
}
#numbers .topic.age .men .txt dl .number.small, #numbers .topic.age .women .txt dl .number.small {
  font-size: 9.8666666667vw;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.age .men .txt dl .number.small, #numbers .topic.age .women .txt dl .number.small {
    font-size: 50px;
  }
}
#numbers .topic.age .men .txt dl .number.small .unit, #numbers .topic.age .women .txt dl .number.small .unit {
  font-size: 6.1333333333vw;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.age .men .txt dl .number.small .unit, #numbers .topic.age .women .txt dl .number.small .unit {
    font-size: 30px;
  }
}
#numbers .topic.dept {
  padding-bottom: 9.3333333333vw;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.dept {
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1025px) {
  #numbers .topic.dept .term {
    margin-bottom: 43px;
  }
}
#numbers .topic.dept .graph-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625vw;
  margin-bottom: 30px;
}
@media screen and (max-width: 500px) {
  #numbers .topic.dept .graph-wrap {
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    gap: 4.8vw 9.3333333333vw;
    margin-bottom: 12vw;
  }
}
#numbers .topic.dept .men, #numbers .topic.dept .women {
  text-align: center;
  width: 85px;
  margin: 0;
  align-items: flex-end;
}
@media screen and (max-width: 500px) {
  #numbers .topic.dept .men, #numbers .topic.dept .women {
    width: auto;
    display: flex;
    gap: 2.6666666667vw;
  }
}
#numbers .topic.dept .men dt, #numbers .topic.dept .women dt {
  font-size: 5.3333333333vw;
  font-weight: bold;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.dept .men dt, #numbers .topic.dept .women dt {
    font-size: 24px;
  }
}
#numbers .topic.dept .men dt img, #numbers .topic.dept .women dt img {
  display: block;
  width: 43px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6px;
}
@media screen and (max-width: 500px) {
  #numbers .topic.dept .men dt img, #numbers .topic.dept .women dt img {
    width: 10.1333333333vw;
    display: flex;
    margin-bottom: 0;
  }
}
#numbers .topic.dept .men .number, #numbers .topic.dept .women .number {
  margin: 0;
  font-size: 11.4666666667vw;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.dept .men .number, #numbers .topic.dept .women .number {
    font-size: 50px;
  }
}
@media screen and (max-width: 500px) {
  #numbers .topic.dept .men .number .label, #numbers .topic.dept .women .number .label {
    display: block;
    text-align: center;
    font-size: 5.3333333333vw;
    font-weight: 700;
  }
}
#numbers .topic.dept .men .number .unit, #numbers .topic.dept .women .number .unit {
  font-size: 6.9333333333vw;
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.dept .men .number .unit, #numbers .topic.dept .women .number .unit {
    font-size: 30px;
  }
}
#numbers .topic.dept .graph {
  position: relative;
  order: 1;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.dept .graph {
    width: auto;
    order: 2;
  }
}
#numbers .topic.dept .graph .number {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 16vw;
  white-space: nowrap;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.dept .graph .number {
    font-size: 60px;
  }
}
#numbers .topic.dept .graph .number .unit {
  font-size: 8vw;
  font-weight: 700;
  line-height: 43px;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.dept .graph .number .unit {
    font-size: 30px;
  }
}
#numbers .topic.dept .men {
  order: 1;
}
#numbers .topic.dept .women {
  order: 3;
}
#numbers .topic.dept .years {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3.7333333333vw 5.3333333333vw;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.dept .years {
    gap: 13px 20px;
  }
}
@media screen and (max-width: 500px) {
  #numbers .topic.dept .years img {
    width: 13.6vw;
  }
}
#numbers .topic.dept .years .txt {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 0;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.dept .years .txt {
    gap: 0px 10px;
  }
}
#numbers .topic.dept .years .txt dt {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.29;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.dept .years .txt dt {
    font-size: 22px;
    line-height: 1.27;
  }
}
#numbers .topic.dept .years .txt .number {
  margin: 0;
  font-size: 13.3333333333vw;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.dept .years .txt .number {
    font-size: 64px;
  }
}
#numbers .topic.dept .years .txt .number .unit {
  font-size: 7.2vw;
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.dept .years .txt .number .unit {
    font-size: 34px;
  }
}
#numbers .topic.dept .years .note {
  width: 100%;
  font-size: 3.2vw;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.dept .years .note {
    font-size: 14px;
  }
}
#numbers .topic.leave, #numbers .topic.child, #numbers .topic.females {
  text-align: center;
  padding-bottom: 9.3333333333vw;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.leave, #numbers .topic.child, #numbers .topic.females {
    padding-bottom: 32px;
  }
}
#numbers .topic.leave .term, #numbers .topic.child .term, #numbers .topic.females .term {
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.leave .term, #numbers .topic.child .term, #numbers .topic.females .term {
    margin-bottom: 30px;
  }
}
#numbers .topic.leave .wrap, #numbers .topic.child .wrap, #numbers .topic.females .wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4vw;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.leave .wrap, #numbers .topic.child .wrap, #numbers .topic.females .wrap {
    flex-direction: row;
    gap: 23px;
  }
}
@media screen and (max-width: 500px) {
  #numbers .topic.leave img, #numbers .topic.child img, #numbers .topic.females img {
    height: 32vw;
  }
}
#numbers .topic.leave .txt, #numbers .topic.child .txt, #numbers .topic.females .txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.8666666667vw;
  white-space: nowrap;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.leave .txt, #numbers .topic.child .txt, #numbers .topic.females .txt {
    gap: 9px;
  }
}
#numbers .topic.leave .txt .number, #numbers .topic.child .txt .number, #numbers .topic.females .txt .number {
  font-size: 24vw;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.leave .txt .number, #numbers .topic.child .txt .number, #numbers .topic.females .txt .number {
    font-size: 90px;
  }
}
#numbers .topic.leave .txt .number .unit, #numbers .topic.child .txt .number .unit, #numbers .topic.females .txt .number .unit {
  display: inline-block;
  font-size: 13.3333333333vw;
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.leave .txt .number .unit, #numbers .topic.child .txt .number .unit, #numbers .topic.females .txt .number .unit {
    font-size: 50px;
  }
}
#numbers .topic.leave .txt .note, #numbers .topic.child .txt .note, #numbers .topic.females .txt .note {
  font-size: 4.2666666667vw;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 1025px) {
  #numbers .topic.leave .txt .note, #numbers .topic.child .txt .note, #numbers .topic.females .txt .note {
    font-size: 20px;
    text-align: left;
  }
}
#numbers .topic.leave > .note, #numbers .topic.child > .note, #numbers .topic.females > .note {
  margin-top: 1.3333333333vw;
}
@media screen and (max-width: 500px) {
  #numbers .topic.leave > .note, #numbers .topic.child > .note, #numbers .topic.females > .note {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 1025px) {
  #numbers .topic.leave > .note, #numbers .topic.child > .note, #numbers .topic.females > .note {
    margin-top: 0px;
  }
}
@media screen and (min-width: 1025px) {
  #numbers .topic.females {
    margin-left: auto;
    margin-right: auto;
  }
}
#numbers .note.foot {
  text-align: right;
  font-size: 2.6666666667vw;
  color: #fff;
  width: 100%;
  margin-top: -5.3333333333vw;
}
@media screen and (min-width: 1025px) {
  #numbers .note.foot {
    margin-top: -10px;
    font-size: 12px;
  }
}

#recruit {
  background-color: #fff;
  padding-top: 27.2vw;
  padding-bottom: 18.6666666667vw;
  padding-left: 6vw;
  padding-right: 6vw;
}
@media screen and (min-width: 1025px) {
  #recruit {
    padding-top: 142px;
    padding-bottom: 90px;
    padding-left: 0;
    padding-right: 0;
  }
}
#recruit .head {
  margin-bottom: 13.8666666667vw;
}
@media screen and (min-width: 1025px) {
  #recruit .head {
    margin-bottom: 75px;
  }
}
@media screen and (min-width: 1025px) {
  #recruit .body {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
#recruit .recruit__item {
  border-top: 1px solid #D0D0D0;
  padding-top: 5.3333333333vw;
  padding-left: 6.6666666667vw;
  padding-right: 6.6666666667vw;
  padding-bottom: 5.3333333333vw;
  display: flex;
  flex-direction: column;
  gap: 2.6666666667vw;
  margin: 0;
}
@media screen and (min-width: 1025px) {
  #recruit .recruit__item {
    flex-direction: row;
    gap: 50px;
    padding: 30px 30px 26px;
  }
}
#recruit .recruit__item:last-child {
  border-bottom: 1px solid #D0D0D0;
}
#recruit .recruit__item dt {
  font-size: 3.7333333333vw;
  font-weight: 700;
  color: #0077DE;
  margin: 0;
}
@media screen and (min-width: 1025px) {
  #recruit .recruit__item dt {
    width: 112px;
    flex-shrink: 0;
    font-size: 16px;
  }
}
#recruit .recruit__item dd {
  margin: 0;
  font-size: 3.7333333333vw;
  line-height: 1.57;
}
@media screen and (min-width: 1025px) {
  #recruit .recruit__item dd {
    font-size: 16px;
    line-height: 1.87;
  }
}
#recruit .recruit__item dd em {
  color: #0077DE;
  font-style: normal;
}

#flow {
  background-color: #fff;
}
@media screen and (min-width: 1025px) {
  #flow {
    padding-top: 0;
  }
}
#flow .inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background-color: #EDF5FD;
  padding-top: 16vw;
  padding-left: 6.1333333333vw;
  padding-right: 6.1333333333vw;
  padding-bottom: 13.3333333333vw;
}
@media screen and (min-width: 1025px) {
  #flow .inner {
    padding: 73px 100px;
  }
}
#flow .subject {
  font-size: 5.3333333333vw;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
  margin-bottom: 8vw;
}
@media screen and (min-width: 1025px) {
  #flow .subject {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
#flow .subject::after {
  content: "";
  display: block;
  background: linear-gradient(to right top, rgba(0, 20, 110, 0.8) 0%, rgba(44, 190, 255, 0.8) 100%);
  margin-left: auto;
  margin-right: auto;
  margin-top: 3.2vw;
  width: 13.3333333333vw;
  height: 1.0666666667vw;
}
@media screen and (min-width: 1025px) {
  #flow .subject::after {
    margin-top: 14px;
    width: 50px;
    height: 4px;
  }
}
#flow .flow__step {
  display: flex;
  gap: 5.3333333333vw;
}
@media screen and (min-width: 1025px) {
  #flow .flow__step {
    gap: 40px;
  }
}
#flow .flow__step:not(:last-child) {
  margin-bottom: 7.2vw;
}
@media screen and (min-width: 1025px) {
  #flow .flow__step:not(:last-child) {
    margin-bottom: 40px;
  }
}
#flow .flow__step:not(:last-child) dt::after {
  content: "";
  position: absolute;
  top: 99.8%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  background: #4C9FE8;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  aspect-ratio: 34/12;
  width: 9.0666666667vw;
}
@media screen and (min-width: 1025px) {
  #flow .flow__step:not(:last-child) dt::after {
    aspect-ratio: 60/20;
    width: 60px;
  }
}
#flow .flow__step dt, #flow .flow__step dd {
  margin: 0;
  padding: 0;
}
#flow .flow__step dt {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #4C9FE8;
  color: #fff;
  flex-shrink: 0;
  width: 21.3333333333vw;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 1025px) {
  #flow .flow__step dt {
    width: 180px;
    font-size: 20px;
  }
}
#flow .flow__step dt span {
  font-weight: 700;
}
#flow .flow__step dt span em {
  font-size: 6.6666666667vw;
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  #flow .flow__step dt span em {
    font-size: 30px;
  }
}
#flow .flow__step dd {
  padding-top: 2.6666666667vw;
  padding-bottom: 2.1333333333vw;
}
@media screen and (min-width: 1025px) {
  #flow .flow__step dd {
    display: block;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 20px;
  }
}
#flow .flow__step .step__subject {
  color: #0077DE;
  font-size: 4.8vw;
  font-weight: 700;
  margin-bottom: 3.7333333333vw;
}
@media screen and (min-width: 1025px) {
  #flow .flow__step .step__subject {
    font-size: 24px;
    margin-bottom: 14px;
  }
}
#flow .flow__step .step__desc {
  font-size: 3.7333333333vw;
  line-height: 1.57;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 1025px) {
  #flow .flow__step .step__desc {
    font-size: 16px;
    line-height: 1.87;
    margin-bottom: 20px;
  }
}
#flow .flow__step .step__desc a {
  color: #FF0000;
  text-decoration: underline;
}
#flow .flow__step .step__desc em {
  color: #0077DE;
}
#flow .flow__step .step__notes {
  background-color: #fff;
  padding: 4.5333333333vw;
  line-height: 1.57;
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 1025px) {
  #flow .flow__step .step__notes {
    padding: 25px 36px;
    font-size: 16px;
    line-height: 1.87;
  }
}
#flow .flow__step .step__notes em {
  display: block;
  color: #0077DE;
  font-weight: 700;
}

#entry {
  background: #fff;
  padding-top: 18.6666666667vw;
  padding-bottom: 21.3333333333vw;
}
@media screen and (min-width: 1025px) {
  #entry {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
#entry a {
  display: block;
  aspect-ratio: 330/270;
  width: 88vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  background-image: url(../images/entry-bg-mb.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 17.3333333333vw;
}
@media screen and (min-width: 1025px) {
  #entry a {
    aspect-ratio: 1000/350;
    background-image: url(../images/entry-bg.jpg);
    width: 1000px;
    padding-top: 55px;
    transition: opacity 0.4s;
  }
  #entry a:hover {
    opacity: 0.7;
  }
}
#entry a .subject {
  font-size: 16vw;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 1.6vw;
}
@media screen and (min-width: 1025px) {
  #entry a .subject {
    font-size: 120px;
    margin-bottom: 0;
  }
}
#entry a .desc {
  font-size: 4.2666666667vw;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1025px) {
  #entry a .desc {
    font-size: 20px;
  }
}

#footer {
  background: #fff;
  padding-bottom: 8vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  #footer {
    gap: 30px;
    padding-bottom: 70px;
  }
}
#footer .inner {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5.0666666667vw;
}
@media screen and (min-width: 1025px) {
  #footer .inner {
    flex-direction: row;
  }
}
#footer .links {
  display: flex;
  gap: 5.3333333333vw;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  #footer .links {
    gap: 40px;
  }
}
#footer .links a {
  font-size: 2.9333333333vw;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  #footer .links a {
    font-size: 16px;
  }
}
#footer .copyright {
  font-size: 2.6666666667vw;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  #footer .copyright {
    font-size: 12px;
  }
}