@charset "UTF-8";
/* Reset CSS */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: 400;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* common rules */
body {
  line-height: 1.4;
  word-wrap: break-word;
  width: 100%;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

h2 {
  text-align: center;
  margin: 40px 0 15px;
  font-weight: 500;
  font-size: 1.5rem;
}

@media screen and (min-width: 780px) {
  h2 {
    margin: 80px 0 40px;
  }
}
main {
  width: 100%;
}

/* reset css End */
body {
  margin: 0 auto;
  padding: 0;
  font-family: "Lato", "Noto Sans JP", sans-serif;
  line-height: 1.8;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
}

.body-wrap {
  margin: 0 auto;
}

.inner_wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: auto;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.pc {
  display: none;
}

.sp {
  display: block;
}

@media screen and (min-width: 780px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  height: 58px;
  z-index: 9999;
  border-radius: 0 0 17px 17px;
}

@media screen and (min-width: 780px) {
  header {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  header {
    width: 1200px;
    right: calc((100% - 1200px) / 2);
  }
}
.header_area img {
  position: fixed;
  top: 10px;
  left: auto;
  width: 60px;
  height: auto;
  margin-left: 10px;
}

/*ハンバーガーボタン*/
.el_humburger {
  position: fixed;
  width: 46px;
  height: 25px;
  box-sizing: border-box;
  padding-top: 0px;
  z-index: 20;
  cursor: pointer;
  pointer-events: auto;
  color: #fff;
  text-align: center;
}
.el_humburger .openbtn {
  display: inline-block;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: #004ea2;
}
.el_humburger span.el_humburger_bar {
  display: block;
  width: 45%;
  margin: 9px auto 9px;
  height: 2px;
  background: #fff;
  transition: all 0.2s ease-in-out;
}
.el_humburger span.el_humburger_bar:nth-of-type(1) {
  margin-top: 13px;
}

.el_humburger-open {
  top: 8px;
  right: 5px;
}

@media screen and (min-width: 780px) {
  .el_humburger-open {
    right: 0;
    margin-right: 5px;
  }
}
@media screen and (min-width: 1200px) {
  .el_humburger-open {
    right: calc((100% - 1200px) / 2);
    margin-right: 5px;
  }
}
.el_humburger-close {
  top: 0;
  right: 0;
}

@media screen and (min-width: 780px) {
  .el_humburger-close {
    right: 0;
    margin-right: 5px;
  }
}
@media screen and (min-width: 1200px) {
  .el_humburger-close {
    right: 0;
    margin-right: 5px;
  }
}
.js_humburgerOpen {
  position: relative;
}
.js_humburgerOpen .el_humburger-open .openbtn {
  background: #fff;
  opacity: 0;
}
.js_humburgerOpen .el_humburger-open span.el_humburger_bar {
  background: #151515;
}
.js_humburgerOpen .el_humburger-open span.el_humburger_bar:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.js_humburgerOpen .el_humburger-open span.el_humburger_bar:nth-of-type(2) {
  transform: translateY(-2px) rotate(45deg);
}
.js_humburgerOpen header {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #b1b1b1;
  z-index: 2;
}
.js_humburgerOpen::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3803921569);
  z-index: 2;
}

@media screen and (min-width: 1200px) {
  .js_humburgerOpen .el_humburger-open span.el_humburger_bar {
    background: #c5ecff;
  }
  .js_humburgerOpen header {
    left: calc((100% - 1200px) / 2);
  }
}
@media screen and (max-width: 779px) {
  .js_humburgerOpen header {
    left: 0;
  }
}
.el_humburger-close span.el_humburger_bar {
  background: #151515;
}
.el_humburger-close span.el_humburger_bar:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.el_humburger-close span.el_humburger_bar:nth-of-type(2) {
  transform: translateY(-2px) rotate(45deg);
}

.g-nav {
  position: fixed;
  right: 0;
  height: 100%;
  background: #c5ecff;
  width: 50%;
  z-index: 3;
  padding-top: 100px;
  box-sizing: border-box;
  transition: all 600ms ease-out;
  transform: translateZ(0) translateX(100%);
  overflow: auto;
}

@media screen and (min-width: 780px) {
  .g-nav {
    width: 35%;
  }
}
@media screen and (min-width: 1200px) {
  .g-nav {
    width: 20%;
  }
}
.js_humburgerOpen .g-nav {
  right: 0;
  transform: translateZ(0) translateX(0);
}

.navi_item {
  position: relative;
  margin: 0 0 60px 40px;
  font-size: 20px;
  white-space: nowrap;
}
.navi_item.op_innerLink {
  cursor: pointer;
}
.navi_item a {
  color: #000;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.navi_item span {
  display: block;
  font-size: 0.7rem;
  font-weight: normal;
}
.navi_item:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 2px #003681;
  bottom: -30px;
  width: 20px;
}
.navi_item.contact {
  position: relative;
  background: #fff;
  margin: 0 20px;
}
.navi_item.contact a {
  display: block;
  padding: 15px 10px;
}
.navi_item.contact img {
  position: absolute;
  width: 35px;
  right: 10px;
  left: auto;
  top: 15px;
}
.navi_item.border:after, .navi_item.contact:after {
  content: none;
}

@media screen and (min-width: 780px) {
  .navi_item.contact {
    width: 200px;
    margin-left: 40px;
  }
}
.link_area li {
  background: #727171;
  border-radius: 40px;
  box-shadow: 0px 5px 0px rgba(0, 0, 0, 0.25);
  text-align: center;
  margin: 5% 4%;
  transition: 0.3s;
}
.link_area a {
  display: block;
  color: #fff;
  padding: 4%;
}
.link_area li:hover {
  transform: translate3d(0, 5px, 0);
  box-shadow: none;
}

.top_banner_area {
  position: relative;
}
.top_banner_area img {
  width: 100%;
}
.top_banner_area h1 {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 7%;
  line-height: 1.3;
}
.top_banner_area h1 span {
  font-size: 0.6rem;
  letter-spacing: 0.1rem;
  display: block;
}

@media screen and (min-width: 780px) {
  .top_banner_area {
    margin-top: 0;
  }
  .top_banner_area h1 {
    width: 40%;
    font-weight: 500;
    padding: 4%;
    font-size: 1.2rem;
  }
  .top_banner_area h1 span {
    font-size: 0.8rem;
  }
}
.job-info_navi .job li {
  border-radius: 40px;
  box-shadow: 0px 5px 0px rgba(0, 0, 0, 0.25);
  margin: 5% 4%;
  transition: 0.3s;
}
.job-info_navi .job li a {
  height: 65px;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.job-info_navi .job li p {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
}
.job-info_navi .job li p span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.1rem;
}
.job-info_navi .job li:hover {
  transform: translate3d(0, 5px, 0);
  color: #007db9;
  box-shadow: none;
  background: #fff;
}
.job-info_navi .job li:nth-child(1) {
  background: #004ea2;
}
.job-info_navi .job li:nth-child(2) {
  background: #eb6100;
}
.job-info_navi .job li:nth-child(3) {
  background: #0172bf;
}
.job-info_navi .job li:nth-child(4) {
  background: #f39800;
}
.job-info_navi .job li:nth-child(5) {
  background: #00a0e9;
}

.page-top_link {
  background: #727171;
  text-align: center;
}
.page-top_link a {
  color: #fff;
  display: block;
  padding: 50px 0 80px;
  font-size: 1.3rem;
  margin: 0 0 -35px;
}

/*タブ切り替え全体のスタイル*/
.tab_wrap {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #faf3ef;
  width: 90%;
  margin: 0 auto;
}
.tab_wrap input:checked + .tab_item {
  position: relative;
  background-color: #eb6100;
  border-radius: 15px 15px 0 0;
  color: #fff;
}
.tab_wrap input:checked + .tab_item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -13px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #eb6100 transparent transparent transparent;
  border-width: 13px 13px 0 13px;
}

.tab_item {
  width: 50%;
  height: 60px;
  background-color: #fff;
  border-radius: 15px 15px 0 0;
  line-height: 60px;
  font-size: 16px;
  text-align: center;
  color: #000;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
}
.tab_item .font-s {
  font-size: 0.8rem;
  font-weight: bold;
}

@media screen and (min-width: 780px) {
  .tab_item .font-s {
    font-size: 1rem;
    font-weight: normal;
  }
}
input[name=tab_item] {
  display: none;
}

/*選択されているタブのコンテンツのみを表示*/
#tab01:checked ~ #tab01_content,
#tab02:checked ~ #tab02_content {
  display: block;
}

.tab_content {
  display: none;
  padding: 30px 4% 0;
  clear: both;
  overflow: hidden;
  background: #fff;
  border-radius: 0 0 15px 15px;
}
.tab_content .tab_content_box {
  margin-bottom: 6%;
}
.tab_content .tab_content_box h3 {
  background: #e9e9e9;
  padding: 8px 0 8px 16px;
  margin-bottom: 3%;
  font-weight: 500;
}
.tab_content .tab_content_box p {
  margin: 0 2%;
  font-size: 1rem;
  font-size: 1.2rem;
}

.text_area {
  margin: 10% 4%;
}

@media screen and (min-width: 780px) {
  .tab_wrap {
    max-width: 800px;
  }
  .tab_content .tab_content_box p {
    font-size: 1rem;
  }
}
.top_page {
  overflow: hidden;
  max-width: 100%;
}

.top_main {
  position: relative;
  padding: 0;
  font-weight: 500;
  overflow: hidden;
  position: relative;
  width: 100vw;
  height: 270px;
  margin-top: 48px;
}
.top_main h1,
.top_main img,
.top_main p {
  text-align: center;
}
.top_main h1 {
  position: absolute;
  margin: 40px;
  z-index: 1;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  width: 45%;
}
.top_main img {
  display: block;
  width: 190%;
  margin: 0 auto;
  animation: fade-in-anime 8s forwards;
  opacity: 0;
}

@keyframes fade-in-anime {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
p.topdisc {
  text-align: center;
  font-size: 0.7rem;
  margin: 2% 2% 5%;
}

.main-image img {
  position: absolute;
  width: 100%;
  opacity: 0;
  animation: change-img-anim 10s forwards;
}
.main-image img:nth-of-type(1) {
  animation-delay: 0s;
}
.main-image img:nth-of-type(2) {
  animation-delay: 4s;
}
.main-image img:nth-of-type(3) {
  animation-delay: 6s;
}

@keyframes change-img-anim {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (min-width: 780px) {
  .top_main {
    max-width: 1200px;
    height: 65%;
    margin: 0 auto;
  }
  .top_main h1 {
    width: 35%;
    top: 60%;
    left: 30%;
    transform: translate(-50%, -50%);
  }
  p.topdisc {
    font-size: 0.9rem;
  }
}
@media screen and (min-width: 1200px) {
  .top_main {
    height: 80%;
  }
  .top_main h1 {
    top: 60%;
  }
}
.top_jobinfo {
  max-width: 100%;
  overflow: hidden;
}
.top_jobinfo .inner_wrapper {
  margin-bottom: 20px;
}
.top_jobinfo ul {
  padding: 0;
  width: 100%;
}
.top_jobinfo ul li:nth-child(n) {
  float: left;
  margin: 2% 1% 2% 2%;
}
.top_jobinfo ul li:nth-child(2n) {
  float: right;
  margin: 2% 2% 2% 1%;
}
.top_jobinfo ul li:nth-child(1), .top_jobinfo ul li:nth-child(3), .top_jobinfo ul li:nth-child(5) {
  background: #e7f7ff;
}
.top_jobinfo ul li:nth-child(2), .top_jobinfo ul li:nth-child(4) {
  background: #faf3ef;
}
.top_jobinfo ul li:nth-child(1) {
  box-shadow: 0px 5px #004ea2;
}
.top_jobinfo ul li:nth-child(1) a {
  color: #004ea2;
}
.top_jobinfo ul li:nth-child(1):before {
  background: #004ea2;
}
.top_jobinfo ul li:nth-child(1) .more_detail:before, .top_jobinfo ul li:nth-child(1) .more_detail:after {
  color: #004ea2;
  box-shadow: inset 15px 15px 15px 15px #004ea2;
}
.top_jobinfo ul li:nth-child(2) {
  margin-top: 80px;
  box-shadow: 0px 5px #eb6100;
}
.top_jobinfo ul li:nth-child(2) a {
  color: #eb6100;
}
.top_jobinfo ul li:nth-child(2):before {
  background: #eb6100;
}
.top_jobinfo ul li:nth-child(2) .more_detail:before, .top_jobinfo ul li:nth-child(2) .more_detail:after {
  color: #eb6100;
  box-shadow: inset 15px 15px 15px 15px #eb6100;
}
.top_jobinfo ul li:nth-child(3) {
  box-shadow: 0px 5px #0172bf;
}
.top_jobinfo ul li:nth-child(3) a {
  color: #0172bf;
}
.top_jobinfo ul li:nth-child(3):before {
  background: #0172bf;
}
.top_jobinfo ul li:nth-child(3) .more_detail:before, .top_jobinfo ul li:nth-child(3) .more_detail:after {
  color: #0172bf;
  box-shadow: inset 15px 15px 15px 15px #0172bf;
}
.top_jobinfo ul li:nth-child(4) {
  box-shadow: 0px 5px #f39800;
}
.top_jobinfo ul li:nth-child(4) a {
  color: #f39800;
}
.top_jobinfo ul li:nth-child(4):before {
  background: #f39800;
}
.top_jobinfo ul li:nth-child(4) .more_detail:before, .top_jobinfo ul li:nth-child(4) .more_detail:after {
  color: #f39800;
  box-shadow: inset 15px 15px 15px 15px #f39800;
}
.top_jobinfo ul li:nth-child(5) {
  box-shadow: 0px 5px #00a0e9;
}
.top_jobinfo ul li:nth-child(5) a {
  color: #00a0e9;
}
.top_jobinfo ul li:nth-child(5):before {
  background: #00a0e9;
}
.top_jobinfo ul li:nth-child(5) .more_detail:before, .top_jobinfo ul li:nth-child(5) .more_detail:after {
  color: #00a0e9;
  box-shadow: inset 15px 15px 15px 15px #00a0e9;
}
.top_jobinfo ul p {
  text-align: left;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
  padding: 10% 10% 0 10%;
}
.top_jobinfo ul p span {
  display: block;
  font-size: 0.9rem;
  padding-top: 10px;
}
.top_jobinfo ul p span span {
  font-size: 0.6rem;
}
.top_jobinfo ul li {
  position: relative;
  height: 200px;
  border-radius: 40px;
  width: 46%;
  overflow: hidden;
  cursor: pointer;
  box-sizing: border-box;
}
.top_jobinfo ul li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top_jobinfo ul li .more_detail::before {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  color: #fff;
  border-radius: 50%;
  box-shadow: inset 15px 15px 15px 15px #fff;
  bottom: 7%;
  right: 8%;
}
.top_jobinfo ul .read_more {
  position: absolute;
  bottom: 12%;
  right: 19%;
}
.top_jobinfo ul li::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 10%;
  right: 10%;
}

@media screen and (min-width: 780px) {
  .top_jobinfo ul li:nth-child(1) {
    box-shadow: 0px 10px #004ea2;
  }
  .top_jobinfo ul li:nth-child(2) {
    box-shadow: 0px 10px #eb6100;
  }
  .top_jobinfo ul li:nth-child(3) {
    box-shadow: 0px 10px #0172bf;
  }
  .top_jobinfo ul li:nth-child(4) {
    box-shadow: 0px 10px #f39800;
  }
  .top_jobinfo ul li:nth-child(5) {
    box-shadow: 0px 10px #00a0e9;
  }
  .top_jobinfo ul li::before {
    transform-origin: left top;
    transform: scale(0, 1);
    transition: transform 0.3s;
  }
  .top_jobinfo ul li:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  .top_jobinfo ul li .more_detail {
    padding: 0 10% 0 0;
    opacity: 0;
    transition: 0.6s;
  }
  .top_jobinfo ul li:hover .more_detail {
    opacity: 1;
  }
  .top_jobinfo ul li .more_detail::before {
    content: "";
    transition: 0.6s;
    animation: 0.6s circleanime2 ease 0s infinite;
    animation-direction: alternate;
  }
  .top_jobinfo ul li:hover .more_detail::before {
    position: absolute;
    display: inline-block;
    animation: 0.6s circleanime ease;
    opacity: 1;
    transform: scale(1, 1);
    animation-direction: alternate;
  }
  .top_jobinfo ul li .more_detail::after {
    content: "";
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    color: #fff;
    border-radius: 50%;
    box-shadow: inset 15px 15px 15px 15px #fff;
    bottom: 8%;
    right: 8%;
    opacity: 0;
    transition: 0.6s;
  }
  .top_jobinfo ul li:hover .more_detail::after {
    position: absolute;
    display: inline-block;
    animation: 0.6s circleanime2 ease;
    opacity: 0;
    transform: scale(1, 1);
    animation-direction: alternate;
  }
  @keyframes circleanime {
    0% {
      transform: scale(5);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  @keyframes circleanime2 {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    100% {
      transform: scale(5);
      opacity: 0;
    }
  }
}
@media screen and (min-width: 780px) {
  .top_jobinfo ul li {
    height: 300px;
    width: 36%;
  }
  .top_jobinfo ul li:nth-child(n) {
    margin: 2% 2% 2% 12%;
  }
  .top_jobinfo ul li:nth-child(2n) {
    margin: 2% 12% 2% 2%;
  }
  .top_jobinfo ul li:nth-child(2) {
    margin-top: 130px;
  }
}
.top_step .step_box {
  display: flex;
  justify-content: space-around;
  margin: 0 4%;
  flex-wrap: wrap;
}
.top_step .step_box > img {
  margin: 0;
}
.top_step .step_box .text_box + img {
  margin: 30px;
}
.top_step .step_box:after {
  content: "";
  width: 70%;
}
.top_step .step_box .text_box {
  width: 60%;
  padding: 40px 0 0 20px;
  flex-grow: 2;
}
.top_step .step_box .text_box h3 {
  font-weight: 500;
  margin-bottom: 5px;
}
.top_step .step_box .text_box p {
  font-size: 0.9rem;
}

@media screen and (min-width: 500px) {
  .top_step .step_box .text_box {
    width: 80%;
  }
}
@media screen and (min-width: 780px) {
  .top_step {
    max-width: 1200px;
    margin: 0 auto;
  }
  .top_step .pcwrap {
    display: flex;
  }
  .top_step .top_step .step_box {
    display: block;
    margin: 0;
  }
  .top_step .top_step .step_box .text_box {
    padding: 0;
    width: 100%;
  }
  .top_step .top_step .step_box + img {
    margin: 0 5%;
  }
  .top_step .top_step .step_box > img {
    margin: 0 0 20px 0;
  }
  .top_step .top_step .step_box:after {
    content: "";
    width: 56%;
  }
  .more_detail::after {
    width: 20px;
    height: 20px;
    bottom: -10px;
    right: 0;
  }
}
.top_staffvoice {
  position: relative;
  background: #faf7ef;
  border-radius: 40px;
  padding-bottom: 80px;
}
.top_staffvoice h2 {
  padding-top: 80px;
  margin-bottom: 40px;
}
.top_staffvoice a .photo {
  transition: 0.5s all;
  z-index: 1;
}
.top_staffvoice a:hover .photo {
  transform: scale(1.2, 1.2);
  transition: 0.5s all;
}
.top_staffvoice .staffvoice_box a {
  position: relative;
  display: flex;
  justify-content: space-around;
  background: #fff;
  border-radius: 30px;
  padding: 10px 20px 0 20px;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.2);
  width: 85%;
  margin: 10px auto 20px;
  overflow: hidden;
}
.top_staffvoice .staffvoice_box p {
  font-size: 0.8rem;
  margin: 10px 0 40px 0;
}
.top_staffvoice .staffvoice_box span {
  font-size: 0.7rem;
  margin: 0 0 15px 0;
}
.top_staffvoice .staffvoice_box img {
  z-index: 2;
}
.top_staffvoice .staffvoice_box a:hover {
  opacity: 0.8;
}
.top_staffvoice .border {
  position: absolute;
  border-bottom: 1px solid #eb6100;
  right: 0;
  bottom: 15px;
  width: 100%;
  z-index: 0;
}

@media screen and (min-width: 780px) {
  .top_staffvoice {
    font-size: 0.7rem;
  }
  .top_staffvoice .staffvoice_box span {
    margin: 0 0 20px 10px;
  }
}
.top-link_area {
  background: #eb6100;
}
.top-link_area .more_detail2 {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.top-link_area .more_detail2 a {
  display: block;
  padding: 20% 0 0;
}
.top-link_area .more_detail2 .read_more {
  position: absolute;
  bottom: 30%;
  right: 14%;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding-bottom: 5px;
  transition: 0.3s ease;
}
.top-link_area .more_detail2:hover .read_more {
  font-size: 1.1rem;
}
.top-link_area .more_detail2::before {
  background: #fff;
  content: "";
  width: 93%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 38%;
  margin: auto;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.top-link_area .more_detail2:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.top-link_area .more_detail2 .circle {
  display: block;
  opacity: 0;
  transition: 0.6s;
}
.top-link_area .more_detail2:hover .circle {
  opacity: 1;
}
.top-link_area .more_detail2 .circle::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  color: #fff;
  border-radius: 50%;
  box-shadow: inset 15px 15px 15px 15px #fff;
  bottom: 27%;
  right: 6%;
  transition: 0.6s;
  animation: 0.6s circleanime2 ease 0s infinite;
  animation-direction: alternate;
}
.top-link_area .more_detail2:hover .circle::after {
  position: absolute;
  display: inline-block;
  animation: 0.6s circleanime ease;
  opacity: 1;
  transform: scale(1, 1);
  animation-direction: alternate;
}

@keyframes circleanime2 {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(5);
    opacity: 0;
  }
}
@media screen and (min-width: 780px) {
  .top-link_area .more_detail2 a {
    padding: 15% 0 0;
  }
  .top-link_area .more_detail2 .read_more {
    font-size: 1.4rem;
    bottom: 38%;
    right: 10%;
  }
  .top-link_area .more_detail2 .circle::after {
    width: 25px;
    height: 25px;
    bottom: 31%;
  }
}
@media screen and (min-width: 780px) {
  .top_staffvoice {
    padding-bottom: 120px;
  }
  .top_staffvoice .pcwrap {
    margin: 0 auto;
    display: flex;
    max-width: 1200px;
  }
  .top_staffvoice .staffvoice_box {
    border-radius: 40px;
    padding: 20px 0;
    width: 50%;
    margin: 0 2%;
  }
  .top_staffvoice .staffvoice_box a {
    width: 100%;
  }
  .top_staffvoice .staffvoice_box p {
    margin: 15px 5px 10px 5px;
  }
  .top_staffvoice .staffvoice_box img {
    width: 150px;
  }
}
@media screen and (min-width: 1200px) {
  .top_staffvoice .staffvoice_box img {
    width: 170px;
  }
  .top_staffvoice .staffvoice_box p {
    margin: 30px 5px 60px 10px;
    font-size: 0.9rem;
  }
  .top_staffvoice .staffvoice_box .border {
    bottom: 30px;
  }
  .top_staffvoice .staffvoice_box span {
    margin-bottom: 30px;
  }
}
.top_training {
  position: relative;
  background: #faf3ef;
  border-radius: 40px 40px 0 0;
  padding-bottom: 50px;
}
.top_training h2 {
  padding-top: 80px;
  margin-bottom: 20px;
}
.top_training p {
  text-align: center;
  font-weight: 400;
  font-size: 0.7rem;
  margin: 4% 4% 6%;
}
.top_training .training_box {
  display: flex;
}
.top_training .training_box div {
  background: #fff;
  border: 4px solid #eb6100;
  border-radius: 30px;
  margin: 4% 1%;
  padding: 15px;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.2);
  width: 50%;
}
.top_training .training_box div p {
  text-align: left;
}
.top_training .link_area {
  background: #eb6100;
  padding: 0 0 50px;
}
.top_training .more_detail {
  border-bottom: 1px solid #fff;
  left: 0;
  width: 93%;
  color: #fff;
}
.top_training .more_detail::after {
  background: #fff;
}

@media screen and (min-width: 780px) {
  .top_training p {
    font-size: 0.9rem;
  }
  .top_training .training_box div {
    margin-bottom: 60px;
  }
}
.top_newinfo {
  position: relative;
  background: #faf3ef;
  border-radius: 0 0 30px 30px;
  padding-bottom: 80px;
}
.top_newinfo h2 {
  margin: 0;
  padding: 30px 0;
}
.top_newinfo .new_info {
  width: 90%;
  margin: 0 auto;
}
.top_newinfo .new_info .newinfo_wrap {
  margin-bottom: 40px;
}
.top_newinfo .new_info .newinfo_wrap .thumb {
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}
.top_newinfo .new_info .newinfo_wrap img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
  object-fit: cover;
  box-shadow: 0 1px 25px 0 rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}
.top_newinfo .new_info .newinfo_wrap:hover img {
  transform: scale(1.2);
}
.top_newinfo .new_info .newinfo_box {
  background: #fff;
  padding: 20px 30px 20px 20px;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.2);
  border-radius: 0 0 30px 30px;
  flex-direction: column;
  display: flex;
}

.title_box {
  flex-grow: 1;
}

.top_newinfo .new_info .newinfo_box span {
  display: block;
}
.top_newinfo .new_info .newinfo_box span.title {
  font-size: 0.9rem;
}
.top_newinfo .new_info .newinfo_box span.date {
  text-align: right;
  font-size: 0.8rem;
}
.top_newinfo .more_detail {
  border-bottom: 1px solid #151515;
  left: 0;
  width: 93%;
  color: #151515;
  padding-top: 50px;
}
.top_newinfo .more_detail::after {
  background: #151515;
}

@media screen and (min-width: 780px) {
  .top_newinfo {
    padding-bottom: 120px;
  }
  .top_newinfo .new_info {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
  }
  .top_newinfo .new_info .newinfo_wrap {
    /* width: 46%;
    margin: 7% 2%; */
    width: calc(33.3333% - 50px);
    margin: 7% 2%;
  }
  .top_newinfo .new_info .newinfo_wrap img {
    height: 200px;
  }
}
.top_group {
  margin: 15% 0 20%;
}
.top_group h2 {
  margin: 50px 0;
}
.top_group ul {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 10% 0;
}
.top_group ul li {
  margin: 0 15px;
  text-align: center;
}
.top_group ul li img {
  width: 70%;
}

@media screen and (min-width: 780px) {
  .top_group {
    margin: 10% 0;
  }
}
.top_form {
  background: #e7f7ff;
  border-radius: 40px;
  padding: 0 10px 50px;
}
.top_form h2 {
  padding-top: 80px;
}
.top_form .small {
  font-size: 0.6rem;
  margin-top: 20px;
}
.top_form span {
  font-size: 0.7rem;
  vertical-align: middle;
}
.top_form .form_box {
  max-width: 700px;
  margin: 0 auto;
}
.top_form .form_box .error-message {
  display: none;
  color: #f00;
  font-size: 0.8rem;
  margin-top: 5px;
}
.top_form .form_box .small {
  font-size: 0.5rem;
}
.top_form .form_box .form_radio {
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
}
.top_form .form_box .form_radio .form_radio_box {
  margin: 2% 1%;
}
.top_form .form_box .form_radio input {
  margin-right: 10px;
}
.top_form .form_box .form_radio label {
  cursor: pointer;
}
.top_form .form_text {
  margin: 40px 0 5px;
  font-size: 0.9rem;
}
.top_form .form_text a {
  text-decoration: underline;
}
.top_form .input_box input,
.top_form .input_box textarea {
  border: none;
  width: 100%;
  padding: 16px;
  border-radius: 10px;
}
.top_form .privacy-accept {
  text-align: center;
  font-size: 0.9rem;
  margin: 4% 0;
}
.top_form .privacy-accept input {
  width: 20px;
  height: 20px;
  margin-right: 13px;
}
.top_form .btnArea_one_txt {
  background: #eb6100;
  border: 2px solid #eb6100;
  color: #fff;
  border-radius: 30px;
  width: 200px;
  margin: 50px auto 0;
  padding: 2%;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
  font-size: 1.1rem;
}
.top_form .btnArea_one_txt:hover {
  background: #fff;
  color: #eb6100;
  border: 2px solid #eb6100;
}
.top_form #prev1 .btnArea_one_txt {
  background: #727171;
  border-radius: 30px;
  border: 2px solid #727171;
  padding: 10px;
  font-size: 0.9rem;
  width: 160px;
}
.top_form #prev1 .btnArea_one_txt:hover {
  background: #fff;
  color: #727171;
}
.top_form .send_btn {
  text-align: center;
  padding: 2%;
}
.top_form .send_btn input {
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #eb6100;
  color: #fff;
  margin: 10px auto 0;
  border: 2px solid #eb6100;
  width: 200px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 2%;
  border-radius: 30px;
}
.top_form .send_btn input:hover {
  background: #fff;
  color: #eb6100;
}

#js_page1,
#js_page2 {
  display: none;
}

#js_page1.active {
  display: block;
}

#js_page2.active {
  display: block;
}
#js_page2.confirm .input_box {
  width: 100%;
  border-radius: 10px;
  background: #efefef;
}
#js_page2.confirm .input_box p {
  padding: 16px;
}
#js_page2.confirm .input_box .table-message {
  color: #f00;
  font-size: 1rem;
}

.form_thanks {
  background: #e7f7ff;
  border-radius: 40px 40px 0 0;
  padding: 0 10px 50px;
}
.form_thanks h2 {
  padding-top: 80px;
}
.form_thanks h2 span {
  font-size: 0.7rem;
}
.form_thanks .complete {
  text-align: center;
  padding: 15% 0;
}
.form_thanks .complete i {
  margin-right: 10px;
  color: #eb6100;
}
.form_thanks .complete span {
  display: block;
  color: #eb6100;
  font-size: 2rem;
  margin-top: 40px;
}
.form_thanks .complete p {
  margin-top: 10%;
}

@media screen and (min-width: 780px) {
  .form_thanks .complete span {
    font-size: 2.5rem;
  }
}
footer {
  background: #03489d;
  color: #fff;
  border-radius: 40px 40px 0 0;
  padding-bottom: 50px;
}

.top_footer {
  padding-top: 30px;
}
.top_footer ul {
  padding: 0 20px 0 10px;
  margin-left: 3%;
}
.top_footer .footer_menu > li {
  border-bottom: 1px solid #fff;
  margin: 25px 0 13px 0;
  font-size: 0.9rem;
}
.top_footer .footer_menu ul {
  padding: 0;
}
.top_footer .footer_menu ul li {
  margin-bottom: 8px;
  font-size: 0.7rem;
}
.top_footer .footer_menu a {
  color: #e7f7ff;
  text-decoration: none;
}
.top_footer .footer_menu a:hover {
  text-decoration: underline;
}

.footer_address {
  margin: 50px 0 0 20px;
  font-size: 0.7rem;
}
.footer_address li {
  line-height: 2;
}
.footer_address li .big_text {
  font-size: 1rem;
}
.footer_address li a {
  color: #fff;
}
.footer_address li:nth-child(2) {
  margin-top: 11em;
}

.copyright {
  position: relative;
  margin: 4px 0;
  height: 40px;
}
.copyright span {
  position: absolute;
  font-size: 0.8rem;
  top: 50%;
  left: 25%;
  transform: translate(-25%, -50%);
}
.copyright img {
  position: absolute;
  right: 0;
  margin-right: 1em;
  width: 40px;
  height: auto;
}

@media screen and (min-width: 780px) {
  .copyright span {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .top_footer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    padding-top: 70px;
  }
  .top_footer .footer_wrap_right {
    width: 75%;
    display: flex;
    flex-wrap: wrap;
  }
  .top_footer .footer_wrap_right .footer_menu {
    width: 30.33333%;
    padding: 0;
    flex-direction: column;
    margin-left: 3%;
  }
  .top_footer .footer_wrap_left {
    width: 25%;
  }
  .top_footer .footer_wrap_left .footer_address {
    margin-top: 35px;
    font-size: 0.7rem;
    flex-direction: column-reverse;
  }
  .top_footer .footer_wrap_left .footer_address img {
    width: 50%;
  }
  .top_footer .footer_wrap_left .footer_address p {
    margin-top: 130px;
  }
}
.about_us {
  background: #faf7ef;
}
.about_us .about_main .about_main_box {
  position: relative;
}
.about_us .about_main .about_main_box img {
  border-radius: 0 0 50px 50px;
  width: 100%;
}
.about_us .about_main .about_main_box div {
  position: absolute;
  background: rgba(255, 255, 255, 0.8117647059);
  border-radius: 8px;
  width: 70%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 3%;
}
.about_us .about_main .about_main_box div span {
  font-size: 0.7rem;
  display: block;
  text-align: center;
}
.about_us .about_main .about_main_box div h1 {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 13px;
}
.about_us .about_main .about_main_box div h1 span {
  display: block;
  font-size: 0.5rem;
}
.about_us .about_point .about_point_box {
  background: #fff;
  border-radius: 33px;
  border: 6px solid #eb6100;
  margin: 60px 4% 5%;
  padding: 8%;
}
.about_us .about_point .about_point_box h3 {
  font-size: 1.2rem;
  text-align: center;
  font-weight: 500;
}
.about_us .about_point .about_point_box img {
  width: 100%;
  margin: 5% 0;
}
.about_us .about_point .about_point_box p {
  font-size: 1rem;
}
.about_us .about_disc {
  padding-bottom: 10px;
}
.about_us .about_disc img {
  width: 100%;
}
.about_us .about_disc p {
  margin: 3% 4%;
}
.about_us .about_disc h2 {
  padding-top: 40px;
}
.about_us .white_wrap {
  background: #fff;
  border-radius: 40px;
  padding: 5px 0 100px;
  margin-top: 60px;
}
.about_us .top_step {
  padding-top: 20px;
}
.about_us .top_step h2 {
  padding-top: 40px;
}

@media screen and (min-width: 780px) {
  .about_us .about_main {
    margin-top: -20px;
  }
  .about_us .about_point .about_point_box {
    max-width: 800px;
    margin: 0 auto 5%;
    padding: 3%;
  }
  .about_us .about_point .about_point_box h3 {
    font-size: 1.3rem;
  }
  .about_us .about_point .about_point_box .pcwrap {
    display: flex;
    align-items: flex-start;
  }
  .about_us .about_point .about_point_box .pcwrap img {
    padding: 3% 6% 0 0;
    width: 50%;
    margin: 0;
  }
  .about_us .about_point .about_point_box .pcwrap p {
    font-size: 0.9rem;
    padding-top: 3%;
  }
  .about_us .about_disc p {
    font-size: 1rem;
  }
  .about_us .about_main .about_main_box div {
    width: 50%;
  }
  .about_us .about_main .about_main_box div span {
    font-size: 0.8rem;
  }
  .about_us .about_main .about_main_box div h1 {
    font-size: 1.3rem;
  }
  .about_us .about_main .about_main_box div h1 span {
    font-size: 0.7rem;
  }
}
.staff-comment {
  background: #e7f7ff;
}
.staff-comment .top_banner_area {
  margin-bottom: 70px;
}
.staff-comment h1 {
  top: 90%;
  padding: 4%;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.2);
}
.staff-comment h1 p {
  text-align: left;
  font-size: 0.8rem;
  padding-top: 10px;
  text-align: center;
}

.staffvoice_box {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  position: relative;
}
.staffvoice_box .wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  flex-direction: row;
  background: #fff;
  border-radius: 30px;
  padding: 10px 10px 0 15px;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.2);
  margin: 10px 4% 40px;
  overflow: hidden;
  width: 100%;
}
.staffvoice_box p {
  font-size: 0.9rem;
  margin: 15px 0 10px 10px;
}
.staffvoice_box .photo {
  transition: 0.5s all;
  z-index: 1;
}
.staffvoice_box img {
  width: 110px;
  height: auto;
  z-index: 2;
}
.staffvoice_box div {
  position: relative;
  display: flex;
  flex-direction: column;
}
.staffvoice_box div.photo {
  justify-content: end;
}

.comment-cat img {
  width: 150px;
}
.comment-cat span {
  font-size: 0.7rem;
  bottom: 20px;
  padding-left: 10px;
  padding-bottom: 20px;
}
.comment-cat .border {
  position: absolute;
  border-bottom: 1px solid #eb6100;
  right: 0;
  bottom: 20px;
  width: 100%;
  z-index: 0;
  color: #eb6100;
}
.comment-cat .border span {
  position: absolute;
  background: #fff;
  margin-left: 20px;
  font-size: 0.6rem;
  bottom: -7px;
  padding: 0 3px;
}
.comment-cat a:hover .photo {
  transform: scale(1.2, 1.2);
  transition: 0.5s all;
}
.comment-cat .staffvoice_box a:hover {
  opacity: 0.8;
}

@media screen and (min-width: 780px) {
  .staffvoice_box p {
    margin: 20px 0 40px 5px;
  }
  .staffvoice_box .comment-cat img {
    width: 150px;
  }
  .staff-comment .top_banner_area {
    margin: 0 auto 70px;
  }
  .staff-comment .pcwrap {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 80px 0;
  }
  .staff-comment .pcwrap .staffvoice_box {
    width: 50%;
    margin: 0;
  }
  .staff-comment .pcwrap .staffvoice_box .wrap {
    margin: 3%;
  }
  .staff-comment.inner h1 {
    padding-top: 150px;
  }
}
@media screen and (min-width: 780px) {
  .comment-cat img {
    width: 140px;
  }
}
@media screen and (min-width: 1200px) {
  .comment-cat img {
    width: 170px;
  }
}
.staff-comment.inner {
  margin-top: -20px;
}
.staff-comment.inner h1 {
  box-shadow: none;
  text-align: center;
  margin: 0;
  font-weight: 500;
  font-size: 1.5rem;
  padding-top: 80px;
}
.staff-comment.inner h1 span {
  display: block;
  font-size: 0.8rem;
}
.staff-comment.inner .staffvoice_box img {
  width: 170px;
}
.staff-comment.inner .staff-single {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.2);
  margin: 10px 4% 40px;
  overflow: hidden;
}
.staff-comment.inner .staff-single .single-wrap {
  display: flex;
  padding: 10px 0 0 10px;
}
.staff-comment.inner .staff-single .single-wrap span {
  bottom: 20px;
  font-size: 0.5rem;
  padding-left: 15px;
}
.staff-comment.inner .staff-single blockquote {
  position: relative;
  padding: 10px;
  box-sizing: border-box;
  font-style: italic;
}
.staff-comment.inner .staff-single blockquote p {
  position: relative;
  padding: 0;
  margin: 2px 0;
  z-index: 1;
  line-height: 1.5;
}
.staff-comment.inner .staff-single blockquote:before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  color: #e7f7ff;
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
}
.staff-comment.inner .staff-single blockquote:after {
  display: inline-block;
  position: absolute;
  bottom: 10px;
  right: 10px;
  text-align: center;
  content: "\f10e";
  font-family: "Font Awesome 5 Free";
  color: #e7f7ff;
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
}
.staff-comment.inner .staff-single .border {
  position: absolute;
  border-bottom: 1px solid #eb6100;
  right: 0;
  bottom: 20px;
  width: 100%;
  z-index: 0;
}

a .staff-lineup {
  background: #fff;
  text-align: center;
  padding: 50px 0;
  font-size: 1.2rem;
  margin: 5px 0;
}
a .staff-lineup::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 10px;
  border-left: 2px solid #151515;
  border-bottom: 2px solid #151515;
  transform: rotate(45deg);
}

.contents-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.contents-wrap .staffvoice_box_wrap {
  font-size: 0.8rem;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.2);
  margin: 10px 4% 40px;
  overflow: hidden;
  max-width: 800px;
  padding: 5px 0;
}
.contents-wrap .staffvoice_box_wrap p {
  padding: 20px;
}
.contents-wrap .staffvoice_box_wrap .wrap_border {
  border-bottom: 1px solid #eb6100;
  padding-bottom: 5px;
}

@media screen and (min-width: 780px) {
  .staff-comment.inner h1 {
    padding-top: 150px;
  }
  .staff-comment.inner .staffvoice_box img {
    width: 250px;
  }
  .staff-comment.inner .staffvoice_box span {
    font-size: 0.8rem;
  }
  .staff-comment.inner .staff-single .single-wrap {
    padding: 0 30px 0 30px;
  }
  .staff-comment.inner .staff-single .single-wrap span {
    font-size: 0.8rem;
    bottom: 50px;
  }
  .staff-comment.inner .staff-single .single-wrap blockquote p {
    font-size: 1.2rem;
    margin: 60px 10px 30px;
  }
  .staff-comment.inner .staff-single .single-wrap blockquote:before {
    top: 30px;
    left: 10px;
  }
  .staff-comment.inner .staff-single .single-wrap blockquote:after {
    bottom: 40px;
    right: 30px;
  }
  .staff-comment.inner .staff-single .border {
    bottom: 50px;
  }
  a .staff-lineup {
    padding: 60px 0;
  }
  .contents-wrap .staffvoice_box_wrap {
    font-size: 1rem;
    padding: 30px 0;
  }
}
.for-staff {
  padding-bottom: 80px;
}
.for-staff .text_area {
  margin: 10% 4%;
}
.for-staff .text_area h2 {
  text-align: center;
  margin: 15% 0 5%;
}
.for-staff .text_area p {
  font-size: 0.7rem;
}

@media screen and (min-width: 780px) {
  .for-staff .text_area p {
    font-size: 1rem;
  }
}
.career-support {
  background: #faf3ef;
  padding-bottom: 10%;
  border-radius: 0 0 40px 40px;
}
.career-support .career-support_main {
  position: relative;
  margin-top: -20px;
}
.career-support .career-support_main .career-support_main_box img {
  width: 100%;
}
.career-support .career-support_main .career-support_main_box div {
  position: absolute;
  background: rgba(255, 255, 255, 0.8117647059);
  border-radius: 8px;
  width: 70%;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  padding: 5%;
}
.career-support .career-support_main .career-support_main_box div h1 {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 13px;
}
.career-support .career-support_main .career-support_main_box div span {
  font-size: 0.7rem;
}
.career-support .career-wrap {
  margin: 3% auto;
  background: #fff;
  border-radius: 30px;
  padding: 5% 2% 2%;
  text-align: center;
  font-size: 0.8rem;
}
.career-support .career-wrap p {
  margin: 20px;
}
.career-support .career-wrap ul {
  display: flex;
  flex-wrap: wrap;
  margin: 3% 0;
  justify-content: center;
}
.career-support .career-wrap ul li {
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  width: 29.33333%;
  margin: 2%;
  padding: 5% 3%;
}
.career-support .career-bar {
  display: flex;
  border: 2px solid #d9d9d9;
  border-radius: 8px;
  padding: 7px;
  margin-top: 20px;
}
.career-support .career-bar li {
  border-right: 1px solid #d9d9d9;
  padding: 7px;
  font-size: 0.8rem;
}
.career-support .career-bar li:nth-child(1) {
  display: flex;
}
.career-support .career-bar li:nth-child(1) img {
  padding-right: 3px;
}
.career-support .career-bar li:nth-child(3) {
  border-right: none;
}

@media screen and (min-width: 780px) {
  .career-support .career-support_main .career-support_main_box div h1 {
    font-size: 1.3rem;
  }
  .career-support .career-support_main .career-support_main_box div span {
    display: block;
    font-size: 0.8rem;
    text-align: center;
  }
  .career-support .career-wrap {
    font-size: 1rem;
  }
  .career-support .career-bar li {
    padding: 3px 40px;
  }
}
.company {
  margin: 10% 4% 0;
}
.company .text-area {
  margin-bottom: 6%;
}
.company .text-area h3 {
  background: #e9e9e9;
  padding: 8px 0 8px 16px;
  margin-bottom: 3%;
  font-size: 1.2rem;
}
.company .text-area p {
  margin: 0 2%;
  font-size: 1rem;
}
.company .text-area .map {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.company .text-area .map .tellistwrap {
  width: 75%;
  line-height: 2;
  margin-right: 10px;
  box-sizing: border-box;
}
.company .text-area .map .tellistwrap span {
  vertical-align: top;
}
.company .text-area .map .tellistwrap span.info {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
}
.company .text-area .map .tellistwrap + a {
  position: relative;
  color: #fff;
  width: 25%;
  text-align: center;
  font-size: 0.9rem;
}
.company .text-area .map .tellistwrap + a span {
  padding: 10px 15px 10px 30px;
  background: #004098;
  border: 2px solid #004098;
  border-radius: 25px;
  display: block;
  transition: 0.2s cubic-bezier(0.37, 0, 0.63, 1);
  font-weight: 500;
}
.company .text-area .map .tellistwrap + a span::before {
  position: absolute;
  left: 25%;
  content: "\f3c5";
  font-family: "Font Awesome 5 Free";
  color: #fff;
  font-weight: 900;
}
.company .text-area .map .tellistwrap + a span:hover {
  background: #fff;
  color: #004098;
}
.company .text-area .map .tellistwrap + a span:hover::before {
  color: #004098;
}
.company .text-area .map .tellistwrap img {
  padding-right: 5px;
}
.company .text-area .map .tellist {
  display: flex;
}
.company .text-area .map .tellist li {
  display: flex;
  align-items: center;
}
.company .text-area .map .tellist li + li {
  margin-left: 5px;
}
.company .text-area .map .tellist li + li:before {
  content: "/";
  padding-right: 5px;
}
@media screen and (max-width: 900px) {
  .company .text-area .map .tellist {
    flex-direction: column;
  }
  .company .text-area .map .tellist li {
    align-items: flex-start;
    line-height: 1.2;
  }
  .company .text-area .map .tellist li + li {
    margin-left: 0;
    margin-top: 5px;
  }
  .company .text-area .map .tellist li + li::before {
    display: none;
    padding-right: 0;
  }
}
@media screen and (max-width: 779px) {
  .company .text-area .map {
    flex-direction: column;
    justify-content: center;
  }
  .company .text-area .map .tellistwrap {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    line-height: 1.5;
  }
  .company .text-area .map .tellist {
    margin-top: 10px;
  }
}
.company h2 {
  text-align: center;
  margin: 15% 0 3%;
}

.tab_wrap {
  padding-bottom: 0;
  border-radius: 15px 15px 0 0;
}

@media screen and (min-width: 780px) {
  .company .text-area .map a span::before {
    left: 32%;
  }
  .company .text-area .map p span.info {
    font-size: 1rem;
  }
}
.company-info_navi {
  background: #03489d;
  color: #fff;
  border-radius: 40px 40px 0 0;
  padding: 2px 0 4%;
}
.company-info_navi li {
  border-radius: 15px;
  background: #fff;
  margin: 5% 4%;
}
.company-info_navi li p {
  text-align: center;
  padding: 8% 0;
  font-weight: 500;
  letter-spacing: 0.1rem;
}
.company-info_navi li p span {
  display: block;
  font-size: 0.6rem;
}
.company-info_navi + .page-top_link a {
  margin-top: 0;
}

@media screen and (min-width: 780px) {
  .company .text-area h3 {
    font-weight: 500;
  }
  .company .text-area p {
    font-size: 1rem;
  }
  .company .text-area .map p + a {
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 40px;
  }
  .company .text-area .map p span {
    vertical-align: middle;
  }
  .company-info_navi ul {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .company-info_navi li {
    display: flex;
    align-items: center;
    margin: 0 2%;
    width: 33.3%;
    border: 1px solid #fff;
  }
  .company-info_navi li a {
    width: 100%;
    transition: 0.2s cubic-bezier(0.37, 0, 0.63, 1);
  }
  .company-info_navi li a:hover {
    background: #03489d;
    border-radius: 15px;
    color: #fff;
    letter-spacing: 0.15em;
  }
  .company-info_navi .col4 li {
    margin: 0 1%;
  }
}
.company_access {
  width: 95%;
  margin: 20% auto 10%;
}
.company_access .accessWrap {
  padding-top: 0.2em;
}
.company_access h2 {
  background: #e9e9e9;
  border-bottom: 3px solid #eb6100;
  text-align: left;
  padding: 0.6em 0 0.5em 0.8em;
  font-size: 1.1rem;
}
.company_access .content_box {
  margin: 1.5em 0.6em 2em;
}
.company_access .content_box p.name {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.company_access .content_box p.access {
  margin: 1em 0;
}

@media screen and (min-width: 780px) {
  .company_access {
    margin-top: 8%;
    width: 100%;
  }
  .company_access .accessWrap {
    padding-top: 2em;
  }
  .company_access .content_box {
    display: flex;
    justify-content: space-around;
  }
  .company_access .content_box .text_box {
    width: 50%;
  }
  .company_access .content_box .text_box p.name {
    margin-top: 10px;
  }
  .company_access iframe {
    width: 50%;
    height: 300px;
  }
}
.privacy .text_area {
  margin: 15% auto 10%;
  width: 90%;
}
.privacy .text_area a {
  text-decoration: underline;
  color: #eb6100;
}

.faq .top_banner_area {
  margin-bottom: 70px;
}
.faq .toggle {
  display: none;
}
.faq .option {
  position: relative;
  margin-bottom: 1em;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  width: 90%;
  margin: 0 auto 40px;
  font-size: 0.9rem;
}
.faq .title,
.faq .content-box {
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.faq .title {
  padding: 4% 24px 4% 2%;
  display: block;
  cursor: pointer;
}
.faq .title span {
  color: #eb6100;
  font-size: 1.5rem;
  font-weight: bold;
  padding-right: 10px;
}
.faq .title:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: #eb6100 2px solid;
  border-right: #eb6100 2px solid;
  transform: rotate(135deg);
  position: absolute;
  right: 4%;
  top: 0;
  bottom: 0;
  margin: auto;
}
.faq .option input[type=checkbox]:checked + label:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: #eb6100 2px solid;
  border-right: #eb6100 2px solid;
  transform: rotate(-45deg);
  position: absolute;
  right: 4%;
  top: 20%;
  bottom: 0;
  margin: auto;
}
.faq .content-box {
  max-height: 0;
  overflow: hidden;
}
.faq .content-box p {
  margin: 0;
  padding: 6% 3%;
  font-size: 0.9rem;
  line-height: 1.5;
  background: #e7f7ff;
  border-radius: 0 0 10px 10px;
}
.faq .toggle:checked + .title + .content-box {
  max-height: 500px;
  transition: all 1.5s;
}
.faq .toggle:checked + .title::before {
  transform: rotate(90deg) !important;
}

@media screen and (min-width: 780px) {
  .faq .option {
    font-size: 1rem;
  }
}
.for-company {
  width: 90%;
  margin: 50px auto 0;
}
.for-company .center {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 1.2rem;
  text-align: center;
}
.for-company p {
  margin: 4%;
  line-height: 1.6;
}
.for-company .text-area {
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  box-sizing: content-box;
  padding: 7% 6%;
  margin-bottom: 9%;
}
.for-company .text-area h3 {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 1.2rem;
  text-align: center;
}
.for-company .text-area img {
  width: 100%;
}
.for-company .text-area p,
.for-company .text-area ul {
  margin: 20px 10px;
}
.for-company .text-area li {
  list-style: disc;
  margin-left: 10px;
  padding-bottom: 5px;
}
.for-company .text-area img.size {
  display: block;
  width: 70%;
  margin: 20px auto 50px;
}
.for-company .text-area h4 {
  font-size: 1.1rem;
  border-bottom: 2px solid #d9d9d9;
  margin: 30px 0 15px;
}
.for-company .text-area .col-2 {
  display: flex;
  margin: 30px 0;
  align-items: flex-start;
}
.for-company .text-area .col-2 p {
  margin: 0 0 0 10px;
}
.for-company .text-area .policy {
  text-align: right;
}
.for-company .text-area .policy img {
  width: 30%;
}
.for-company #business {
  padding-top: 30px;
}

@media screen and (min-width: 780px) {
  .for-company .text-area .policy img {
    width: 15%;
  }
}
.for-company_navi {
  background: #e7f7ff;
  border-radius: 40px 40px 0 0;
  padding: 4% 0;
}
.for-company_navi .job-info_navi {
  max-width: 800px;
  margin: 0 auto;
}
.for-company_navi + .page-top_link a {
  margin-top: 0;
}

@media screen and (min-width: 780px) {
  .for-company {
    margin-top: 8%;
    max-width: 800px;
  }
  .for-company p {
    margin-bottom: 8%;
  }
  .for-company .text-area h3 {
    text-align: left;
  }
}
.worker-dispatch h3 {
  padding: 40px 0 30px;
}
.worker-dispatch p {
  margin: 0;
}

.inner_wrapper.worker-dispatch a {
  text-decoration: underline;
}
.inner_wrapper.worker-dispatch > a {
  display: block;
  text-decoration: none;
  width: 100%;
  background: #eb6100;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 20px;
  margin: 80px 0;
  transition: 0.2s cubic-bezier(0.37, 0, 0.63, 1);
  border: 1px solid #eb6100;
}
.inner_wrapper.worker-dispatch > a:hover {
  background: #fff;
  border-radius: 8px;
  color: #eb6100;
}

.for-company .status .text-area {
  margin: 20px 0;
}
.for-company .status h2 {
  margin: 30px 0 10px;
  font-size: 1.3rem;
}
.for-company .status h3 {
  background: #e8f0f9;
  padding: 10px;
  margin: 30px 0 15px;
}
.for-company .status p {
  margin-top: 20px;
}
.for-company .status dl {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
}
.for-company .status dl dt {
  width: 30%;
}
.for-company .status dl dd {
  width: 70%;
}
.for-company .status dl dt,
.for-company .status dl dd {
  border-bottom: 2px solid #e8f0f9;
  padding: 10px 10px 5px;
  font-size: 0.8rem;
}
.for-company .status dl .bold {
  font-weight: bold;
}
.for-company .status dl.col3 dt {
  width: 20%;
}
.for-company .status dl.col3 dt.dtC {
  width: 60%;
}
.for-company .status dl.col3 dd {
  width: 20%;
}
.for-company .status ul li {
  list-style-type: disc;
  margin: 0 0 5px 8%;
  font-size: 0.8rem;
}
.for-company .status .small {
  font-size: 0.7rem;
}
.for-company .status span {
  display: block;
  text-align: right;
  padding: 15px 0;
}
.for-company .status .center {
  text-align: center;
}
.for-company .status table {
  border: 1px solid #e8f0f9;
}
.for-company .status table th,
.for-company .status table td {
  border-right: 1px solid #e8f0f9;
  border-bottom: 1px solid #e8f0f9;
  padding: 0.5em;
  width: 16.66666%;
  text-align: center;
  font-size: 0.9rem;
  vertical-align: middle;
}
.for-company .status table th {
  font-weight: bold;
  background: #f9fbfd;
}

@media screen and (min-width: 780px) {
  .for-company .status h2 {
    margin-bottom: 20px;
  }
  .for-company .status dl {
    margin: 50px 0;
  }
  .for-company .status dl dt,
  .for-company .status dl dd {
    font-size: 0.9rem;
    padding: 10px 10px 8px;
  }
  .for-company .status .small {
    font-size: 0.8rem;
  }
  .for-company .status h3 {
    margin: 30px 0 20px;
  }
  .for-company .status ul li {
    margin-left: 5%;
    font-size: 0.9rem;
  }
}
.news_single {
  max-width: 800px;
  margin: 20% 4% 5%;
}
.news_single img {
  /* width: 100%;
  height: auto; */
  display: block;
  margin: 15px auto;
}
@media screen and (max-width: 779px) {
  .news_single img {
    max-width: 100%;
    height: auto;
  }
}
.news_single h2 {
  text-align: left;
  font-size: 1.3rem;
}
.news_single h3 {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
  background: linear-gradient(transparent 50%, #e8f0f9 50%);
  margin: 3% 0 2%;
}
.news_single h4 {
  font-size: 1.1rem;
  margin: 3% 0 2%;
  font-weight: 500;
}
.news_single img {
  margin: 15px auto;
}
.news_single p {
  margin: 0 5px;
}
.news_single .date {
  display: block;
  text-align: right;
  margin-bottom: 15px;
  font-size: 0.7rem;
}
.news_single .border {
  border: 1px solid #e8f0f9;
  margin: 5% 0 10%;
}

.single-pagination {
  background: #e8f0f9;
}
.single-pagination ul {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 2%;
}
.single-pagination li {
  display: inline-block;
  width: 50%;
}
.single-pagination li a {
  display: block;
  padding: 50px 0;
  font-size: 1.1rem;
}
.single-pagination li:nth-child(1) a::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 10px;
  border-left: 2px solid #eb6100;
  border-bottom: 2px solid #eb6100;
  transform: rotate(45deg);
}
.single-pagination li:nth-child(2) {
  text-align: right;
}
.single-pagination li:nth-child(2) a::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 10px;
  border-right: 2px solid #eb6100;
  border-top: 2px solid #eb6100;
  transform: translateX(-25%) rotate(45deg);
}

.news_list {
  margin: 20% 0;
  padding: 0 5%;
}
.news_list .newinfo_wrap {
  margin: 7% 0;
}
.news_list .newinfo_wrap:hover img {
  transform: scale(1.2);
}
.news_list .newinfo_wrap .thumb {
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}
.news_list .newinfo_wrap .newinfo_box {
  background: #fff;
  padding: 20px 30px 20px 20px;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.2);
  border-radius: 0 0 30px 30px;
}
.news_list .newinfo_wrap .newinfo_box span {
  display: block;
}
.news_list .newinfo_wrap .newinfo_box span.title {
  font-size: 0.9rem;
}
.news_list .newinfo_wrap .newinfo_box span.date {
  text-align: right;
  font-size: 0.8rem;
}
.news_list .newinfo_wrap img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
  object-fit: cover;
  box-shadow: 0 1px 25px 0 rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

@media screen and (min-width: 780px) {
  .news_single {
    margin: 10% auto 5%;
  }
  h2 {
    font-size: 1.5rem;
    margin-top: 30px;
  }
  .single-pagination li a {
    padding: 70px 0;
  }
  .news_list {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 7% auto;
    padding: 0;
  }
  .news_list .newinfo_wrap {
    width: 31.33333%;
    margin: 1%;
  }
}
.company .top-message {
  margin-bottom: 50px;
}
.company .top-message img {
  width: 100%;
}
.company .top-message h3 {
  text-align: center;
  font-size: 1.3rem;
  margin: 60px 0 40px;
}
.company .top-message p {
  margin: 0 10px;
}
.company .top-message span {
  display: block;
  text-align: right;
  margin: 60px 20px 30px 0;
}

.privacy h3 {
  font-weight: bold;
  margin: 0 0 10px;
}

.personal-info p {
  margin-bottom: 40px;
}

.for-company .status a {
  text-decoration: underline;
  color: #eb6100;
}

/*========= LoadingのためのCSS ===============*/
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff;
  text-align: center;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-100%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash svg {
  width: 190%;
  padding: 0 5%;
}

@media screen and (min-width: 780px) {
  #splash_logo {
    left: 40%;
  }
  #splash svg {
    width: 250%;
  }
}
#mask .cls-1 {
  fill: none;
  stroke: #fff;
  stroke-width: 10px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 1500;
  /* 線の間隔を指定する */
  stroke-dashoffset: 1500;
  /* 線の位置を指定する */
}

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