@charset "UTF-8";
/* ============================================ */
/* index
/* ============================================ */
/* ===== main ===== */
#main {
  padding: 120px 0 300px;
}

@media screen and (max-width: 768px) {
  #main {
    padding: 80px 0 150px;
  }
}
/* ===== first-view ===== */
#first-view {
  position: relative;
  width: 100%;
  height: calc(100vh - 120px);
  height: calc(100svh - 120px);
}
#first-view::before {
  background-image: url(../img/index/first-view.svg);
  background-size: cover;
  height: calc(100% - 30px);
}

@media screen and (max-width: 1024px) {
  #first-view {
    height: 600px;
  }
  #first-view::before {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  #first-view {
    height: 460px;
  }
}
@media screen and (max-width: 600px) {
  #first-view {
    height: 280px;
  }
}
/* ===== section共通 ===== */
.section-title {
  position: relative;
  line-height: 1;
}
.section-title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  height: 2px;
  background: var(--color-darkred);
}
.section-title .en,
.section-title .ja {
  display: block;
}
.section-title .en {
  font-weight: 600;
  font-family: var(--fontfamily-en);
}
.section-title .ja {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}

.section-summary {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 2;
}

.point-circle::before {
  content: "";
  position: absolute;
  left: -20px;
  width: 40px;
  height: 40px;
  background: var(--color-red);
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .section-title .ja {
    font-size: 16px;
    font-size: 1rem;
  }
  .point-circle::before {
    left: -15px;
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 600px) {
  .point-circle::before {
    left: -12px;
    width: 24px;
    height: 24px;
  }
}
/* ===== message ===== */
#message {
  margin: 160px 0 0;
}
#message .section-title {
  display: flex;
  align-items: center;
  margin: 0 0 70px;
}
#message .section-title .en {
  font-size: 30px;
  font-size: 1.875rem;
}
#message .section-title .ja {
  margin: 0 0 0 1em;
}
#message .flex-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
#message .catch {
  width: 450px;
  margin: 0 80px 0 0;
  flex-shrink: 0;
}
#message .text {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 2.5;
  font-weight: 500;
}
#message .text p + p {
  margin: 2em 0 0;
}

@media screen and (max-width: 1400px) {
  #message .catch {
    width: 360px;
    margin: 0 80px 0 0;
  }
}
@media screen and (max-width: 1200px) {
  #message .flex-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #message .catch {
    width: 100%;
    max-width: 460px;
    margin: 0 0 60px;
  }
}
@media screen and (max-width: 768px) {
  #message {
    margin: 120px 0 0;
  }
  #message .section-title {
    margin: 0 0 40px;
  }
  #message .section-title .en {
    font-size: 26px;
    font-size: 1.625rem;
  }
  #message .catch {
    max-width: 360px;
    margin: 0 0 40px;
  }
  #message .text {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 600px) {
  #message {
    margin: 80px 0 0;
  }
  #message .catch {
    max-width: 240px;
    margin: 0 0 40px;
  }
}
/* ===== number ===== */
#number {
  margin: 160px 0 0;
}
#number .top-wrap {
  position: absolute;
  right: 0;
  top: 10%;
  text-align: right;
}
#number .top-wrap .section-title {
  margin: 0 0 40px;
}
#number .top-wrap .section-title .en {
  font-size: 30px;
  font-size: 1.875rem;
  margin: 0 0 1em;
}
#number .top-wrap .section-title .ja {
  width: 320px;
  margin: 0 0 0 auto;
}
#number .top-wrap .section-summary {
  text-align: right;
}
#number .number-item {
  width: calc(100% - 280px);
}

@media screen and (max-width: 1200px) {
  #number .top-wrap {
    top: 0;
  }
  #number .top-wrap .section-title .ja {
    width: 260px;
  }
  #number .number-item {
    width: calc(100% - 240px);
  }
}
@media screen and (max-width: 1024px) {
  #number .top-wrap {
    top: -15%;
  }
  #number .top-wrap .section-title .ja {
    width: 24vw;
  }
  #number .number-item {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #number {
    margin: 100px 0 0;
  }
  #number .top-wrap {
    position: relative;
    right: auto;
    top: auto;
  }
  #number .top-wrap .section-title {
    margin: 0 0 40px;
  }
  #number .top-wrap .section-title .en {
    font-size: 26px;
    font-size: 1.625rem;
  }
  #number .top-wrap .section-title .ja {
    width: 80%;
    max-width: 360px;
  }
  #number .number-item {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  #number {
    margin: 80px 0 0;
  }
  #number .top-wrap {
    position: relative;
    right: auto;
    top: auto;
  }
  #number .top-wrap .section-title {
    margin: 0 0 30px;
  }
}
/* ===== business ===== */
#business {
  margin: 120px 0 0;
}
#business .top-wrap {
  position: relative;
  margin: 0 0 80px;
}
#business .top-wrap .section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
}
#business .top-wrap .section-title .en {
  font-size: 100px;
  font-size: 6.25rem;
}
#business .top-wrap .section-title .ja {
  padding: 1em 0 0 1em;
}
#business .top-wrap .section-summary {
  text-align: center;
}
#business .top-wrap .img {
  position: absolute;
  left: -5%;
  bottom: 0;
  width: 20%;
}
#business .link {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
#business .link .link-item {
  width: 25%;
}
#business .link .link-item a {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 420px;
  color: var(--color-white);
  font-weight: 500;
  text-align: center;
  padding: 160px 0 0;
  cursor: pointer;
}
#business .link .link-item a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(159, 146, 58, 0.9);
  mix-blend-mode: multiply;
  transition: var(--transition);
}
#business .link .link-item a .link-title,
#business .link .link-item a .view-more {
  display: block;
  line-height: 1.2;
  z-index: 1;
}
#business .link .link-item a .link-title {
  position: relative;
  font-size: 28px;
  font-size: 1.75rem;
}
#business .link .link-item a .link-title small {
  font-size: 60%;
}
#business .link .link-item a .view-more {
  position: absolute;
  bottom: 100px;
  font-size: 21px;
  font-size: 1.3125rem;
  font-family: var(--fontfamily-en);
  font-weight: 500;
}
#business .link .link-item.temporary a::before {
  background-image: url(../img/index/business_temporary.jpg);
}
#business .link .link-item.agency a::before {
  background-image: url(../img/index/business_agency.jpg);
}
#business .link .link-item.outsourcing a::before {
  background-image: url(../img/index/business_outsourcing.jpg);
}
#business .link .link-item.employment-support a::before {
  background-image: url(../img/index/business_employment-support.jpg);
}

@media (hover: hover) {
  #business .link .link-item a:hover::after {
    opacity: 0;
  }
}
@media screen and (max-width: 1024px) {
  #business .top-wrap .section-title .en {
    font-size: 60px;
    font-size: 3.75rem;
  }
  #business .link .link-item {
    width: 50%;
  }
  #business .link .link-item a {
    height: 240px;
    padding: 80px 0 0;
  }
  #business .link .link-item a .view-more {
    bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  #business .top-wrap {
    margin: 0 0 50px;
  }
  #business .top-wrap .section-title {
    flex-direction: column;
    align-items: flex-end;
  }
  #business .top-wrap .section-title .en {
    font-size: 50px;
    font-size: 3.125rem;
  }
  #business .top-wrap .section-title .ja {
    padding: 1em 0 0;
  }
  #business .top-wrap .section-summary {
    text-align: right;
  }
  #business .top-wrap .img {
    left: 0;
    bottom: 40px;
    width: 160px;
  }
  #business .link .link-item a {
    height: 200px;
    padding: 60px 0 0;
  }
  #business .link .link-item a .view-more {
    bottom: 40px;
  }
  #business .link .link-item a .link-title {
    font-size: 22px;
    font-size: 1.375rem;
  }
  #business .link .link-item a .view-more {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 600px) {
  #business .top-wrap .section-title .en {
    font-size: 32px;
    font-size: 2rem;
  }
  #business .top-wrap .img {
    bottom: 60px;
    width: 120px;
  }
  #business .link .link-item a {
    height: 140px;
    padding: 40px 0 0;
  }
  #business .link .link-item a .view-more {
    bottom: 30px;
  }
  #business .link .link-item a .link-title {
    font-size: 18px;
    font-size: 1.125rem;
  }
  #business .link .link-item a .view-more {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 360px) {
  #business .top-wrap .img {
    left: -5%;
    width: 90px;
  }
}
/* ===== businessモーダル ===== */
.modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6666;
  display: none;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.modal_box {
  position: fixed;
  z-index: 7777;
  display: none;
  width: 80%;
  max-width: 785px;
  min-height: 480px;
  padding: 70px 120px;
  background: var(--color-white);
  border-radius: 10px;
  overflow: auto;
}
.modal_box::before {
  content: "Business";
  position: absolute;
  left: 20px;
  top: 30px;
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 600;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.modal_title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin: 0 0 1.5em;
}
.modal_title small {
  display: block;
  font-size: 50%;
}

.modal_text {
  font-weight: 500;
  line-height: 2;
}

.modal_close {
  position: absolute;
  top: 35px;
  right: 35px;
  display: block;
  width: 50px;
  height: 80px;
  background: url(../img/common/icon_modal-close.svg) no-repeat center;
  background-size: contain;
}

.modal_link {
  margin: 50px auto 0;
}
.modal_link a {
  position: relative;
  display: block;
  width: 100%;
  max-width: 340px;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  padding: 0.8em 1em;
  margin: 0 auto;
  background: var(--color-yellow);
  border-radius: 5px;
  transition: var(--transition);
  overflow: hidden;
}
.modal_link a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-black);
  transform: scale(0, 1);
  transform-origin: left center;
  transition: var(--transition);
}
.modal_link a .link-inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.modal_link a .icon-blank {
  display: inline-block;
  width: 14px;
  margin: 0 0 0.1em 0.5em;
  fill: none;
  stroke: currentColor;
}

@media (hover: hover) {
  .modal_link a:hover {
    color: var(--color-white);
  }
  .modal_link a:hover::before {
    transform: scale(1, 1);
  }
}
@media screen and (max-width: 768px) {
  .modal_box {
    padding: 70px 90px;
  }
  .modal_close {
    width: 35px;
    height: 56px;
  }
  .modal_title {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .modal_title small {
    font-size: 75%;
  }
}
@media screen and (max-width: 600px) {
  .modal_box {
    height: auto;
    min-height: auto;
    max-height: 80vh;
    max-height: 80svh;
    padding: 70px 10% 40px;
  }
  .modal_box::before {
    left: 10%;
    top: 30px;
    font-size: 18px;
    font-size: 1.125rem;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }
  .modal_title {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .modal_text {
    font-size: 13px;
    font-size: 0.8125rem;
  }
  .modal_link {
    margin: 30px auto 0;
  }
}
/* ===== interview ===== */
#interview {
  margin: 170px 0 0;
}
#interview .top-wrap {
  display: flex;
  align-items: flex-end;
  margin: 0 0 40px;
}
#interview .top-wrap .section-title {
  margin: 0 60px 0 0;
  flex-shrink: 0;
}
#interview .top-wrap .section-title .en {
  font-size: 30px;
  font-size: 1.875rem;
  margin: 0 0 0.5em;
}
#interview .top-wrap .section-title .ja {
  width: 280px;
}

@media screen and (max-width: 1024px) {
  #interview .top-wrap {
    flex-direction: column;
    align-items: center;
    margin: 0 0 40px;
  }
  #interview .top-wrap .section-title {
    margin: 0 0 30px;
  }
}
@media screen and (max-width: 768px) {
  #interview {
    margin: 120px 0 0;
  }
  #interview .top-wrap {
    margin: 0 0 20px;
  }
  #interview .top-wrap .section-title .en {
    font-size: 26px;
    font-size: 1.625rem;
  }
  #interview .top-wrap .section-title .ja {
    width: 240px;
  }
}
@media screen and (max-width: 600px) {
  #interview {
    margin: 80px 0 0;
  }
  #interview .top-wrap {
    margin: 0;
  }
  #interview .top-wrap .section-title .ja {
    width: 180px;
  }
}
/* ===== training ===== */
#training {
  margin: 180px 0 0;
}
#training .top-wrap {
  position: relative;
  text-align: right;
  margin: 0 0 60px;
}
#training .top-wrap .section-title {
  margin: 0 0 30px;
}
#training .top-wrap .section-title .en {
  font-size: 100px;
  font-size: 6.25rem;
}
#training .top-wrap .section-title .ja {
  margin: 1em 0 0;
}
#training .top-wrap .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 35%;
}
#training .schedule {
  position: relative;
  background: var(--color-white);
  padding: 40px 50px 50px;
  border-radius: 10px;
}
#training .schedule.point-circle::before {
  top: 38px;
}
#training .schedule .schedule-title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  margin: 0 0 1em;
}
#training .schedule .chart {
  width: 100%;
  min-width: 460px;
}
#training .schedule .asterisk {
  font-size: 13px;
  font-size: 0.8125rem;
  margin: 1em 0 0;
}

@media screen and (max-width: 1200px) {
  #training .top-wrap .img {
    top: auto;
    bottom: 80px;
    width: 35%;
  }
}
@media screen and (max-width: 1024px) {
  #training .top-wrap .section-title .en {
    font-size: 60px;
    font-size: 3.75rem;
  }
}
@media screen and (max-width: 768px) {
  #training .top-wrap {
    margin: 0 0 40px;
  }
  #training .top-wrap .section-title .en {
    font-size: 50px;
    font-size: 3.125rem;
  }
  #training .top-wrap .img {
    top: -60px;
    bottom: auto;
    width: 240px;
  }
  #training .schedule {
    padding: 40px 40px 50px;
  }
  #training .schedule .schedule-title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 600px) {
  #training {
    margin: 120px 0 0;
  }
  #training .top-wrap {
    margin: 0 0 30px;
  }
  #training .top-wrap .section-title .en {
    font-size: 32px;
    font-size: 2rem;
  }
  #training .top-wrap .img {
    left: -5%;
    top: -20px;
    width: 160px;
  }
  #training .schedule {
    padding: 30px 10% 40px;
  }
  #training .schedule.point-circle::before {
    top: 32px;
  }
}
@media screen and (max-width: 360px) {
  #training .top-wrap .section-title .en {
    font-size: 32px;
    font-size: 2rem;
  }
  #training .top-wrap .img {
    top: -10px;
    width: 130px;
  }
}
/* ===== welfare ===== */
#welfare {
  margin: 180px 0 0;
}
#welfare .top-wrap {
  margin: 0 0 60px;
}
#welfare .top-wrap .flex-wrap {
  display: flex;
  align-items: center;
  margin: 0 0 40px;
}
#welfare .top-wrap .section-title {
  margin: 0 90px 0 0;
}
#welfare .top-wrap .section-title .en {
  font-size: 30px;
  font-size: 1.875rem;
}
#welfare .top-wrap .section-title .ja {
  margin: 0.8em 0 0;
}
#welfare .top-wrap .catch {
  width: 600px;
}
#welfare .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#welfare .list:after {
  content: "";
  display: block;
  width: 31%;
  height: 0;
}
#welfare .list .list-item {
  position: relative;
  width: 31%;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 1.5em;
  background: var(--color-white);
  border-radius: 10px;
}
#welfare .list .list-item::before {
  top: 1.2em;
}
#welfare .list .list-item:nth-of-type(n+4) {
  margin: 1.5em 0 0;
}

@media screen and (max-width: 1200px) {
  #welfare .list:after {
    width: 47%;
  }
  #welfare .list .list-item {
    width: 47%;
  }
  #welfare .list .list-item:nth-of-type(n+3) {
    margin: 1.5em 0 0;
  }
}
@media screen and (max-width: 768px) {
  #welfare {
    margin: 120px 0 0;
  }
  #welfare .top-wrap {
    margin: 0 0 40px;
  }
  #welfare .top-wrap .flex-wrap {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 0 30px;
  }
  #welfare .top-wrap .section-title {
    margin: 0 0 30px;
  }
  #welfare .top-wrap .catch {
    width: 100%;
    max-width: 460px;
  }
  #welfare .list {
    flex-direction: column;
    align-items: flex-start;
  }
  #welfare .list:after {
    display: none;
  }
  #welfare .list .list-item {
    width: 100%;
    font-size: 16px;
    font-size: 1rem;
  }
  #welfare .list .list-item:nth-of-type(n+2) {
    margin: 1.5em 0 0;
  }
}
@media screen and (max-width: 600px) {
  #welfare {
    margin: 100px 0 0;
  }
  #welfare .list .list-item {
    padding: 1.2em 1.5em;
  }
}
/* ===== information ===== */
#information {
  margin: 180px 0 0;
}
#information .top-wrap {
  margin: 0 0 40px;
}
#information .top-wrap .section-title {
  text-align: center;
}
#information .top-wrap .section-title .en {
  font-size: 43px;
  font-size: 2.6875rem;
}
#information .top-wrap .section-title .ja {
  margin: 1em 0 0;
}
#information .guideline {
  position: relative;
  background: var(--color-white);
  padding: 60px 140px 70px 50px;
  border-radius: 10px;
}
#information .guideline .guideline-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 1em;
}

@media screen and (max-width: 1024px) {
  #information .guideline {
    padding: 60px 50px 70px;
  }
}
@media screen and (max-width: 768px) {
  #information {
    margin: 120px 0 0;
  }
  #information .guideline {
    padding: 60px 40px 70px;
  }
  #information .guideline .guideline-title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 600px) {
  #information {
    margin: 100px 0 0;
  }
  #information .top-wrap {
    margin: 0 0 30px;
  }
  #information .top-wrap .section-title .en {
    font-size: 30px;
    font-size: 1.875rem;
  }
  #information .guideline {
    padding: 30px 10% 40px;
  }
}

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