#header {
  display: flex;
  justify-content: space-between;
  padding: 30px 50px 30px 50px;
  align-items: center;
  position: static;
}
#header #mobile-menu-opener:hover {
  cursor: pointer;
}
#header nav#top-menu {
  display: none;
}
#header nav#top-menu #mobile-menu-closer {
  display: none;
}
#header nav#top-menu #social-icon {
  display: none;
}
#header nav#top-menu.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #8a909a;
  z-index: 100;
}
#header nav#top-menu.open .nav-list {
  flex-grow: 1;
}
#header nav#top-menu.open #mobile-menu-closer {
  display: flex;
  justify-content: end;
  --line-size: 32px;
  --half-line-size: calc(var(--line-size) / 2);
}
#header nav#top-menu.open #mobile-menu-closer .button {
  width: var(--line-size);
  height: var(--line-size);
  position: relative;
  margin: 20px 20px;
}
#header nav#top-menu.open #mobile-menu-closer .button .line {
  position: absolute;
  width: var(--line-size);
  height: 0.5px;
  background: white;
  transform-origin: left top;
}
#header nav#top-menu.open #mobile-menu-closer .button:active .line {
  background: grey;
}
#header nav#top-menu.open #mobile-menu-closer .button .line:first-child {
  transform: translate(var(--half-line-size), var(--half-line-size)) rotate(45deg) translateX(calc(-1 * var(--half-line-size)));
}
#header nav#top-menu.open #mobile-menu-closer .button .line:last-child {
  transform: translate(var(--half-line-size), var(--half-line-size)) rotate(-45deg) translateX(calc(-1 * var(--half-line-size)));
}
#header nav#top-menu.open #social-icon {
  display: flex;
  margin: 40px;
  gap: 10px;
}
#header nav#top-menu.open #social-icon img {
  width: 35px;
}
#header nav#top-menu.open ol, #header nav#top-menu.open ul {
  list-style: none;
  margin: 50px 0;
}
#header nav#top-menu.open .nav-item {
  color: white;
  display: block;
  padding: 0 0 24px;
  margin: 0;
}
#header nav#top-menu.open .nav-item a {
  text-decoration: none;
  color: white;
}
@media screen and (min-width: 600px) {
  #header #mobile-menu-opener {
    display: none;
  }
  #header nav#top-menu {
    display: block;
  }
  #header nav#top-menu ol, #header nav#top-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  #header nav#top-menu .nav-item {
    position: relative;
    color: #37383C;
    font-size: 12px;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  #header nav#top-menu .nav-item a {
    text-decoration: none;
    color: #333333;
  }
  #header nav#top-menu .nav-item a::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #64AD80, transparent);
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
  }
  #header nav#top-menu .nav-item a:hover::after {
    transform: scale(1, 1);
  }
  #header nav#top-menu .nav-item:last-of-type:after {
    content: "";
    width: 1px;
    height: 23px;
    background-color: #E5E5E5;
    position: absolute;
    left: -10px;
    top: -3px;
  }
}

#footer img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
}
#footer nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
#footer nav a {
  color: #333333;
  font-size: 10px;
}
#footer nav ol, #footer nav ul {
  list-style: none;
  display: flex;
  gap: 10px;
}
#footer nav img {
  width: 25px;
}

@media screen and (min-width: 600px) {
  #footer img {
    width: 50%;
  }
  #footer a {
    font-size: 10px;
  }
  #footer nav {
    justify-content: right;
    margin: 0 120px 0 0;
  }
  #footer nav img {
    width: 30px;
  }
}
#recruit-page #mission-top-img {
  position: relative;
  --overlap-y: 5vw;
  --overlap-x: 10vw;
}
#recruit-page #mission-top-img img:first-of-type {
  position: relative;
  left: 0;
  top: 0;
  width: calc(50vw + var(--overlap-x));
}
#recruit-page #mission-top-img img:last-of-type {
  position: relative;
  left: 50vw;
  z-index: 50;
  top: calc(var(--overlap-y) * -1);
  width: 50vw;
}
#recruit-page #mission-top-img .title {
  margin-left: 20px;
  position: relative;
}
#recruit-page #mission-top-img .title div {
  font-weight: 900;
  font-size: 14px;
}
#recruit-page #recruiting {
  margin-top: 40px;
  margin-bottom: 50px;
}
#recruit-page #recruiting > h3 {
  display: block;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 30px;
}
#recruit-page .recruiting-collapsible {
  position: relative;
}
#recruit-page .recruiting-collapsible input[type=checkbox] {
  display: none;
}
#recruit-page .recruiting-collapsible label {
  display: block;
  width: 90%;
  margin: 0 auto;
  cursor: pointer;
  border-top: 0.5px lightgray solid;
  padding: 30px 0;
  border-collapse: collapse;
  display: flex;
  gap: 20px;
  align-items: center;
}
#recruit-page .recruiting-collapsible label:last-of-type {
  border-bottom: 0.5px lightgray solid;
}
#recruit-page .recruiting-collapsible .content {
  display: block;
  width: 90%;
  margin: 0 auto;
  display: none;
}
#recruit-page .recruiting-collapsible .content header {
  font-weight: 900;
  font-size: 16px;
  margin: 20px 0;
}
#recruit-page .recruiting-collapsible .content .details {
  background: white;
  padding: 20px 10px;
  margin-left: 10px;
}
#recruit-page .recruiting-collapsible .content .actions {
  display: flex;
  justify-content: right;
  padding: 20px 0;
}
#recruit-page .recruiting-collapsible .content .actions a {
  text-decoration: none;
  background: white;
  color: #809CC9;
}
#recruit-page .recruiting-collapsible .content .actions button {
  background: white;
  color: #809CC9;
  text-decoration: none;
}
#recruit-page .recruiting-collapsible label:before {
  content: url('data:image/svg+xml;utf8,<svg viewBox="0 -7 100 93" xmlns="http://www.w3.org/2000/svg"><line x1="0" y1="0" x2="50" y2="86" stroke="black"></line><line x1="0" y1="0" x2="100" y2="0" stroke="black"></line><line x1="50" y1="86" x2="100" y2="0" stroke="black"></line></svg>');
  width: 40px;
  height: 40px;
  display: block;
}
#recruit-page .recruiting-collapsible input[type=checkbox]:checked ~ label {
  border-bottom: none;
}
#recruit-page .recruiting-collapsible input[type=checkbox]:checked ~ label:before {
  content: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><line x1="0" y1="0" x2="100" y2="100" stroke="black" stroke-width="1"></line><line x1="100" y1="0" x2="0" y2="100" stroke="black" stroke-width="1"></line></svg>');
}
#recruit-page .recruiting-collapsible input[type=checkbox]:checked ~ .bg {
  background-color: #C5CCD6;
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
#recruit-page .recruiting-collapsible input[type=checkbox]:checked ~ .content {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 900px) {
  #recruit-page #mission-top-img .title {
    position: absolute;
    bottom: calc(var(--overlap-y) / 2);
    left: 0;
    width: 100%;
    height: calc((100% - var(--overlap-y)) / 2);
    justify-content: center;
    flex-direction: column;
    display: flex;
    margin-left: 5vw;
  }
  #recruit-page #mission-top-img .title div {
    font-size: larger;
  }
  #recruit-page .recruiting-collapsible input[type=checkbox]:checked ~ .content {
    display: grid;
    grid-template-columns: 30% 70%;
    grid-template-rows: auto;
    grid-template-areas: "header details" "actions actions";
  }
  #recruit-page .recruiting-collapsible input[type=checkbox]:checked ~ .content header {
    grid-area: header;
  }
  #recruit-page .recruiting-collapsible input[type=checkbox]:checked ~ .content .details {
    grid-area: details;
  }
  #recruit-page .recruiting-collapsible input[type=checkbox]:checked ~ .content .actions {
    grid-area: actions;
  }
}

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