@charset "UTF-8";
/*変数*/
/*color*/
/*font-size*/
/*font-family*/
/*----------------------------------------
--font weight--
IBM Plex Sans JP   400,500,600,700
Noto Sans JP   400,500,600,700
Josefin Sans   600
Lato   400,700,900  italic 400,700,900
Zen Antique Soft   400
------------------------------------------*/
/*line-height*/
/*------------------------ここから------------------------------*/
.wrapper {
  font-family: "Noto Sans JP", "メイリオ", "Yu Gothic", sans-serif;
  vertical-align: bottom;
  color: #333333;
  line-height: 1.6;
  box-sizing: border-box;
  overflow: hidden;
  font-size: clamp(14px, 0.83vw, 16px);
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #333333;
}

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

input[type=checkbox] {
  display: none;
}

.slide_r {
  transform: translateX(100%);
  opacity: 0;
}

.slide_l {
  transform: translateX(-100%);
  opacity: 0;
}

.slide {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.3s;
  transition: transform 0.4s ease-out, opacity 0.8s;
}

.fadeIn {
  opacity: 1;
  transition: 2s;
  transition-delay: 0.5s;
}

.fadeOut {
  opacity: 0;
}

.menu_hide {
  display: none;
}

.menu_show {
  display: block;
}

/*-----------------------写真用スライドアニメ-----------------------------*/
/* .imgSlideAnime {
    animation: slideAnime 0.8s ease;
}



@keyframes slideAnime {
    0% {
        transform: translateX(-100%);
    }

    80% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
} */
/*-----------------------Block Reveal Effects-----------------------------*/
.block-revealer__element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  pointer-events: none;
  opacity: 0;
}

/*---------------------------スマホ用------------------------------------*/
@media screen and (max-width: 520px) {
  .wrapper {
    overflow: hidden;
  }
}
/*変数*/
/*color*/
/*font-size*/
/*font-family*/
/*----------------------------------------
--font weight--
IBM Plex Sans JP   400,500,600,700
Noto Sans JP   400,500,600,700
Josefin Sans   600
Lato   400,700,900  italic 400,700,900
Zen Antique Soft   400
------------------------------------------*/
/*line-height*/
/*------------------------ここから------------------------------*/
#header {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 2px #009143;
}
#header .logo {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: flex-end;
  width: clamp(200px, 15.625vw, 350px);
  padding-left: 2%;
}
#header .logo a:hover {
  opacity: 0.8;
  transition: all 0.3s;
}
#header .nav {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(4, 200px);
  grid-template-rows: 1fr;
}
#header .nav span {
  display: block;
}
#header .nav .en {
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
  font-size: clamp(15px, 0.93vw, 18px);
  padding: 3% 0;
}
#header .nav .jp {
  font-size: clamp(10px, 0.68vw, 13px);
}
#header .nav a {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 5% 0;
}
#header .nav a::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-image: linear-gradient(90deg, rgb(14, 21, 75), rgb(103, 161, 172));
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.7;
  transform: scale(0, 1);
  transform-origin: left bottom;
  transition: transform 0.3s;
  z-index: -1;
  margin: auto;
}
#header .nav a:hover::after {
  transform: scale(1, 1);
  transition: transform 0.3s;
}
#header .nav a:hover {
  color: rgb(255, 255, 255);
}
#header .nav li {
  text-align: center;
  line-height: 1;
  width: 200px;
}
#header .drop_list {
  position: relative;
}
#header .drop_list:hover .has_child::after {
  transform: rotate(-135deg);
  transition: transform 0.3s;
}
#header .has_child {
  position: relative;
  background-color: rgb(255, 255, 255);
  z-index: 50;
}
#header .has_child::after {
  content: "";
  width: 5px;
  height: 5px;
  border-bottom: solid 2px #333333;
  border-right: solid 2px #333333;
  position: absolute;
  right: 5%;
  top: 40%;
  display: inline-block;
  transform: rotate(45deg);
  transition: transform 0.3s;
}
#header .inner {
  position: absolute;
  left: 0;
  top: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1;
  display: none;
}
#header .inner li {
  overflow: hidden;
}

h1 {
  width: 100%;
  text-align: center;
  padding: 13% 0;
  color: rgb(255, 255, 255);
  line-height: 1;
}
h1 span {
  display: block;
}
h1 span:nth-child(1) {
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
  font-size: clamp(24px, 3.1vw, 60px);
}
h1 span:nth-child(2) {
  font-size: clamp(14px, 1.042vw, 20px);
  font-weight: 500;
}

/*---------------------------PC(小)用------------------------------------*/
@media screen and (max-width: 1200px) {
  #header {
    display: block;
    height: 70px;
    padding-bottom: 0.5%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgb(255, 255, 255);
    z-index: 30;
  }
  #header .logo {
    position: fixed;
    margin-top: 1%;
  }
  #header #menu_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 999;
    cursor: pointer;
    border: none;
  }
  #header #menu_icon.menu_active {
    border: solid 1px rgb(255, 255, 255);
  }
  #header #menu_icon.menu_active span {
    background-color: transparent;
  }
  #header #menu_icon.menu_active span::before {
    transform: rotate(40deg);
    background-color: rgb(255, 255, 255);
    bottom: 0;
    transition: transform 0.1s;
  }
  #header #menu_icon.menu_active span::after {
    transform: rotate(-40deg);
    background-color: rgb(255, 255, 255);
    top: 0;
    transition: transform 0.1s;
  }
  #header #menu_icon span,
  #header #menu_icon span::before,
  #header #menu_icon span::after {
    content: "";
    width: 25px;
    height: 3px;
    background-color: #333333;
    display: block;
    position: absolute;
    border-radius: 3px;
  }
  #header #menu_icon span::before {
    bottom: 8px;
    left: 0;
    transform: rotate(0deg);
    transition: transform 0.1s;
  }
  #header #menu_icon span::after {
    top: 8px;
    left: 0;
    transform: rotate(0deg);
    transition: transform 0.1s;
  }
  #header .nav {
    background-color: rgba(53, 73, 112, 0.9);
    color: rgb(255, 255, 255);
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 990;
    padding: 8% 0 5% 8%;
    width: 50%;
  }
  #header .nav .en {
    font-size: 16px;
    padding: initial;
  }
  #header .nav .jp {
    font-size: 12px;
  }
  #header .nav a {
    color: rgb(255, 255, 255);
    width: 100%;
    height: 100%;
    display: block;
    padding: 2% 0 2% 5%;
  }
  #header .nav a::after {
    visibility: hidden;
  }
  #header .nav a:hover {
    background-color: rgba(255, 255, 255, 0.5);
  }
  #header .nav a:active {
    background-color: rgba(255, 255, 255, 0.5);
  }
  #header .nav li {
    text-align: left;
    width: auto;
  }
  #header .nav span {
    display: inline-block;
    padding: 0 1%;
  }
  #header .has_child {
    background-color: transparent;
  }
  #header .has_child::after {
    display: none;
  }
  #header .inner {
    position: static;
    background-color: transparent;
    opacity: 1;
    color: rgb(255, 255, 255);
    visibility: visible;
    margin-left: 20%;
    border-left: solid 1px rgb(255, 255, 255);
  }
  #header .header_list::after {
    display: none;
  }
  h1 {
    margin-top: 70px;
  }
}
/*---------------------------タブレット用------------------------------------*/
@media screen and (max-width: 900px) {
  #header {
    height: 63px;
  }
  #header #menu_icon {
    top: 5px;
    width: 50px;
    height: 50px;
  }
  #header .nav {
    width: 100%;
  }
  #header .nav a {
    padding: 2% 0 2% 5%;
  }
  h1 {
    margin-top: 63px;
  }
}
/*---------------------------スマホ用------------------------------------*/
/*------------------------------------横向き----------------------*/
@media (orientation: landscape) and (max-width: 1000px) {
  #header .nav {
    width: 100%;
    padding: 0.5% 0;
  }
  #header .nav .en {
    padding: initial;
  }
  #header .nav a {
    padding: 0.6% 0 0.6% 5%;
  }
  #header .inner {
    margin-left: 10%;
  }
}
@media screen and (max-width: 520px) {
  #header {
    height: 56px;
  }
  #header .nav {
    width: 100%;
    padding-top: 30px;
  }
  h1 {
    padding: 30% 0;
    margin-top: 56px;
  }
  h1 span:nth-child(2) {
    font-weight: 400;
  }
}
/*変数*/
/*color*/
/*font-size*/
/*font-family*/
/*----------------------------------------
--font weight--
IBM Plex Sans JP   400,500,600,700
Noto Sans JP   400,500,600,700
Josefin Sans   600
Lato   400,700,900  italic 400,700,900
Zen Antique Soft   400
------------------------------------------*/
/*line-height*/
/*------------------------ここから------------------------------*/
footer {
  background-image: url(image/footer.jpg);
  background-color: transparent;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right top -10px;
  color: rgb(255, 255, 255);
  padding: 5% 0 2% 8%;
  margin: 0;
}
footer a {
  color: rgb(255, 255, 255);
}
footer .logo {
  width: clamp(300px, 20.833vw, 500px);
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: flex-end;
}
footer .logo a {
  display: block;
  width: 100%;
  height: 100%;
}
footer .logo a:hover {
  opacity: 0.8;
  transition: all 0.3s;
}
footer .logo p:nth-child(2) {
  padding-top: 1%;
}
footer nav {
  margin: 3% 0;
}
footer .toggle {
  display: flex;
  align-items: center;
  padding: 1% 0;
}
footer .label {
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
  padding-right: 2%;
  font-size: clamp(16px, 1.15vw, 22px);
}
footer .inner {
  display: flex;
  flex-wrap: wrap;
}
footer .inner li {
  width: 150px;
  text-align: center;
  padding: 0 2%;
  font-size: clamp(14px, 0.94vw, 18px);
}
footer .inner li.sp {
  display: none;
}
footer .inner li:not(:last-child) {
  position: relative;
}
footer .inner li:not(:last-child)::after {
  content: "|";
  position: absolute;
  top: 0;
  right: 0;
}
footer .inner a {
  display: inline-block;
  position: relative;
}
footer .inner a::after {
  content: "";
  height: 1px;
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: rgb(255, 255, 255);
  transform: scale(0, 1);
  transform-origin: left bottom;
}
footer .inner a:hover::after {
  transform: scale(1, 1);
  transition: transform 0.3s;
}
footer .info_wrapper {
  display: flex;
}
footer .sns {
  display: grid;
  grid-template-columns: repeat(2, 180px);
  grid-template-rows: repeat(2, 1fr);
  align-items: center;
  -moz-column-gap: 2%;
       column-gap: 2%;
  text-align: center;
  padding-top: 5%;
  padding-right: 5%;
  border-right: solid 1px #555;
}
footer .sns p:nth-child(1) {
  grid-column: 2 span;
  font-size: clamp(16px, 1.15vw, 22px);
}
footer .sns p:not(:first-child) {
  width: 100%;
}
footer .sns a {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding: 3% 0;
  border: solid 1px rgb(255, 255, 255);
  border-radius: 6px;
}
footer .sns a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transition: background-color 0.3s;
}
font-size footer .sns a:active {
  background-color: rgb(53, 73, 112);
}
footer .sns a .fa-brands,
footer .sns a .fa-solid {
  display: block;
  font-size: 1.5rem;
}
footer .sns a .fa-solid {
  font-size: 1rem;
  color: #C8C8C8;
}
footer .sns a span {
  padding-right: 6px;
  padding-left: 2px;
  display: inline-block;
}
footer .info {
  padding-left: 5%;
  margin-top: 2%;
}
footer .info li {
  padding: 3px 0;
}
footer .info li:nth-child(1) {
  font-size: clamp(14px, 0.94vw, 18px);
}
footer .copy {
  text-align: center;
  margin-top: 5%;
  font-size: clamp(10px, 0.73vw, 16px);
}

/*---------------------------PC(小)用------------------------------------*/
@media screen and (max-width: 1200px) {
  footer {
    padding: 5% 0 2% 5%;
  }
  footer .label {
    padding-right: 3%;
  }
  footer .inner li {
    padding: 0 1rem;
  }
}
/*---------------------------タブレット用------------------------------------*/
@media screen and (max-width: 900px) {
  footer {
    background-image: none;
    background-color: #000;
    padding: 5% 0 2% 0;
  }
  footer .logo {
    margin: auto;
  }
  footer nav {
    margin: 8% 2%;
  }
  footer .toggle {
    display: block;
  }
  footer .label {
    padding: 3% 0 2% 5%;
    border-bottom: solid 1px #333333;
    display: block;
    position: relative;
    cursor: pointer;
  }
  footer .label::before {
    content: "";
    display: inline-block;
    background-color: rgb(255, 255, 255);
    position: absolute;
    bottom: 50%;
    right: 5%;
    width: 15px;
    height: 3px;
    transform: rotate(0deg) scale(1);
    opacity: 1;
    transition: all 0.3s;
  }
  footer .label::after {
    content: "";
    display: inline-block;
    background-color: rgb(255, 255, 255);
    position: absolute;
    bottom: 50%;
    right: 5%;
    width: 15px;
    height: 3px;
    transform: rotate(90deg) scale(1);
    transition: all 0.3s;
  }
  footer .close_icon::before {
    transform: rotate(-90deg) scale(0);
    opacity: 0;
    transition: all 0.3s;
  }
  footer .close_icon::after {
    transform: rotate(180deg) scale(0.9);
    transition: all 0.3s;
  }
  footer .footer_inner {
    display: none;
  }
  footer .inner li.sp {
    display: block;
  }
  footer .inner li {
    margin: initial;
    padding: initial;
    width: auto;
    position: relative;
  }
  footer .inner li:not(:last-child)::after {
    content: "";
    display: block;
    width: 1.1vw;
    height: 1px;
    background-color: #8e8e8e;
    position: absolute;
    top: 55%;
    right: 20%;
    transform: rotate(45deg);
    transform-origin: bottom right;
  }
  footer .inner li::before {
    content: "";
    display: block;
    width: 6.67vw;
    height: 1px;
    background-color: #8e8e8e;
    position: absolute;
    top: 55%;
    right: 20%;
  }
  footer .inner li::after {
    content: "";
    display: block;
    width: 1.1vw;
    height: 1px;
    background-color: #8e8e8e;
    position: absolute;
    top: 55%;
    right: 20%;
    transform: rotate(45deg);
    transform-origin: bottom right;
  }
  footer .inner li:hover,
  footer .inner li:active {
    background-color: rgba(255, 255, 255, 0.3);
  }
  footer .inner a {
    padding: 2% 0 2% 15%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 85%;
  }
  footer .inner a::after {
    display: none;
  }
  footer .info_wrapper {
    display: grid;
    grid-template-columns: 50% 50%;
    margin-bottom: 10%;
  }
  footer .sns {
    display: flex;
    flex-flow: column;
    padding: initial;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  footer .sns p {
    margin: 2% 0;
  }
  footer .sns p:not(:first-child) {
    width: clamp(160px, 26vw, 220px);
  }
  footer .info {
    margin: 5%;
  }
}
/*---------------------------スマホ用------------------------------------*/
@media screen and (max-width: 520px) {
  footer .logo {
    width: 50%;
    margin: auto;
  }
  footer .sns {
    margin: auto;
  }
  footer .sns p:nth-child(1) {
    font-size: 14px;
  }
  footer .sns a {
    border: solid 1px #555;
  }
  footer .info {
    padding: initial;
  }
  footer .info li {
    padding: initial;
  }
  footer .info li:nth-child(1) {
    padding-bottom: 1%;
  }
}
/*変数*/
/*color*/
/*font-size*/
/*font-family*/
/*----------------------------------------
--font weight--
IBM Plex Sans JP   400,500,600,700
Noto Sans JP   400,500,600,700
Josefin Sans   600
Lato   400,700,900  italic 400,700,900
Zen Antique Soft   400
------------------------------------------*/
/*line-height*/
/*------------------------ここから------------------------------*/
* {
  box-sizing: border-box;
}

h1 {
  background-image: url(image/recruit/recruit.jpg);
  background-position: center;
  background-size: cover;
  width: 100%;
}

/*-------------------------------------main----------------------------------*/
h2 {
  width: 44vw;
  text-align: right;
  line-height: 1;
  position: absolute;
  left: 0;
  z-index: 15;
}
h2 span {
  display: block;
}
h2 span:nth-child(1) {
  font-family: "Lato", "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(38px, 3.1vw, 60px);
  border-bottom: solid 1px #009143;
}
h2 span:nth-child(2) {
  font-size: clamp(15px, 1.25vw, 24px);
  font-weight: 500;
  padding: 0.5% 0 0 0;
}

#message {
  position: relative;
  overflow: hidden;
  font-family: "IBM Plex Sans JP", "Noto Sans JP", sans-serif;
  padding: 5% 0;
}
#message .message_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip: rect(auto, auto, auto, auto);
}
#message .message_bg::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(image/recruit/recruit_top.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: right top 10%;
  z-index: -1;
}
#message .inner {
  width: 42vw;
  margin: 0 auto 0 0;
  display: flex;
  flex-flow: column;
  align-items: center;
}
#message h2 {
  top: 10%;
}
#message h3 {
  font-size: 3.9vw;
  font-weight: 500;
  text-align: right;
  margin: 25% 0 0 0;
  line-height: 1.2;
}
#message h3 span {
  display: block;
}
#message h3 > span:nth-child(1) {
  position: relative;
}
#message h3 > span:nth-child(1)::before {
  content: "";
  display: block;
  width: 20%;
  height: 2px;
  background-color: #333333;
  position: absolute;
  left: 5%;
  top: 49%;
}
#message h3 > span:nth-child(2) {
  font-family: "Lato", "IBM Plex Sans JP", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.7vw;
  line-height: 1;
}
#message .greeting {
  display: flex;
  flex-flow: column;
  align-items: center;
}
#message h4 {
  font-size: 2.2vw;
  font-weight: 500;
  margin: 8% 0 1% 0;
  line-height: 1.3;
}
#message h4 span {
  display: block;
}
#message .text {
  font-size: clamp(16px, 0.94vw, 18px);
  padding: 0 10%;
  font-weight: 500;
}

#youtube div {
  width: 45vw;
  margin: 10% Auto 5% auto;
}
#youtube div iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

#requirements {
  position: relative;
  padding: 10% 0;
}
#requirements h2 {
  top: 10%;
}
#requirements .inner {
  width: 880px;
  margin: 0 auto;
}
#requirements h3 {
  display: inline-block;
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: 500;
  padding: 0.5% 3%;
  border: solid 1px #333333;
  border-radius: 9999px;
  margin: 5% 0 2% 0;
}
#requirements .table {
  display: grid;
  grid-template-columns: 20% 80%;
  grid-template-rows: 1fr;
  border: solid #C8C8C8;
  border-width: 1px 1px 0 1px;
}
#requirements .table p {
  border-bottom: solid 1px #C8C8C8;
  display: flex;
  justify-content: center;
  flex-flow: column;
  padding: 1.5% 0 1.5% 5%;
}
#requirements .table span {
  display: block;
}
#requirements .row_2 {
  grid-row: 2 span;
}
#requirements .row_3 {
  grid-row: 3 span;
}
#requirements .title {
  font-weight: 700;
  display: grid;
  grid-template-rows: repeat(15, 1fr);
  border-right: solid 1px #C8C8C8;
}
#requirements .title p {
  background-color: #EDEDED;
  outline: solid 3px rgb(255, 255, 255);
  outline-offset: -4px;
  padding: 1.5% 0 1.5% 10%;
}
#requirements .contents {
  display: grid;
  grid-template-rows: repeat(15, 1fr);
}

#flow {
  padding: 20% 0 5% 0;
  position: relative;
}
#flow h2 {
  top: 3%;
}
#flow .chart {
  display: grid;
  grid-template-columns: repeat(15, 54px);
  grid-template-rows: 400px;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
#flow .chart div {
  grid-column: 3 span;
  text-align: center;
  color: #009143;
  border: solid 1px #009143;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
}
#flow .chart div:nth-of-type(-n+2) img {
  width: 80%;
}
#flow .chart div:nth-of-type(2) .text {
  letter-spacing: 0.2em;
  text-indent: 0.2em;
}
#flow .chart div:nth-of-type(n+3) .text {
  letter-spacing: 0.8em;
  text-indent: 0.8em;
}
#flow .chart div:last-child {
  color: #F9803B;
  border: solid 1px #F9803B;
}
#flow .chart div:last-child img {
  margin-bottom: -3%;
}
#flow .number {
  padding: 3% 0 0 0;
}
#flow .number span {
  display: block;
  line-height: 1;
  font-family: "Lato", "IBM Plex Sans JP", sans-serif;
}
#flow .number span:nth-child(1) {
  font-size: 187%;
}
#flow .number span:nth-child(2) {
  font-size: 350%;
}
#flow .text {
  writing-mode: vertical-rl;
  display: inline-block;
  font-size: 1.4rem;
}
#flow .icon {
  padding: 3%;
}
#flow h3 {
  text-align: center;
  font-family: "IBM Plex Sans JP", "Noto Sans JP", sans-serif;
  font-size: clamp(24px, 2vw, 38px);
  font-weight: 600;
  position: relative;
  padding: 3% 0;
}
#flow h3 span {
  display: block;
}
#flow h3 span:nth-child(1) {
  font-family: "Lato", "IBM Plex Sans JP", sans-serif;
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 400;
}
#flow h3::before {
  content: "";
  width: 3.1vw;
  height: 1px;
  background-color: #333333;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
#flow h3::after {
  content: "";
  width: 3.1vw;
  height: 1px;
  display: block;
  background-color: #333333;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#flow .container {
  margin: 5% auto;
  width: clamp(760px, 42vw, 1000px);
}
#flow .container .contents {
  padding: 5% 0;
}
#flow .container .contents P:nth-child(2) {
  padding: 2% 0 0 0;
}
#flow .container .contents span {
  display: block;
}
#flow #step_2 h3 span:nth-child(2) {
  letter-spacing: 0.4rem;
  text-indent: 0.4rem;
}
#flow #step_3 h3 span:nth-child(2),
#flow #step_4 h3 span:nth-child(2) {
  letter-spacing: 1rem;
  text-indent: 1rem;
}

#link {
  background-image: url(image/recruit/link6.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  padding: 25% 0;
  position: relative;
  margin: 0 10% 10% 10%;
}
#link .inner {
  position: absolute;
  right: 7%;
  top: 30%;
  width: 35%;
}
#link .container {
  background-color: #354970;
  padding: 15% 5% 5% 5%;
  color: rgb(255, 255, 255);
  text-align: center;
  font-size: clamp(16px, 1.25vw, 24px);
}
#link .btn {
  border: solid 1px rgb(255, 255, 255);
  display: block;
  width: 70%;
  margin: 10% auto;
  position: relative;
  text-align: left;
}
#link .btn::before {
  content: "";
  width: 20%;
  height: 1px;
  background-color: rgb(255, 255, 255);
  display: block;
  position: absolute;
  top: 55%;
  right: 5%;
  z-index: 3;
}
#link .btn::after {
  content: "";
  width: 3%;
  height: 1px;
  display: block;
  background-color: rgb(255, 255, 255);
  position: absolute;
  top: 55%;
  right: 5%;
  transform: rotate(45deg);
  transform-origin: right bottom;
  overflow: hidden;
  z-index: 2;
}
#link .btn:hover::before {
  background-color: #354970;
  transition: all 0.3s;
}
#link .btn:hover::after {
  background-color: #354970;
  transition: all 0.3s;
}
#link .btn a {
  display: block;
  color: rgb(255, 255, 255);
  width: 100%;
  height: 100%;
  padding: 2% 0 2% 7%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
#link .btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  transform: translateX(-100%);
  z-index: -1;
}
#link .btn a:hover {
  color: #354970;
  transition: all 0.3s;
}
#link .btn a:hover::before {
  transform: translateX(0%);
  transition: all 0.3s;
}
#link .text {
  text-align: center;
  color: #333333;
  padding: 7% 0;
}
#link .text P:nth-child(1) {
  text-align: left;
}
#link .text p:nth-child(2) {
  border-bottom: solid 1px #333333;
  display: inline-block;
  font-size: clamp(16px, 1.04vw, 20px);
  margin: 5% 0 0 0;
}

/*----------------------------PC(小)用-----------------------------------
-----------------------------------------------------------------------*/
@media screen and (max-width: 1200px) {
  #message {
    padding: 5% 0 0 0;
  }
  #message .message_bg::before {
    background-position: right top;
    top: 70px;
  }
  #message h2 {
    top: 5%;
  }
  #message .inner {
    width: 100%;
    display: block;
    position: relative;
  }
  #message h3 {
    font-size: 4.5vw;
    margin: -3% 0 0 0;
    padding: 35% 0 3% 0;
    text-align: center;
  }
  #message h3 > span span {
    display: inline-block;
  }
  #message h3 > span:nth-child(1)::before {
    left: 12%;
    width: 8%;
    height: 1px;
  }
  #message h3 > span:nth-child(1)::after {
    content: "";
    display: block;
    width: 8%;
    height: 1px;
    background-color: #333333;
    position: absolute;
    top: 49%;
    right: 15%;
  }
  #message h3 > span:nth-child(2) {
    font-size: 2vw;
    margin: 0 2% 0 0;
  }
  #message .greeting {
    text-align: center;
    margin: 0 auto 0 auto;
    background-color: rgb(255, 255, 255);
    padding: 0 0 5% 0;
    z-index: 10;
  }
  #message h4 {
    font-size: 2.7vw;
    margin: 5% 0 0 0;
  }
  #message .text {
    margin: 3% 0 0 0;
    font-size: 100%;
    line-height: 2;
    width: 500px;
    padding: initial;
  }
  #message .text span {
    display: block;
  }
  #message .text > span {
    margin: 5% 0;
  }
  #youtube div {
    width: 70vw;
  }
  #requirements {
    margin: -2% 0 0 0;
    background-color: rgb(255, 255, 255);
    padding: 15% 0 10% 0;
  }
  #link {
    margin: 0 3% 10% 3%;
    background-size: cover;
  }
  #link .inner {
    right: 3%;
    top: 20%;
    width: 40%;
  }
}
/*-----------------------------タブレット用----------------------------------
---------------------------------------------------------------------------*/
@media screen and (max-width: 900px) {
  h2 {
    width: 50vw;
  }
  #message .message_bg::before {
    top: 63px;
  }
  #message h4 {
    font-size: 3.3vw;
  }
  #requirements h2 {
    top: 5%;
  }
  #requirements .inner {
    width: 96%;
  }
  #flow {
    padding: 15% 0 10% 0;
  }
  #flow h2 {
    top: 0;
  }
  #flow .chart {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(15, auto);
    justify-content: center;
    -moz-column-gap: initial;
         column-gap: initial;
    width: 70%;
    margin: 0 auto;
  }
  #flow .chart div {
    flex-flow: row;
    overflow: hidden;
  }
  #flow .chart div:nth-of-type(-n+2) img {
    width: 100%;
  }
  #flow .chart > p {
    text-align: center;
  }
  #flow .chart > p img {
    width: 10%;
    transform: rotate(90deg);
    transform-origin: center;
  }
  #flow .number {
    padding: 0 2%;
  }
  #flow .number span:nth-child(1) {
    font-size: clamp(14px, 3.1vw, 28px);
  }
  #flow .number span:nth-child(2) {
    font-size: 6.2vw;
  }
  #flow .text {
    writing-mode: initial;
    font-size: clamp(16px, 2.4vw, 22px);
  }
  #flow .icon {
    padding: initial;
    width: 20%;
  }
  #flow .container {
    width: 90%;
  }
  #link {
    margin: initial;
    width: 100%;
    padding: initial;
    position: static;
    background-position: left bottom;
  }
  #link .inner {
    position: relative;
    margin: initial;
    top: auto;
    right: auto;
    width: auto;
    padding: 30% 0;
  }
  #link .container {
    font-size: 100%;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding: 0 2%;
    display: flex;
    justify-content: center;
    flex-flow: column;
  }
  #link .btn {
    width: 90%;
  }
  #link .text {
    position: absolute;
    bottom: -45%;
    left: 0;
    background-color: rgb(255, 255, 255);
    padding: 3% 2% 7% 2%;
    width: 100%;
  }
  #link .text span {
    display: block;
  }
  #link .text p:nth-child(1) {
    text-align: center;
  }
  #link .text p:nth-child(2) {
    font-size: 120%;
  }
  footer {
    margin: 30% 0 0 0;
  }
}
/*-----------------------------スマホ用----------------------------------
----------------------------------------------------------------------*/
@media screen and (max-width: 520px) {
  h1 {
    background-image: url(image/recruit/recruit_top@2x.jpg);
  }
  h2 {
    position: static;
    width: 100%;
    text-shadow: 0 0 1px #C8C8C8;
    text-align: center;
    color: rgb(255, 255, 255);
    padding: 30% 0;
  }
  h2 span {
    padding: 1% 0;
  }
  h2 span:nth-child(1) {
    font-size: 225%;
    border-bottom: none;
  }
  h2 span:nth-child(2) {
    font-size: 14px;
    border-top: solid 1px rgb(255, 255, 255);
    display: inline-block;
    padding: 1% 0 0 0;
  }
  #message {
    padding: initial;
  }
  #message .message_bg {
    clip: initial;
  }
  #message .message_bg::before {
    background-image: none;
    position: static;
  }
  #message h2 {
    background-image: url(image/recruit/recruit_top_sp.jpg);
    background-size: cover;
    background-position: center;
    color: #333333;
  }
  #message h2 span:nth-child(2) {
    border-top: solid 1px #333333;
  }
  #message h3 {
    padding: 10% 0 0 0;
    margin: initial;
    background-color: rgb(255, 255, 255);
  }
  #message .greeting {
    padding: initial;
  }
  #message h4 {
    font-size: 4.6vw;
  }
  #message .text {
    width: 90%;
    margin: 5% 0 0 0;
    line-height: 1.6;
  }
  #youtube div {
    width: 85vw;
  }
  #requirements {
    margin: initial;
    padding: 10% 0 0 0;
  }
  #requirements h2 {
    background-image: url(image/recruit/recruit_sp1.jpg);
    background-size: cover;
  }
  #requirements .inner {
    margin: 10% auto;
  }
  #requirements h3 {
    margin: 3% 0;
  }
  #flow {
    padding: 10% 0 0 0;
  }
  #flow h2 {
    background-image: url(image/recruit/recruit_sp3.jpg);
    background-size: cover;
    background-position: center;
  }
  #flow .chart {
    margin: 10% auto;
  }
  #link {
    background-image: none;
  }
  #link .inner {
    padding: initial;
    margin: 0 0 10% 0;
  }
  #link .container {
    position: static;
    width: 85%;
    margin: 0 auto;
    padding: 10% 0 5% 0;
  }
  #link .btn {
    width: 70%;
  }
  #link .text {
    position: static;
    padding: 10% 2% 5% 2%;
  }
  footer {
    margin: initial;
  }
}/*# sourceMappingURL=recruit.css.map */