@charset "UTF-8";
/******************************************************************
Theme Name: 西日本産業採用サイト
******************************************************************/
/* CSS Document */
/* CSS Document */
@import url(https://fonts.googleapis.com/css?family=Oswald);
.effect, .effect2 {
  position: relative;
}

.effect:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 110%;
  animation: e1 0.5s ease-in-out 1s forwards;
  z-index: 99999;
  right: 0;
  top: 0;
}

.blue:before {
  background: #084E92;
}

.yellow:before {
  background: #D7DF23;
}

.waterblue:before {
  background: #5DC3D7;
}

.darkorange:before {
  background: #F15A29;
}

.orange:before {
  background: #FBB040;
}

.skygreen:before {
  background: #00A79D;
}

.lightgreen:before {
  background: #8DC6A3;
}

.darkgreen:before {
  background: #2BB673;
}

.originalgreen:before {
  background: #00A79D;
}

.realblue:before {
  background: #5DC2D6;
}

@keyframes e1 {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
.effect:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 110%;
  animation: e2 1s ease-in-out forwards;
  background: #F7F7F7;
  z-index: 999999;
  right: 0;
  top: 0;
}

@keyframes e2 {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@media only screen and (max-width: 736px) {
  p.logo {
    padding: 0;
  }
  p.logo img {
    width: 100%;
  }
  p.logo-right {
    top: 60px;
    left: 10px;
    font-size: 12px;
  }
}
ul#gnav {
  float: right;
}
ul#gnav li {
  float: left;
  font-size: 16px;
  padding-top: 40px;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #0540AD;
  box-sizing: border-box;
}
header::before, header::after {
  display: none;
}
header .logo {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  z-index: 10000;
}
header .logo img {
  width: 240px;
  height: auto;
}
header .logo .logo-right {
  position: static;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
header .hamburger {
  z-index: 10000;
}
header .hamburger.open img.btn-open {
  display: none;
}
header .hamburger.open img.btn-close {
  display: block;
}
header .hamburger img {
  width: 60px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
}
header .hamburger img.btn-open {
  display: block;
}
header .hamburger img.btn-close {
  display: none;
}
header .nav-box {
  position: fixed;
  top: -500px;
  left: 0;
  width: 100%;
  height: 400px;
  box-sizing: border-box;
  background: #0540AD;
  z-index: 9999;
  padding: 180px 0 0;
  transition: 0.3s ease-in-out;
}
header .nav-box.open {
  top: 0;
}
header .nav-box ul {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
header .nav-box ul li a {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
header .nav-box ul li.btn-entry {
  width: 100%;
  margin-top: 32px;
}
header .nav-box ul li.btn-entry a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: #EAF600;
  color: #0540AD;
  font-size: 20px;
  font-weight: 500;
  font-family: "Oswald", sans-serif !important;
  padding: 10px 0;
}
header .nav-box .sns-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 120px;
  background-color: #fff;
  gap: 10px;
}
header .nav-box .sns-box a {
  margin: 0;
}
header .nav-box .sns-box a img {
  width: 50px;
  height: auto;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* 黒フィルター */
  z-index: 9000;
  pointer-events: none;
}
.overlay.open {
  display: block;
  pointer-events: auto;
}

#mv {
  background-color: #0540AD;
  padding: 100px 0;
}
#mv .box .mv-text {
  position: relative;
  z-index: 2;
}
#mv .box .mv-text h1 {
  text-align: center;
}
#mv .box .mv-text h1 span {
  display: inline-block;
  color: #EAF600;
  text-align: center;
  font-family: "Oswald", sans-serif !important;
  font-size: 120px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 120px */
}
#mv .box .mv-img {
  position: relative;
  top: -30px;
  z-index: 1;
  overflow: hidden;
}
#mv .box .mv-img ul {
  display: flex;
  gap: 10px;
  margin-bottom: 0px;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
#mv .box .mv-img ul li {
  width: auto;
  height: 300px;
  flex-shrink: 0;
}
#mv .box .mv-img ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#mv .box .mv-btn {
  text-align: right;
  margin: 0 50px 50px;
}
#mv .box .mv-btn a {
  display: inline-block;
  width: auto;
  height: 60px;
  transition: 0.3s ease-in-out;
}
#mv .box .mv-btn a:hover {
  opacity: 0.7;
}
#mv .box .mv-btn a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#mv .box .mv-sub {
  background-image: url(../img/mv-sub-bg.jpg);
  background-size: cover;
  background-position: center;
  width: 80%;
  height: 400px;
  margin: 0 auto;
  position: relative;
}
#mv .box .mv-sub .mv-sub-text {
  padding: 30px;
  position: absolute;
  left: -5%;
  bottom: -50px;
  display: flex;
  padding: 24px 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  background: #0540AD;
}
#mv .box .mv-sub .mv-sub-text h2 span {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 57.6px */
  display: inline-block;
}
#mv .box .mv-sub .mv-sub-text p span {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 32px */
}

.scroll_guide {
  position: fixed;
  bottom: 0;
  left: 10px;
  z-index: 999;
  background: #FFF;
  width: 40px;
  padding: 10px 0 100px 10px;
}
.scroll_guide p {
  /* height: 372px; */
  padding: 0;
  font-family: "Oswald", sans-serif !important;
  writing-mode: vertical-rl;
  display: inline-block;
  transform: rotate(180deg);
  text-align: center;
  font-size: 18px;
  position: relative;
  padding-bottom: 20px;
  color: #005FAD;
}
.scroll_guide:after {
  content: "";
  background: #005FAD;
  width: 1px;
  height: 124px;
  position: absolute;
  display: block;
  margin: auto;
  left: 25px;
  animation: scro 2s ease-in-out infinite;
}

@media only screen and (max-width: 736px) {
  .scroll_guide {
    position: absolute;
    width: 20px;
    padding: 0 5px 50px 0;
  }
  .scroll_guide p {
    font-size: 16px;
  }
  .scroll_guide:after {
    left: 10px;
  }
}
@keyframes scro {
  0% {
    height: 0;
  }
  50% {
    height: 124px;
  }
  100% {
    height: 0;
  }
}
/*==========================================================*/
#message {
  position: relative;
  z-index: 9999;
  margin-top: 100px;
}

#mess-pic {
  background: url(../img/pic-message.jpg) no-repeat 50% top;
  background-size: 70%;
  height: 500px;
  z-index: 998;
  position: relative;
  top: -100px;
  margin-bottom: 0;
}

#mess-pic2 {
  /* background: url(../img/b2.jpg) no-repeat right top; */
  background-size: 50%;
  /* height:751px; */
  height: 500px;
  z-index: 998;
  position: relative;
  margin-bottom: 0;
  pointer-events: none;
}

.mess-movie-box {
  position: absolute;
  right: 0;
  width: 65%;
}

.mess-movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.mess-movie iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.mess-movie02 {
  width: 80%;
  margin: 0 auto;
  aspect-ratio: 16/9;
}
.mess-movie02 iframe {
  width: 100%;
  height: 100%;
}

#mess-pic3 {
  background: url(../img/b1.jpg) no-repeat left bottom;
  background-size: 50%;
  height: 600px;
  z-index: 998;
  position: relative;
  margin-bottom: 0;
}

p.name {
  margin-top: 50px;
}

@media only screen and (max-width: 736px) {
  #message {
    margin-bottom: 50px;
    padding-top: 0;
    margin-top: 0;
  }
  p.name {
    margin-top: 25px;
  }
  #message:before, #message:after {
    content: "";
    display: block;
    overflow: hidden;
    clear: both;
  }
  #mess-pic {
    background: url(../img/pic-message.jpg) no-repeat scroll right top;
    background-size: 90%;
    height: 300px;
    z-index: 998;
    position: relative;
    top: 0;
    margin-bottom: 0;
    margin-top: 50px;
  }
  #mess-pic2 {
    /* background: url(../img/b2.jpg) no-repeat scroll right top; */
    background-size: 80%;
    height: 300px;
    /* height: 100px; */
    z-index: 998;
    top: 50px;
    position: relative;
    margin-bottom: 0;
  }
  .mess-movie-box {
    width: 100%;
  }
  .mess-movie {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
  }
  .mess-movie iframe {
    width: 100%;
    height: 100%;
    position: absolute;
  }
  .mess-movie02 {
    width: 100%;
  }
  #mess-pic3 {
    background: url(../img/b1.jpg) no-repeat scroll left top;
    background-size: 80%;
    height: 300px;
    z-index: 998;
    top: 50px;
    position: relative;
    margin-bottom: 0;
  }
}
.mess-text {
  max-width: 1400px;
  margin: 0 auto;
}
.mess-text p span {
  display: block;
}
.mess-text:before, .mess-text:after {
  content: "";
  display: block;
  overflow: hidden;
  clear: both;
}

.mess-text-inside {
  width: 60%;
  float: left;
  border: 10px solid #D7DF23;
  position: relative;
  z-index: 997;
  padding: 5% 12% 5% 5%;
  box-sizing: border-box;
  /* margin: -70vh 0 -20vh 0; */
  margin: -50vh 0 -20vh 0;
}
.mess-text-inside .btn-box {
  margin-top: 32px;
  text-align: left;
}

.mess-text-inside2 {
  width: 60%;
  float: right;
  border: 10px solid #D7DF23;
  position: relative;
  z-index: 999;
  padding: 5% 5% 10% 12%;
  box-sizing: border-box;
  margin: -50vh 0 0 0;
}

@media only screen and (max-width: 736px) {
  .mess-text-inside {
    width: 90%;
    margin: -50px 0 0 15px;
    border: 5px solid #D7DF23;
    padding: 5%;
  }
  .mess-text-inside2 {
    width: 90%;
    margin: -50px 15px 0 0;
    border: 5px solid #D7DF23;
    padding: 5%;
  }
}
/*--------------------------------*/
.mess-text-inside h1 {
  color: #D7DF23;
  font-size: 90px;
  line-height: 100px;
  position: relative;
}
.mess-text-inside h1 span {
  font-family: "Oswald", sans-serif !important;
}
.mess-text-inside p.title-p {
  display: block;
  font-size: 18px;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  font-weight: bold;
  padding-left: 60px;
  position: relative;
  color: #D7DF23;
}
.mess-text-inside p.title-p:before {
  content: "";
  background: #D7DF23;
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 50px;
  height: 2px;
}

@media only screen and (max-width: 736px) {
  .mess-text-inside h1 {
    font-size: 40px;
    line-height: 60px;
  }
  .mess-text-inside p.title-p {
    font-size: 14px;
    padding-left: 30px;
    font-weight: normal;
  }
  .mess-text-inside p.title-p:before {
    width: 20px;
    bottom: 10px;
    height: 1px;
  }
}
/*--------------------------------*/
.mess-text h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 50px 0;
}
.mess-text h2 i {
  color: #D7DF23;
  font-size: 70%;
  font-style: italic;
}

.mess-text-inside h3 {
  font-size: 24px;
  font-weight: bold;
  margin: 50px 0;
}

.mess-text-inside2 h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 25px 0 5px 0;
  cursor: pointer;
  position: relative;
}
.mess-text-inside2 h3:after {
  content: ">";
  transform: rotate(90deg) scale(1, 1.2);
  display: inline-block;
  position: absolute;
  right: 0;
  transition: all 0.3s ease-in-out;
}
.mess-text-inside2 h3.active:after {
  transform: rotate(-90deg) scale(1, 1.2);
}

.mess-text-inside h2 span {
  display: block;
}

.mess-text-inside2 p {
  display: none;
}

.mess-text-inside p span {
  display: block;
}

@media only screen and (max-width: 736px) {
  .mess-text h2 {
    font-size: 17px;
    font-weight: normal;
    margin: 25px 0 10px 0;
  }
  .mess-text-inside h3 {
    font-size: 17px;
    font-weight: normal;
    margin: 25px 0;
  }
  .mess-text-inside2 h3 {
    font-size: 15px;
    font-weight: normal;
    margin: 25px 0 5px 0;
  }
  .mess-text-inside p, .mess-text-inside2 p {
    font-size: 13px;
  }
}
.mess-text.s2 {
  display: none;
}

p.copyright {
  transform: rotate(90deg);
  position: fixed;
  left: -120px;
  opacity: 0.7;
  top: 50%;
  color: #FFF;
  font-size: 11px;
  font-family: "Oswald", sans-serif !important;
  letter-spacing: 1px;
  font-weight: normal;
  display: none;
}

@media only screen and (max-width: 736px) {
  p.copyright {
    transform: rotate(0);
    position: relative;
    margin: 80px 0 0 0;
    text-align: center;
    z-index: 9999;
    left: auto;
    top: auto;
    opacity: 0.7;
    top: 50%;
    color: #333;
    font-size: 10px;
    font-family: "Oswald", sans-serif !important;
    letter-spacing: 1px;
    font-weight: normal;
    display: none;
  }
}
/*==========================================================*/
.btn-box {
  text-align: center;
}
.btn-box a.btn {
  display: inline-block;
  width: 240px;
}
.btn-box a.btn img {
  width: 100%;
}

#recruit-info {
  background-color: #fff;
  padding: 80px 0;
}
#recruit-info .box .title-box {
  padding: 50px;
}
#recruit-info .box .title-box h1 {
  color: #0540AD;
  font-size: 90px;
  line-height: 100px;
  position: relative;
}
#recruit-info .box .title-box h1 span {
  font-family: "Oswald", sans-serif !important;
}
#recruit-info .box .title-box p.title-p {
  display: block;
  font-size: 18px;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  font-weight: bold;
  padding-left: 60px;
  position: relative;
  color: #0540AD;
}
#recruit-info .box .title-box p.title-p:before {
  content: "";
  background: #0540AD;
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 50px;
  height: 2px;
}
#recruit-info .box .inner-box {
  border: 2px solid #0540AD;
  width: calc(100% - 100px);
  margin: 0 auto;
}
#recruit-info .box .inner-box .tab-box ul {
  display: flex;
}
#recruit-info .box .inner-box .tab-box ul li {
  width: 50%;
  background-color: #fff;
  color: #0540AD;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
  cursor: pointer;
  transition: 0.1s ease-in-out;
}
#recruit-info .box .inner-box .tab-box ul li.active {
  background-color: #0540AD;
  color: #fff;
}
#recruit-info .box .inner-box .info-box01,
#recruit-info .box .inner-box .info-box02 {
  display: none;
  background-color: #D5DEE6;
  padding: 40px 0;
}
#recruit-info .box .inner-box .info-box01.active,
#recruit-info .box .inner-box .info-box02.active {
  display: block;
}
#recruit-info .box .inner-box .info-box01 ul,
#recruit-info .box .inner-box .info-box02 ul {
  width: 80%;
  margin: 0 auto;
}
#recruit-info .box .inner-box .info-box01 ul li,
#recruit-info .box .inner-box .info-box02 ul li {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 16px;
}
#recruit-info .box .inner-box .info-box01 ul li h3,
#recruit-info .box .inner-box .info-box02 ul li h3 {
  font-size: 18px;
  font-weight: bold;
  padding: 20px;
  position: relative;
  cursor: pointer;
}
#recruit-info .box .inner-box .info-box01 ul li h3::after,
#recruit-info .box .inner-box .info-box02 ul li h3::after {
  content: "";
  position: absolute;
  top: 13px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-image: url(../img/icon-arrow02.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg);
}
#recruit-info .box .inner-box .info-box01 ul li h3.open,
#recruit-info .box .inner-box .info-box02 ul li h3.open {
  background-color: #fff;
}
#recruit-info .box .inner-box .info-box01 ul li h3.open::after,
#recruit-info .box .inner-box .info-box02 ul li h3.open::after {
  transform: rotate(0deg);
}
#recruit-info .box .inner-box .info-box01 ul li .info-detail,
#recruit-info .box .inner-box .info-box02 ul li .info-detail {
  display: none;
  border-top: 2px solid rgba(0, 0, 0, 0.2);
  padding-top: 32px;
}
#recruit-info .box .inner-box .info-box01 ul li .info-detail.open,
#recruit-info .box .inner-box .info-box02 ul li .info-detail.open {
  display: block;
  background-color: #fff;
}
#recruit-info .box .inner-box .info-box01 ul li .info-detail img,
#recruit-info .box .inner-box .info-box02 ul li .info-detail img {
  display: block;
  width: 80%;
  margin: 0 auto;
}
#recruit-info .box .inner-box .info-box01 ul li .info-detail .btn-box,
#recruit-info .box .inner-box .info-box02 ul li .info-detail .btn-box {
  padding: 24px 0 32px;
}

/*==========================================================*/
#service {
  position: relative;
  z-index: 9999;
  background: linear-gradient(to right, #5DC3D7 0%, #00A8D3 100%);
  z-index: 1;
  padding: 80px 0 0 0;
}

#service-pic {
  max-width: 1400px;
  height: 400px;
  margin: auto;
  z-index: 998;
  position: relative;
}
#service-pic i span {
  color: #AADDEC;
  font-size: 48px;
  font-family: "Oswald", sans-serif !important;
  mix-blend-mode: multiply;
  position: relative;
  top: -42px;
  z-index: 9999;
}

.service-h {
  position: absolute;
  right: 0;
  top: 0;
  background: #15AED4;
  padding: 50px;
}

@media only screen and (max-width: 736px) {
  #service {
    padding: 0;
  }
  #service-pic {
    background: url(../img/pic-service.jpg) no-repeat center 20%;
    background-size: cover;
    max-width: 1400px;
    height: 400px;
    margin: auto;
    z-index: 998;
    position: relative;
  }
  #service-pic i span {
    color: #5DC2D6;
    font-size: 18px;
    font-family: "Oswald", sans-serif !important;
    mix-blend-mode: multiply;
    position: relative;
    top: 22px;
    margin-left: 15px;
  }
  .service-h {
    position: absolute;
    right: 0;
    top: -15%;
    background: #15AED4;
    padding: 25px;
  }
}
/*--------------------------------*/
#service h1 {
  color: #FFF;
  font-size: 90px;
  line-height: 100px;
  position: relative;
}
#service h1 span {
  font-family: "Oswald", sans-serif !important;
}
#service p.title-p {
  display: block;
  font-size: 18px;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  font-weight: bold;
  padding-left: 60px;
  position: relative;
  color: #FFF;
}
#service p.title-p:before {
  content: "";
  background: #FFF;
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 50px;
  height: 2px;
}
#service h2 {
  font-size: 38px;
  font-weight: bold;
  color: #FFF;
  position: absolute;
  margin-bottom: 30px;
  padding-left: 60px;
  bottom: 100px;
}
#service h2:before {
  content: "";
  background: #FFF;
  width: 100px;
  height: 2px;
  position: absolute;
  left: -50px;
  top: 50%;
}

@media only screen and (max-width: 736px) {
  #service h1 {
    font-size: 40px;
    line-height: 60px;
  }
  #service p.title-p {
    font-size: 14px;
    padding-left: 30px;
    font-weight: normal;
  }
  #service p.title-p:before {
    width: 20px;
    bottom: 10px;
    height: 1px;
  }
}
/*--------------------------------*/
@media only screen and (max-width: 736px) {
  #service h2 {
    font-size: 20px;
    font-weight: bold;
    color: #FFF;
    position: absolute;
    margin-bottom: 0px;
    padding-left: 60px;
    bottom: auto;
    top: 250px;
    text-shadow: 0 0 5px #333;
  }
  #service h2:before {
    content: "";
    background: #FFF;
    width: 100px;
    height: 2px;
    position: absolute;
    left: -50px;
    top: 50%;
  }
}
ul.service-list {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  top: -100px;
  z-index: 9999;
  margin-bottom: -50px;
}
ul.service-list li {
  text-align: center;
  width: 23%;
  margin-right: 2.6%;
  background: #FFF;
  padding: 100px 0;
  font-weight: bold;
  color: #005FAD;
  font-size: 24px;
  position: relative;
}
ul.service-list li .caption {
  font-size: 16px;
  color: #333;
  padding-top: 80px;
  padding-left: 0px;
  text-align: left;
}
ul.service-list li .mask {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  /* マスクを表示しない */
  background-color: #FFF;
  transition: all 0.6s ease;
  padding: 0 30px;
  box-sizing: border-box;
}
ul.service-list li:hover .mask {
  opacity: 1;
  /* マスクを表示する */
}
ul.service-list li:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 10px;
  left: -20px;
  border: 5px solid #005FAD;
}
ul.service-list li p {
  width: 75%;
  margin: 0 auto;
}
ul.service-list li:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 736px) {
  ul.service-list {
    display: block;
  }
  ul.service-list li {
    text-align: center;
    width: auto;
    margin-right: 4%;
    margin-bottom: 8%;
    background: #FFF;
    padding: 50px 0;
    font-weight: normal;
    color: #005FAD;
    font-size: 14px;
    position: relative;
  }
  ul.service-list li .caption {
    padding-top: 20px;
    font-size: 13px;
  }
  ul.service-list li .mask {
    padding: 15px;
  }
}
@media only screen and (max-width: 736px) {
  ul.service-list li {
    margin-right: 0;
  }
  ul.service-list li:after {
    border: 3px solid #005FAD;
    left: 5px;
    top: 5px;
  }
}
@media only screen and (max-width: 736px) {
  ul.service-list li p span {
    display: block;
    font-weight: bold;
    font-size: 16px;
  }
}
@media only screen and (max-width: 736px) {
  ul.service-list li:nth-child(2) {
    margin-right: 0;
  }
  ul.service-list li p {
    width: 80%;
  }
}
p.service-plus {
  text-align: center;
  background: #FFF;
  padding: 100px 0 0 0;
  position: relative;
  margin-top: -150px;
}

@media only screen and (max-width: 736px) {
  p.service-plus {
    text-align: center;
    background: #FFF;
    padding: 50px 15px 0 15px;
    font-size: 12px;
    position: relative;
    margin-top: -150px;
    margin-bottom: 0px;
  }
}
/*==========================================================*/
#pickup {
  background-image: url(../img/bg-pickup.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
  margin-top: 80px;
  max-height: 980px;
  overflow: hidden;
}
#pickup .box {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  width: calc(100% - 100px);
  margin: 0 auto;
}
#pickup .box .pick01 {
  width: 33%;
  padding: 80px 0;
}
#pickup .box .pick01 .pick-h h1 {
  color: #fff;
  font-size: 90px;
  line-height: 100px;
}
#pickup .box .pick01 .pick-h h1 span {
  font-family: "Oswald", sans-serif !important;
}
#pickup .box .pick01 .pick-h p {
  display: block;
  font-size: 18px;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  font-weight: bold;
  padding-left: 60px;
  position: relative;
}
#pickup .box .pick01 .pick-h p:before {
  content: "";
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 50px;
  height: 2px;
}
#pickup .box .pick01 p {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 27.2px */
  margin-top: 16px;
}
#pickup .box .pick01 .img {
  width: 240px;
  margin-top: 60px;
}
#pickup .box .pick01 .img img {
  width: 100%;
}
#pickup .box .pick02 {
  width: 33%;
  padding: 80px 0;
}
#pickup .box .pick02 .img {
  width: 200px;
  margin: 0 0 0 auto;
}
#pickup .box .pick02 .img img {
  width: 100%;
}
#pickup .box .pick02 .movie {
  margin-top: 16px;
}
#pickup .box .pick02 .movie iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 9/16;
  -o-object-fit: contain;
     object-fit: contain;
}
#pickup .box .pick02 .text {
  margin-top: 24px;
  padding: 16px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}
#pickup .box .pick02 .text p {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}
#pickup .box .pick02 .text small {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}
#pickup .box .pick03 {
  width: 33%;
  text-align: center;
}
#pickup .box .pick03 .img {
  width: 100%;
  max-width: 400px;
}
#pickup .box .pick03 .img img {
  width: 100%;
}

/*==========================================================*/
#interview {
  position: relative;
  z-index: 9999;
  z-index: 1;
  padding: 0;
  background-color: #FAA435;
}

#interview-pic {
  /* background: url(../img/pic-interview.jpg) no-repeat center top; */
  background: transparent;
  background-size: 100%;
  max-width: 1400px;
  height: 450px;
  /* height: 100vh; */
  margin: auto;
  z-index: 998;
  position: relative;
}
#interview-pic i span {
  color: #F15A29;
  font-size: 48px;
  font-family: "Oswald", sans-serif !important;
  mix-blend-mode: multiply;
  position: relative;
  top: -42px;
  float: right;
}

.interview-h {
  position: absolute;
  left: 0;
  top: 0;
  /* background:#FFF; */
  padding: 50px;
}

@media only screen and (max-width: 736px) {
  #interview {
    position: relative;
    z-index: 9999;
    z-index: 1;
    padding: 50px 0 0 0;
  }
  #interview-pic {
    /* background: url(../img/pic-interview.jpg) no-repeat center 70px; */
    background: linear-gradient(to right, #5DC3D7 0%, #00A8D3 100%);
    background-size: contain;
    max-width: 1400px;
    height: 200px;
    /* height: 400px; */
    margin: auto;
    z-index: 998;
    position: relative;
  }
  #interview-pic i span {
    color: #F15A29;
    font-size: 18px;
    font-family: "Oswald", sans-serif !important;
    mix-blend-mode: multiply;
    position: relative;
    top: 0;
    float: left;
    z-index: 9999;
    margin-left: 15px;
    opacity: 0.5;
  }
  .interview-h {
    position: absolute;
    left: 0;
    top: 0;
    /* background:#FFF; */
    padding: 25px;
  }
}
/*--------------------------------*/
#interview h1 {
  /* color:#F15A29; */
  color: #fff;
  font-size: 90px;
  line-height: 100px;
  position: relative;
}
#interview h1 span {
  font-family: "Oswald", sans-serif !important;
}
#interview p.title-p {
  display: block;
  font-size: 18px;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  font-weight: bold;
  padding-left: 60px;
  position: relative;
  /* color: #F15A29; */
  color: #fff;
}
#interview p.title-p:before {
  content: "";
  /* background: #F15A29; */
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 50px;
  height: 2px;
}
#interview h2 {
  font-size: 38px;
  font-weight: bold;
  color: #F15A29;
  position: absolute;
  margin-bottom: 30px;
  padding-left: 60px;
  bottom: 300px;
  right: 30px;
}
#interview h2:before {
  content: "";
  background: #F15A29;
  width: 100px;
  height: 2px;
  position: absolute;
  right: -80px;
  top: 40%;
}

@media only screen and (max-width: 736px) {
  #interview h1 {
    font-size: 40px;
    line-height: 60px;
  }
  #interview p.title-p {
    font-size: 14px;
    padding-left: 30px;
    font-weight: normal;
  }
  #interview p.title-p:before {
    width: 20px;
    bottom: 10px;
    height: 1px;
  }
}
/*--------------------------------*/
.interview-wrap {
  max-width: 1400px;
  margin: 0 auto;
  background: transparent;
}

.interview-wrap-in {
  position: relative;
  z-index: 9999;
  margin-top: -200px;
  width: 80%;
  padding: 50px 70px 120px 50px;
  background: #FFF;
}
.interview-wrap-in h3.subtitle {
  color: #FAA435;
  font-family: "Noto Sans JP";
  font-size: 22px;
  font-style: normal;
  font-weight: bold;
  line-height: normal;
  margin-top: 60px;
  margin-bottom: 16px;
}
.interview-wrap-in small {
  font-size: 12px;
}

@media only screen and (max-width: 736px) {
  #interview h2 {
    font-size: 18px;
    font-weight: normal;
    color: #F15A29;
    position: absolute;
    margin-bottom: 30px;
    padding-right: 60px;
    bottom: auto;
    top: 300px;
    /* top: 130px; */
    right: 0;
  }
  #interview h2:before {
    content: "";
    background: #F15A29;
    width: 50px;
    height: 2px;
    position: absolute;
    right: 0;
    top: 40%;
  }
  .interview-wrap {
    max-width: 1400px;
    margin: 0 auto 25px auto;
    background: #FFF;
  }
  .interview-wrap-in {
    position: relative;
    z-index: 9999;
    margin-top: 0;
    width: 90%;
    padding: 15px 0 15px 15px;
    background: #FFF;
  }
}
ul.interview-list {
  overflow: hidden;
  padding-left: 0px;
  box-sizing: border-box;
}
ul.interview-list::after {
  display: none;
}
ul.interview-list li {
  /* width:30%; */
  width: 40%;
  margin-right: 5%;
  float: left;
  position: relative;
  z-index: 9999;
}
ul.interview-list li:nth-child(2) {
  margin-top: 0 !important;
}
ul.interview-list li img, ul.interview-list li video {
  width: 100%;
}
ul.interview-list li .pic {
  padding-left: 0;
  overflow: hidden;
}
ul.interview-list li .pic img {
  transition: transform 0.3s linear;
}
ul.interview-list li .pic img:hover {
  transform: scale(1.1);
  opacity: 0.7;
}
ul.interview-list li .text {
  position: relative;
  z-index: 9999;
  margin-top: 10px;
}
ul.interview-list li a {
  text-decoration: none;
  color: #fff;
}
ul.interview-list li a h3 {
  color: #333;
}
ul.interview-list li .text i {
  display: inline-block;
  padding: 6px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #DC7704;
  border: 1px solid #DC7704;
  background: #FFF;
}
ul.interview-list li .text span {
  width: 100%;
  display: flex;
  padding: 16px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 4px;
  border: 1px solid #EF8906;
  background: #FFF;
  color: #000;
  margin-left: 0;
  margin-top: 16px;
  box-sizing: border-box;
}
ul.interview-list li .text span img {
  width: 20px;
  height: 20px;
}
ul.interview-list li .text p {
  color: #414042;
  margin: 20px 0 0 0;
  font-size: 14px;
}
ul.interview-list li .text h3 {
  font-size: 20px;
  font-weight: bold;
}

@media only screen and (max-width: 736px) {
  ul.interview-list {
    overflow: hidden;
    padding-left: 0;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 736px) {
  ul.interview-list li {
    width: 46.5%;
    margin-right: 4%;
    float: left;
    position: relative;
    z-index: 9999;
  }
  ul.interview-list li img, ul.interview-list li video {
    width: 100%;
  }
}
@media only screen and (max-width: 736px) {
  ul.interview-list li:nth-child(3n) {
    margin-right: 4%;
  }
  ul.interview-list li:nth-child(2n) {
    margin-right: 1% !important;
  }
}
@media only screen and (max-width: 736px) {
  ul.interview-list li .text span {
    padding: 5px;
    font-size: 11px;
    display: block;
    margin-left: 0;
    text-align: center;
  }
  ul.interview-list li:nth-child(3) {
    margin-top: 0;
  }
  ul.interview-list li .text {
    position: relative;
    z-index: 9999;
    top: -10px;
  }
  ul.interview-list li .text i {
    background: #F15A29;
    padding: 5px 2px;
    color: #FFF;
    font-size: 12px;
  }
  ul.interview-list li .text p {
    color: #414042;
    margin: 7px 0 0 0;
    font-size: 11px;
  }
  ul.interview-list li .text h3 {
    font-size: 14px;
    font-weight: normal;
  }
}
/*==========================================================*/
#talk {
  position: relative;
  background: url(../img/bk-service.png) repeat-y;
  padding: 100px 0 100px 0;
  overflow: hidden;
  clear: both;
  margin: 100px 0 0 0;
}

#talk-pic {
  max-width: 1400px;
  margin: auto;
  z-index: 998;
  position: relative;
}
#talk-pic:before, #talk-pic:after {
  content: "";
  display: block;
  overflow: hidden;
  clear: both;
}

#talk i {
  float: left;
  width: 70%;
  margin: 100px 0 0 0;
}
#talk i span {
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  mix-blend-mode: multiply;
  position: relative;
}

.talk-h {
  position: absolute;
  right: 0;
  top: 0;
  background: none;
  padding: 50px;
}

@media only screen and (max-width: 736px) {
  #talk {
    position: relative;
    background: url(../img/bk-service.png) repeat-y;
    padding: 25px 15px;
    overflow: hidden;
    clear: both;
    margin: 0;
  }
  #talk-pic {
    max-width: 1400px;
    margin: auto;
    z-index: 998;
    position: relative;
  }
  #talk-pic:before, #talk-pic:after {
    content: "";
    display: block;
    overflow: hidden;
    clear: both;
  }
  #talk i {
    float: none;
    width: auto;
    margin: 10px 0 0 0;
    display: block;
  }
  #talk i span {
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
    mix-blend-mode: multiply;
    position: relative;
  }
  .talk-h {
    position: relative;
    text-align: right;
    right: 0;
    top: 0;
    background: none;
    padding: 25px;
  }
}
/*--------------------------------*/
#talk h1 {
  color: #FFF;
  font-size: 90px;
  line-height: 100px;
  position: relative;
}
#talk h1 span {
  font-family: "Oswald", sans-serif !important;
}
#talk p.title-p {
  display: block;
  font-size: 18px;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  font-weight: bold;
  padding-left: 60px;
  position: relative;
  color: #FFF;
}
#talk p.title-p:before {
  content: "";
  background: #FFF;
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 50px;
  height: 2px;
}
#talk h2 {
  font-size: 38px;
  font-weight: bold;
  color: #FFF;
  position: absolute;
  margin-bottom: 30px;
  padding-left: 60px;
  bottom: 100px;
}
#talk h2:before {
  content: "";
  background: #FFF;
  width: 100px;
  height: 2px;
  position: absolute;
  left: -50px;
  top: 50%;
}

@media only screen and (max-width: 736px) {
  #talk h1 {
    font-size: 40px;
    line-height: 60px;
  }
  #talk p.title-p {
    font-size: 16px;
    padding-left: 30px;
    font-weight: normal;
  }
  #talk p.title-p:before {
    width: 20px;
    height: 1px;
    left: auto;
    right: 120px;
  }
}
/*--------------------------------*/
.talk-list {
  overflow: hidden;
  clear: both;
  max-width: 1400px;
  margin: 100px auto;
}
.talk-list li {
  float: left;
  width: 30%;
  margin-right: 5%;
  text-align: center;
}
.talk-list li iframe {
  width: 100%;
  height: 230px;
}
.talk-list li:last-child {
  margin-right: 0;
}
.talk-list li .text p {
  margin: 10px 0 0 0;
  color: #FFF;
  font-weight: 500;
  font-size: 18px;
}
.talk-list li .movie:before {
  content: "";
  position: relative;
  display: block;
  text-align: left;
  font-family: "Oswald", sans-serif !important;
  color: #FFF;
  font-size: 24px;
  left: 10px;
  top: 7px;
}
.talk-list li:nth-child(1) .movie:before {
  content: "01";
}
.talk-list li:nth-child(2) .movie:before {
  content: "02";
}
.talk-list li:nth-child(3) .movie:before {
  content: "03";
}

@media only screen and (max-width: 736px) {
  .talk-list {
    margin: 25px auto 75px auto;
  }
}
@media only screen and (max-width: 736px) {
  .talk-list li {
    float: none;
    width: auto;
    margin-right: 0;
    text-align: center;
  }
  .talk-list li .text p {
    font-weight: normal;
    font-size: 12px;
  }
  .talk-list li iframe {
    height: 180px;
  }
}
/*===================================================================*/
#working {
  background-color: #FFF8E7;
  padding-bottom: 80px;
}
#working .box .title-box {
  padding: 50px;
}
#working .box .title-box h1 {
  color: #5C4630;
  font-size: 90px;
  line-height: 100px;
  position: relative;
}
#working .box .title-box h1 span {
  font-family: "Oswald", sans-serif !important;
}
#working .box .title-box p.title-p {
  display: block;
  font-size: 18px;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  font-weight: bold;
  padding-left: 60px;
  position: relative;
  color: #5C4630;
}
#working .box .title-box p.title-p:before {
  content: "";
  background: #5C4630;
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 50px;
  height: 2px;
}
#working .box .inner-box {
  width: 80%;
  margin: 0 auto;
}
#working .box .inner-box .ppt {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #eee;
}
#working .box .inner-box .ppt img {
  width: 100%;
  height: auto;
}

/*===================================================================*/
#aboutcompany {
  max-width: 1400px;
  margin: 0 auto 50px auto;
  position: relative;
  z-index: 1;
  background: #FFF;
  padding: 100px 0 180px;
  box-sizing: border-box;
  box-shadow: none;
}

.aboutcompany-box {
  padding: 0 100px;
}

#aboutcompany h1 {
  color: #5DC2D6;
  font-size: 90px;
  line-height: 100px;
  position: relative;
}
#aboutcompany h1 span {
  font-family: "Oswald", sans-serif !important;
}
#aboutcompany p.title-p {
  display: block;
  font-size: 18px;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  font-weight: bold;
  padding-left: 60px;
  position: relative;
  color: #5DC2D6;
}
#aboutcompany p.title-p:before {
  content: "";
  background: #5DC2D6;
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 50px;
  height: 2px;
}

@media only screen and (max-width: 736px) {
  #aboutcompany {
    max-width: 1400px;
    margin: 0;
    position: relative;
    z-index: 9999;
    background: #FFF;
    padding: 50px 15px;
    box-sizing: border-box;
    box-shadow: 0 0 30px #999;
  }
  .aboutcompany-box {
    padding: 0;
  }
  #aboutcompany h1 {
    font-size: 40px;
    line-height: 60px;
  }
  #aboutcompany p.title-p {
    font-size: 16px;
    padding-left: 30px;
    font-weight: normal;
  }
  #aboutcompany p.title-p:before {
    width: 20px;
    height: 1px;
  }
}
ul.company-list {
  margin: 100px auto;
  overflow: hidden;
  clear: both;
}
ul.company-list li {
  float: left;
  width: 18%;
  margin-right: 2.5%;
  text-align: center;
}
ul.company-list li .text {
  background: rgba(93, 194, 214, 0.9);
  height: 220px;
  line-height: 220px;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
}
ul.company-list li:hover .text {
  background: rgba(93, 194, 214, 0.6);
}
ul.company-list li:nth-child(5) {
  margin-right: 0;
}
ul.company-list li a {
  display: block;
  border-radius: 50%;
  color: #FFF;
}
ul.company-list li .text h2 {
  font-weight: bold;
  font-size: 18px;
}
ul.company-list li:nth-child(1) a {
  background: url(../../img/pic/about1.jpg) no-repeat;
  background-size: cover;
}
ul.company-list li:nth-child(2) a {
  background: url(../../img/pic/about2.jpg) no-repeat;
  background-size: cover;
}
ul.company-list li:nth-child(3) a {
  background: url(../../img/pic/about3.jpg) no-repeat;
  background-size: cover;
}
ul.company-list li:nth-child(4) a {
  background: url(../../img/pic/about4.jpg) no-repeat;
  background-size: cover;
}
ul.company-list li:nth-child(5) a {
  background: url(../../img/pic/about5.jpg) no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 1200px) {
  ul.company-list li .text {
    height: 180px;
    line-height: 180px;
  }
}
@media only screen and (max-width: 736px) {
  ul.company-list {
    margin: 25px -15px 0 auto;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  ul.company-list li {
    float: none;
    /* 横スクロール用 */
    display: inline-block;
    width: 200px;
    /* 見た目調整 */
    margin: 16px;
  }
  ul.company-list li .text {
    height: 200px;
    line-height: 200px;
  }
}
@media only screen and (max-width: 736px) {
  ul.company-list li .text h2 {
    font-weight: normal;
    font-size: 16px;
  }
}
.dx {
  background-color: #5DC2D6;
  color: #fff;
  width: 100%;
}

.dx-box {
  display: flex;
  padding: 20px 100px;
}

.dx-img {
  width: 20%;
  display: grid;
  align-items: center;
}
.dx-img img {
  width: 100%;
}

.dx-text {
  width: 80%;
  margin-left: 20px;
}
.dx-text h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.dx-detail {
  text-align: center;
  margin-top: 20px;
}

.dx-text a {
  background-color: #005fad;
  color: #fff;
  font-weight: bold;
  border-radius: 50px;
  width: 50%;
  padding: 5px;
  display: inline-block;
}

#dx-modal {
  padding: 100px 200px;
}
#dx-modal h3 {
  font-size: 30px;
  margin-bottom: 50px;
}
#dx-modal p {
  margin-bottom: 30px;
  text-indent: 1em;
}

@media only screen and (max-width: 736px) {
  .dx-box {
    margin-top: 30px;
    padding: 20px;
  }
  .dx-img {
    display: none;
  }
  .dx-text {
    width: 100%;
    margin: 0;
  }
  .dx-text h2 {
    font-size: 18px;
  }
  .dx-text p {
    font-size: 13px;
  }
  #dx-modal {
    padding: 50px 20px;
  }
  #dx-modal h3 {
    font-size: 20px;
  }
  #dx-modal p {
    font-size: 13px;
  }
}
/*--------------------------------*/
#joinus {
  width: auto;
  background: #FFF;
  margin-top: -200px;
  position: relative;
  z-index: 9999;
  padding-top: 100px;
}
#joinus:after {
  content: "";
  display: block;
  background: #F4F2DC;
  width: 100%;
  height: 200px;
  position: absolute;
  bottom: -100px;
  z-index: -1;
}

@media only screen and (max-width: 736px) {
  #joinus {
    width: 100%;
    background: #FFF;
    margin-top: 0;
    position: relative;
    z-index: 9999;
    padding-top: 0;
  }
}
#joinus-wrap {
  max-width: 1400px;
  margin: 100px auto;
  margin-top: 0px;
  padding: 100px;
  box-sizing: border-box;
  background: url(../img/bk-join.jpg) no-repeat center bottom;
}
#joinus-wrap h2 {
  text-align: center;
  color: #FFF;
  font-weight: bold;
}
#joinus-wrap h2 span {
  color: #FFF;
  display: block;
  font-family: "Oswald", sans-serif !important;
  font-size: 200px;
  mix-blend-mode: overlay;
  font-style: italic;
  font-weight: bold;
  line-height: 200px;
}
#joinus-wrap h2 + p {
  text-align: center;
  font-size: 24px;
  color: #FFF;
  font-style: italic;
  font-weight: bold;
  margin: 25px 0;
}

@media only screen and (max-width: 1400px) {
  #joinus-wrap {
    max-width: 1400px;
    margin: 100px 50px;
  }
}
@media only screen and (max-width: 736px) {
  #joinus-wrap {
    max-width: 1400px;
    margin: 50px auto 100px auto;
    margin-top: 0px;
    padding: 50px 15px;
    box-sizing: border-box;
    background: url(../img/bk-join.jpg) no-repeat center bottom;
  }
}
@media only screen and (max-width: 736px) {
  #joinus-wrap h2 {
    text-align: center;
    color: #FFF;
    font-weight: normal;
    font-size: 14px;
    margin: 0 15px;
  }
  #joinus-wrap h2 span {
    color: #FFF;
    display: block;
    font-family: "Oswald", sans-serif !important;
    font-size: 80px;
    mix-blend-mode: overlay;
    font-style: italic;
    font-weight: bold;
    line-height: 200px;
  }
  #joinus-wrap h2 + p {
    text-align: center;
    font-size: 20px;
    color: #FFF;
    font-style: italic;
    font-weight: normal;
    margin: 0 0 25px 0;
  }
}
ul.btn {
  max-width: 300px;
  margin: 0 auto;
}
ul.btn li a {
  display: block;
  border-radius: 50px;
  padding: 15px 0;
  transition: all 0.3s ease-in-out;
}
ul.btn li a:hover {
  opacity: 0.7;
}
ul.btn li:nth-child(1) a {
  color: #1C75BC;
  font-weight: bold;
  font-size: 20px;
  background: #FFF;
  text-align: center;
  margin-bottom: 25px;
}
ul.btn li:nth-child(2) a {
  color: #FFF;
  font-weight: bold;
  font-size: 20px;
  border: 2px solid #FFF;
  text-align: center;
}
ul.btn li.entry-line a {
  color: #FFF;
  font-weight: bold;
  font-size: 20px;
  background: #06c755;
  text-align: center;
  border: none;
}

@media only screen and (max-width: 736px) {
  ul.btn li:nth-child(1) a {
    color: #1C75BC;
    font-weight: bold;
    font-size: 16px;
    background: #FFF;
    text-align: center;
    margin-bottom: 25px;
  }
  ul.btn li:nth-child(2) a {
    color: #FFF;
    font-weight: bold;
    font-size: 16px;
    border: 2px solid #FFF;
    text-align: center;
  }
}
.sdgs {
  padding: 50px;
}
.sdgs h2 {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
}

#sdgs-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  z-index: 9999;
}

@media only screen and (max-width: 736px) {
  #sdgs-btn {
    bottom: 15px;
    right: 15px;
    width: 45px;
  }
  .sdgs h2 {
    font-size: 18px;
  }
}
.sdgs-banner {
  margin-top: 25px;
}
.sdgs-banner a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid #0098D8;
  max-width: 800px;
  margin: 0 auto;
  padding: 50px;
  box-sizing: border-box;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.sdgs-banner a:hover {
  opacity: 0.7;
}
.sdgs-banner a:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 40px 40px;
  border-color: transparent transparent #0098D8 transparent;
}
.sdgs-banner a:after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 2px solid #0098D8;
}
.sdgs-banner a > div.pic {
  width: 65%;
}
.sdgs-banner a > div.text {
  width: 30%;
}
.sdgs-banner a > div.text p {
  font-size: 20px;
  color: #0098D8;
  font-weight: bold;
}

@media only screen and (max-width: 736px) {
  .sdgs-banner a:before {
    border-width: 0 0 20px 20px;
  }
  .sdgs-banner a:after {
    left: 5px;
    top: 5px;
  }
  .sdgs {
    padding: 50px 20px 20px 20px;
  }
  .sdgs-banner a {
    display: block;
    padding: 20px;
  }
  .sdgs-banner a > div.pic {
    width: auto;
  }
  .sdgs-banner a > div.text {
    width: auto;
  }
  .sdgs-banner a > div.text p {
    font-size: 16px;
    text-align: center;
    padding-top: 15px;
  }
}/*# sourceMappingURL=recruit.css.map */