@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");
:root {
  --font-lato: "Lato", sans-serif;
  --font-montserrat: "Montserrat", sans-serif;
  --font-gothic: "Noto Sans JP", sans-serif;
  --font-ming: "Noto Serif JP", serif;
}

img {
  max-width: 100%;
  height: auto;
}

*,
html,
body {
  font-family: var(--font-gothic);
  font-size: 16px;
  scroll-behavior: smooth;
}

html {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}
html body {
  align-items: center;
  color: #444444;
  margin: 0;
}
html body header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1160px;
  width: 100%;
  background-color: #ffffff;
  padding: 0 2rem;
  padding-right: 1rem;
  border-radius: 0 0 10px 10px;
}
html body header .logo {
  display: inline-block;
  color: #444444;
  font-weight: 700;
}
html body header .logo:hover {
  text-decoration: none;
}
html body header .logo p {
  font-size: 0.8rem;
}
html body header .logo h1 {
  font-size: 1.6rem;
  color: #01aa36;
  font-weight: 700;
}
html body header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  width: 60%;
  font-weight: 500;
  margin-right: 1rem;
}
html body header nav a {
  color: #ffffff;
}
html body header nav a:hover {
  color: #ffffff;
  text-decoration: none;
}
html body header nav .humburger-wrap {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 25px;
  justify-content: space-between;
  position: relative;
}
html body header nav .humburger-wrap span {
  display: block;
  height: 3px;
  background-color: #01aa36;
  border-radius: 2px;
}
html body header nav .humburger-wrap.open span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 5px);
}
html body header nav .humburger-wrap.open span:nth-child(2) {
  opacity: 0;
}
html body header nav .humburger-wrap.open span:nth-child(3) {
  transform: rotate(-45deg) translate(11px, -7px);
}
html body header nav .navi-wrap {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
html body header nav li {
  position: relative;
  margin: 0 auto;
  border-right: 1px solid #444444;
  width: 105px;
  text-align: center;
  font-size: 0.9375rem;
}
html body header nav li.boder0 {
  border: none;
}
html body header nav li.orange {
  background-color: #ea5514;
  width: 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
html body header nav li.orange a {
  color: #ffffff;
}
html body header nav li.orange a:hover {
  color: #ffffff;
}
html body header nav li a {
  color: #444444;
}
html body header nav li a:hover {
  text-decoration: none;
  color: #444444;
  opacity: 0.5;
}
html body .content-wrap {
  display: block;
  margin: 0 auto;
}
html body .content-wrap .inner .main-visual-wrap {
  height: 800px;
  margin-top: -80px;
  position: relative;
  z-index: -99;
}
html body .content-wrap .inner .main-visual-wrap.main-visual02-wrap {
  height: 450px;
  margin-top: 0;
}
html body .content-wrap .inner .main-visual-wrap .main-visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../img/main-vi.jpg) no-repeat left center/cover;
  z-index: -100;
}
html body .content-wrap .inner .main-visual-wrap .main-visual.main-visual02 {
  background: url(../img/main-vi02.jpg) no-repeat left center/cover;
}
html body .content-wrap .inner .main-visual-wrap .main-visual.main-visual03 {
  background: url(../company/img/top.jpg) no-repeat center center/cover;
}
html body .content-wrap .inner .main-visual-wrap .main-visual.main-visual04 {
  background: url(../recruit/img/top.jpg) no-repeat center center/cover;
}
html body .content-wrap .inner .main-visual-wrap .title-box {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  top: 37.5rem;
}
html body .content-wrap .inner .main-visual-wrap .title-box h3 {
  position: absolute;
  color: #ffffff;
  font-size: 3.75rem;
}
html body .content-wrap .inner .main-visual-wrap .title-box p {
  position: absolute;
  top: 5.625rem;
  font-size: 1.0625rem;
  color: #ffffff;
  font-weight: 300;
}
html body .content-wrap .inner .main-visual-wrap .top-title {
  padding-top: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
html body .content-wrap .inner .main-visual-wrap .top-title h3 {
  font-size: 80px;
  color: #ffffff;
  font-weight: 100;
  display: inline-block;
  width: 100%;
  border-bottom: 3px solid #2fdd54;
  padding-bottom: 0.5rem;
}
html body .content-wrap .inner .main-visual-wrap .top-title p {
  color: #ffffff;
  font-size: 30px;
}
html body .content-wrap .inner .content-nav {
  width: fit-content;
  margin: 3.625rem auto;
}
html body .content-wrap .inner .content-nav ul {
  display: flex;
}
html body .content-wrap .inner .content-nav ul li {
  width: 161px;
  height: 66px;
  border: 1px solid #01aa36;
  border-right: 0;
}
html body .content-wrap .inner .content-nav ul li:last-child {
  border-right: 1px solid #01aa36;
}
html body .content-wrap .inner .content-nav ul li a {
  display: block;
  width: 100%;
  height: 66px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  font-size: 0.9375rem;
  color: #01aa36;
  position: relative;
  text-decoration: none;
}
html body .content-wrap .inner .content-nav ul li a:hover {
  text-decoration: none;
  background-color: #01aa36;
  color: #ffffff;
}
html body .content-wrap .inner .content-nav ul li a::before {
  content: "▼";
  position: absolute;
  right: 10px;
  font-size: 0.625rem;
}
html body .content-wrap .inner section {
  position: relative;
  overflow: visible;
  margin: 5rem auto;
  text-align: center;
  scroll-margin-top: 100px;
}
html body .content-wrap .inner section.sec02 {
  background: linear-gradient(to right, #133c65, #1f70d8);
  padding: 5rem 0;
  margin: 0 auto;
  z-index: -99;
}
html body .content-wrap .inner section.sec02.sec02-green {
  background: linear-gradient(to right, #255500, #01aa36);
}
html body .content-wrap .inner section.sec04 {
  background-color: #efefef;
  padding: 3rem 0;
}
html body .content-wrap .inner section.child01 {
  max-width: 1160px;
  width: 100%;
  margin: 3rem auto;
}
html body .content-wrap .inner section.child01 .text-box {
  text-align: left;
  margin-top: 1.5rem;
}
html body .content-wrap .inner section.child01 .message-text {
  text-align: left;
  font-size: 1.125rem;
}
html body .content-wrap .inner section.recruit01 {
  max-width: 1160px;
  margin: 5.3rem auto;
}
html body .content-wrap .inner section.recruit01.recruit03 {
  max-width: 100%;
  background-color: #dff7ed;
  margin: 3rem 0;
  padding: 3rem 0;
  z-index: -99;
}
html body .content-wrap .inner section.recruit01 .recruit-title {
  text-align: left;
  font-size: 1.75rem;
  font-weight: 500;
  position: relative;
  display: block;
}
html body .content-wrap .inner section .text {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: uppercase;
}
html body .content-wrap .inner section .text span {
  font-size: 5rem;
  font-weight: 100;
  color: #1f70d8;
}
html body .content-wrap .inner section .text span.char {
  display: inline-block;
  opacity: var(--opacity, 0);
  transition: opacity 1s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: calc(0.1s * var(--char-index));
}
html body .content-wrap .inner section .text span.white {
  color: #ffffff;
}
html body .content-wrap .inner section .text span.green {
  color: #01aa36;
}
html body .content-wrap .inner section .text span.space {
  padding-right: 1rem;
}
html body .content-wrap .inner section .text.is-active {
  --opacity: 1;
}
html body .content-wrap .inner section p {
  font-size: 0.9375rem;
  line-height: 1.8rem;
}
html body .content-wrap .inner section p.title {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 2.75rem;
  margin-top: 1.1rem;
  position: relative;
  display: inline-block;
}
html body .content-wrap .inner section p.title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: left center;
  background-color: #1f70d8;
  width: 150px;
  height: 1px;
  transition: transform 1.2s ease;
}
html body .content-wrap .inner section p.title.is-active::before {
  transform: translateX(-50%) scaleX(1);
}
html body .content-wrap .inner section p.title.child-title::before {
  left: 0;
  transform: translateX(0%) scaleX(0);
}
html body .content-wrap .inner section p.title.child-title.is-active::before {
  transform: translateX(0%) scaleX(1);
}
html body .content-wrap .inner section p.title.title-02::before {
  width: 200px;
}
html body .content-wrap .inner section p.title.title-02.white::before {
  background-color: #ffffff;
}
html body .content-wrap .inner section p.title.title-03::before {
  width: 100px;
}
html body .content-wrap .inner section p.title.title-green::before {
  background-color: #01aa36;
}
html body .content-wrap .inner section .white {
  color: #ffffff !important;
}
html body .content-wrap .inner section .green {
  color: #01aa36 !important;
}
html body .content-wrap .inner section .bg-green {
  background-color: #01aa36 !important;
}
html body .content-wrap .inner section .business-box {
  display: flex;
  justify-content: space-between;
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  margin-top: 4.25rem;
}
html body .content-wrap .inner section .business-box.mt-box {
  margin-top: 2.8125rem;
}
html body .content-wrap .inner section .business-box .text-item {
  text-align: left;
}
html body .content-wrap .inner section .business-box .text-item p {
  font-size: 0.9375rem;
  width: 660px;
}
html body .content-wrap .inner section .business-box .text-item p.text-title {
  font-size: 1.875rem;
  color: #1f70d8;
  font-weight: bold;
  line-height: 2.5rem;
  margin-bottom: 1.1875rem;
}
html body .content-wrap .inner section .business-box img {
  width: 460px;
  border-radius: 10px;
}
html body .content-wrap .inner section .market-wrap {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  margin-top: 3.75rem;
  display: flex;
  justify-content: space-between;
  text-align: left;
}
html body .content-wrap .inner section .market-wrap .market-box {
  width: 560px;
}
html body .content-wrap .inner section .market-wrap .market-box p {
  font-size: 0.9375rem;
}
html body .content-wrap .inner section .market-wrap .market-box p.market-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin: 1.25rem 0;
}
html body .content-wrap .inner section .market-wrap .market-box img {
  border-radius: 10px;
}
html body .content-wrap .inner section .visit-wrap {
  max-width: 1160px;
  width: 100%;
  height: 350px;
  margin: 0 auto;
  background-color: #1f70d8;
  border-radius: 40px;
  position: relative;
}
html body .content-wrap .inner section .visit-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 456px;
  height: 100%;
  background: url(../img/visit.png) no-repeat left center/cover;
  border-radius: 0 40px 40px 0;
}
html body .content-wrap .inner section .visit-wrap .visit-text-box {
  width: 730px;
  text-align: left;
  padding: 3.75rem;
  color: #ffffff;
}
html body .content-wrap .inner section .visit-wrap .visit-text-box p {
  font-size: 0.9375rem;
}
html body .content-wrap .inner section .visit-wrap .visit-text-box p.visit-title {
  font-size: 1.875rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
html body .content-wrap .inner section .visit-wrap .visit-text-box a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 265px;
  height: 60px;
  margin: 0 auto;
  margin-top: 1.875rem;
  background-color: #ffffff;
  border-radius: 5rem;
  color: #444444;
}
html body .content-wrap .inner section .visit-wrap .visit-text-box a:hover {
  text-decoration: none;
  opacity: 0.7;
}
html body .content-wrap .inner section .link-wrap {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  margin-top: 4.6875rem;
  display: flex;
  justify-content: space-between;
}
html body .content-wrap .inner section .link-wrap .link-box {
  width: 561px;
  height: 351px;
  border: 1px solid #1f70d8;
  position: relative;
}
html body .content-wrap .inner section .link-wrap .link-box.border-green {
  border: 1px solid #01aa36;
}
html body .content-wrap .inner section .link-wrap .link-box .icon {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 83px;
  height: 78px;
  background: url(../img/company-icon.svg) no-repeat left center/cover;
}
html body .content-wrap .inner section .link-wrap .link-box .icon.icon02 {
  background: url(../img/recruit-icon.svg) no-repeat left center/cover;
  top: 17%;
  width: 107px;
  height: 68px;
}
html body .content-wrap .inner section .link-wrap .link-box .icon.icon-green {
  background: url(../img/company-icon-green.svg) no-repeat left center/cover;
}
html body .content-wrap .inner section .link-wrap .link-box .icon.icon02-green {
  background: url(../img/recruit-icon-green.svg) no-repeat left center/cover;
}
html body .content-wrap .inner section .link-wrap .link-box .text-item {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translateX(-50%);
}
html body .content-wrap .inner section .link-wrap .link-box .text-item p {
  font-size: 1.5625rem;
  font-weight: 500;
}
html body .content-wrap .inner section .link-wrap .link-box .text-item p.en-text {
  font-size: 0.75rem;
  font-weight: 400;
  color: #1f70d8;
}
html body .content-wrap .inner section .link-wrap .link-box .text-item a {
  background-color: #1f70d8;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5rem;
  width: 265px;
  height: 60px;
  margin: 0 auto;
  margin-top: 1.875rem;
  font-size: 0.9375rem;
}
html body .content-wrap .inner section .link-wrap .link-box .text-item a:hover {
  text-decoration: none;
  opacity: 0.7;
}
html body .content-wrap .inner section .contact-wrap {
  display: flex;
  justify-content: center;
  gap: 151px;
  margin-top: 3.5rem;
}
html body .content-wrap .inner section .contact-wrap .contact-box p.contact-title {
  font-size: 1.125rem;
  color: #1f70d8;
  font-weight: 500;
}
html body .content-wrap .inner section .contact-wrap .contact-box p.tel {
  font-size: 2.3125rem;
  font-weight: 500;
  margin-top: 1.125rem;
  margin-bottom: 0.375rem;
}
html body .content-wrap .inner section .contact-wrap .contact-box a {
  background-color: #ea5514;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5rem;
  width: 265px;
  height: 60px;
  margin: 0 auto;
  margin-top: 1.25rem;
  font-size: 0.9375rem;
}
html body .content-wrap .inner section .contact-wrap .contact-box a:hover {
  text-decoration: none;
  opacity: 0.7;
}
html body .content-wrap .inner section .child-title-wrap {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: flex-start;
}
html body .content-wrap .inner section .vision-wrap {
  margin: 1rem auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
html body .content-wrap .inner section .vision-wrap .vision-box {
  width: 360px;
  height: 270px;
  text-align: center;
  box-shadow: 0 5px 13px rgba(0, 0, 0, 0.2);
  border-radius: 11px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}
html body .content-wrap .inner section .vision-wrap .vision-box p {
  font-size: 1.125rem;
  font-weight: 400;
}
html body .content-wrap .inner section .vision-wrap .vision-box p.number {
  font-size: 3.125rem;
  font-weight: 100;
  width: 100%;
  padding-bottom: 1rem;
}
html body .content-wrap .inner section .about-wrap {
  text-align: left;
  margin-top: 1rem;
}
html body .content-wrap .inner section .about-wrap table {
  width: 100%;
}
html body .content-wrap .inner section .about-wrap table tbody tr {
  width: 100%;
  height: 65px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 30px;
}
html body .content-wrap .inner section .about-wrap table tbody tr th {
  width: 205px;
  font-weight: 400;
  font-size: 0.9375rem;
}
html body .content-wrap .inner section .about-wrap table tbody tr td {
  font-size: 0.9375rem;
}
html body .content-wrap .inner section .about-wrap table tbody tr.gray {
  background-color: #efefef;
}
html body .content-wrap .inner section .access-wrap {
  margin-top: 1rem;
}
html body .content-wrap .inner section .access-wrap iframe {
  width: 100%;
  height: 450px;
}
html body .content-wrap .inner section .access-wrap .access-box {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
html body .content-wrap .inner section .access-wrap .access-box .access-item {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-right: 83px;
  margin-bottom: 1rem;
}
html body .content-wrap .inner section .access-wrap .access-box .access-item .icon-box {
  background-color: #01aa36;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
}
html body .content-wrap .inner section .access-wrap .access-box .access-item .icon-box img {
  width: 35px;
  padding-top: 0.8rem;
}
html body .content-wrap .inner section .access-wrap .access-box .access-item .icon-box img.bus {
  width: 28px;
}
html body .content-wrap .inner section .access-wrap .access-box .access-item .icon-box img.subway {
  width: 29px;
}
html body .content-wrap .inner section .access-wrap .access-box .access-item .icon-box p {
  color: #ffffff;
  font-size: 0.6875rem;
  margin-top: -0.3rem;
}
html body .content-wrap .inner section .access-wrap .access-box .access-item ul {
  text-align: left;
}
html body .content-wrap .inner section .access-wrap .access-box .access-item ul li {
  font-size: 0.9375rem;
}
html body .content-wrap .inner section .introduction-wrap {
  display: flex;
  justify-content: space-between;
}
html body .content-wrap .inner section .introduction-wrap .introduction-box {
  width: 660px;
  text-align: left;
}
html body .content-wrap .inner section .introduction-wrap .introduction-box h3 {
  font-size: 1.875rem;
  color: #01aa36;
  padding-bottom: 30px;
}
html body .content-wrap .inner section .introduction-wrap .introduction-box p {
  font-size: 0.9375rem;
}
html body .content-wrap .inner section .introduction-wrap .introduction-box p.annotation {
  font-size: 0.875rem;
  padding-top: 30px;
}
html body .content-wrap .inner section .introduction-wrap .introduction-box p.border-bt {
  border-bottom: 0.5px solid #444444;
  padding-bottom: 25px;
}
html body .content-wrap .inner section .introduction-wrap img {
  width: 460px;
  border-radius: 10px;
}
html body .content-wrap .inner section .features-wrap {
  margin: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
html body .content-wrap .inner section .features-wrap .features-box {
  width: 360px;
  margin: 2rem 0;
}
html body .content-wrap .inner section .features-wrap .features-box img {
  width: 100%;
  border-radius: 10px;
}
html body .content-wrap .inner section .features-wrap .features-box p {
  font-size: 0.9375rem;
  text-align: left;
  padding-top: 0.7rem;
}
html body .content-wrap .inner section .features-wrap .features-box p.features-title {
  font-size: 1.375rem;
  color: #01aa36;
  font-weight: 500;
  padding-top: 23px;
}
html body .content-wrap .inner section .flow-wrap {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
}
html body .content-wrap .inner section .flow-wrap .icon::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
  z-index: 5;
}
html body .content-wrap .inner section .flow-wrap .icon.icon01::before {
  background-image: url("../recruit/img/cow.svg");
  top: 30%;
  left: 0;
  width: 184px;
  height: 106px;
}
html body .content-wrap .inner section .flow-wrap .icon.icon02::before {
  background-image: url("../recruit/img/woman.svg");
  top: 60%;
  left: 4%;
  width: 145px;
  height: 167px;
}
html body .content-wrap .inner section .flow-wrap .icon.icon03::before {
  background-image: url("../recruit/img/man.svg");
  top: 40%;
  left: 88%;
  width: 88px;
  height: 170px;
}
html body .content-wrap .inner section .flow-wrap .icon.icon04::before {
  background-image: url("../recruit/img/pig.svg");
  top: 77%;
  left: 85%;
  width: 166px;
  height: 96px;
}
html body .content-wrap .inner section .flow-wrap .flow-table {
  width: 762px;
  margin: 2rem auto;
  text-align: left;
}
html body .content-wrap .inner section .flow-wrap .flow-table table tbody {
  position: relative;
}
html body .content-wrap .inner section .flow-wrap .flow-table table tbody::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 850px;
  background-color: #01aa36;
  top: 30px;
  left: 100px;
  z-index: -1;
}
html body .content-wrap .inner section .flow-wrap .flow-table table tbody tr {
  border: 2px solid #01aa36;
  border-radius: 6px;
  display: flex;
  align-items: center;
  width: 762px;
  height: 72px;
  margin: 18px 0;
  background-color: #ffffff;
}
html body .content-wrap .inner section .flow-wrap .flow-table table tbody tr.break {
  width: 625px;
  margin-left: auto;
}
html body .content-wrap .inner section .flow-wrap .flow-table table tbody tr th {
  color: #01aa36;
  width: 195.5px;
  height: 50px;
  border-right: 1px solid #01aa36;
  text-align: center;
  display: grid;
  place-items: center;
  align-content: center;
}
html body .content-wrap .inner section .flow-wrap .flow-table table tbody tr td {
  padding-left: 22px;
  font-weight: 500;
  font-size: 1.0625rem;
}
html body .content-wrap .inner section .flow-wrap .flow-table table tbody tr td .blue {
  font-size: 0.9375rem;
  color: #01aa36;
}
html body .content-wrap .inner section .requirements-wrap {
  text-align: left;
}
html body .content-wrap .inner section .requirements-wrap p {
  font-size: 0.9375rem;
}
html body .content-wrap .inner section .requirements-wrap table {
  margin: 2rem 0;
  width: 100%;
}
html body .content-wrap .inner section .requirements-wrap table tbody tr {
  display: flex;
  padding: 1rem 0;
}
html body .content-wrap .inner section .requirements-wrap table tbody tr.gray {
  background-color: #efefef;
}
html body .content-wrap .inner section .requirements-wrap table tbody tr th {
  width: 225px;
  padding-left: 1rem;
  font-weight: 400;
}
html body .content-wrap .inner section .apply-flow-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5rem;
}
html body .content-wrap .inner section .apply-flow-wrap .apply-flow-box {
  width: 360px;
  min-height: 314px;
  border-radius: 11.4px;
  box-shadow: 0 5px 13px rgba(0, 0, 0, 0.2);
}
html body .content-wrap .inner section .apply-flow-wrap .apply-flow-box span {
  font-size: 3.75rem;
  color: #01aa36;
  display: block;
  text-align: left;
  padding-left: 2rem;
}
html body .content-wrap .inner section .apply-flow-wrap .apply-flow-box img {
  width: 93px;
  margin-top: -1.5rem;
}
html body .content-wrap .inner section .apply-flow-wrap .apply-flow-box img.interview {
  width: 97px;
}
html body .content-wrap .inner section .apply-flow-wrap .apply-flow-box img.recuruit {
  width: 116px;
}
html body .content-wrap .inner section .apply-flow-wrap .apply-flow-box img.type {
  width: 190px;
}
html body .content-wrap .inner section .apply-flow-wrap .apply-flow-box .text-box {
  width: 100%;
  margin-top: 1rem;
  padding-bottom: 1rem;
}
html body .content-wrap .inner section .apply-flow-wrap .apply-flow-box .text-box p {
  font-size: 0.9375rem;
}
html body .content-wrap .inner section .apply-flow-wrap .apply-flow-box .text-box p.apply-title {
  font-size: 1.75rem;
  color: #01aa36;
  padding-bottom: 13px;
}
html body .content-wrap .inner section .apply-flow-wrap .apply-flow-box.type-box {
  min-height: 270px;
}
html body .content-wrap .inner section .apply-flow-wrap .apply-flow-box.type-box img {
  margin-top: 1rem;
}
html body .content-wrap .inner section .voice-wrap {
  text-align: left;
  border: 1px solid #01aa36;
  border-radius: 11.4px;
  height: 200px;
  position: relative;
}
html body .content-wrap .inner section .voice-wrap .voice-box {
  padding: 2rem;
}
html body .content-wrap .inner section .voice-wrap .voice-box p {
  font-size: 0.9375rem;
  width: 900px;
}
html body .content-wrap .inner section .voice-wrap .voice-box p.voice-title {
  font-size: 1.75rem;
  color: #01aa36;
  padding-bottom: 1.7rem;
}
html body .content-wrap .inner section .voice-wrap .voice-box p.name {
  text-align: right;
}
html body .content-wrap .inner section .voice-wrap img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  height: 200px;
}
html body .content-wrap .inner section .btn {
  width: 560px;
  height: 60px;
  margin: 0 auto;
  font-size: 1.25rem;
  background-color: #ea5514;
  border: 2px solid #ea5514;
  color: #ffffff;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 5rem;
}
html body .content-wrap .inner section .btn:hover {
  background-color: #ffffff;
  color: #ea5514;
  text-decoration: none;
}
html body .content-wrap .inner section #company {
  scroll-margin-top: 100px;
}
html body .content-wrap .inner section #recruit {
  scroll-margin-top: 100px;
}
html body .content-wrap .inner .fadein {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
html body .content-wrap .inner .fadein.show {
  opacity: 1;
  transform: translateY(0);
}
html body .content-wrap .inner .fadein-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1), transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
html body .content-wrap .inner .fadein-up.show-up {
  opacity: 1;
  transform: translateY(0);
}
html body .content-wrap .inner .fadein-right {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
html body .content-wrap .inner .fadein-right.show-right {
  opacity: 1;
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  html body .content-wrap .inner .fadein-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
html body .content-wrap .inner .br-sp {
  display: none;
}
html body footer {
  background: linear-gradient(to right, #133c65, #1f70d8);
}
html body footer.grad-green {
  background: linear-gradient(to right, #255500, #01aa36);
}
html body footer .footer-wrap {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 0;
  display: flex;
  justify-content: space-between;
}
html body footer .footer-wrap .footer-box {
  color: #ffffff;
}
html body footer .footer-wrap .footer-box .title-box {
  margin-bottom: 1rem;
}
html body footer .footer-wrap .footer-box .title-box p {
  font-size: 0.75rem;
}
html body footer .footer-wrap .footer-box .title-box p.title {
  font-size: 1.5625rem;
}
html body footer .footer-wrap .footer-box .address {
  font-size: 0.9375rem;
}
html body footer .footer-wrap .iso-box {
  display: flex;
  align-items: center;
  gap: 38px;
}
html body footer .footer-wrap .iso-box img {
  width: 61px;
}
html body footer .copy {
  border-top: 1px solid #ffffff;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.625rem;
  color: #ffffff;
}

@keyframes slideOverlay {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}