@font-face {
  font-family: "Metropolis Semi Bold";
  font-style: normal;
  font-weight: normal;
  src: local("Metropolis Semi Bold"), url("Fonts/Metropolis-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Metropolis Medium";
  font-style: normal;
  font-weight: normal;
  src: local("Metropolis Medium"), url("Fonts/Metropolis-Medium.woff") format("woff");
}
body {
  margin: 0;
  padding: 0;
  font-family: a-otf-gothic-bbb-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*  OOCSS  */
/*  Tips  */
.caption {
  display: flex;
  align-items: flex-end;
  width: 100%;
  max-width: 960px;
  padding: 100px 0 50px;
  letter-spacing: 5px;
}
.caption .h50 {
  padding-right: 20px;
  font-size: 50px;
  font-size: 46px;
  font-family: "Metropolis Semi Bold";
  letter-spacing: 15px;
}
.caption .h20 {
  padding-bottom: 4px;
  padding-left: 2px;
  font-size: 20px;
}

.ls_2px {
  letter-spacing: 2px;
}

@media screen and (max-width: 960px) {
  .caption {
    padding: 0;
    display: block;
    margin-bottom: 50px;
  }
  .caption .h50 {
    font-size: 40px;
    padding-bottom: 25px;
    letter-spacing: 5px;
  }
}
/*  BEM  */
/*  header  */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
  font-family: "Metropolis Medium";
  letter-spacing: 3px;
}
.header__title {
  color: white;
  font-size: 24px;
  width: 200px;
}
.header__list {
  display: flex;
  list-style: none;
  padding-left: 90px;
}
.header__list li {
  padding: 0 40px;
  border-right: white solid 1px;
}
.header__list li:first-child {
  border-left: white solid 1px;
}
.header__list li a {
  color: white;
  text-decoration: none;
}

@media screen and (max-width: 960px) {
  .header {
    margin-top: 15px;
  }
  .header__title {
    position: absolute;
    top: 0;
    left: 20px;
    width: 100px;
  }
  .header__list {
    display: none;
  }
}
/*  video  */
.video-wrapper {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  padding-top: 100vh;
}

.main-video {
  pointer-events: none;
  height: 73.125vw;
  min-height: calc(100vh + 400px);
  width: 177.7777777778vh;
  min-width: 130vw;
  margin-left: 5%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-wrapper__scroll {
  position: absolute;
  top: calc(100vh - 80px);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}
.video-wrapper__scroll--img {
  width: 100px;
}

/*  intro  */
#introduction {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #273cff;
}

.intro__title {
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 170px;
  margin: 100px 0 50px;
  width: 100%;
  max-width: 960px;
}

.intro__body {
  width: 100%;
  max-width: 960px;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 200px;
}
.intro__body .intro__text--2 {
  font-weight: 400;
  font-family: "Metropolis Medium";
}
.intro__body .intro__line {
  height: 40px;
  width: 50px;
  margin-bottom: 40px;
  border-bottom: 1px solid #273cff;
}

@media screen and (max-width: 960px) {
  #introduction {
    padding: 0 25px;
  }
  .intro__body {
    margin-bottom: 60px;
  }
  .intro__title {
    font-size: 90px;
    margin: 60px 0 50px;
  }
}
@media screen and (max-width: 425px) {
  .intro__title {
    white-space: nowrap;
    overflow: hidden;
  }
}
@media screen and (max-width: 300px) {
  .intro__title {
    white-space: nowrap;
    overflow: hidden;
    font-size: 65px;
  }
}
/*  service  */
#service {
  background-color: #273cff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
}

.service__body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 960px;
  margin-bottom: 130px;
}

.service__box {
  margin-top: 70px;
}
.service__box-img {
  width: 280px;
  height: 230px;
  margin-bottom: 30px;
}
.service__box-title {
  font-size: 26px;
  margin-bottom: 35px;
}
.service__box-title span {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 2px solid #ccc;
}
.service__box-title span:nth-child(3) {
  padding-top: 10px;
}
.service__box-title-link {
  font-size: 18px;
  color: white;
  text-decoration: none;
  position: relative;
  top: 22px;
  left: 40px;
}
.service__box-title-link-icon {
  width: 140px;
}
.service__box-text {
  font-size: 14px;
  width: 280px;
  height: 170px;
  line-height: 2;
}

@media screen and (max-width: 960px) {
  #service {
    padding: 50px 25px;
  }
  .service__body {
    justify-content: center;
    margin-bottom: 0;
  }
  .service__box {
    margin: 0 35px 50px;
  }
  .service__box-text {
    height: unset;
  }
}
@media screen and (max-width: 425px) {
  #service {
    padding: 50px 25px;
  }
  .service__body {
    max-width: 320px;
  }
  .service__box {
    margin: 0 0 50px;
  }
}
/*  recruit  */
#recruit {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #273cff;
}

.recruit__body {
  font-size: 20px;
  border-radius: 3px;
  border: 2px solid #273cff;
  padding: 75px 245px;
  margin: 50px 0 150px;
}

@media screen and (max-width: 960px) {
  #recruit {
    padding: 50px 25px;
  }
  .recruit__body {
    font-size: 20px;
    width: 100%;
    padding: 100px 0;
    margin: 0;
    text-align: center;
  }
}
/*  contact  */
#contact {
  background-color: #273cff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
}

.contact__text {
  width: 100%;
  max-width: 960px;
  padding-bottom: 50px;
  line-height: 2;
  font-size: 14px;
}

.contact__form {
  width: 100%;
  max-width: 960px;
  padding-bottom: 100px;
  border-bottom: 2px dotted #ccc;
}
.contact__form .form__item {
  display: flex;
  font-size: 20px;
  min-height: 50px;
  margin-top: 20px;
  position: relative;
}
.contact__form .form__item .label {
  width: 320px;
  max-width: 100%;
}
.contact__form .form__item .label .badge {
  display: inline-block;
  padding: 3px 7px;
  margin: 0 10px;
  font-size: 75%;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 25px;
  color: #273cff;
  background-color: white;
}
.contact__form .form__item .input {
  display: block;
  padding: 0 10px;
  width: 310px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: white;
  background-color: #273cff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.contact__form .form__item .input--select {
  width: 335px;
  color: white;
  appearance: none;
}
.contact__form .form__item .input--textarea {
  resize: vertical;
  padding-top: 10px;
  width: 625px;
  height: 300px;
}
.contact__form .form__item .input::placeholder {
  color: #6574ff;
}
.contact__form .form__item .select__arrow {
  position: absolute;
  width: 14px;
  top: 22px;
  right: 34%;
}
.contact__form .btn__area {
  margin-left: 320px;
  margin-top: 20px;
}
.contact__form .btn__area .form__btn {
  border: 1px solid transparent;
  padding: 10px 40px;
  font-size: 1rem;
  border-radius: 0.25rem;
  color: #273cff;
  background-color: white;
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  appearance: none;
}

@media screen and (max-width: 960px) {
  #contact {
    padding: 50px 25px 0;
  }
  .contact__text {
    margin: 0;
    padding-bottom: 40px;
  }
  .contact__form {
    padding-bottom: 60px;
  }
  .contact__form .form__item {
    display: block;
    margin-top: 20px;
  }
  .contact__form .form__item .input {
    margin-top: 10px;
    box-sizing: border-box;
    width: 100%;
    height: 30px;
  }
  .contact__form .form__item .input--textarea {
    height: 135px;
  }
  .contact__form .form__item .select__arrow {
    position: absolute;
    width: 14px;
    top: 50px;
    right: 12px;
  }
  .contact__form .btn__area {
    margin-left: 0;
    text-align: center;
    margin-top: 30px;
  }
}
/*  about  */
#about {
  background-color: #273cff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
}

.about__map {
  text-align: center;
  margin-top: 20px;
}
.about__map--iframe {
  width: 100vw;
  max-width: 960px;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

.about__body {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 960px;
  padding-top: 0px;
  padding-bottom: 120px;
  line-height: 1.9;
}
.about__body--img {
  width: 190px;
}
.about__body--table {
  white-space: nowrap;
  font-size: 11pt;
}
.about__body--table td:first-child {
  white-space: nowrap;
  vertical-align: unset;
}
.about__body--table td:last-child {
  padding-left: 78px;
}

@media screen and (max-width: 960px) {
  #about {
    padding: 50px 25px;
  }
  .about__map {
    margin-top: -20px;
  }
  .about__map--iframe {
    width: calc(100vw - 40px);
    height: 300px;
  }
  .about__body {
    display: block;
    padding-top: 30px;
    padding-bottom: 0;
    width: 100%;
  }
  .about__body--img {
    width: 190px;
    padding-top: 5px;
  }
  .about__body--table {
    border-spacing: 0;
    white-space: normal;
    margin-top: 30px;
  }
  .about__body--table td:first-child {
    white-space: nowrap;
    padding-left: 0;
    padding-right: 30px;
    vertical-align: unset;
  }
  .about__body--table td:last-child {
    padding-left: 20px;
  }
}
/*  footer  */
.footer {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px 0;
  font-family: "Metropolis Medium";
  letter-spacing: 0px;
}
.footer__title {
  color: #273cff;
  font-size: 24px;
  width: 185px;
}
.footer__list {
  display: flex;
  list-style: none;
  padding-left: 100px;
  letter-spacing: 4px;
  font-size: 11pt;
  font-weight: bold;
  margin: 0;
}
.footer__list li {
  padding: 0 40px;
  border-right: #273cff solid 1px;
  display: flex;
  align-items: center;
  height: 25px;
}
.footer__list li:first-child {
  border-left: #273cff solid 1px;
}
.footer__list li a {
  color: #273cff;
  text-decoration: none;
}

@media screen and (max-width: 960px) {
  .footer {
    display: block;
    padding: 20px;
  }
  .footer__title {
    width: 110px;
  }
  .footer__list {
    display: none;
  }
}