@charset "UTF-8";
.content__title {
  font-weight: 500;
  font-size: 1.2rem;
}
@media screen and (min-width: 600px) {
  .content__title {
    font-size: 1.4rem;
  }
}

.section {
  margin: 0 20px 62px;
  padding-top: 92px;
}
.section__title {
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 42px;
  position: relative;
  padding-left: 25px;
  letter-spacing: 1px;
}
@media screen and (min-width: 600px) {
  .section__title {
    font-size: 1.6rem;
    margin-bottom: 92px;
  }
}
.section__title-subTitle {
  color: #a0a0a0;
  font-size: 1rem;
  margin-left: 10px;
}
@media screen and (min-width: 600px) {
  .section__title-subTitle {
    font-size: 1.2rem;
  }
}
.section__title-decoration {
  position: absolute;
  bottom: -15px;
  left: 10px;
  display: block;
  width: 45px;
  height: 45px;
  border-top: 1px solid #000000;
  transform: rotate(-65deg);
}

.splash {
  background-color: #ffffff;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
}
.splash.-visible span {
  transform: translate(0, 0);
}
.splash__logo {
  display: flex;
  overflow: hidden;
  color: #000000;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -90%);
}
.splash__logo span {
  display: block;
  transform: translate(0, 105%);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  -webkit-transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .splash__logo span {
    font-size: 35px;
  }
}
.splash__logo span:nth-child(2) {
  transition-delay: 0.06s;
  -webkit-transition-delay: delay;
}
.splash__logo span:nth-child(3) {
  transition-delay: 0.12s;
  -webkit-transition-delay: delay;
}
.splash__logo span:nth-child(4) {
  transition-delay: 0.18s;
  -webkit-transition-delay: delay;
}
.splash__logo span:nth-child(5) {
  transition-delay: 0.24s;
  -webkit-transition-delay: delay;
}
.splash__logo span:nth-child(6) {
  transition-delay: 0.3s;
  -webkit-transition-delay: delay;
}
.splash__logo span:nth-child(7) {
  transition-delay: 0.36s;
  -webkit-transition-delay: delay;
}
.splash__logo span:nth-child(8) {
  transition-delay: 0.42s;
  -webkit-transition-delay: delay;
}
.splash__logo span:nth-child(9) {
  transition-delay: 0.48s;
  -webkit-transition-delay: delay;
}
.splash__logo span:nth-child(10) {
  transition-delay: 0.54s;
  -webkit-transition-delay: delay;
}
.splash__logo span:nth-child(11) {
  transition-delay: 0.6s;
  -webkit-transition-delay: delay;
}
.splash__logo span:nth-child(12) {
  transition-delay: 0.66s;
  -webkit-transition-delay: delay;
}
.splash__logo span:nth-child(13) {
  transition-delay: 0.72s;
  -webkit-transition-delay: delay;
}
.splash__logo span:nth-child(14) {
  transition-delay: 0.78s;
  -webkit-transition-delay: delay;
}

.body {
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .body {
    margin: 0 4.5vw;
    margin-top: 70px;
  }
}
@media screen and (min-width: 1024px) {
  .body__wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media screen and (min-width: 1024px) {
  .main {
    margin-left: 300px;
  }
}

.header {
  display: flex;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px 22px;
  z-index: 999;
}
@media screen and (min-width: 600px) {
  .header {
    padding: 42px 20px 40px;
  }
}
@media screen and (min-width: 1024px) {
  .header {
    top: 70px;
    left: 4.5vw;
    padding: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: baseline;
    max-width: 300px;
  }
}
.header-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 800;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.header-drawer--opne {
  opacity: 1;
  visibility: visible;
}
.header-drawer__list {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 600px) {
  .header-drawer__list {
    top: 40%;
  }
}
.header-drawer__item {
  margin-bottom: 32px;
  text-align: center;
  font-size: 2rem;
}
.header-drawer__item:last-child {
  margin-bottom: 0;
}
.header-drawer__item-subText {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  color: #a0a0a0;
  font-weight: 400;
  letter-spacing: 1px;
}
.header__logo {
  font-weight: 700;
  color: #3e3a39;
  font-size: 1.2rem;
}
@media screen and (min-width: 600px) {
  .header__logo {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1024px) {
  .header__logo {
    font-size: 24px;
    margin-bottom: 32px;
  }
}

.header-nav {
  display: none;
}
@media screen and (min-width: 1024px) {
  .header-nav {
    display: block;
  }
}
.header-nav__item {
  margin-bottom: 24px;
  font-size: 1.2rem;
  padding-left: 14px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  border-left: 1px solid #ffffff;
}
.header-nav__item--onPage {
  border-left: 1px solid #3e3a39;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.header-nav__item-subText {
  margin-left: 16px;
  font-size: 1rem;
  color: #a0a0a0;
}
.header-nav__hamburger {
  display: block;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.07);
  background-color: #ffffff;
  position: relative;
}
.header-nav__hamburger-line {
  display: block;
  width: 25px;
  height: 1px;
  background-color: #000000;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.header-nav__hamburger-line:first-child {
  top: 45%;
}
.header-nav__hamburger-line:last-child {
  top: 60%;
}
.header-nav__hamburger-line--open {
  display: block;
  width: 25px;
  height: 1px;
  background-color: #000000;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50%;
}
@media screen and (min-width: 1024px) {
  .header-nav__hamburger {
    display: none;
  }
}

.main-visual {
  height: calc(100vh - 80px);
  width: 100%;
  margin-top: 80px;
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  .main-visual {
    margin-top: 125px;
    height: calc(100vh - 125px);
  }
}
@media screen and (min-width: 1024px) {
  .main-visual {
    margin-top: 0;
    height: calc(100vh - 70px);
    position: relative;
  }
}
.main-visual__img {
  width: 100%;
  height: 65vh;
  margin-top: 20px;
  padding: 0 20px;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
}
@media screen and (min-width: 600px) {
  .main-visual__img {
    height: 75vh;
    margin-top: 0;
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .main-visual__img {
    object-position: 0 68%;
  }
}
.main-visual__normalText {
  color: #a0a0a0;
  font-size: 1.2rem;
  line-height: 2;
  margin-top: 8px;
  letter-spacing: 1px;
}
@media screen and (min-width: 600px) {
  .main-visual__normalText {
    font-size: 1.4rem;
  }
}
.main-visual__scrollBox {
  position: absolute;
  left: 50%;
  bottom: 55px;
  transform: translateX(-50%);
}
@media screen and (min-width: 1024px) {
  .main-visual__scrollBox {
    bottom: 60px;
  }
}
.main-visual__scrollLetter {
  color: #a0a0a0;
  font-size: 1rem;
}
.main-visual__scrollArrow {
  display: block;
  position: absolute;
  left: 58%;
  width: 10px;
  height: 10px;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
  -webkit-transform: translateX(-50%) rotate(135deg) translateX(-50%) rotate(135deg);
  transform: translateX(-50%) rotate(135deg);
  animation: move-y 0.9s infinite alternate ease-in-out;
}
@keyframes move-y {
  from {
    transform: translate(-50%, 0) rotate(135deg);
  }
  to {
    transform: translate(-50%, 5px) rotate(135deg);
  }
}

.service__item {
  margin-bottom: 92px;
}
.service__item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .service__item {
    display: flex;
    align-items: center;
  }
}
.service__img {
  width: 100%;
  max-height: 175px;
  height: 100%;
  object-fit: cover;
  margin-bottom: 20px;
  opacity: 0;
  transition-duration: 1ms;
  transition-property: opacity, transform;
  -webkit-transition-duration: 1ms;
  -webkit-transition-property: opacity, transform;
}
.service__img.fadeUp {
  animation: fadeUp 1s;
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (min-width: 600px) {
  .service__img {
    max-height: 35vh;
  }
}
@media screen and (min-width: 1024px) {
  .service__img {
    max-width: 600px;
    width: 48%;
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.service__textBox {
  opacity: 0;
  transition: all 0.4s;
  transition-property: opacity;
  -webkit-transition: all 0.4s;
  -webkit-transition-property: opacity;
}
.service__textBox.showUp {
  opacity: 1;
}
@media screen and (min-width: 1024px) {
  .service__textBox {
    padding-left: 50px;
    padding-top: 32px;
    width: 40%;
  }
}
.service__name {
  font-size: 1.2rem;
  color: #000000;
}
@media screen and (min-width: 600px) {
  .service__name {
    font-size: 1.4rem;
  }
}
.service__normalText {
  margin-top: 20px;
  font-size: 1.1rem;
  color: #a0a0a0;
  line-height: 1.8;
  letter-spacing: 1px;
}
@media screen and (min-width: 600px) {
  .service__normalText {
    font-size: 1.2rem;
  }
}

.recruit__item {
  padding-top: 42px;
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 1.2s;
  -webkit-transition: all 1.2s;
}
.recruit__item:first-child {
  padding-top: 32px;
}
@media screen and (min-width: 1024px) {
  .recruit__item:first-child {
    padding-top: 0;
  }
}
.recruit__item.fadeIn {
  opacity: 1;
  transform: translate(0, 0);
}
.recruit__content-title {
  margin-bottom: 32px;
  font-weight: 600;
}
.recruit__stopped {
  margin-left: 8px;
  color: #a0a0a0;
  font-size: 1.2rem;
  font-weight: 400;
}
.recruit__detail-wrap {
  padding-bottom: 42px;
  border-bottom: 1px solid #e2e2e1;
}
@media screen and (min-width: 600px) {
  .recruit__detail-wrap {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1024px) {
  .recruit__detail-wrap {
    padding-left: 42px;
  }
}
.recruit__subject {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
@media screen and (min-width: 600px) {
  .recruit__subject {
    width: 20%;
  }
}
@media screen and (min-width: 1024px) {
  .recruit__subject {
    width: 35%;
  }
}
.recruit__detail {
  color: #a0a0a0;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
@media screen and (min-width: 600px) {
  .recruit__detail {
    width: 80%;
  }
}
@media screen and (min-width: 1024px) {
  .recruit__detail {
    width: 65%;
  }
}
.recruit__detail:last-child {
  margin-bottom: 0;
}

.contact__from {
  padding-top: 32px;
}
@media screen and (min-width: 600px) {
  .contact__from {
    width: 60%;
    margin-left: auto;
  }
}
@media screen and (min-width: 1024px) {
  .contact__from {
    width: 80%;
    padding-top: 0;
  }
}
.contact__table {
  width: 100%;
}
.contact__fromLine {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.contact__fromLine:first-child {
  margin-top: 0;
}
.contact__fromLabel {
  width: 100%;
  text-align: start;
  padding-left: 5px;
  font-size: 1.2rem;
}
@media screen and (min-width: 1024px) {
  .contact__fromLabel {
    width: 30%;
    height: 60px;
    display: flex;
    align-items: center;
  }
}
.contact__required {
  background-color: #3e3a39;
  padding: 2px 8px;
  border-radius: 4px;
  color: #ffffff;
  font-size: 1rem;
  margin-right: 12px;
}
.contact__fromBox {
  width: 100%;
  margin-top: 8px;
}
@media screen and (min-width: 1024px) {
  .contact__fromBox {
    width: 70%;
  }
}
.contact__fromInput {
  height: 50px;
  width: 100%;
  background-color: #FAFAFA;
  border: none;
  padding: 1px 15px;
}
.contact__fromInput::placeholder {
  color: #E2E2E1;
}
.contact__fromInput::-ms-input-placeholder {
  color: #E2E2E1;
}
.contact__fromInput:-ms-input-placeholder {
  color: #E2E2E1;
}
.contact__fromSelect {
  height: 54px;
  width: 100%;
  background-color: #FAFAFA;
  border: none;
  padding: 1px 15px;
  color: #E2E2E1;
}
.contact__fromTextarea {
  resize: vertical;
  height: 180px;
  width: 100%;
  background-color: #FAFAFA;
  border: none;
  padding: 20px 15px;
}
.contact__fromTextarea::placeholder {
  color: #E2E2E1;
}
.contact__fromSubmit {
  width: 100%;
  height: 64px;
  border: none;
  background-color: #3e3a39;
  color: #ffffff;
  margin-top: 32px;
  transition: all 0.3s;
}
.contact__fromSubmit:hover {
  opacity: 0.85;
}
.contact input:focus {
  outline: 1px solid #e2e2e1;
}
.contact textarea:focus {
  outline: 1px solid #e2e2e1;
}
.contact select:focus {
  outline: 1px solid #e2e2e1;
}

@media screen and (min-width: 1024px) {
  .submit {
    width: 70%;
    margin-left: auto;
  }
}

/* system */
@media screen and (min-width: 1024px) {
  .system__box {
    width: 80%;
  padding-left: 42px;
  }
}
.system__txt, .system__txt-desc {
  color: #a0a0a0;
  font-size: 1.2rem;
  line-height: 1.8;
}

.system__txt-desc {
  margin-top: 20px;
}
.system__container {
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 1.2s;
  -webkit-transition: all 1.2s;
}
.system__container.fadeIn {
  opacity: 1;
  transform: translate(0, 0);
}

/* company */
.company__img {
  width: 100%;
}
.company__imgWrap {
  overflow: hidden;
}
.company__imgWrap.showUp .company__Imgcontent {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.company__Imgcontent {
  overflow: hidden;
  position: relative;
  width: 100%;
  -webkit-transform: translate3d(-100.5%, 0, 0);
  transform: translate3d(-100.5%, 0, 0);
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition-duration: 1.5s;
  transition-duration: 1.5s;
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.company__Imgcontent:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: #e2e2e1;
  /*黒ブロックの色指定*/
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition-duration: 1.5s;
  transition-duration: 1.5s;
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.company__imgWrap.showUp .company__Imgcontent:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.company__imgBox {
  background-image: url(../img/company.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 320px;
  padding-top: 62.5%;
  transition-duration: 4s;
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media screen and (min-width: 600px) {
  .company__imgBox {
    background-position: center bottom 25%;
    padding-top: 50.5%;
  }
}
.company__box {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 1024px) {
  .company__box {
    width: 80%;
    margin-left: auto;
  }
}
.company__subject {
  padding: 32px 5px;
  width: 30%;
  font-weight: 500;
  font-size: 1.2rem;
  border-bottom: 1px solid #e2e2e1;
}
.company__detail {
  padding: 32px 5px;
  width: 70%;
  font-size: 1.2rem;
  border-bottom: 1px solid #e2e2e1;
}

.footer {
  padding: 24px 20px 27px;
}
.footer__logo {
  text-align: end;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 42px;
}
.footer__copyright {
  color: #a0a0a0;
  font-size: 1rem;
}

.footer-nav__item {
  margin-bottom: 16px;
}
.footer-nav__item:last-child {
  margin-bottom: 34px;
}
.footer-nav__item-subText {
  font-size: 1rem;
  color: #a0a0a0;
  margin-left: 12px;
}

/* js */
#header.is-hidden {
  visibility: hidden;
  opacity: 0;
}
/*# sourceMappingURL=style.css.map */
