@charset "UTF-8";
/* A Modern CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role="list"], ol[role="list"] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

a {
  text-decoration: none;
}

body {
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}

ul, ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

main {
  flex: 1;
  padding-bottom: 60px;
}

.inner {
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .inner {
    width: 94.14%;
  }
}

@media screen and (max-width: 599px) {
  .inner {
    min-width: 280px;
    width: 88%;
  }
}

a.btn-txt {
  color: #00AD5E;
  text-decoration: underline;
}

a.btn-txt:hover {
  color: #00D674;
}

.row {
  display: flex;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  color: #3c3c3c;
}

.header {
  width: 100%;
  height: 60px;
  padding: 0 20px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  line-height: 1;
  font-size: 1.6rem;
  position: fixed;
  z-index: 110;
  border-bottom: 1px solid #efefef;
}

.header__logo {
  display: flex;
  justify-content: flex-start;
  color: #212529;
}

.header__logo img {
  width: 100px;
  height: auto;
  margin-right: 15px;
}

.header__logo span {
  padding-top: 1px;
}

@media screen and (max-width: 599px) {
  .header__logo {
    flex-direction: column;
  }
  .header__logo span {
    padding-top: 5px;
    font-size: 1.2rem;
  }
}

.header-nav {
  display: flex;
}

.header-nav__btn {
  display: flex;
  align-items: center;
  padding: 6px 30px;
  height: 40px;
  margin-left: 15px;
  background: #00AD5E;
  transition: ease all .3s;
  border-radius: 3px;
  color: #fff;
}

@media screen and (max-width: 599px) {
  .header-nav__btn {
    padding: 6px 10px;
  }
}

.header-nav__btn i {
  margin-right: 10px;
}

.header-nav__btn:hover {
  background-color: #00D674;
}

.header-nav__btn-menu {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
  width: 150px;
  height: 40px;
  margin-left: 15px;
  background: #fff;
  border: 1px solid #d5d5d5;
  transition: ease all .3s;
  border-radius: 3px;
  color: #212529;
}

.header-nav__btn-menu i {
  margin-right: 10px;
}

.header-nav__btn-menu:hover {
  background-color: #fff;
}

@media screen and (max-width: 1024px) {
  .header-nav__btn-menu {
    display: flex;
  }
}

@media screen and (max-width: 599px) {
  .header-nav__btn-menu {
    display: flex;
    width: 50px;
  }
  .header-nav__btn-menu span {
    display: none;
  }
  .header-nav__btn-menu i {
    margin-right: 0;
  }
}

.header-nav .global-nav {
  display: flex;
  align-items: center;
  margin: 0;
}

.header-nav .global-nav a {
  color: #212529;
}

.header-nav .global-nav li.global-nav__lv1:hover a {
  color: #00AD5E;
}

.header-nav .global-nav li.global-nav__lv1.has-child div > a::after {
  content: "\e900";
  font-family: "icomoon";
  color: #fff;
  margin-left: 10px;
  font-size: 10px;
  transition: transform .5s;
  display: inline-block;
}

.header-nav .global-nav li.global-nav__lv1.has-child:hover a::after {
  transform: rotateX(180deg);
  color: #00D674;
}

.header-nav .global-nav li.global-nav__lv1 {
  margin-right: 40px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .header-nav .global-nav li.global-nav__lv1 {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .header-nav .global-nav li.global-nav__lv1 {
    display: none;
  }
}

.header-nav .global-nav li.global-nav__lv1 ul.global-nav__lv2 {
  position: absolute;
  width: 260px;
  top: 50px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  padding: 20px  20px 10px;
  transition: all linear .1s;
}

.header-nav .global-nav li.global-nav__lv1 ul.global-nav__lv2 li {
  margin-bottom: 15px;
  padding-left: 15px;
  position: relative;
}

.header-nav .global-nav li.global-nav__lv1 ul.global-nav__lv2 li::before {
  content: "";
  border: 1px solid #00AD5E;
  width: 5px;
  position: absolute;
  top: 5px;
  left: 0;
}

.header-nav .global-nav li.global-nav__lv1 ul.global-nav__lv2 li a {
  color: #2F3948;
}

header .global-nav .global-nav__lv2 {
  opacity: 0;
  visibility: hidden;
  top: 0px;
}

header .global-nav .global-nav__lv2.open {
  visibility: visible;
  opacity: 1;
  top: 10px;
}

#content-info-area {
  position: -webkit-sticky;
  /* safari対応 */
  position: sticky;
  top: 150px;
  margin-top: 90px;
  transition: 0.8s ease all;
}

@media screen and (max-width: 1024px) {
  #content-info-area {
    top: 90px;
    margin-top: 30px;
    display: none;
  }
}

#content-info-area a {
  color: #54595F;
  transition: 0.3s ease all;
}

#content-info-area a:hover {
  color: #00D674;
}

@media screen and (max-width: 1024px) {
  #content-info-area .local-menu {
    display: flex;
  }
}

#content-info-area .local-menu li {
  margin-bottom: 20px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  #content-info-area .local-menu li {
    margin-left: 30px;
  }
}

#content-info-area .local-menu li.current a {
  color: #00AD5E;
}

#content-info-area .local-menu li.current::before {
  content: "";
  background: #00AD5E;
  height: 3px;
  width: 10px;
  position: absolute;
  top: 10px;
  left: -20px;
}

.step__item {
  display: flex;
  align-items: flex-start;
  height: 125px;
}

@media screen and (max-width: 599px) {
  .step__item {
    height: auto;
    margin-bottom: 15px;
  }
}

.step__item__icon {
  min-width: 40px;
  min-height: 40px;
  background: #00AD5E;
  color: #fff;
  font-weight: bold;
  position: relative;
  border-radius: 50%;
  display: flex;
  margin-right: 20px;
  justify-content: center;
  align-items: center;
}

.step__item__icon::after {
  content: "";
  border: 0.5px solid #00AD5E;
  position: absolute;
  bottom: -82px;
  height: 82px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

@media screen and (max-width: 599px) {
  .step__item__icon::after {
    display: none;
  }
}

.step__item__icon::before {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-bottom: solid 1px #00AD5E;
  border-right: solid 1px #00AD5E;
  position: absolute;
  bottom: -82px;
  left: 44%;
  transform: rotate(45deg);
}

@media screen and (max-width: 599px) {
  .step__item__icon::before {
    display: none;
  }
}

.step__item__title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 5px;
  padding-top: 5px;
}

.step__item__title small {
  display: block;
  font-weight: normal;
  font-size: 1.2rem;
}

.step__item__desc {
  color: #54595F a;
  color-color: #54595F;
  color-text-decoration: underline;
  color-padding: 0 3px;
}

.step__item.first {
  margin-bottom: 20px;
}

.step__item.first .step__item__icon::after {
  bottom: -50px;
  height: 50px;
}

.step__item.first .step__item__icon::before {
  bottom: -50px;
}

.step__item.end {
  height: 60px;
}

.step__item.end .step__item__icon::after {
  display: none;
}

.step__item.end .step__item__icon::before {
  display: none;
}

.footer {
  background: #00d172;
  padding: 30px 0 60px;
}

.footer__inner {
  width: 1024px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .footer__inner {
    width: 100%;
    padding: 0 30px;
  }
}

@media screen and (max-width: 599px) {
  .footer__inner {
    width: 100%;
    padding: 0 15px;
  }
}

.footer__title {
  display: flex;
  margin-bottom: 15px;
}

.footer__title img {
  display: block;
  width: 100px;
  height: auto;
  margin-right: 15px;
}

.footer__title span {
  display: block;
  color: #000;
}

.footer__navi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px dotted #000;
  padding-bottom: 20px;
}

@media screen and (max-width: 599px) {
  .footer__navi {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
  }
}

.footer__gnav {
  display: flex;
}

@media screen and (max-width: 599px) {
  .footer__gnav {
    flex-direction: column;
    margin-bottom: 20px;
  }
}

.footer__gnav li {
  margin-right: 30px;
  position: relative;
  margin-left: 15px;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 10px;
}

@media screen and (max-width: 599px) {
  .footer__gnav li {
    margin-right: 0;
    margin-left: 15px;
  }
}

.footer__gnav li::before {
  content: "";
  background: #fff;
  width: 5px;
  height: 2px;
  position: absolute;
  top: 11px;
  left: -15px;
}

.footer__gnav a {
  color: #000;
}

.footer__btn {
  display: flex;
  background: #fff;
  color: #000;
  border-radius: 5px;
  width: 230px;
  height: 60px;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.footer__btn .fa-caret-right {
  padding-right: 15px;
  color: #00AD5E;
}

@media screen and (max-width: 599px) {
  .footer__btn {
    width: 100%;
  }
}

.footer__sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 599px) {
  .footer__sub {
    flex-direction: column;
  }
}

.footer__navi-sub a {
  background: #000;
  font-size: 1.3rem;
  padding: 7px 20px;
  border-radius: 20px;
  color: #fff;
  margin-right: 20px;
}

@media screen and (max-width: 599px) {
  .footer__navi-sub a {
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
}

.footer__navi-sub a .fa-solid {
  margin-left: 15px;
}

.footer__credit {
  font-size: 1.4rem;
  color: #000;
  padding-top: 5px;
}

.overlay-menu.open {
  opacity: 1;
  z-index: 110;
  display: block;
}

.overlay-menu {
  opacity: 0;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: auto;
  background: #fff;
  z-index: -10;
  transition: all .3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.overlay-menu__content {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  position: absolute;
  bottom: 0;
}

.overlay-menu-main__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.overlay-menu-main__nav li {
  font-size: 2rem;
  font-weight: 500;
  margin-left: 25px;
  position: relative;
  margin-right: 20px;
}

.overlay-menu-main__nav li:nth-child(1) {
  order: 1;
}

.overlay-menu-main__nav li:nth-child(2) {
  order: 3;
}

.overlay-menu-main__nav li:nth-child(3) {
  order: 5;
}

.overlay-menu-main__nav li:nth-child(4) {
  order: 7;
}

.overlay-menu-main__nav li:nth-child(5) {
  order: 9;
}

.overlay-menu-main__nav li:nth-child(6) {
  order: 2;
}

.overlay-menu-main__nav li:nth-child(7) {
  order: 4;
}

.overlay-menu-main__nav li:nth-child(8) {
  order: 6;
}

.overlay-menu-main__nav li:nth-child(9) {
  order: 8;
}

.overlay-menu-main__nav li::before {
  content: "";
  background-color: #00D674;
  width: 10px;
  height: 3px;
  top: 14px;
  left: -20px;
  display: block;
  position: absolute;
  transition: ease .3s all;
}

.overlay-menu-main__nav li a {
  color: #000;
  transition: ease all 0.3s;
  display: inline-block;
}

.overlay-menu-main__nav li:hover::before {
  background-color: #30FA9E;
  left: -10px;
}

.overlay-menu-main__nav li:hover a {
  margin-left: 10px;
}

@media screen and (max-width: 1024px) {
  .overlay-menu {
    padding: 90px 0 30px;
  }
  .overlay-menu .inner {
    padding: 0 25px;
  }
  .overlay-menu__content {
    display: block;
    height: auto;
    width: auto;
    position: relative;
  }
}

@media screen and (max-width: 599px) {
  .overlay-menu {
    padding: 80px 0 30px;
  }
  .overlay-menu .inner {
    padding: 0 25px;
  }
  .overlay-menu__content {
    display: block;
    height: auto;
    width: auto;
    position: relative;
  }
  .overlay-menu-main {
    flex-direction: column;
  }
  .overlay-menu-main__nav {
    order: 2;
  }
  .overlay-menu-main__nav ul {
    display: block;
  }
  .overlay-menu-main__nav li {
    width: 100%;
    margin-bottom: 15px;
  }
}

.job-desc div {
  display: flex;
  border-top: 1px solid #d5d5d5;
  padding: 15px;
}

.job-desc div:last-child {
  border-bottom: 1px solid #d5d5d5;
}

@media screen and (max-width: 599px) {
  .job-desc div {
    flex-direction: column;
  }
}

.job-desc div > dt {
  font-weight: bold;
  width: 25%;
  max-width: 25%;
  min-width: 25%;
}

@media screen and (max-width: 599px) {
  .job-desc div > dt {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    margin-bottom: 10px;
  }
}

.job-desc div > dd {
  color: #54595F;
}

.job-desc div > dd ul li {
  position: relative;
  margin-left: 15px;
  margin-bottom: 3px;
  margin-top: 3px;
}

.job-desc div > dd ul li::before {
  content: "";
  background: #00AD5E;
  position: absolute;
  top: 11px;
  left: -15px;
  width: 5px;
  height: 5px;
  border-radius: 3px;
}

.job-desc div > dd > dl > dt {
  color: #212529;
  display: flex;
  margin-bottom: 10px;
}

.job-desc div > dd > dl > dt span {
  color: #00AD5E;
  font-weight: bold;
  margin-right: 5px;
}

.job-desc div > dd > dl > dd {
  margin-left: 20px;
}

.entry__item {
  transition: all ease .3s;
  position: relative;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
  border-radius: 5px;
}

@media screen and (max-width: 599px) {
  .entry__item {
    box-shadow: none;
    border-top: 1px solid #b4b4b4;
    border-radius: 0;
    margin-bottom: 0px;
  }
}

.entry__item__check {
  display: none;
}

.entry__item__label {
  cursor: pointer;
  color: #212529;
  font-size: 1.6rem;
  display: block;
  padding: 30px 60px;
  position: relative;
}

.entry__item__label::before {
  box-sizing: border-box;
  content: "\2b";
  display: block;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 26px;
  color: #00AD5E;
}

.entry__item__content {
  display: block;
  height: 0;
  opacity: 0;
  padding: 0 50px 0 60px;
  transition: .3s;
  visibility: hidden;
}

.entry__item__content .btn-txt {
  justify-content: flex-end;
}

.entry__item__content__mission {
  color: #00AD5E;
  font-weight: bold;
  margin-bottom: 20px;
}

.entry__item__content__unit {
  border-top: 5px solid rgba(0, 149, 81, 0.1);
  padding: 10px 0 20px;
  display: flex;
  flex-direction: column;
}

.entry__item__content__unit small {
  color: #54595F;
}

.entry__item__content__unit__title {
  font-weight: bold;
  color: #3C4E69;
  margin-bottom: 5px;
}

.entry__item__content__unit .list-line {
  margin-bottom: 10px;
  color: #54595F;
}

.entry__item__content__unit .dl-underline {
  width: 100%;
  margin-bottom: 10px;
}

.entry__item__content .row {
  justify-content: space-between;
  margin-bottom: 10px;
}

.row > .entry__item__content__unit {
  width: 48.4%;
  display: block;
}

.entry__item__check:checked + .entry__item__label {
  color: #00AD5E;
  font-weight: bold;
}

.entry__item__check:checked + .entry__item__label::before {
  font-family: "Font Awesome 5 Free";
  content: "\f068";
}

.entry__item__check:checked + .entry__item__label + .entry__item__content {
  height: auto;
  opacity: 1;
  visibility: visible;
  padding-bottom: 30px;
}

@media screen and (max-width: 1024px) {
  .entry {
    padding: 0;
  }
  .entry__card {
    max-width: unset;
    padding: 50px 0 70px;
  }
  .entry__item:last-child {
    border-bottom: 1px solid #b4b4b4;
  }
  .entry__item__content__unit {
    flex-direction: column;
  }
  .entry__item__content__unit .dl-underline {
    width: 100%;
    margin-bottom: 10px;
  }
  .entry__item__content .row {
    flex-direction: column;
    margin-bottom: 10px;
  }
  .row > .entry__item__content__unit {
    width: 100%;
    display: block;
  }
}

@media screen and (max-width: 599px) {
  .entry {
    padding: 0;
  }
  .entry__card {
    max-width: unset;
    padding: 50px 0 70px;
  }
  .entry__item__label {
    cursor: pointer;
    color: #212529;
    font-size: 1.4rem;
    display: block;
    padding: 25px 60px 25px 30px;
    position: relative;
  }
  .entry__item__label::before {
    box-sizing: border-box;
    content: "\2b";
    display: block;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    left: 0px;
    top: 21px;
    font-size: 18px;
    color: #00AD5E;
  }
  .entry__item .btn {
    position: absolute;
    top: 15px;
    right: 0;
    width: 100px;
    font-size: 1.2rem;
    font-weight: bold;
  }
  .entry__item .btn .arrow-s {
    display: none;
  }
  .entry__item:last-child {
    border-bottom: 1px solid #b4b4b4;
  }
  .entry__item__content {
    padding: 0;
  }
  .entry__item__content__unit {
    flex-direction: column;
  }
  .entry__item__content__unit .dl-underline {
    width: 100%;
    margin-bottom: 10px;
  }
  .entry__item__content .row {
    flex-direction: column;
    margin-bottom: 10px;
  }
  .row > .entry__item__content__unit {
    width: 100%;
    display: block;
  }
}

ul.list-line {
  margin: 10px 0;
  padding: 0;
}

ul.list-line li {
  padding: 3px 0 3px 13px;
  position: relative;
}

ul.list-line li::before {
  content: "";
  width: 8px;
  height: 2px;
  background-color: #00D674;
  display: block;
  position: absolute;
  top: 1.25rem;
  left: 0;
}

ul.list-line.bg-gray {
  padding: 20px 20px 20px 25px;
  background-color: #f3f3f3;
  border-radius: 10px;
}

ul.list-line.border-gray {
  padding: 20px 20px 20px 25px;
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid #efefef;
}

ul.list-line.bg-green {
  padding: 20px 20px 20px 25px;
  background-color: #E5F8F0;
  border-radius: 10px;
}

ul.list-line.border-green {
  padding: 20px 20px 20px 25px;
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid #E5F8F0;
}

@media screen and (max-width: 599px) {
  ul.list-line.bg-gray {
    padding: 16px 20px;
  }
}

dl.dl-underline {
  margin: 10px 0;
}

dl.dl-underline div {
  display: flex;
  border-bottom: dotted #b4b4b4 1px;
  padding: 3px 0;
}

dl.dl-underline div dt {
  width: 180px;
  min-width: 180px;
}

dl.dl-underline div dd {
  color: #54595F;
}

@media screen and (max-width: 1024px) {
  dl.dl-underline div {
    display: flex;
    padding: 3px 0;
  }
  dl.dl-underline div dt {
    width: 40%;
    min-width: 40%;
    max-width: 40%;
  }
  dl.dl-underline div dd {
    color: #54595F;
    width: 60%;
    min-width: 60%;
    max-width: 60%;
  }
}

@media screen and (max-width: 599px) {
  dl.dl-underline div {
    display: flex;
    flex-direction: column;
    padding: 5px 0;
  }
  dl.dl-underline div dt {
    width: 100%;
    min-width: unset;
    max-width: unset;
    color: #868E96;
  }
  dl.dl-underline div dt::after {
    content: ":";
  }
  dl.dl-underline div dd {
    color: #54595F;
    width: 100%;
    min-width: unset;
    max-width: unset;
  }
}

section a {
  color: #00AD5E;
}

.flow__caption {
  margin-bottom: 40px;
}

.page-title {
  background: url("/images/recruit/newgrads/hd-engineer.jpg") no-repeat;
  background-size: cover;
  margin-top: 60px;
  height: 300px;
  display: flex;
  align-items: center;
}

.page-title h1 {
  color: #fff;
}

.page-title h1 span {
  display: block;
  font-size: 1.8rem;
  font-weight: normal;
  padding-bottom: 5px;
}

.content-wrap {
  display: flex;
  width: 1024px;
  box-sizing: border-box;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .content-wrap {
    width: 100%;
    flex-direction: column;
  }
}

.content-main {
  width: 764px;
  padding-left: 60px;
  box-sizing: border-box;
}

.content-main h2 {
  margin-bottom: 40px;
  font-size: 3.0rem;
  color: #000;
}

@media screen and (max-width: 1024px) {
  .content-main {
    width: 100%;
    padding: 0 40px;
  }
}

@media screen and (max-width: 599px) {
  .content-main {
    width: 100%;
    padding: 0 20px;
  }
}

.content-sub {
  min-width: 200px;
  max-width: 200px;
}

@media screen and (max-width: 1024px) {
  .content-sub {
    min-width: unset;
    max-width: unset;
  }
}

.content-main section {
  padding: 90px 0 0 0;
  margin-bottom: 60px;
}

.link-list li {
  padding: 15px 0;
  border-bottom: 1px dotted #b4b4b4;
}

.link-list li .fa-caret-right {
  color: #00AD5E;
  padding-right: 10px;
}

.link-list li a {
  color: #212529;
}
