@charset "UTF-8";
:root {
  /*===================== Color =====================*/
  --color-newgraduate: #009EED;
  --color-halfway: #F68732;
  --color-chubase: #E23737;
  --color-lexus: #D3B49D;
  --color-hacbase: #495F75;
  --color-gr-garage: #5E5E5E;
  --color-daihatsupark: #FF0101;
  --color-green01: #00A68D;
  --color-green02: #E5F7F5;
  --color-green03: #D2EEE3;
  --color-gray01: #CECECE;
  --color-gray02: #F6F6F6;
  --color-gray03: #CDCDCD;
  --color-gray-gradient: linear-gradient(90deg, rgba(248, 247, 247, 1), rgba(228, 228, 228, 1));
  /*===================== Font =====================*/
  --font-gen-interface: "Gen Interface JP", sans-serif;
  --font-barlow: "Barlow", sans-serif;
  --font-inter: "Inter", sans-serif;
  /*===================== イージング =====================*/
  --ease-bounce-s:linear(0, 0.271 8.8%, 0.542 19.9%, 0.837 34.2%, 1 44.7%, 0.943 51.1%, 0.925 57.5%, 0.937 63.1%, 1 77.4%, 0.991 84.2%, 1);
  --ease-bounce:linear(0, 0.247 13.2%, 0.415 20.5%, 0.624 27.4%, 1 37.8%, 0.794 44.9%, 0.747 47.9%, 0.731 50.8%, 0.744 53.5%, 0.785 56.4%, 0.999 65.5%, 0.927 69.6%, 0.904 73.4%, 0.921 77%, 1 84.5%, 0.981 89.4%, 1);
}

/*======================= SP-VW =======================*/
/*======================= PC-VW =======================*/
/*------ 使用例 ------
.text {
	font-size: spvw(16);
}
*/
/*===================== 見出し =====================*/
/*=== PC ===*/
/*=== SP ===*/
/*===================== 本文 =====================*/
/*=== PC ===*/
/*=== SP ===*/
/*===================== 英語 =====================*/
/*=== PC ===*/
/*=== SP ===*/
/*================================= アニメーション =================================*/
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes big {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
/*===================== マウスオーバー =====================*/
/*===================== ヘッダー 白 =====================*/
.l-page-cont-block {
  margin-top: calc(106 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-page-cont-block {
    margin-top: calc(134 / 1366 * 100vw);
  }
}

section.sec-form-cont {
  box-sizing: border-box;
  background: #fff;
  margin-bottom: calc(10 / 375 * 100vw);
  padding: calc(35 / 375 * 100vw) calc(25 / 375 * 100vw);
  border-radius: calc(8 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-form-cont {
    margin-bottom: calc(10 / 1366 * 100vw);
    padding: calc(85 / 1366 * 100vw) calc(75 / 1366 * 100vw);
    border-radius: 8px;
  }
}
@media screen and (min-width: 768px) {
  section.sec-form-cont div.sec-form-cont-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
section.sec-form-cont div.sec-form-cont-inner h2 {
  font-weight: 500;
  font-weight: 500;
  font-size: calc(25 / 375 * 100vw);
  line-height: 1.52em;
  letter-spacing: 0;
  margin-bottom: calc(30 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-form-cont div.sec-form-cont-inner h2 {
    writing-mode: vertical-lr;
    width: 10%;
    font-size: calc(35 / 1366 * 100vw);
    margin-bottom: 0;
  }
}

div.recruit-accordion-wrap {
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  div.recruit-accordion-wrap {
    width: 87%;
  }
}
div.recruit-accordion-wrap div.recruit-accordion {
  background: var(--color-gray02);
  padding: 5%;
  margin-bottom: 5%;
}
@media screen and (min-width: 768px) {
  div.recruit-accordion-wrap div.recruit-accordion {
    padding: 0 5%;
    margin-bottom: 15px;
  }
}
div.recruit-accordion-wrap div.recruit-accordion h3.recruit-accordion__button {
  font-weight: 500;
  font-size: calc(18 / 375 * 100vw);
  line-height: 1.83em;
  letter-spacing: 0;
  color: var(--color-green01);
  padding: 5% 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  div.recruit-accordion-wrap div.recruit-accordion h3.recruit-accordion__button {
    font-weight: 500;
    font-size: max(10px, 30 / 1366 * 100vw);
    line-height: 1.4em;
    letter-spacing: 0;
    cursor: pointer;
  }
  div.recruit-accordion-wrap div.recruit-accordion h3.recruit-accordion__button:hover span.accordion__icon {
    animation: rotateani 3s linear infinite;
  }
}
div.recruit-accordion-wrap div.recruit-accordion h3.recruit-accordion__button span.accordion__icon {
  display: block;
  width: 1em;
  height: 1px;
  background: var(--color-green01);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, 0);
}
div.recruit-accordion-wrap div.recruit-accordion h3.recruit-accordion__button span.accordion__icon::after {
  content: " ";
  display: block;
  width: 1em;
  height: 1px;
  background: var(--color-green01);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  transition: all 0.4s;
}
div.recruit-accordion-wrap div.recruit-accordion h3.recruit-accordion__button.is_active span.accordion__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  transition: all 0.4s;
}
@media screen and (min-width: 768px) {
  div.recruit-accordion-wrap div.recruit-accordion h3.recruit-accordion__button.is_active:hover span.accordion__icon {
    animation: none;
  }
}
div.recruit-accordion-wrap div.recruit-accordion {
  /*h3.recruit-accordion__button{*/
}
div.recruit-accordion-wrap div.recruit-accordion div.recruit-accordion-inner {
  display: none;
}
div.recruit-accordion-wrap div.recruit-accordion p.recruit-accordion__lead {
  font-weight: 400;
  font-size: calc(14 / 375 * 100vw);
  line-height: 1.71em;
  letter-spacing: 0;
  margin-bottom: 10%;
}
@media screen and (min-width: 768px) {
  div.recruit-accordion-wrap div.recruit-accordion p.recruit-accordion__lead {
    font-weight: 400;
    font-size: max(10px, 16 / 1366 * 100vw);
    line-height: 2.12em;
    letter-spacing: 0;
    margin-bottom: 60px;
  }
}
div.recruit-accordion-wrap {
  /*recruit-accordion*/
}

@keyframes rotateani {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
table.recruit-requirements {
  width: 100%;
}
table.recruit-requirements tr {
  border-bottom: solid 1px #333;
}
table.recruit-requirements tr:first-child th.recruit-requirements-th {
  padding: 0 0 0 0;
}
@media screen and (min-width: 768px) {
  table.recruit-requirements tr:first-child th.recruit-requirements-th,
  table.recruit-requirements tr:first-child td.recruit-requirements__td {
    padding: 0 0 30px 0;
  }
}
table.recruit-requirements tr:last-child {
  border-bottom: none;
}
table.recruit-requirements th.recruit-requirements-th {
  display: block;
  width: 100%;
  padding: 10% 0 0 0;
  text-align: left;
  font-weight: 500;
  font-size: calc(16 / 375 * 100vw);
  line-height: 1.56em;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  table.recruit-requirements th.recruit-requirements-th {
    display: table-cell;
    width: 160px;
    padding: 0 0 0 0;
    vertical-align: middle;
    font-weight: 500;
    font-size: max(10px, 16 / 1366 * 100vw);
    line-height: 1.56em;
    letter-spacing: 0;
  }
}
table.recruit-requirements td.recruit-requirements__td {
  display: block;
  width: 100%;
  padding: 0 0 10% 0;
  font-weight: 400;
  font-size: calc(14 / 375 * 100vw);
  line-height: 1.71em;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  table.recruit-requirements td.recruit-requirements__td {
    display: table-cell;
    width: calc(100% - 160px);
    vertical-align: middle;
    padding: 30px 0;
    font-weight: 400;
    font-size: max(10px, 16 / 1366 * 100vw);
    line-height: 2.12em;
    letter-spacing: 0;
  }
}
table.recruit-requirements td.recruit-requirements__td span.bold-txt {
  font-weight: bold;
}
table.recruit-requirements td.recruit-requirements__td h4, table.recruit-requirements td.recruit-requirements__td h5 {
  margin-top: 1em;
}
table.recruit-requirements td.recruit-requirements__td h5 {
  font-weight: 500;
}
table.recruit-requirements td.recruit-requirements__td ul.requirements-list li {
  position: relative;
  padding-left: 1em;
}
table.recruit-requirements td.recruit-requirements__td ul.requirements-list li::after {
  content: "";
  display: block;
  background: #000;
  width: 0.4em;
  height: 0.4em;
  position: absolute;
  top: 0.6em;
  left: 0;
  border-radius: 50em;
}
@media screen and (min-width: 768px) {
  table.recruit-requirements td.recruit-requirements__td ul.requirements-list li::after {
    top: 0.86em;
  }
}
table.recruit-requirements td.recruit-requirements__td ul.requirements-list li span.txt-inner {
  display: block;
  text-indent: -1.2em;
  padding-left: 1.2em;
}
table.recruit-requirements td.recruit-requirements__td ul.requirements-list li span.txt-inner02 {
  display: block;
}
@media screen and (min-width: 768px) {
  table.recruit-requirements td.recruit-requirements__td ul.requirements-list li span.txt-inner02 {
    padding-left: 1.2em;
  }
}
table.recruit-requirements td.recruit-requirements__td ul.requirements-list02 li {
  text-indent: -1em;
  padding-left: 1em;
}

a.mid-career-link {
  display: block;
  background-color: var(--color-green01);
  display: flex;
  flex-wrap: wrap;
  color: #fff;
  margin: calc(28 / 375 * 100vw) 0 calc(20 / 375 * 100vw);
  position: relative;
  font-size: calc(18 / 375 * 100vw);
  line-height: 1.2em;
}
@media screen and (min-width: 768px) {
  a.mid-career-link {
    width: 63.6%;
    margin: 91px auto;
    font-weight: 500;
    font-size: max(10px, 30 / 1366 * 100vw);
    line-height: 1.4em;
    letter-spacing: 0;
    transition: all 0.3s;
    border: solid 2px;
  }
  a.mid-career-link:hover {
    background: #1dbca4;
  }
  a.mid-career-link:hover .mid-career-img img {
    transform: scale(1.1);
  }
  a.mid-career-link:hover .arrow svg:nth-of-type(1) {
    transform: translate(120%, 0);
  }
  a.mid-career-link:hover .arrow svg:nth-of-type(2) {
    transform: translate(0, 0);
  }
}
a.mid-career-link .mid-career-img {
  width: 32%;
}
@media screen and (min-width: 768px) {
  a.mid-career-link .mid-career-img {
    overflow: hidden;
    width: 37%;
  }
}
a.mid-career-link .mid-career-img img {
  transition: all 0.3s;
}
a.mid-career-link p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 1em;
}
a.mid-career-link .arrow {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 1.4em;
  transform: translate(0, -50%);
  overflow: hidden;
  width: calc(17 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  a.mid-career-link .arrow {
    width: calc(17 / 1366 * 100vw);
  }
}
a.mid-career-link .arrow svg {
  transition: all 0.3s;
}
a.mid-career-link .arrow svg:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-120%, 0);
}
a.mid-career-link .arrow svg path {
  transition: all 0.3s;
}/*# sourceMappingURL=form.css.map */