*,
*:after,
*:before {
  box-sizing: inherit;
}

html {
  overflow-x: hidden;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.025em;
  color: black;
  overflow: hidden;
}
body * {
  -moz-font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

main {
  display: block;
  padding-top: clamp(54px, 6vw, 80px);
}

@media screen and (max-width: 767px) {
  main {
    padding-top: 84px;
  }
}
a {
  text-decoration: none;
  color: black;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

br.sp {
  display: none;
}
br.pc {
  display: block;
}

@media screen and (max-width: 767px) {
  br.sp {
    display: block;
  }
  br.pc {
    display: none;
  }
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 100%;
  height: clamp(54px, 6vw, 80px);
  background-color: transparent;
  transition: all 0.3s;
  z-index: 999;
}
header .lgo {
  display: flex;
  align-items: center;
  margin-left: 1.4em;
}
header .lgo > a {
  display: flex;
  align-items: center;
}
header .lgo > a > img {
  width: clamp(124px, 11.875vw, 170px);
}
header .lgo > a > span {
  margin-left: 1.2em;
  padding-left: 1.2em;
  color: #1a005d;
  font-size: clamp(10px, 0.9375vw, 15px);
  font-weight: 700;
  line-height: 1.2em;
  border-left: 1px solid #c4d985;
}
header .lgo .page-title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: clamp(30px, 2vw, 32px);
  margin-left: 1.4em;
  padding: 0 0.5em 0.1em;
  background-color: #1a005d;
}
header .lgo .page-title > span {
  color: white;
  font-size: clamp(13.5px, 0.9375vw, 15px);
  font-weight: 700;
}
header .cmn-links {
  display: flex;
  align-content: flex-start;
  position: fixed;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 6em 0;
  background-color: #f1f1f1;
  transform: translateY(-1vw);
  opacity: 0;
  transition: all 0.4s;
  pointer-events: none;
}
header .cmn-links.win-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  overflow-y: auto;
}
header .cmn-links.win-open .-col-:nth-of-type(2) .c-set {
  padding-bottom: 4em;
}
header #btn-menu {
  position: relative;
  width: clamp(62px, 6vw, 80px);
  height: clamp(62px, 6vw, 80px);
  cursor: pointer;
}
header #btn-menu > span {
  position: absolute;
  height: 2px;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
header #btn-menu > span:nth-of-type(1) {
  top: clamp(27px, 2.65vw, 35px);
  background-color: #1a005d;
}
header #btn-menu > span:nth-of-type(2) {
  bottom: clamp(27px, 2.65vw, 35px);
  background-color: #8ec300;
}
header #btn-menu.active > span {
  width: 86%;
}
header #btn-menu.active > span:nth-of-type(1) {
  transform: translateY(4px) rotate(-30deg);
}
header #btn-menu.active > span:nth-of-type(2) {
  transform: translateY(-4px) rotate(30deg);
}

@media screen and (max-width: 1024px) {
  header .lgo {
    margin-left: 1.2em;
  }
  header .lgo .page-title {
    margin-left: 1.2em;
  }
  header .cmn-links {
    padding: 4em 0;
  }
  header .cmn-links .-col-.bnr-width {
    margin-top: 0;
  }
  header #btn-menu.active > span:nth-of-type(1) {
    transform: translateY(3px) rotate(-30deg);
  }
  header #btn-menu.active > span:nth-of-type(2) {
    transform: translateY(-3px) rotate(30deg);
  }
}
@media screen and (max-width: 767px) {
  header {
    background-color: white;
  }
  header .lgo {
    margin-left: 1em;
  }
  header .lgo .page-title {
    position: absolute;
    top: 54px;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    margin-left: 0;
  }
  header .cmn-links {
    padding: 3em 0;
  }
  header .cmn-links.win-open .-col-:nth-of-type(2) .c-set {
    padding-bottom: 0;
  }
  header .cmn-links .-col-.bnr-width {
    margin-top: 3em;
  }
}
.fot-intro {
  height: clamp(220px, 28.75vw, 460px);
  padding-top: clamp(100px, 13.75vw, 220px);
  text-align: center;
  background-image: url(/recruit/_/images/common/bdr_fot_long.svg);
  background-size: 3000px;
  background-position: top center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1600px) {
  .fot-intro {
    background-image: url(/recruit/_/images/common/bdr_fot.svg);
    background-size: clamp(480px, 100vw, 1600px);
  }
}
.fot-intro > img {
  width: clamp(220px, 27.375vw, 438px);
  margin: 0 auto;
}

.cmn-links {
  display: flex;
  justify-content: center;
}
.cmn-links .-col- {
  margin: 0 2.5em;
}
.cmn-links .-col-.bnr-width {
  width: clamp(280px, 20vw, 320px);
}
.cmn-links .-col- .c-set {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cmn-links .-col- .c-set + .c-set {
  margin-top: 3em;
}
.cmn-links .-col- .c-set > h2 > span {
  color: #1a005d;
  font-style: oblique;
  font-size: clamp(20px, 1.5vw, 24px);
  font-weight: 700;
  background: linear-gradient(transparent 80%, #8ec300 0%);
}
.cmn-links .-col- .c-set > h2 + a {
  margin-top: 1.4em;
}
.cmn-links .-col- .c-set > a {
  position: relative;
  padding-left: 1em;
  font-size: clamp(14px, 1vw, 16px);
  transition: all 0.2s;
}
.cmn-links .-col- .c-set > a:hover {
  opacity: 0.5;
}
.cmn-links .-col- .c-set > a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0.2em;
  display: block;
  width: 8px;
  height: 2px;
  background-color: #8ec300;
}
.cmn-links .-col- .c-set > a + a {
  margin-top: 1.08em;
}
.cmn-links .-col- .c-set > a.-blank-::after {
  content: "";
  display: inline-block;
  width: 12.8px;
  height: 11.2px;
  margin-left: 0.4em;
  vertical-align: middle;
  background-image: url(/recruit/_/images/common/ico_links.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 0 0;
}
.cmn-links .-col- .c-set > a.-cmsn- {
  pointer-events: none;
  opacity: 0.2;
}
.cmn-links .-col- .c-set > h3 {
  margin-top: 1.08em;
  font-size: clamp(14px, 1vw, 16px);
}
.cmn-links .-col- .c-set > h3 + a {
  margin-top: 1.08em;
}
.cmn-links .-col- .c-set > h4 {
  margin-top: 1.08em;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 700;
}
.cmn-links .-col- .c-set > h4 + a {
  margin-top: 1.08em;
}
.cmn-links .-col- .c-set .-idt1- {
  margin-left: 1em;
}
.cmn-links .-col- .c-set .-idt2- {
  margin-left: 2em;
}
.cmn-links .-col- .c-btn-entry,
.cmn-links .-col- .c-btn-mypage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: clamp(96px, 8vw, 128px);
}
.cmn-links .-col- .c-btn-entry > span,
.cmn-links .-col- .c-btn-mypage > span {
  color: white;
  font-style: oblique;
  font-size: clamp(24px, 2.25vw, 36px);
  font-weight: 700;
}
.cmn-links .-col- .c-btn-entry::before,
.cmn-links .-col- .c-btn-mypage::before {
  content: "";
  position: absolute;
  top: auto;
  right: auto;
  bottom: 12px;
  left: 0;
  width: 100%;
  height: 1px;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
.cmn-links .-col- .c-btn-entry:hover::before,
.cmn-links .-col- .c-btn-mypage:hover::before {
  animation: bdr_left_right 0.5s cubic-bezier(0.45, 0, 0.55, 1);
}
.cmn-links .-col- .c-btn-entry {
  background-color: #1a005d;
}
.cmn-links .-col- .c-btn-entry::before {
  background-color: #8ec300;
}
.cmn-links .-col- .c-btn-mypage {
  margin-top: 0.8em;
  background-color: #8ec300;
}
.cmn-links .-col- .c-btn-mypage::before {
  background-color: white;
}
.cmn-links .-col- .c-bnr-mynavi {
  display: flex;
  justify-content: center;
  align-items: center;
  height: clamp(96px, 8vw, 128px);
  background-color: white;
  border: 2px solid #00aaeb;
}
.cmn-links .-col- .c-bnr-mynavi > img {
  width: 80%;
  height: auto;
  margin-top: -2%;
}
.cmn-links .-col- .c-bnr {
  display: block;
  margin-top: 4em;
  transition: all 0.2s;
}
.cmn-links .-col- .c-bnr:hover {
  opacity: 0.7;
}
.cmn-links .-col- .c-bnr + .c-bnr {
  margin-top: 0.8em;
}
.cmn-links .-col- .c-bnr-group {
  display: block;
  margin-top: 3em;
  transition: all 0.2s;
}
.cmn-links .-col- .c-bnr-group:hover {
  opacity: 0.7;
}

.fot-end {
  display: block;
  margin-top: clamp(48px, 5vw, 80px);
  padding-top: clamp(150px, 25vw, 400px);
  padding-bottom: clamp(2.5em, 3vw, 3em);
  font-style: oblique;
  font-size: clamp(10px, 0.75vw, 12px);
  text-align: center;
  background-image: url(/recruit/_/images/common/bgi_fot.webp);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: clamp(560px, 100vw, 1600px);
}

@media screen and (max-width: 1024px) {
  .cmn-links {
    flex-wrap: wrap;
  }
  .cmn-links .-col-.bnr-width {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 75%;
    margin-top: 4em;
  }
  .cmn-links .-col- .c-btn-entry,
  .cmn-links .-col- .c-btn-mypage {
    width: 48.6%;
  }
  .cmn-links .-col- .c-btn-mypage {
    margin-top: 0;
  }
  .cmn-links .-col- .c-bnr-mynavi {
    width: 100%;
  }
  .cmn-links .-col- .c-bnr-mynavi > img {
    width: 27%;
    margin-top: -1%;
  }
  .cmn-links .-col- .c-bnr {
    width: 48%;
    margin-top: 2em;
  }
  .cmn-links .-col- .c-bnr + .c-bnr {
    margin-top: 2em;
  }
  .cmn-links .-col- .c-bnr-group {
    width: 48%;
    margin-top: 0.66em;
  }
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .cmn-links .-col- {
    margin: 0 1em;
  }
}
@media screen and (max-width: 767px) {
  .cmn-links {
    justify-content: flex-start;
  }
  .cmn-links .-col- + .-col- {
    margin-top: 2.4em;
  }
  .cmn-links .-col-.bnr-width {
    width: 100%;
  }
  .cmn-links .-col- .c-set + .c-set {
    margin-top: 2.4em;
  }
  .cmn-links .-col- .c-set > a + a {
    margin-top: 0.8em;
  }
  .cmn-links .-col- .c-set > a.-blank-::after {
    width: 15.36px;
    height: 13.44px;
  }
  .cmn-links .-col- .c-set > h3 {
    margin-top: 0.8em;
  }
  .cmn-links .-col- .c-set > h3 + a {
    margin-top: 0.8em;
  }
  .cmn-links .-col- .c-set > h4 {
    margin-top: 0.8em;
  }
  .cmn-links .-col- .c-set > h4 + a {
    margin-top: 0.8em;
  }
  .cmn-links .-col- .c-btn-entry,
  .cmn-links .-col- .c-btn-mypage {
    width: 48%;
  }
  .cmn-links .-col- .c-btn-mypage {
    margin-top: 0;
  }
  .cmn-links .-col- .c-bnr-mynavi > img {
    width: 70%;
    margin-top: -1%;
  }
  .cmn-links .-col- .c-bnr {
    width: 100%;
    margin-top: 2.5em;
  }
  .cmn-links .-col- .c-bnr + .c-bnr {
    margin-top: 0.6em;
  }
  .cmn-links .-col- .c-bnr-group {
    width: 100%;
    margin-top: 1.8em;
  }
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .cmn-links .-col- {
    margin: 0 2.4em;
  }
}
.f11, .f11 * {
  font-size: 0.6875vw;
}

.f12, .f12 * {
  font-size: 0.75vw;
}

.f13, .f13 * {
  font-size: 0.8125vw;
}

.f14, .f14 * {
  font-size: 0.875vw;
}

.f15, .f15 * {
  font-size: 0.9375vw;
}

.f16, .f16 * {
  font-size: 1vw;
}

.f18, .f18 * {
  font-size: 1.125vw;
}

.f20, .f20 * {
  font-size: 1.25vw;
}

.f22, .f22 * {
  font-size: 1.375vw;
}

.f24, .f24 * {
  font-size: 1.5vw;
}

.f28, .f28 * {
  font-size: 1.75vw;
}

.f30, .f30 * {
  font-size: 1.875vw;
}

.f32, .f32 * {
  font-size: 2vw;
}

.f36, .f36 * {
  font-size: 2.25vw;
}

.f40, .f40 * {
  font-size: 2.5vw;
}

.f44, .f44 * {
  font-size: 2.75vw;
}

.f48, .f48 * {
  font-size: 3vw;
}

.f60, .f60 * {
  font-size: 3.75vw;
}

.f64, .f64 * {
  font-size: 4vw;
}

.f72, .f72 * {
  font-size: 4.5vw;
}

.f80, .f80 * {
  font-size: 5vw;
}

.f90, .f90 * {
  font-size: 5.625vw;
}

.f96, .f96 * {
  font-size: 6vw;
}

.f120, .f120 * {
  font-size: 7.5vw;
}

.f160, .f160 * {
  font-size: 10vw;
}

.f280, .f280 * {
  font-size: 17.5vw;
}

.f320, .f320 * {
  font-size: 20vw;
}

@media screen and (max-width: 1024px) {
  .f11, .f11 * {
    font-size: 0.89375vw;
  }
  .f12, .f12 * {
    font-size: 0.975vw;
  }
  .f13, .f13 * {
    font-size: 1.05625vw;
  }
  .f14, .f14 * {
    font-size: 1.1375vw;
  }
  .f15, .f15 * {
    font-size: 1.21875vw;
  }
  .f16, .f16 * {
    font-size: 1.3vw;
  }
  .f18, .f18 * {
    font-size: 1.4625vw;
  }
  .f20, .f20 * {
    font-size: 1.625vw;
  }
  .f22, .f22 * {
    font-size: 1.7875vw;
  }
  .f24, .f24 * {
    font-size: 1.95vw;
  }
  .f28, .f28 * {
    font-size: 2.275vw;
  }
  .f30, .f30 * {
    font-size: 2.4375vw;
  }
  .f32, .f32 * {
    font-size: 2.6vw;
  }
  .f36, .f36 * {
    font-size: 2.925vw;
  }
  .f40, .f40 * {
    font-size: 3.25vw;
  }
  .f44, .f44 * {
    font-size: 3.575vw;
  }
  .f48, .f48 * {
    font-size: 3.9vw;
  }
  .f60, .f60 * {
    font-size: 4.875vw;
  }
  .f64, .f64 * {
    font-size: 5.2vw;
  }
  .f72, .f72 * {
    font-size: 5.85vw;
  }
  .f80, .f80 * {
    font-size: 6.5vw;
  }
  .f90, .f90 * {
    font-size: 7.3125vw;
  }
  .f96, .f96 * {
    font-size: 7.8vw;
  }
  .f120, .f120 * {
    font-size: 9.75vw;
  }
  .f160, .f160 * {
    font-size: 13vw;
  }
  .f280, .f280 * {
    font-size: 22.75vw;
  }
  .f320, .f320 * {
    font-size: 26vw;
  }
}
@media screen and (max-width: 767px) {
  .f11, .f11 * {
    font-size: 2.0625vw;
  }
  .f12, .f12 * {
    font-size: 2.25vw;
  }
  .f13, .f13 * {
    font-size: 2.4375vw;
  }
  .f14, .f14 * {
    font-size: 2.8vw;
  }
  .f15, .f15 * {
    font-size: 3vw;
  }
  .f16, .f16 * {
    font-size: 3.2vw;
  }
  .f18, .f18 * {
    font-size: 3.6vw;
  }
  .f20, .f20 * {
    font-size: 3.75vw;
  }
  .f22, .f22 * {
    font-size: 4.125vw;
  }
  .f24, .f24 * {
    font-size: 4.5vw;
  }
  .f28, .f28 * {
    font-size: 5.25vw;
  }
  .f30, .f30 * {
    font-size: 5.625vw;
  }
  .f32, .f32 * {
    font-size: 6vw;
  }
  .f36, .f36 * {
    font-size: 6.75vw;
  }
  .f40, .f40 * {
    font-size: 7.5vw;
  }
  .f44, .f44 * {
    font-size: 8.25vw;
  }
  .f48, .f48 * {
    font-size: 9vw;
  }
  .f60, .f60 * {
    font-size: 11.25vw;
  }
  .f64, .f64 * {
    font-size: 12vw;
  }
  .f72, .f72 * {
    font-size: 13.5vw;
  }
  .f80, .f80 * {
    font-size: 15vw;
  }
  .f90, .f90 * {
    font-size: 16.875vw;
  }
  .f96, .f96 * {
    font-size: 18vw;
  }
  .f120, .f120 * {
    font-size: 22.5vw;
  }
  .f160, .f160 * {
    font-size: 30vw;
  }
  .f280, .f280 * {
    font-size: 52.5vw;
  }
  .f320, .f320 * {
    font-size: 60vw;
  }
}
.sup {
  font-size: 62.5%;
  vertical-align: top;
  position: relative;
  top: -0.1em;
}

.sub {
  font-size: 62.5%;
  vertical-align: bottom;
  position: relative;
  top: 0.1em;
}

#loader-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: white;
  z-index: 10001;
}
#loader-bg > img {
  width: clamp(250px, 25vw, 450px);
}

@media screen and (max-width: 767px) {
  #loader-bg > img {
    margin-top: -100px;
  }
}
.title-side-border {
  display: flex;
  align-items: center;
  font-weight: 700;
}
.title-side-border::before, .title-side-border::after {
  content: "";
  flex-grow: 1;
  height: 0.375vw;
  background-image: url(/recruit/_/images/common/bgi_title_border.svg);
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: 0 0;
}
.title-side-border::before {
  margin-right: 0.5em;
}
.title-side-border::after {
  margin-left: 0.5em;
}

@media screen and (max-width: 767px) {
  .title-side-border::before, .title-side-border::after {
    height: 1vw;
  }
}
@keyframes bdr_top_bottom {
  0% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  }
  30% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  70% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  }
}
@keyframes bdr_right_left {
  0% {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  }
  30% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  70% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }
}
@keyframes bdr_bottom_top {
  0% {
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  }
  30% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  70% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  }
}
@keyframes bdr_left_right {
  0% {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }
  30% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  70% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  }
}
@keyframes bdr_top_bottom1 {
  0% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
@keyframes bdr_right_left1 {
  0% {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
@keyframes bdr_bottom_top1 {
  0% {
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
@keyframes bdr_left_right1 {
  0% {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
#home header .lgo > a {
  pointer-events: none;
}
#home .main-movie {
  display: none;
  width: 100%;
  height: 56.25vw;
  overflow: hidden;
}
#home .main-movie > video {
  width: 100%;
  height: auto;
}
#home .slider1-wrap {
  display: none;
  position: relative;
  width: 100%;
  height: 56.25vw;
  overflow: hidden;
}
#home .slider1-wrap div {
  width: 100%;
  height: 100%;
}
#home #slider1 .sld1-set {
  position: relative;
}
#home #slider1 .sld1-set > span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  bottom: 7vw;
}
#home #slider1 .sld1-set > span > em {
  padding: 0.1em 0.3em 0.2em 0.1em;
  color: white;
  font-style: oblique;
  font-weight: 700;
  line-height: 1em;
  transform: translateX(0.5em);
  opacity: 0;
  transition: all 1.2s;
}
#home #slider1 .sld1-set > span > em:nth-of-type(1) {
  background-color: #8ec300;
  transition-delay: 0.5s;
}
#home #slider1 .sld1-set > span > em:nth-of-type(2) {
  margin-top: 0.3em;
  background-color: #1a005d;
  transition-delay: 0.6s;
}
#home #slider1 .sld1-set.-s1- span, #home #slider1 .sld1-set.-s5- span, #home #slider1 .sld1-set.-s8- span, #home #slider1 .sld1-set.-s9- span {
  left: 0;
  padding-left: 5vw;
}
#home #slider1 .sld1-set.-s2- span, #home #slider1 .sld1-set.-s3- span, #home #slider1 .sld1-set.-s4- span, #home #slider1 .sld1-set.-s6- span, #home #slider1 .sld1-set.-s7- span {
  right: 0;
  padding-right: 5vw;
}
#home #slider1 .add-animation .sld1-set > img {
  animation: zoomUp 10s;
}
#home #slider1 .add-animation .sld1-set > span > em {
  transform: translateX(0);
  opacity: 1;
}
#home .cover {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  z-index: 100;
}
#home .cover::before, #home .cover::after {
  content: "";
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 100vw;
  width: 225vw;
  height: 56.25vw;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 0 0;
}
#home .cover::before {
  background-image: url(/recruit/_/images/common/sld_green.svg);
}
#home .cover::after {
  background-image: url(/recruit/_/images/common/sld_navy.svg);
}
#home .cover.on::before {
  animation: slideColorPC 0.9s;
}
#home .cover.on::after {
  animation: slideColorPC 0.9s 0.1s;
}
#home .message {
  position: relative;
  width: 100vw;
  height: 115vw;
  background-image: url(/recruit/_/images/home/bgi_message_pc.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left top;
}
#home .message .bdr1 {
  display: block;
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}
#home .message .bdr1.on {
  animation: bdr_top_bottom1 2s 0.5s cubic-bezier(0.45, 0, 0.55, 1) forwards;
}
#home .message .cut {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 100%;
}
#home .message .txt1 {
  position: absolute;
  top: 10.4375vw;
  right: auto;
  bottom: auto;
  left: 7.5vw;
}
#home .message .txt1 > p {
  padding-left: 5vw;
  color: white;
  font-style: oblique;
  font-weight: 700;
  line-height: 2em;
  letter-spacing: 0.04em;
  transform: translateX(0.5em);
  opacity: 0;
  transition: all 0.8s;
}
#home .message .txt1 > p + p {
  margin-top: 1.75em;
}
#home .message .txt1 > p.f48 {
  margin-top: 1.2em;
  line-height: 1.4em;
}
#home .message .txt1 > p.eng {
  width: 40vw;
  margin-top: 7em;
  padding-left: 0;
  font-weight: 400;
  letter-spacing: 0;
}
#home .message .txt1 > p.on {
  transform: translateX(0);
  opacity: 1;
}
#home .slider2-wrap {
  position: relative;
  width: 85vw;
  height: 41.5625vw;
  margin: -5.35vw auto 8.2vw;
}
#home .slider2-wrap div {
  width: 100%;
  height: 100%;
}
#home .slider2-wrap .inv-ttl {
  position: absolute;
  top: 21vw;
  right: auto;
  bottom: auto;
  left: -3.75vw;
  padding-right: 1em;
  color: #1a005d;
  font-style: oblique;
  font-weight: 700;
  z-index: 1;
}
#home #slider2 .slick-arrow {
  display: block;
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: auto;
  width: 6vw;
  height: 3vw;
  color: black;
  font-style: oblique;
  font-size: 1vw;
  font-weight: 700;
  background-size: 0.8vw;
  background-repeat: no-repeat;
  cursor: pointer;
  z-index: 2;
}
#home #slider2 .slick-arrow.slick-prev {
  right: 28.75vw;
  padding-left: 2em;
  text-align: left;
  background-image: url(/recruit/_/images/common/btn_sld_prev.svg);
  background-position: left 0.5vw center;
}
#home #slider2 .slick-arrow.slick-next {
  right: 1vw;
  padding-right: 2em;
  text-align: right;
  background-image: url(/recruit/_/images/common/btn_sld_next.svg);
  background-position: right 0.5vw center;
}
#home #slider2 .slick-dots {
  position: absolute;
  top: auto;
  right: 7.8vw;
  bottom: 0.8vw;
  left: auto;
  width: 20.2vw;
}
#home #slider2 .slick-dots > li {
  position: relative;
  width: 12.5%;
  height: 20px;
}
#home #slider2 .slick-dots > li::before {
  content: "";
  position: absolute;
  top: 9px;
  right: auto;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #e2e2e2;
  transition: all 0.3s 0.2s;
}
#home #slider2 .slick-dots > li.slick-active::before {
  background-color: #1a005d;
}
#home #slider2 .sld2-set {
  position: relative;
}
#home #slider2 .sld2-set .inv-img {
  display: block;
  position: absolute;
  top: 2vw;
  right: 0;
  bottom: auto;
  left: auto;
  width: 55vw;
  height: 36.5625vw;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s 0.3s;
}
#home #slider2 .sld2-set .inv-img > span {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
#home #slider2 .sld2-set .inv-img > span.i2.-tb- {
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}
#home #slider2 .sld2-set .inv-img > span.i2.-rl- {
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
}
#home #slider2 .sld2-set .inv-img > span.i2.-bt- {
  clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
}
#home #slider2 .sld2-set .inv-img > span.i2.-lr- {
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
#home #slider2 .sld2-set .inv-img:hover > span {
  transform: scale(1.03);
}
#home #slider2 .sld2-set .inv-prf {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 2vw;
  left: 0;
  width: 35vw;
  height: 24vw;
  padding: 8.8vw 5vw 0 3.4vw;
  background-color: #8ec300;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: all 0.4s 0.2s;
}
#home #slider2 .sld2-set .inv-prf > p {
  color: white;
}
#home #slider2 .sld2-set .inv-prf > p.p1 {
  font-style: oblique;
  font-weight: 700;
  line-height: 1.4em;
}
#home #slider2 .sld2-set .inv-prf > p.p2 {
  margin-top: 1.5em;
  font-weight: 700;
}
#home #slider2 .sld2-set .inv-prf > p.p3 {
  margin-top: 0.8em;
  line-height: 1.6em;
}
#home #slider2 .slick-slide.slick-active .sld2-set .inv-img {
  opacity: 1;
  top: 0;
}
#home #slider2 .slick-slide.slick-active .sld2-set .inv-img > span.i2.-tb- {
  animation: bdr_top_bottom1 0.8s 0.15s cubic-bezier(0.5, 1, 0.89, 1) forwards;
}
#home #slider2 .slick-slide.slick-active .sld2-set .inv-img > span.i2.-rl- {
  animation: bdr_right_left1 1.2s 0.15s cubic-bezier(0.85, 0, 0.15, 1) forwards;
}
#home #slider2 .slick-slide.slick-active .sld2-set .inv-img > span.i2.-bt- {
  animation: bdr_bottom_top1 0.8s 0.15s cubic-bezier(0.5, 1, 0.89, 1) forwards;
}
#home #slider2 .slick-slide.slick-active .sld2-set .inv-img > span.i2.-lr- {
  animation: bdr_left_right1 1.2s 0.15s cubic-bezier(0.85, 0, 0.15, 1) forwards;
}
#home #slider2 .slick-slide.slick-active .sld2-set .inv-prf {
  opacity: 1;
  bottom: 0;
}

@media screen and (max-width: 1024px) {
  #home #slider1 .sld1-set > span > em {
    font-size: 5.3vw;
  }
  #home .message .txt1 {
    position: absolute;
    top: 10vw;
    right: auto;
    bottom: auto;
    left: 7vw;
  }
  #home .message .txt1 > p {
    padding-left: 4vw;
    letter-spacing: 0.03em;
  }
  #home .message .txt1 > p.f24 {
    font-size: 1.65vw;
  }
  #home .message .txt1 > p.f48 {
    font-size: 3.6vw;
  }
  #home .message .txt1 > p.eng {
    width: 60vw;
    font-size: 1.05vw;
    text-shadow: 1px 1px #1a005d;
  }
  #home .slider2-wrap .inv-ttl {
    position: absolute;
    top: 18vw;
    right: auto;
    bottom: auto;
    left: -3.75vw;
    font-size: 3.3vw;
  }
  #home #slider2 .slick-arrow {
    width: 7.8vw;
    height: 3.9vw;
    font-size: 1.6vw;
    background-size: 0.96vw;
  }
  #home #slider2 .slick-arrow.slick-prev {
    right: 31.8vw;
    padding-left: 1.5em;
  }
  #home #slider2 .slick-arrow.slick-next {
    right: 1vw;
    padding-right: 1.5em;
  }
  #home #slider2 .slick-dots {
    position: absolute;
    top: auto;
    right: 9.3vw;
    bottom: 1vw;
    left: auto;
    width: 22vw;
  }
  #home #slider2 .sld2-set .inv-prf {
    height: 27vw;
  }
  #home #slider2 .sld2-set .inv-prf > p.p1 {
    font-size: 1.68vw;
  }
  #home #slider2 .sld2-set .inv-prf > p.p2 {
    font-size: 1.35vw;
  }
  #home #slider2 .slick-slide.slick-active .sld2-set .inv-img > span.i2.-tb- {
    animation: bdr_top_bottom1 0.6s 0.15s cubic-bezier(0.5, 1, 0.89, 1) forwards;
  }
  #home #slider2 .slick-slide.slick-active .sld2-set .inv-img > span.i2.-rl- {
    animation: bdr_right_left1 0.9s 0.15s cubic-bezier(0.85, 0, 0.15, 1) forwards;
  }
  #home #slider2 .slick-slide.slick-active .sld2-set .inv-img > span.i2.-bt- {
    animation: bdr_bottom_top1 0.6s 0.15s cubic-bezier(0.5, 1, 0.89, 1) forwards;
  }
  #home #slider2 .slick-slide.slick-active .sld2-set .inv-img > span.i2.-lr- {
    animation: bdr_left_right1 0.9s 0.15s cubic-bezier(0.85, 0, 0.15, 1) forwards;
  }
}
@media screen and (max-width: 767px) {
  #home main {
    padding-top: 54px;
  }
  #home .slider1-wrap {
    height: 80vw;
  }
  #home #slider1 .sld1-set > span > em {
    padding: 0.2em 0.4em 0.3em 0.2em;
    font-size: 5.9vw;
  }
  #home #slider1 .sld1-set.-s2- span, #home #slider1 .sld1-set.-s3- span, #home #slider1 .sld1-set.-s4- span, #home #slider1 .sld1-set.-s6- span, #home #slider1 .sld1-set.-s7- span {
    right: auto;
    left: 0;
    padding-right: 0;
    padding-left: 4vw;
  }
  #home .cover::before, #home .cover::after {
    width: 320vw;
    height: 80vw;
  }
  #home .cover.on::before {
    animation: slideColorSP 0.9s;
  }
  #home .cover.on::after {
    animation: slideColorSP 0.9s 0.1s;
  }
  #home .message {
    height: 180vw;
    background-color: black;
    background-image: none;
    background-image: url(/recruit/_/images/home/bgi_message_sp.webp);
  }
  #home .message .bdr1 {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 60vw;
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  }
  #home .message .bdr1.on {
    animation: bdr_right_left1 0.9s 0.5s cubic-bezier(0.45, 0, 0.55, 1) forwards;
  }
  #home .message .txt1 {
    position: absolute;
    top: 13vw;
    right: auto;
    bottom: auto;
    left: 9vw;
  }
  #home .message .txt1 > p {
    letter-spacing: 0.05em;
  }
  #home .message .txt1 > p + p {
    margin-top: 1.5em;
  }
  #home .message .txt1 > p.f24 {
    font-size: 3.3vw;
  }
  #home .message .txt1 > p.f48 {
    margin-top: 1.15em;
    font-size: 6.6vw;
  }
  #home .message .txt1 > p.eng {
    display: none;
  }
  #home .slider2-wrap {
    width: 100vw;
    height: 110vw;
    margin: 8vw auto 24vw;
  }
  #home .slider2-wrap .inv-ttl {
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 5vw;
    font-size: 6vw;
  }
  #home #slider2 .slick-arrow {
    position: absolute;
    top: auto;
    right: auto;
    bottom: -15vw;
    left: auto;
    width: 18vw;
    height: 10vw;
    font-size: 3.3vw;
    background-size: 2.24vw;
  }
  #home #slider2 .slick-arrow.slick-prev {
    right: auto;
    left: 5vw;
  }
  #home #slider2 .slick-arrow.slick-next {
    right: 5vw;
  }
  #home #slider2 .slick-dots {
    position: absolute;
    top: auto;
    right: 25vw;
    bottom: -13.7vw;
    left: auto;
    width: 50vw;
  }
  #home #slider2 .slick-dots > li {
    height: 30px;
  }
  #home #slider2 .slick-dots > li::before {
    position: absolute;
    top: 14px;
    right: auto;
    bottom: auto;
    left: 0;
  }
  #home #slider2 .sld2-set .inv-img {
    position: absolute;
    top: 15vw;
    right: 0;
    bottom: auto;
    left: auto;
    width: 82.5vw;
    height: 54.84375vw;
  }
  #home #slider2 .sld2-set .inv-prf {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 5vw;
    left: 0;
    width: 80vw;
    height: 50vw;
    padding: 12vw 3vw 0 6vw;
  }
  #home #slider2 .sld2-set .inv-prf > p.p1 {
    font-size: 3.6vw;
  }
  #home #slider2 .sld2-set .inv-prf > p.p2 {
    font-size: 3.375vw;
  }
  #home #slider2 .sld2-set .inv-prf > p.p3 {
    font-size: 3vw;
  }
  #home #slider2 .slick-slide.slick-active .sld2-set .inv-img {
    top: 10vw;
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes slideColorPC {
  0% {
    left: 100vw;
  }
  100% {
    left: -225vw;
  }
}
@keyframes slideColorSP {
  0% {
    left: 100vw;
  }
  100% {
    left: -320vw;
  }
}
