@import url("https://fonts.googleapis.com/css2?family=Michroma&family=Noto+Sans+JP:wght@400;700&display=swap");

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #222;
  line-height: 1.7;
  color: #fff;
}

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

img {
  display: block;
  width: 100%;
}

footer {
  padding: 2em;
  font-size: 1.2rem;
  color: #222;
  text-align: center;
}

footer #copyright {
  padding-right: 0.5rem;
}

.flex-between {
  display: flex;
  justify-content: space-between;
}

.inblock {
  display: inline-block;
}

.header {
  background-color: rgba(2, 27, 0, 0.1);
  background: linear-gradient(0deg, rgba(2, 27, 0, 0) 0%, #021b00 75%);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000000;
  padding: 1.5rem 0 1rem;
}

.header__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  max-width: 150rem;
  margin: 0 auto;
  padding: 0;
}

.header .menu-bt {
  position: relative;
  width: 3rem;
  height: 2.5rem;
  border-top: 1px solid #fff;
  margin: 1em 1.5em;
  z-index: 100;
}

.header .menu-bt::before,
.header .menu-bt::after {
  content: "";
  border-top: 1px solid #fff;
  position: absolute;
  left: 0;
  width: 100%;
}

.header .menu-bt::before {
  top: 50%;
}

.header .menu-bt::after {
  bottom: 0;
}

.header .menu-bt.open-bt {
  border-top: none;
}

.header .menu-bt.open-bt::before {
  transform: rotate(45deg);
}

.header .menu-bt.open-bt::after {
  transform: translateY(-11px) rotate(-45deg);
}

@media (min-width: 769px) {
  .header .menu-bt {
    display: none;
  }
}

.header .menu {
  max-width: 56rem;
  width: 100%;
  border-bottom: 1px solid #fff;
}

@media (min-width: 769px) {
  .header .menu {
    padding-right: 1em;
    animation: 3s linear 1s 1 rightLeft;
  }
}

@media (max-width: 768px) {
  .header .menu {
    transform: translateX(200%);
    border-bottom: none;
    background-color: rgba(2, 27, 0, 0.8);
    position: fixed;
    top: 0;
    right: 0;
    transition: transform 1s;
  }

  .header .menu.open {
    transform: translateX(0);
  }
}

.header .logo {
  width: 20rem;
  display: none;
}

.menu__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-family: "Michroma";
  letter-spacing: 0.1rem;
}

@media (max-width: 768px) {
  .menu__block {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 2em;
    margin: auto;
    height: 100vh;
  }

  .menu__block a {
    font-size: 2rem;
  }
}

.menu__block a {
  display: block;
  padding: 0.5em 1.5em;
  width: 100%;
  box-sizing: border-box;
}

.menu__block a:hover {
  color: #a0f89e;
  background-color: rgba(2, 27, 0, 0.7);
  background: linear-gradient(0deg, rgba(2, 27, 0, 0) 0%, #021b00 75%);
}

.menu__block .orange {
  text-transform: none;
}

.menu__block .orange a:hover {
  color: #ed9101;
}

.menu__block .blue a:hover {
  color: #32b7cf;
}

@keyframes blink {
  from {
    bottom: 2em;
  }

  to {
    bottom: 2.5em;
  }
}

.cover {
  background-image: url(/images/top.webp);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cover__block {
  max-width: 70rem;
  width: 80%;
  margin: auto;
  line-height: 1.8;
}

.scroll {
  position: relative;
}

.scroll::before {
  content: ">";
  position: absolute;
  bottom: 2em;
  left: 50%;
  display: block;
  font-family: "Michroma";
  font-size: 3rem;
  opacity: 0.5;
  transform: rotate(90deg) scaleY(1.3);
  animation: 3s linear 1s infinite alternate blink;
}

.section {
  position: relative;
  border-top: 2rem solid #fff;
  opacity: 1;
  height: auto;
}

@media (max-width: 768px) {
  .section {
    border-width: 1rem;
  }
}

.section__image,
.section__block {
  display: none;
}

.section__image {
  border-bottom: 1rem solid #fff;
}

@media (min-width: 769px) {
  .section__image {
    position: absolute;
    top: 22vh;
    left: -2rem;
    z-index: 10;
    width: 50%;
    border: 2rem solid #fff;
    transition: all 0.5s;
  }
}

.section__image img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 30rem;
}

@media (max-width: 768px) {
  .section__image img {
    height: 16.5rem;
  }
}

.section--title,
.section--subtitle {
  font-family: "Michroma";
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

@media (min-width: 769px) {

  .section--title,
  .section--subtitle {
    transition: all 0.5s;
  }
}

.section--subtitle {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5em;
}

.section--headering {
  max-width: 150rem;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: nowrap;
  flex-direction: column;
  opacity: 0;
}

.section--headering h2 {
  font-size: 3rem;
  line-height: 1.3;
}

.section--headering h2 span {
  font-size: 1.8rem;
  display: block;
}

@media (max-width: 768px) {
  .section--headering {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 16.5rem;
    align-items: center;
  }
}

@media (min-width: 769px) {
  .section--headering {
    width: 80%;
    padding: 10rem 2em;
    border-left: 2rem solid #fff;
    border-bottom: 2rem solid #fff;
    border-top: none;
    margin: 0 0 0 auto;
  }

  .section--headering h2 {
    font-size: 6rem;
    display: inline;
    padding: 0;
    border-bottom: none;
  }

  .section--headering p {
    font-size: 1.3em;
  }
}

.section__block {
  padding: 2em 2em 3em;
}

.section__block ul {
  list-style: initial;
  padding: 1em 1em 2em 4em;
}

.section__block--left {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: column;
  row-gap: 1.5em;
  font-family: "Michroma";
}

.section__block--left .inner {
  font-family: "Michroma";
  width: 100%;
}

.section__block--left .inner p,
.section__block--left .inner ul {
  text-transform: capitalize;
  padding: 0 1rem 1em;
  margin: 0 -1rem 1em;
  border-bottom: 2px dotted #fff;
}

.section__block--left .inner ul {
  padding-left: 3em;
}

.section__block--right {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: column;
}

.section__block--right .section--subtitle {
  margin-bottom: 0.5em;
}

.section__block--right .inner {
  text-transform: capitalize;
}

@media (min-width: 769px) {
  .section__block {
    min-height: calc(100vh - 30rem);
    flex-direction: row;
    padding: 0;
  }

  .section__block--left {
    width: 45%;
    border-right: 2rem solid #fff;
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 20rem;
  }

  .section__block--left .inner {
    max-width: 40rem;
    width: 100%;
    padding: 5em 2em;
    box-sizing: border-box;
  }

  .section__block--left .inner ul {
    border: none;
  }

  .section__block--left .inner p {
    border: none;
  }

  .section__block--right {
    width: 48%;
  }

  .section__block--right .inner {
    width: 80%;
    padding: 3em 0;
  }
}

.company {
  background-color: #32b7cf;
}

.jobs {
  background-color: #ed9101;
}

.jobs.section__image {
  margin-left: auto;
  margin-right: -2rem;
}

.jobs.section--headering {
  margin-left: 0;
  text-align: left;
  border-left: none;
  border-right: 2rem solid #fff;
}

.jobs.section__block {
  flex-direction: row-reverse;
}

.jobs.section__block--left {
  width: 40%;
  border-right: none;
  border-left: 2rem solid #fff;
}

@media (min-width: 769px) {
  .jobs.section__block--left .inner ul li {
    list-style: initial;
    padding-left: 5em;
  }
}

.jobs.section__block--right {
  padding: 4em 0 10em 2em;
}

.contact {
  background-color: #8bc34a;
}

.contact p {
  line-height: 1.3;
  padding: 1em 0.5em;
}

@media (min-width: 769px) {
  .contact p {
    padding-top: 5em 1.5em 1em;
  }

  .contact .section__image {
    width: 38%;
  }

  .contact .section__block--left {
    width: 35%;
  }

  .contact .section__block--right {
    width: 55%;
    flex-direction: column;
  }
}

.contact .form {
  max-width: 55rem;
  width: 90%;
  margin: auto;
}

.contact .form__block {
  margin-bottom: 1.5em;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .contact .form__block {
    display: block;
  }
}

.contact .form label {
  width: 8em;
  font-family: "Michroma";
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.contact .form input,
.contact .form textarea {
  width: 100%;
  border: 1px solid #ccc;
  padding: 0.5rem;
}

@media (min-width: 769px) {

  .contact .form input,
  .contact .form textarea {
    width: 70%;
  }
}

.contact .form input:focus,
.contact .form textarea:focus {
  outline: none;
}

.contact .form textarea {
  height: 7em;
}

.contact .form button {
  cursor: pointer;
  display: block;
  width: 15rem;
  padding: 1em;
  text-align: center;
  background-color: #f4a005;
  color: #fff;
  border: 1px solid #a36b02;
  border-radius: 0.5rem;
  margin-top: 3em;
  margin-left: auto;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

@media (max-width: 768px) {
  .contact .form button {
    margin-right: auto;
  }
}

.page {
  position: relative;
  border-top: 2rem solid #fff;
  width: 100%;
  height: 100vh;
}

.page .section--headering {
  width: 100%;
  height: 100%;
  opacity: 1;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: column;
}

.page .section--headering h2 {
  font-size: 4rem;
}

.page .section--headering p {
  font-size: 1.3em;
}

@media (min-width: 769px) {
  .page .section--headering h2 {
    font-size: 10rem;
  }
}

@media (max-width: 768px) {
  .page {
    border-width: 1rem;
  }
}

.inview .section--headering {
  opacity: 1;
  transition: all 0.4s ease-out;
}

.inview .section__image,
.inview .section__block {
  display: block;
}

@media (min-width: 769px) {
  .inview .section__block {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
  }
}

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