@charset "UTF-8";
/* -----------------------------
common reset
------------------------------*/
html, body, h1, h2, h3, h4, h5, h6, p, address, ul, ol, li, dl, dt, dd, table, caption, th, td, img, form {
  margin: 0;
  padding: 0;
  border: none;
  font-style: normal;
  font-weight: normal;
  font-size: 62.5%;
  text-align: left;
  list-style-type: none;
  color: #333333;
}

body {
  font-size: 16px;
  font-weight: normal;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

img {
  vertical-align: bottom;
}

a img {
  border: none;
}

a:hover img {
  border: none;
}

a {
  color: #2b2b2b;
}

a:link {
  text-decoration: none;
}

a:visited {
  color: #2b2b2b;
  text-decoration: none;
}

a:hover {
  color: #2b2b2b;
  text-decoration: none;
}

ul, ol, dl {
  list-style-position: outside;
}

li, dt, dd {
  font-size: 16px;
}

button {
  background: none;
  margin: 0;
  padding: 0;
  border: none;
}

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

@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
  body {
    font-size: 14px;
  }
  li, dt, dd {
    font-size: inherit;
  }
}
em {
  font-style: normal;
}

/*------------------------------
module
------------------------------*/
.clearFix:after {
  content: "";
  display: block;
  clear: both;
}

.clearFix {
  zoom: 1;
}

.textL {
  text-align: left;
}

.textC {
  text-align: center;
}

.textR {
  text-align: right;
}

.ps_ab {
  position: absolute;
}

.flex {
  display: flex;
}

html.fixed,
body.fixed {
  overflow: hidden;
}

/* -----------------------------
layout
------------------------------*/
img {
  max-width: 100%;
  width: 100%;
}

sup {
  font-size: 70%;
}

sub {
  vertical-align: baseline;
}

.sp {
  display: none !important;
}

.pc {
  display: block;
}

.sp-inline {
  display: none !important;
}

.pc-inline {
  display: inline-block !important;
}

ul.inline li {
  display: inline-block;
  vertical-align: top;
}

body {
  background: #ffffff;
  box-sizing: border-box;
  margin: 0 auto;
}

html.fixed,
body.fixed {
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .sp-inline {
    display: inline-block !important;
  }
  .pc-inline {
    display: none !important;
  }
  body {
    min-width: 100%;
    width: 100%;
  }
}
/*------------------------------
loading
------------------------------*/
.loader_wrap {
  position: fixed;
  z-index: 50;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background: #fff;
}

.loader_wrap.is-active {
  -webkit-animation: 0s fadeIn 0.6s forwards;
  animation: 0s fadeIn 0.6s forwards;
}

.loader_wrap.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

@media only screen and (max-width: 768px) {
  .loader,
  .loader:after {
    width: 40px;
    height: 40px;
  }
}
.loader {
  font-size: 10px;
  position: absolute;
  top: 49%;
  text-indent: -9999em;
  border-top: 3px solid rgba(219, 221, 225, 0.4);
  border-right: 3px solid rgba(219, 221, 225, 0.4);
  border-bottom: 3px solid #2d6fbc;
  border-left: 3px solid #2d6fbc;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: loading 1.1s infinite linear;
  animation: loading 1.1s infinite linear;
}

@media only screen and (max-width: 768px) {
  .loader {
    border-width: 3px;
  }
}
@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* -----------------------------
common
------------------------------*/
#modal_bg {
  opacity: 1;
  position: fixed;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s linear;
}
@media only screen and (max-width: 768px) {
  #modal_bg {
    background-color: #000000;
  }
}

body {
  padding-top: 80px;
}
@media only screen and (max-width: 768px) {
  body {
    padding-top: 16vw;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* -----------------------------
header
------------------------------*/
header {
  background-image: linear-gradient(71deg, rgba(107, 175, 249, 0.8) 0%, rgba(255, 255, 227, 0.8) 100%);
  border-bottom: 1px solid #2d6fbc;
  height: 72px;
  position: fixed;
  z-index: 10;
  width: 100%;
  transition: 0.5s;
}
@media only screen and (max-width: 768px) {
  header {
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  header.shrink {
    transform: translateY(-16.133vw);
  }
}
header .header-inner {
  margin: auto;
  text-align: left;
}
@media screen and (max-width: 1600px) {
  header .header-inner {
    width: 100%;
  }
}
@media print, screen and (min-width: 1601px) {
  header .header-inner {
    width: 1600px;
  }
}
@media only screen and (max-width: 768px) {
  header .header-inner {
    width: auto;
    margin: 0 0;
  }
}
header .wrap {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 12.857vw);
}
@media only screen and (max-width: 768px) {
  header .wrap {
    display: block;
    width: 100%;
  }
}
header .logo {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1600px) {
  header .logo {
    padding-left: 1.786vw;
  }
}
@media print, screen and (min-width: 1601px) {
  header .logo {
    padding-left: 29px;
  }
}
@media only screen and (max-width: 768px) {
  header .logo {
    padding-left: 2.667vw;
    height: 15.733vw;
    box-sizing: border-box;
  }
}
header .logo a {
  display: block;
}
header .header-logo {
  width: 204px;
  height: 35px;
  margin-right: 22px;
}
@media screen and (max-width: 1600px) {
  header .header-logo {
    width: 14.571vw;
    height: 2.5vw;
    margin-right: 1.571vw;
  }
}
@media only screen and (max-width: 768px) {
  header .header-logo {
    width: 38.133vw;
    height: auto;
    margin-right: 4.267vw;
  }
}
header .header-recruit {
  width: 132px;
  height: 15px;
  font-size: 0;
}
@media screen and (max-width: 1600px) {
  header .header-recruit {
    width: 9.429vw;
    height: 1.071vw;
  }
}
@media only screen and (max-width: 768px) {
  header .header-recruit {
    width: 24.4vw;
    height: auto;
  }
}
header .header-nav > ul {
  display: flex;
  height: 72px;
}
@media only screen and (max-width: 768px) {
  header .header-nav > ul {
    justify-content: space-evenly;
    border-top: 1px solid #2d6fbc;
    height: 15.467vw;
  }
}
header .header-nav > ul > li > a {
  cursor: pointer;
  color: #2d6fbc;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding-left: 25px;
  padding-right: 25px;
  height: 100%;
  transition: filter 0.2s;
}
@media screen and (max-width: 1600px) {
  header .header-nav > ul > li > a {
    font-size: 14px;
    padding-left: 1.786vw;
    padding-right: 1.786vw;
  }
}
@media print, screen and (min-width: 1601px) {
  header .header-nav > ul > li > a {
    font-size: 14px;
    padding-left: 29px;
    padding-right: 29px;
  }
}
@media screen and (max-width: 1200px) {
  header .header-nav > ul > li > a {
    font-size: 12px;
  }
}
@media only screen and (max-width: 768px) {
  header .header-nav > ul > li > a {
    font-size: 2.667vw;
    padding-left: 0vw;
    padding-right: 0vw;
  }
  header .header-nav > ul > li > a:not(.open_pop) {
    pointer-events: none;
  }
}
@media screen and (min-width: 769px) {
  header .header-nav > ul > li > a:hover {
    filter: brightness(120%);
    transition: filter 0;
  }
}
header .header-nav > ul > li > a span {
  position: relative;
}
header .header-nav > ul > li > a span::after {
  content: "";
  background-color: rgba(70, 130, 195, 0.8);
  position: absolute;
  display: block;
  position: absolute;
  right: -25px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 1em;
}
@media screen and (max-width: 1200px) {
  header .header-nav > ul > li > a span::after {
    right: -1.786vw;
  }
}
@media only screen and (max-width: 768px) {
  header .header-nav > ul > li > a span::after {
    right: -2.533vw;
    height: 8.8vw;
  }
}
header .header-nav > ul > li:last-child a span::after {
  content: none;
}
header .header-nav > ul > li:hover > .drop-cont {
  display: block;
  visibility: visible;
  opacity: 1;
  z-index: 10;
}
header .header-nav > ul > li.interview {
  z-index: 6;
}
@media screen and (max-width: 1400px) {
  header .header-nav > ul > li.interview li:not(.ttl) {
    margin-right: -1.429vw;
  }
}
@media screen and (max-width: 1200px) {
  header .header-nav > ul > li.interview li:not(.ttl) {
    margin-right: -1.667vw;
  }
}
@media screen and (max-width: 1200px) {
  header .header-nav > ul > li.interview li:not(.ttl) img {
    width: auto;
    height: 13.167vw;
  }
}
header .header-nav > ul > li.interview .ttl img {
  width: 297px;
  height: auto;
}
@media screen and (max-width: 1400px) {
  header .header-nav > ul > li.interview .ttl img {
    width: 21.214vw;
    height: auto;
  }
}
@media screen and (max-width: 1200px) {
  header .header-nav > ul > li.interview .ttl img {
    width: 17.857vw;
    height: auto;
  }
}
@media screen and (max-width: 1600px) {
  header .header-nav > ul > li.interview .drop-inner ul li a {
    width: 13.357vw;
  }
}
@media print, screen and (min-width: 1601px) {
  header .header-nav > ul > li.interview .drop-inner ul li a {
    width: 214px;
  }
}
@media screen and (max-width: 1200px) {
  header .header-nav > ul > li.company li:not(.ttl) img {
    width: auto;
    height: 13.167vw;
  }
}
header .header-nav > ul > li.company .ttl img {
  width: 260px;
  height: auto;
}
@media screen and (max-width: 1400px) {
  header .header-nav > ul > li.company .ttl img {
    width: 18.571vw;
    height: auto;
  }
}
@media screen and (max-width: 1600px) {
  header .header-nav > ul > li.company .drop-inner ul li a {
    width: 17.929vw;
  }
}
@media print, screen and (min-width: 1601px) {
  header .header-nav > ul > li.company .drop-inner ul li a {
    width: 287px;
  }
}
@media screen and (max-width: 1200px) {
  header .header-nav > ul > li.recruit li:not(.ttl) img {
    width: auto;
    height: 13.167vw;
  }
}
header .header-nav > ul > li.recruit .ttl img {
  width: 223px;
  height: auto;
}
@media screen and (max-width: 1600px) {
  header .header-nav > ul > li.recruit .ttl img {
    width: 15.929vw;
    height: auto;
  }
}
@media screen and (max-width: 1600px) {
  header .header-nav > ul > li.recruit .drop-inner ul li a {
    width: 17.929vw;
  }
}
@media print, screen and (min-width: 1601px) {
  header .header-nav > ul > li.recruit .drop-inner ul li a {
    width: 287px;
  }
}
header .header-nav > ul > li .drop-cont {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 72px;
  z-index: 4;
  background-image: linear-gradient(71deg, rgba(107, 175, 249, 0.9) 0%, rgba(255, 255, 227, 0.9) 100%);
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
}
@media only screen and (max-width: 768px) {
  header .header-nav > ul > li .drop-cont {
    top: 31.333vw;
  }
}
header .header-nav > ul > li .drop-cont .drop-inner {
  max-width: 1200px;
  margin: auto;
  padding: 18px 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  header .header-nav > ul > li .drop-cont .drop-inner {
    padding-left: 2.5vw;
    padding-right: 2.5vw;
  }
}
@media only screen and (max-width: 768px) {
  header .header-nav > ul > li .drop-cont .drop-inner {
    padding: 0 0;
  }
}
header .header-nav > ul > li .drop-cont .drop-inner ul {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
header .header-nav > ul > li .drop-cont .drop-inner ul li a[href] {
  transition: filter 0.3s;
}
@media screen and (min-width: 769px) {
  header .header-nav > ul > li .drop-cont .drop-inner ul li a[href]:hover {
    filter: brightness(80%);
  }
}
@media only screen and (max-width: 768px) {
  header .header-nav > ul > li .drop-cont .drop-inner ul {
    display: block;
    border-top: 1px solid #2d6fbc;
  }
  header .header-nav > ul > li .drop-cont .drop-inner ul li:first-child a {
    font-size: 5.067vw;
    background: url(../img/common/nav_arw1.png) 4.667vw center/100% auto no-repeat;
    background-size: 2.533vw auto;
  }
  header .header-nav > ul > li .drop-cont .drop-inner ul li a {
    display: flex;
    align-items: center;
    height: auto;
    width: auto;
    font-size: 4.8vw;
    font-weight: bold;
    line-height: 1.1;
    color: #2d6fbc;
    height: 10.667vw;
    border-bottom: 1px solid #2d6fbc;
    padding-left: 8.267vw;
    background: url(../img/common/nav_arw2.png) 4.667vw center/100% auto no-repeat;
    background-size: 1.867vw auto;
  }
  header .header-nav > ul > li .drop-cont .drop-inner ul li a span {
    font-size: 2.133vw;
    font-weight: bold;
    display: block;
    padding-top: 0.1em;
  }
  header .header-nav > ul > li .drop-cont .drop-inner ul li a span.coming {
    font-size: 2.133vw;
    font-weight: bold;
    display: inline;
    padding-top: inherit;
    color: #8f8d24;
    position: relative;
    top: -0.3em;
    left: 0.5em;
  }
  header .header-nav > ul > li .drop-cont .drop-inner ul li a small {
    font-size: 80%;
  }
  header .header-nav > ul > li .drop-cont .drop-inner ul li a div {
    position: relative;
  }
}
header .header-entry-btn a {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #2d6fbc;
  color: #fff;
  font-weight: bold;
  width: 132px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease-out, background 0.3s ease-out;
}
@media screen and (max-width: 1600px) {
  header .header-entry-btn a {
    right: 1.786vw;
    width: 9.429vw;
    height: 2.143vw;
  }
}
@media print, screen and (min-width: 1601px) {
  header .header-entry-btn a {
    right: calc(50% - 750px);
    height: 34px;
  }
}
@media only screen and (max-width: 768px) {
  header .header-entry-btn a {
    width: 20vw;
    height: 8vw;
    right: 5.333vw;
    top: 4vw;
    bottom: inherit;
  }
}
header .header-entry-btn a span {
  position: relative;
}
@media screen and (max-width: 1600px) {
  header .header-entry-btn a span {
    font-size: 1vw;
  }
}
@media only screen and (max-width: 768px) {
  header .header-entry-btn a span {
    font-size: 2.933vw;
  }
}
header .header-entry-btn a:hover {
  background-color: #fff;
  border: 2px solid #2d6fbc;
  color: #2d6fbc;
}

/* -----------------------------
nav-cont
------------------------------*/
/* -----------------------------
breadcrumb
------------------------------*/
.breadcrumb {
  margin: 0 auto;
  padding: 60px 0px 35px;
}
@media screen and (max-width: 1600px) {
  .breadcrumb {
    width: 95.714vw;
  }
}
@media print, screen and (min-width: 1601px) {
  .breadcrumb {
    width: 1600px;
  }
}
@media only screen and (max-width: 768px) {
  .breadcrumb {
    width: auto;
    margin-left: 5.333vw;
    padding: 8vw 0 6.667vw;
    white-space: nowrap;
    overflow-x: auto;
    -ms-overflow-style: none;
    /*Firefoxへの対応*/
    scrollbar-width: none;
  }
  .breadcrumb::-webkit-scrollbar {
    display: none;
  }
}
.breadcrumb dl {
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .breadcrumb dl {
    display: table;
    padding-right: 4vw;
  }
}
.breadcrumb dl a {
  transition: opacity 0.2s linear;
  color: #000;
  font-size: 14px;
  padding-right: 0.5em;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .breadcrumb dl a {
    font-size: 3.067vw;
    text-decoration: none;
  }
}
.breadcrumb dl a::after {
  content: ">";
  display: inline-block;
  margin-left: 0.8em;
}
@media only screen and (max-width: 768px) {
  .breadcrumb dl a::after {
    right: 6px;
  }
}
.breadcrumb dl a:hover span {
  color: #2d6fbc;
}
.breadcrumb dl dt,
.breadcrumb dl dd {
  display: inline-block;
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .breadcrumb dl dt,
  .breadcrumb dl dd {
    display: table-cell;
    font-size: 3.067vw;
  }
}

/* -----------------------------
main
------------------------------*/
/* -----------------------------
common_style
------------------------------*/
.contents_wrap {
  position: relative;
}

.bg {
  background-color: #ededed;
}

.contents_inner {
  width: 1150px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .contents_inner {
    width: auto;
    margin: 0 2.344vw;
  }
}
@media only screen and (max-width: 768px) {
  .contents_inner {
    margin: 0 5.333vw;
  }
}

/* -----------------------------
btn_style
------------------------------*/
.btn_style {
  text-align: center;
}

.btn_style a {
  display: inline-block;
  border-radius: 100vh;
  background-color: #e60039;
  border: 2px solid #e60039;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  margin: auto;
  padding: 19px 65px 20px;
  min-width: 350px;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 1200px) {
  .btn_style a {
    font-size: 1.953vw;
    padding: 2.148vw 4.883vw;
  }
}
@media only screen and (max-width: 768px) {
  .btn_style a {
    font-size: 4.533vw;
    padding: 5.333vw 2.667vw;
    width: 100%;
    min-width: auto;
  }
}
.btn_style a::after {
  position: absolute;
  content: "";
  width: 11px;
  height: 11px;
  border-right: solid 3px #fff;
  border-bottom: solid 3px #fff;
  top: 50%;
  right: 28px;
  margin-top: -5px;
  transform: rotate(-45deg);
  transition: 0.6s;
}
@media only screen and (max-width: 768px) {
  .btn_style a::after {
    width: 2.667vw;
    height: 2.667vw;
    border-right: solid 2px #fff;
    border-bottom: solid 2px #fff;
    margin-top: -1.333vw;
  }
}
@media screen and (min-width: 769px) {
  .btn_style a:hover {
    background-color: transparent;
    border: 2px solid #e60039;
    color: #e60039;
  }
  .btn_style a:hover::after {
    border-right: solid 3px #e60039;
    border-bottom: solid 3px #e60039;
    right: 23px;
  }
}
/* ==================================================
	= フッター
================================================== */
footer {
  text-align: center;
  background-color: #fff;
  margin: 0px 0 0 0;
  position: relative;
}
footer .foot_inner {
  margin: auto;
  text-align: left;
}
@media screen and (max-width: 1600px) {
  footer .foot_inner {
    width: 95.714vw;
  }
}
@media print, screen and (min-width: 1601px) {
  footer .foot_inner {
    width: 1600px;
  }
}
@media only screen and (max-width: 768px) {
  footer .foot_inner {
    width: auto;
    margin: 0 5.067vw;
  }
}
footer .link_area {
  border-top: 1px solid #2d6fbc;
  border-bottom: 1px solid #3475bd;
  background-image: -moz-linear-gradient(71deg, rgba(107, 175, 249, 0.7) 0%, rgba(255, 255, 227, 0.7) 100%);
  background-image: -webkit-linear-gradient(71deg, rgba(107, 175, 249, 0.7) 0%, rgba(255, 255, 227, 0.7) 100%);
  background-image: -ms-linear-gradient(71deg, rgba(107, 175, 249, 0.7) 0%, rgba(255, 255, 227, 0.7) 100%);
  padding: 43px 0 125px;
}
@media only screen and (max-width: 768px) {
  footer .link_area {
    border-top: 1px solid #3475bd;
    padding: 5.6vw 0 18.4vw;
  }
}
footer .logo_area {
  display: flex;
  align-items: center;
  margin: 0 0 50px;
}
footer .logo_area .logo_bottom {
  width: 232px;
  height: auto;
  margin-right: 24px;
}
@media only screen and (max-width: 768px) {
  footer .logo_area .logo_bottom {
    width: 49.733vw;
    margin-right: 4.4vw;
  }
}
footer .logo_area .logo_bottom2 {
  width: 175px;
  height: auto;
}
@media only screen and (max-width: 768px) {
  footer .logo_area .logo_bottom2 {
    width: 35.2vw;
  }
}
footer .list1 {
  display: flex;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  footer .list1 {
    display: block;
    width: 80%;
    margin-bottom: 6.667vw;
  }
}
footer .list1 li {
  position: relative;
}
@media only screen and (max-width: 768px) {
  footer .list1 li {
    display: inline-block;
  }
}
footer .list1 li.coming {
  color: #3475bd;
  opacity: 0.5;
}
footer .list1 li.coming::after {
  display: inline-block;
  content: "COMING SOON";
  font-size: 10px;
  line-height: 1;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1em;
  margin: auto;
  padding-right: 1px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  footer .list1 li.coming::after {
    font-size: 2vw;
    bottom: -1em;
    margin-left: -1em;
  }
}
@media screen and (min-width: 769px) {
  footer .list1 li:not(.coming) a:hover {
    filter: brightness(120%);
  }
}
footer .list1 li a {
  transition: 0.2s;
  color: #3475bd;
  font-size: 14px;
  font-weight: bold;
  padding-right: 25px;
  padding-left: 24px;
  border-left: 1px solid #3475bd;
}
@media only screen and (max-width: 768px) {
  footer .list1 li a {
    font-size: 3.2vw;
    padding-right: 1.867vw;
    padding-left: 2.667vw;
  }
  footer .list1 li a.sp-noline {
    padding-left: 0;
    border-left: none;
  }
}
footer .list1 li:first-child a {
  border-left: none;
  padding-left: 0;
}
@media only screen and (max-width: 768px) {
  footer .list1 li {
    margin-bottom: 3.333vw;
  }
}
footer .list2 {
  display: flex;
}
footer .list2 li {
  margin-right: 35px;
}
@media only screen and (max-width: 768px) {
  footer .list2 li {
    margin-right: 8vw;
  }
}
footer .list2 li a {
  transition: 0.2s;
  color: #3475bd;
  font-size: 14px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  footer .list2 li a {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 769px) {
  footer .list2 li a:hover {
    filter: brightness(120%);
  }
}
footer .copyright {
  background-color: #fff;
  font-size: 14px;
  height: 100px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  footer .copyright {
    font-size: 2.4vw;
    height: 15.067vw;
  }
}

.gotoTop {
  position: absolute;
  z-index: 50;
  right: 0;
  bottom: inherit;
  top: -43px;
  transition: 1s;
}
@media screen and (max-width: 1600px) {
  .gotoTop {
    right: calc(50% - 48.571vw);
  }
}
@media print, screen and (min-width: 1601px) {
  .gotoTop {
    right: calc(50% - 780px);
  }
}
@media only screen and (max-width: 768px) {
  .gotoTop {
    top: -22px;
  }
}
.gotoTop.show {
  opacity: 1;
  transition: 1s;
}
.gotoTop.fixed {
  position: fixed;
  right: 10px;
  bottom: 20px;
  top: inherit;
  transition: 1s;
  opacity: 1;
}
@media screen and (max-width: 1600px) {
  .gotoTop.fixed {
    right: calc(50% - 48.571vw);
  }
}
@media print, screen and (min-width: 1601px) {
  .gotoTop.fixed {
    right: calc(50% - 780px);
  }
}

.gotoTop a {
  display: block;
  width: 86px;
  height: 86px;
  transition: all 0.2s;
  background: url(../img/common/btn_pagetop.png) 0 0/contain no-repeat;
}
@media screen and (min-width: 769px) {
  .gotoTop a:hover {
    filter: brightness(130%);
  }
}
@media only screen and (max-width: 768px) {
  .gotoTop a {
    width: 44px;
    height: 44px;
  }
}

body {
  background-color: #2760a3;
  padding-top: 0;
}

.cont_wrap {
  max-width: 1600px;
  margin: auto;
  background-color: #fff;
}
@media screen and (max-width: 1600px) {
  .cont_wrap {
    width: 100%;
  }
}

.img0 {
  background: url(../img/top/kv.png) center 0 no-repeat;
  background-size: 100% auto;
  height: 59.429vw;
}
@media print, screen and (min-width: 1601px) {
  .img0 {
    background: url(../img/top/kv.png) center 0 no-repeat;
    background-size: 1600px auto;
    padding-top: 0;
    height: 951px;
  }
}
@media only screen and (max-width: 768px) {
  .img0 {
    background: url(../img/top/kv_s.png) center 0/100% auto no-repeat;
    height: 161.333vw;
  }
}

.img1 {
  background: url(../img/top/interview.png) center 0 no-repeat;
  padding-top: 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1600px) {
  .img1 {
    background-size: 100% auto;
    height: 105.357vw;
    margin-top: -20.429vw;
  }
}
@media print, screen and (min-width: 1601px) {
  .img1 {
    background-size: 1600px auto;
    height: 1686px;
    margin-top: -327px;
  }
}
@media only screen and (max-width: 768px) {
  .img1 {
    background: url(../img/top/interview_s.png) center 0/100% auto no-repeat;
    height: 204.667vw;
  }
}

.img2 {
  background-color: #fff;
  padding: 25.067vw 0 3.2vw;
  position: relative;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .img2 {
    margin-top: -18.571vw;
    margin-bottom: 1.714vw;
    padding: 24.571vw 0 0;
  }
}
@media print, screen and (min-width: 1601px) {
  .img2 {
    margin-top: -297px;
    margin-bottom: 27px;
    padding: 393px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .img2 {
    padding: 28vw 0 5.6vw;
  }
}

.img3 {
  background: url(../img/top/recruit.png) center 0 no-repeat;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .img3 {
    background-size: 100% auto;
    height: 100vw;
  }
}
@media print, screen and (min-width: 1601px) {
  .img3 {
    background-size: 1600px auto;
    height: 1600px;
  }
}
@media only screen and (max-width: 768px) {
  .img3 {
    background: url(../img/top/recruit_s.png) center 0/100% auto no-repeat;
    height: 126.4vw;
  }
}

.img4 {
  background: url(../img/top/link.png) center 0 no-repeat;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .img4 {
    background-size: 100% auto;
    height: 112.214vw;
    margin-top: -23.929vw;
  }
}
@media print, screen and (min-width: 1601px) {
  .img4 {
    background-size: 1600px auto;
    height: 1795px;
    margin-top: -383px;
  }
}
@media only screen and (max-width: 768px) {
  .img4 {
    background: url(../img/top/link_s.png) center 0/100% auto no-repeat;
    height: 248.4vw;
    margin-top: -24vw;
  }
}

.sect_inner {
  margin: auto;
}
@media screen and (max-width: 1600px) {
  .sect_inner {
    width: 85.714vw;
  }
}
@media print, screen and (min-width: 1601px) {
  .sect_inner {
    width: 1371px;
  }
}
@media only screen and (max-width: 768px) {
  .sect_inner {
    width: auto;
    margin: 0 8.667vw;
  }
}

@media screen and (max-width: 1600px) {
  .ttl_image img {
    width: auto;
    height: 3vw;
  }
}
@media print, screen and (min-width: 1601px) {
  .ttl_image img {
    width: auto;
    height: 48px;
  }
}
@media only screen and (max-width: 768px) {
  .ttl_image img {
    width: auto;
    height: 5.6vw;
  }
}

.flex_style {
  display: flex;
  margin: 62px 0 0;
}
@media screen and (max-width: 1600px) {
  .flex_style {
    margin: 4.429vw 0 0;
  }
}
@media print, screen and (min-width: 1601px) {
  .flex_style {
    margin: 71px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .flex_style {
    display: block;
    margin: 8vw 0 0;
  }
}
.flex_style .ttl_text {
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1600px) {
  .flex_style .ttl_text {
    font-size: 2.143vw;
    width: 13.571vw;
  }
}
@media print, screen and (min-width: 1601px) {
  .flex_style .ttl_text {
    font-size: 34px;
    width: 217px;
  }
}
@media only screen and (max-width: 768px) {
  .flex_style .ttl_text {
    font-size: 4vw;
    margin-bottom: 5.333vw;
    width: auto;
  }
}
.flex_style .text {
  padding-left: 50px;
  border-left: 2px solid #8f8d24;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.6;
  flex: 1;
  min-height: 140px;
  margin-top: -0.1em;
}
@media screen and (max-width: 1600px) {
  .flex_style .text {
    font-size: 1.571vw;
    padding-left: 3.571vw;
    min-height: 10vw;
  }
}
@media print, screen and (min-width: 1601px) {
  .flex_style .text {
    padding-left: 57px;
    font-size: 25px;
    min-height: 160px;
  }
}
@media only screen and (max-width: 768px) {
  .flex_style .text {
    padding-left: 6.4vw;
    font-size: 2.933vw;
    margin-left: 6.4vw;
    min-height: 14.933vw;
  }
}

#interview {
  position: relative;
}
@media screen and (max-width: 1600px) {
  #interview {
    padding: 16.857vw 0 0;
  }
}
@media print, screen and (min-width: 1601px) {
  #interview {
    padding: 270px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  #interview {
    padding: 26.667vw 0 0;
  }
}
@media screen and (max-width: 1600px) {
  #interview .ttl_image img {
    width: 39.429vw;
    height: auto;
  }
}
@media print, screen and (min-width: 1601px) {
  #interview .ttl_image img {
    width: 631px;
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  #interview .ttl_image img {
    width: 73.333vw;
    height: auto;
  }
}

#person {
  margin-top: 0;
  padding: 0px 0 0px;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 768px) {
  #person {
    margin-top: 0;
    padding: 0 0 0;
  }
}
#person .title {
  margin-bottom: 20px;
  font-size: 28px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #person .title {
    font-size: 6.4vw;
    margin-bottom: 8vw;
  }
}
#person .swiper {
  width: 100%;
}
@media screen and (max-width: 1600px) {
  #person .swiper {
    width: 100%;
  }
}
@media print, screen and (min-width: 1601px) {
  #person .swiper {
    width: 1600px;
  }
}
@media only screen and (max-width: 768px) {
  #person {
    /* ページネーションのサイズと色 */
  }
  #person .swiper-pagination {
    margin: 4vw 0 0;
  }
  #person .swiper-pagination-bullet {
    display: inline-block;
    background-color: #989898;
    height: 4px;
    width: 9.333vw;
  }
  #person .swiper-pagination-bullet:not(:last-child) {
    margin-right: 1.333vw;
  }
  #person .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #2d6fbc;
  }
}
@media screen and (min-width: 769px) {
  #person .swiper-button-prev:hover,
  #person .swiper-button-next:hover {
    filter: saturate(120%) opacity(80%);
  }
}
#person .swiper-button-prev {
  cursor: pointer;
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  left: 35px;
  width: 49px;
  height: 77px;
  background: url(../img/top/arrow_left.png) center/100% auto no-repeat;
}
@media screen and (max-width: 1600px) {
  #person .swiper-button-prev {
    left: 2.5vw;
    width: 3.5vw;
    height: 5.5vw;
  }
}
@media print, screen and (min-width: 1601px) {
  #person .swiper-button-prev {
    left: 40px;
  }
}
@media only screen and (max-width: 768px) {
  #person .swiper-button-prev {
    left: 4.667vw;
    width: 6.533vw;
    height: 10.267vw;
  }
}
#person .swiper-button-next {
  cursor: pointer;
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  right: 35px;
  width: 49px;
  height: 77px;
  background: url(../img/top/arrow_right.png) center/100% auto no-repeat;
}
@media screen and (max-width: 1600px) {
  #person .swiper-button-next {
    right: 2.5vw;
    width: 3.5vw;
    height: 5.5vw;
  }
}
@media print, screen and (min-width: 1601px) {
  #person .swiper-button-next {
    right: 40px;
  }
}
@media only screen and (max-width: 768px) {
  #person .swiper-button-next {
    right: 4.667vw;
    width: 6.533vw;
    height: 10.267vw;
  }
}
#person .swiper-slide {
  display: block;
  width: 260px;
}
#person .swiper-slide:nth-child(1) {
  z-index: 99;
}
#person .swiper-slide:nth-child(2) {
  z-index: 98;
}
#person .swiper-slide:nth-child(3) {
  z-index: 97;
}
#person .swiper-slide:nth-child(4) {
  z-index: 96;
}
#person .swiper-slide:nth-child(5) {
  z-index: 95;
}
#person .swiper-slide:nth-child(6) {
  z-index: 94;
}
#person .swiper-slide:nth-child(7) {
  z-index: 93;
}
#person .swiper-slide:nth-child(8) {
  z-index: 92;
}
#person .swiper-slide:nth-child(9) {
  z-index: 91;
}
#person .swiper-slide:nth-child(10) {
  z-index: 90;
}
#person .swiper-slide:nth-child(11) {
  z-index: 89;
}
#person .swiper-slide:nth-child(12) {
  z-index: 88;
}
#person .swiper-slide:nth-child(13) {
  z-index: 87;
}
#person .swiper-slide:nth-child(14) {
  z-index: 86;
}
#person .swiper-slide:nth-child(15) {
  z-index: 85;
}
#person .swiper-slide:nth-child(16) {
  z-index: 84;
}
#person .swiper-slide:nth-child(17) {
  z-index: 83;
}
#person .swiper-slide:nth-child(18) {
  z-index: 82;
}
#person .swiper-slide:nth-child(19) {
  z-index: 81;
}
#person .swiper-slide:nth-child(20) {
  z-index: 80;
}
#person .swiper-slide:nth-child(21) {
  z-index: 79;
}
#person .swiper-slide:nth-child(22) {
  z-index: 78;
}
#person .swiper-slide:nth-child(23) {
  z-index: 77;
}
#person .swiper-slide:nth-child(24) {
  z-index: 76;
}
#person .swiper-slide:nth-child(25) {
  z-index: 75;
}
#person .swiper-slide:nth-child(26) {
  z-index: 74;
}
#person .swiper-slide:nth-child(27) {
  z-index: 73;
}
#person .swiper-slide:nth-child(28) {
  z-index: 72;
}
#person .swiper-slide:nth-child(29) {
  z-index: 71;
}
#person .swiper-slide:nth-child(30) {
  z-index: 70;
}
#person .swiper-slide:nth-child(31) {
  z-index: 69;
}
#person .swiper-slide:nth-child(32) {
  z-index: 68;
}
#person .swiper-slide:nth-child(33) {
  z-index: 67;
}
#person .swiper-slide:nth-child(34) {
  z-index: 66;
}
#person .swiper-slide:nth-child(35) {
  z-index: 65;
}
#person .swiper-slide:nth-child(36) {
  z-index: 64;
}
#person .swiper-slide:nth-child(37) {
  z-index: 63;
}
#person .swiper-slide:nth-child(38) {
  z-index: 62;
}
#person .swiper-slide:nth-child(39) {
  z-index: 61;
}
#person .swiper-slide:nth-child(40) {
  z-index: 60;
}
#person .swiper-slide:nth-child(41) {
  z-index: 59;
}
#person .swiper-slide:nth-child(42) {
  z-index: 58;
}
#person .swiper-slide:nth-child(43) {
  z-index: 57;
}
#person .swiper-slide:nth-child(44) {
  z-index: 56;
}
#person .swiper-slide:nth-child(45) {
  z-index: 55;
}
#person .swiper-slide:nth-child(46) {
  z-index: 54;
}
#person .swiper-slide:nth-child(47) {
  z-index: 53;
}
#person .swiper-slide:nth-child(48) {
  z-index: 52;
}
#person .swiper-slide:nth-child(49) {
  z-index: 51;
}
#person .swiper-slide:nth-child(50) {
  z-index: 50;
}
#person .swiper-slide:nth-child(51) {
  z-index: 49;
}
#person .swiper-slide:nth-child(52) {
  z-index: 48;
}
#person .swiper-slide:nth-child(53) {
  z-index: 47;
}
#person .swiper-slide:nth-child(54) {
  z-index: 46;
}
#person .swiper-slide:nth-child(55) {
  z-index: 45;
}
#person .swiper-slide:nth-child(56) {
  z-index: 44;
}
#person .swiper-slide:nth-child(57) {
  z-index: 43;
}
#person .swiper-slide:nth-child(58) {
  z-index: 42;
}
#person .swiper-slide:nth-child(59) {
  z-index: 41;
}
#person .swiper-slide:nth-child(60) {
  z-index: 40;
}
#person .swiper-slide:nth-child(61) {
  z-index: 39;
}
#person .swiper-slide:nth-child(62) {
  z-index: 38;
}
#person .swiper-slide:nth-child(63) {
  z-index: 37;
}
#person .swiper-slide:nth-child(64) {
  z-index: 36;
}
#person .swiper-slide:nth-child(65) {
  z-index: 35;
}
#person .swiper-slide:nth-child(66) {
  z-index: 34;
}
#person .swiper-slide:nth-child(67) {
  z-index: 33;
}
#person .swiper-slide:nth-child(68) {
  z-index: 32;
}
#person .swiper-slide:nth-child(69) {
  z-index: 31;
}
#person .swiper-slide:nth-child(70) {
  z-index: 30;
}
#person .swiper-slide:nth-child(71) {
  z-index: 29;
}
#person .swiper-slide:nth-child(72) {
  z-index: 28;
}
#person .swiper-slide:nth-child(73) {
  z-index: 27;
}
#person .swiper-slide:nth-child(74) {
  z-index: 26;
}
#person .swiper-slide:nth-child(75) {
  z-index: 25;
}
#person .swiper-slide:nth-child(76) {
  z-index: 24;
}
#person .swiper-slide:nth-child(77) {
  z-index: 23;
}
#person .swiper-slide:nth-child(78) {
  z-index: 22;
}
#person .swiper-slide:nth-child(79) {
  z-index: 21;
}
#person .swiper-slide:nth-child(80) {
  z-index: 20;
}
#person .swiper-slide:nth-child(81) {
  z-index: 19;
}
#person .swiper-slide:nth-child(82) {
  z-index: 18;
}
#person .swiper-slide:nth-child(83) {
  z-index: 17;
}
#person .swiper-slide:nth-child(84) {
  z-index: 16;
}
#person .swiper-slide:nth-child(85) {
  z-index: 15;
}
#person .swiper-slide:nth-child(86) {
  z-index: 14;
}
#person .swiper-slide:nth-child(87) {
  z-index: 13;
}
#person .swiper-slide:nth-child(88) {
  z-index: 12;
}
#person .swiper-slide:nth-child(89) {
  z-index: 11;
}
#person .swiper-slide:nth-child(90) {
  z-index: 10;
}
#person .swiper-slide:nth-child(91) {
  z-index: 9;
}
#person .swiper-slide:nth-child(92) {
  z-index: 8;
}
#person .swiper-slide:nth-child(93) {
  z-index: 7;
}
#person .swiper-slide:nth-child(94) {
  z-index: 6;
}
#person .swiper-slide:nth-child(95) {
  z-index: 5;
}
#person .swiper-slide:nth-child(96) {
  z-index: 4;
}
#person .swiper-slide:nth-child(97) {
  z-index: 3;
}
#person .swiper-slide:nth-child(98) {
  z-index: 2;
}
#person .swiper-slide:nth-child(99) {
  z-index: 1;
}
#person .swiper-slide:nth-child(100) {
  z-index: 0;
}
#person .swiper-slide .shape {
  display: block;
  width: auto;
  text-align: center;
  clip-path: polygon(0% 100%, 25% 0%, 100% 0%, 75% 100%);
  overflow: hidden;
}
@media screen and (max-width: 1600px) {
  #person .swiper-slide .shape {
    margin-right: -7.143vw;
  }
}
@media print, screen and (min-width: 1601px) {
  #person .swiper-slide .shape {
    margin-right: -114px;
  }
}
@media only screen and (max-width: 768px) {
  #person .swiper-slide .shape {
    width: auto;
    margin-right: -14.667vw;
  }
}
#person .swiper-slide a {
  display: inline-block;
  width: 100%;
  position: relative;
}
#person .swiper-slide a::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 100%;
  height: 6.786vw;
  background-color: #2d6fbc;
}
@media print, screen and (min-width: 1601px) {
  #person .swiper-slide a::before {
    height: 120px;
  }
}
@media only screen and (max-width: 768px) {
  #person .swiper-slide a::before {
    height: 16vw;
  }
}
@media screen and (min-width: 769px) {
  #person .swiper-slide a {
    transition: 0.3s;
  }
}
#person .swiper-slide a img {
  transform: scale(101%);
  transition: 0.5s;
}
@media screen and (min-width: 769px) {
  #person .swiper-slide a:hover {
    transition: 0.3s;
  }
  #person .swiper-slide a:hover img {
    filter: brightness(85%);
    transition: 0.5s;
  }
}
#person .swiper-slide .text {
  position: absolute;
  z-index: 3;
  bottom: 0;
  width: 75%;
  padding: 0 0 10px 10px;
}
@media screen and (max-width: 1600px) {
  #person .swiper-slide .text {
    height: 6.667vw;
    padding: 0 0 0 1.333vw;
  }
}
@media print, screen and (min-width: 1601px) {
  #person .swiper-slide .text {
    height: 114px;
    padding: 0 0 0 23px;
  }
}
@media only screen and (max-width: 768px) {
  #person .swiper-slide .text {
    height: 16vw;
  }
}
#person .swiper-slide .text p {
  color: #fff;
  text-align: center;
  font-weight: bold;
}
#person .swiper-slide .text .year {
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.05em;
  padding-top: 1.1em;
}
@media screen and (max-width: 1600px) {
  #person .swiper-slide .text .year {
    font-size: 1.286vw;
  }
}
@media print, screen and (min-width: 1601px) {
  #person .swiper-slide .text .year {
    font-size: 21px;
  }
}
@media only screen and (max-width: 768px) {
  #person .swiper-slide .text .year {
    font-size: 2.933vw;
    padding-top: 1.2em;
  }
}
#person .swiper-slide .text .job {
  font-size: 28px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1600px) {
  #person .swiper-slide .text .job {
    font-size: 2vw;
  }
}
@media print, screen and (min-width: 1601px) {
  #person .swiper-slide .text .job {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  #person .swiper-slide .text .job {
    font-size: 5.333vw;
  }
}
#person .swiper-slide .text .job.font1 {
  font-size: 28px;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 1600px) {
  #person .swiper-slide .text .job.font1 {
    font-size: 2vw;
  }
}
@media print, screen and (min-width: 1601px) {
  #person .swiper-slide .text .job.font1 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  #person .swiper-slide .text .job.font1 {
    font-size: 4.533vw;
  }
}
#person .swiper-slide .text .job.font2 {
  font-size: 26px;
  letter-spacing: -0.08em;
}
@media screen and (max-width: 1600px) {
  #person .swiper-slide .text .job.font2 {
    font-size: 1.857vw;
  }
}
@media print, screen and (min-width: 1601px) {
  #person .swiper-slide .text .job.font2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 768px) {
  #person .swiper-slide .text .job.font2 {
    font-size: 4.267vw;
  }
}
#person .swiper-slide .text .job .kerning1 {
  letter-spacing: -0.15em;
}
#person .swiper-slide .text .job small {
  font-size: 70%;
}
#person .btn_style {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  #person .btn_style {
    margin-top: 5.333vw;
  }
}

#company .sect_inner {
  position: relative;
}
@media screen and (max-width: 1600px) {
  #company .flex_style .text {
    min-height: 15.643vw;
  }
}
@media print, screen and (min-width: 1601px) {
  #company .flex_style .text {
    min-height: 250px;
  }
}
@media only screen and (max-width: 768px) {
  #company .flex_style .text {
    min-height: 89.333vw;
  }
}
#company .btn_area {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  #company .btn_area {
    display: block;
  }
}
#company .btn_area .link_btn {
  position: relative;
  display: block;
  clip-path: polygon(0 0, 84% 0, 104% 100%, 20% 100%);
}
@media only screen and (max-width: 768px) {
  #company .btn_area .link_btn {
    clip-path: none;
  }
}
#company .btn_area .link_btn img {
  width: 100%;
}
#company .btn_area .link_btn:hover {
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  #company .btn_area .link_btn:hover img {
    filter: saturate(120%) opacity(80%);
    transition: 0.3s;
  }
}
@media screen and (max-width: 1600px) {
  #company .btn_area .link_btn.link1 {
    width: 37vw;
    right: -1.357vw;
  }
}
@media print, screen and (min-width: 1601px) {
  #company .btn_area .link_btn.link1 {
    width: 592px;
    right: -22px;
  }
}
@media only screen and (max-width: 768px) {
  #company .btn_area .link_btn.link1 {
    width: 64.533vw;
    margin-left: auto;
    margin-bottom: 4vw;
    position: absolute;
    right: 0;
    top: 36vw;
  }
}
@media screen and (max-width: 1600px) {
  #company .btn_area .link_btn.link2 {
    width: 37.857vw;
    top: -8.5vw;
    left: -1.357vw;
  }
}
@media print, screen and (min-width: 1601px) {
  #company .btn_area .link_btn.link2 {
    width: 606px;
    top: -136px;
    left: -22px;
  }
}
@media only screen and (max-width: 768px) {
  #company .btn_area .link_btn.link2 {
    width: 67.2vw;
    top: inherit;
    left: inherit;
    margin-right: auto;
    margin-top: -0.667vw;
  }
}

@media screen and (max-width: 1600px) {
  #recruit {
    padding: 22.143vw 0 0;
  }
}
@media print, screen and (min-width: 1601px) {
  #recruit {
    padding: 354px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  #recruit {
    padding: 22.667vw 0 0;
  }
}
@media screen and (max-width: 1600px) {
  #recruit .flex_style .text {
    min-height: 14vw;
  }
}
@media print, screen and (min-width: 1601px) {
  #recruit .flex_style .text {
    min-height: 224px;
  }
}
@media only screen and (max-width: 768px) {
  #recruit .flex_style .text {
    min-height: 18.667vw;
  }
}
#recruit .link_btn_wrap {
  filter: drop-shadow(30px 24px 0px #2d6fbc);
  position: relative;
}
@media only screen and (max-width: 768px) {
  #recruit .link_btn_wrap {
    filter: drop-shadow(0px 4.667vw 0px #2d6fbc);
  }
}
#recruit .link_btn {
  display: block;
  clip-path: polygon(0% 100%, 0% 35%, 100% 0%, 100% 65%);
  transition: 0.3s;
}
#recruit .link_btn img {
  transition: 0.5s;
}
@media screen and (max-width: 1600px) {
  #recruit .link_btn {
    margin-top: -12vw;
    width: 75.786vw;
  }
}
@media print, screen and (min-width: 1601px) {
  #recruit .link_btn {
    margin-top: -192px;
    width: 1213px;
  }
}
@media only screen and (max-width: 768px) {
  #recruit .link_btn {
    margin-top: -16.533vw;
    width: 94.667vw;
  }
}
#recruit .link_btn:hover {
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  #recruit .link_btn:hover img {
    filter: brightness(85%);
    transition: 0.5s;
  }
}

@media screen and (max-width: 1600px) {
  #newgrad {
    padding: 22.357vw 0 0;
  }
}
@media print, screen and (min-width: 1601px) {
  #newgrad {
    padding: 358px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  #newgrad {
    padding: 31.6vw 0 0;
  }
}
#newgrad .sect_inner {
  display: flex;
  padding-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  #newgrad .sect_inner {
    display: block;
    padding-bottom: 0;
  }
}
#newgrad .hexagon_wrap {
  filter: drop-shadow(30px 24px 0px #2d6fbc);
  position: relative;
}
@media only screen and (max-width: 768px) {
  #newgrad .hexagon_wrap {
    filter: drop-shadow(0px 4.8vw 0px #2d6fbc);
  }
}
#newgrad .hexagon_wrap::after {
  /* 疑似要素で同じ大きさのboxを作り、position: absoluteで背面に表示 */
}
#newgrad .hexagon_btn_wrap {
  position: relative;
}
@media screen and (max-width: 1600px) {
  #newgrad .hexagon_btn_wrap {
    margin-top: -4.286vw;
    width: 40vw;
    height: auto;
  }
}
@media print, screen and (min-width: 1601px) {
  #newgrad .hexagon_btn_wrap {
    margin-top: -69px;
    width: 640px;
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  #newgrad .hexagon_btn_wrap {
    margin-top: -12vw;
    width: 74.667vw;
    height: auto;
  }
}
#newgrad .hexagon_btn_wrap img {
  transition: 0.5s;
}
@media screen and (min-width: 769px) {
  #newgrad .hexagon_btn_wrap:hover img {
    filter: brightness(85%);
  }
}
#newgrad .hexagon {
  display: block;
  width: 588px;
  height: 509px; /* height = (width / 2) * sqrt(3) */
  clip-path: polygon(68% 0%, 95% 34%, 82% 78%, 15% 95%, 25% 52%, 0% 17%);
  clip-path: polygon(71.4% 0%, 100% 36%, 87% 82%, 15.6% 100%, 26.3% 54.2%, 0% 18%);
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 1600px) {
  #newgrad .hexagon {
    margin-top: -4.286vw;
    width: 40vw;
    height: 34.786vw;
  }
}
@media print, screen and (min-width: 1601px) {
  #newgrad .hexagon {
    margin-top: -69px;
    width: 640px;
    height: 557px;
  }
}
@media only screen and (max-width: 768px) {
  #newgrad .hexagon {
    margin-top: -12vw;
    width: 74.667vw;
    height: 64.933vw;
  }
}
#newgrad .hexagon img {
  transition: filter 0.5s;
}
#newgrad .hexagon:hover img {
  transition: filter 0.5s;
  filter: brightness(70%);
}

#enterprise {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1600px) {
  #enterprise {
    width: 41.429vw;
    padding-top: 13.571vw;
  }
}
@media print, screen and (min-width: 1601px) {
  #enterprise {
    width: 663px;
    padding-top: 217px;
  }
}
@media only screen and (max-width: 768px) {
  #enterprise {
    width: auto;
    padding-top: 0;
    margin-bottom: 10vw;
  }
}
@media screen and (max-width: 1600px) {
  #enterprise .flex_style {
    margin: 2.571vw 0 0;
  }
}
@media print, screen and (min-width: 1601px) {
  #enterprise .flex_style {
    margin: 41px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  #enterprise .flex_style {
    margin: 4.8vw 0 0;
  }
}
@media only screen and (max-width: 768px) {
  #enterprise .flex_style .ttl_text {
    margin-bottom: 4vw;
  }
}
#enterprise .flex_style .text {
  margin-top: 0;
  padding-top: 0.2em;
}
@media screen and (max-width: 1600px) {
  #enterprise .flex_style .text {
    font-size: 1.214vw;
    padding-left: 2.5vw;
    min-height: 10.714vw;
  }
}
@media print, screen and (min-width: 1601px) {
  #enterprise .flex_style .text {
    font-size: 19px;
    padding-left: 40px;
    min-height: 171px;
  }
}
@media only screen and (max-width: 768px) {
  #enterprise .flex_style .text {
    font-size: 2.4vw;
    padding-left: 4.8vw;
    min-height: 16vw;
    padding-top: 0;
  }
}
@media screen and (max-width: 1600px) {
  #enterprise .hexagon_btn_wrap {
    margin-left: 3.429vw;
  }
}
@media print, screen and (min-width: 1601px) {
  #enterprise .hexagon_btn_wrap {
    margin-left: 55px;
  }
}
@media only screen and (max-width: 768px) {
  #enterprise .hexagon_btn_wrap {
    margin-left: 3.067vw;
  }
}

@media screen and (max-width: 1600px) {
  #project {
    width: 44.286vw;
  }
}
@media print, screen and (min-width: 1601px) {
  #project {
    width: 709px;
  }
}
@media only screen and (max-width: 768px) {
  #project {
    width: auto;
  }
}
@media screen and (max-width: 1600px) {
  #project .flex_style {
    margin: 2.571vw 0 0;
  }
}
@media print, screen and (min-width: 1601px) {
  #project .flex_style {
    margin: 41px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  #project .flex_style {
    margin: 4.8vw 0 0;
  }
}
#project .flex_style .ttl_text {
  letter-spacing: -0.01em;
}
@media screen and (max-width: 1600px) {
  #project .flex_style .ttl_text {
    width: 21.071vw;
  }
}
@media print, screen and (min-width: 1601px) {
  #project .flex_style .ttl_text {
    width: 337px;
  }
}
@media only screen and (max-width: 768px) {
  #project .flex_style .ttl_text {
    width: auto;
    margin-bottom: 4vw;
  }
}
#project .flex_style .text {
  margin-top: 0;
  padding-top: 0.2em;
}
@media screen and (max-width: 1600px) {
  #project .flex_style .text {
    font-size: 1.214vw;
    padding-left: 2.5vw;
    min-height: 13.571vw;
  }
}
@media print, screen and (min-width: 1601px) {
  #project .flex_style .text {
    font-size: 19px;
    padding-left: 40px;
    min-height: 217px;
  }
}
@media only screen and (max-width: 768px) {
  #project .flex_style .text {
    font-size: 2.4vw;
    padding-left: 4.8vw;
    min-height: 16vw;
    padding-top: 0;
  }
}
@media only screen and (max-width: 768px) {
  #project .hexagon_btn_wrap {
    margin-left: 3.067vw;
  }
}

#news {
  padding-bottom: 95px;
}
@media only screen and (max-width: 768px) {
  #news {
    padding-bottom: 16vw;
  }
}
#news .sect_inner {
  margin-top: -217px;
  padding-top: 200px;
}
@media only screen and (max-width: 768px) {
  #news .sect_inner {
    margin-right: 5.333vw;
    margin-top: -21.333vw;
    padding-top: 24vw;
  }
}
#news .ttl_image img {
  width: 259px;
  height: 45px;
  height: auto;
}
@media only screen and (max-width: 768px) {
  #news .ttl_image img {
    width: 34.267vw;
  }
}
#news .flex_style {
  display: flex;
  margin: 55px 0 135px;
}
@media only screen and (max-width: 768px) {
  #news .flex_style {
    display: block;
    margin: 6vw 0 12.667vw;
  }
}
#news .flex_style .ttl_text {
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  padding-right: 1em;
  width: 158px;
}
@media only screen and (max-width: 768px) {
  #news .flex_style .ttl_text {
    font-size: 4vw;
    margin-bottom: 4.533vw;
  }
}
#news .flex_style ul {
  padding-left: 40px;
  border-left: 2px solid #8f8d24;
  width: calc(100% - 158px);
}
@media only screen and (max-width: 768px) {
  #news .flex_style ul {
    width: auto;
    padding-left: 5.333vw;
    margin-left: 6vw;
  }
}
#news .flex_style ul li {
  position: relative;
}
#news .flex_style ul li .label {
  border-bottom: 1px solid #2d6fbc;
  position: relative;
  line-height: 1;
}
#news .flex_style ul li .label span {
  background-color: #2d6fbc;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  width: 110px;
  height: 26px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #news .flex_style ul li .label span {
    font-size: 2.133vw;
    line-height: 1;
    width: 14.667vw;
    height: 3.333vw;
  }
}
#news .flex_style ul li .label::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 110px;
  bottom: 0;
  border-bottom: solid 12px #2d6fbc;
  border-left: solid 12px #2d6fbc;
  border-top: solid 12px transparent;
  border-right: solid 12px transparent;
  border-width: 13px;
}
@media only screen and (max-width: 768px) {
  #news .flex_style ul li .label::after {
    left: 14.667vw;
    border-width: 1.733vw;
  }
}
#news .flex_style ul li.recruit .label {
  border-bottom: 1px solid #2d6fbc;
}
#news .flex_style ul li.recruit .label span {
  background-color: #2d6fbc;
  letter-spacing: 1em;
  padding-left: 1em;
}
#news .flex_style ul li.notice .label {
  border-bottom: 1px solid #8f8d24;
}
#news .flex_style ul li.notice .label span {
  background-color: #8f8d24;
  letter-spacing: 0.2em;
  padding-left: 0.2em;
}
#news .flex_style ul li.notice .label::after {
  border-bottom-color: #8f8d24;
  border-left-color: #8f8d24;
}
#news .flex_style ul li .article {
  display: flex;
  font-size: 22px;
  padding: 35px 40px 35px 0;
}
@media screen and (max-width: 1200px) {
  #news .flex_style ul li .article {
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  #news .flex_style ul li .article {
    font-size: 2.933vw;
    width: 100%;
    padding: 4.667vw 0 4.667vw;
  }
}
#news .flex_style ul li .article .date {
  width: 180px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  #news .flex_style ul li .article .date {
    width: 24vw;
  }
}
#news .flex_style ul li .article .cont {
  width: calc(100% - 180px);
}
@media only screen and (max-width: 768px) {
  #news .flex_style ul li .article .cont {
    width: calc(100% - 24vw);
  }
}
#news .flex_style ul li .article .cont a[href] {
  text-decoration: underline;
  color: #2d6fbc;
}
@media screen and (min-width: 769px) {
  #news .flex_style ul li .article .cont a[href]:hover {
    text-decoration: none;
  }
}
@media only screen and (max-width: 768px) {
  #news .flex_style ul li:last-child .article {
    padding-bottom: 0;
  }
}

a.btn {
  display: block;
  background-color: #000;
  border: 2px solid #000;
  color: #fff;
  font-size: 25px;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  margin: auto;
  padding: 25px 65px 26px;
  max-width: 490px;
  position: relative;
  transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  a.btn {
    font-size: 4vw;
    padding: 3.333vw 0 3.467vw;
    width: 80vw;
  }
}
a.btn::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-right: solid 2px #fff;
  border-bottom: solid 2px #fff;
  top: 50%;
  right: 28px;
  margin-top: -5px;
  transform: rotate(-45deg);
  transition: 0.6s;
}
@media only screen and (max-width: 768px) {
  a.btn::after {
    width: 1.867vw;
    height: 1.867vw;
    border-right: solid 2px #fff;
    border-bottom: solid 2px #fff;
    margin-top: -0.933vw;
  }
}
@media screen and (min-width: 769px) {
  a.btn:hover {
    background-color: transparent;
    border: 2px solid #000;
    color: #000;
  }
  a.btn:hover::after {
    border-right: solid 2px #000;
    border-bottom: solid 2px #000;
    right: 23px;
  }
}

@media only screen and (max-width: 768px) {
  #index a.btn {
    width: 65.333vw;
    margin-left: 8.667vw;
  }
}

a.btn2 {
  display: block;
  background: url(../img/top/btn2_arw.png) right 14% center no-repeat;
  background-color: #fff;
  border: 1px solid #2b242d;
  border-radius: 100vh;
  color: #2268ba;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  text-align: left;
  margin: auto;
  padding: 25px 65px 26px;
  width: 350px;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 1600px) {
  a.btn2 {
    width: 25vw;
    font-size: 1.714vw;
    padding: 1.786vw 4.643vw 1.857vw;
    background-size: 9.929vw auto;
    background-position: right 3.429vw center;
    margin-top: 6.429vw;
  }
}
@media print, screen and (min-width: 1601px) {
  a.btn2 {
    width: 400px;
    font-size: 27px;
    padding: toFRLL(25) 74px 30px;
    background-size: 159px auto;
    background-position: right 55px center;
    margin-top: 103px;
  }
}
@media only screen and (max-width: 768px) {
  a.btn2 {
    width: 46.133vw;
    font-size: 3.2vw;
    padding: 3.333vw 8.667vw 3.333vw;
    background-size: 18.533vw auto;
    background-position: right 6vw center;
    margin-top: 6.667vw;
  }
}
@media screen and (min-width: 769px) {
  a.btn2:hover {
    filter: brightness(120%);
    background-position: right 2.714vw center;
  }
}

/* -----------------------------
modal
------------------------------*/
.overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 98;
  display: none;
}

.overlay .modal {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.overlay .close {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  right: -45px;
  top: -45px;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .overlay .close {
    right: 0;
  }
}
.overlay .close::before, .overlay .close::after {
  position: absolute;
  top: 50%;
  left: 0;
  background-color: #fff;
}
.overlay .close::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  transform: rotate(45deg);
  color: #fff;
}
.overlay .close::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  transform: rotate(-45deg);
  color: #fff;
}

.link_pop {
  display: none;
  position: absolute;
  position: fixed;
  z-index: 99;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 1px solid #000;
  background-color: #fff;
  padding: 50px;
  text-align: center;
  width: 750px;
  height: 380px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .link_pop {
    width: 100%;
    height: auto;
  }
}
.link_pop p {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.7;
}
@media only screen and (max-width: 768px) {
  .link_pop p {
    font-size: 4.533vw;
  }
}
.link_pop p em {
  font-size: 32px;
  color: #004e8f;
}
@media only screen and (max-width: 768px) {
  .link_pop p em {
    font-size: 5.333vw;
  }
}
.link_pop .pop_btn_wrap {
  display: flex;
  justify-content: center;
  width: 600px;
  margin: 55px auto 0;
}
@media only screen and (max-width: 768px) {
  .link_pop .pop_btn_wrap {
    display: block;
    width: auto;
    margin: 6.667vw auto 0;
  }
}
.link_pop .pop_btn {
  cursor: pointer;
  display: block;
  background-color: #000;
  border: 2px solid #000;
  color: #fff;
  font-size: 22px;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  margin: auto;
  padding: 12px 65px 13px;
  width: 288px;
  position: relative;
  transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  .link_pop .pop_btn {
    font-size: 4vw;
    padding: 3.333vw 0 3.467vw;
    width: auto;
  }
}
.link_pop .pop_btn::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-right: solid 2px #fff;
  border-bottom: solid 2px #fff;
  top: 50%;
  right: 28px;
  margin-top: -5px;
  transform: rotate(-45deg);
  transition: 0.6s;
}
@media only screen and (max-width: 768px) {
  .link_pop .pop_btn::after {
    width: 1.867vw;
    height: 1.867vw;
    margin-top: -0.933vw;
  }
}
@media screen and (min-width: 769px) {
  .link_pop .pop_btn:hover {
    opacity: 0.8;
  }
}
.link_pop .pop_btn.open_link {
  background-color: #004e8f;
  border-color: #004e8f;
}
@media only screen and (max-width: 768px) {
  .link_pop .pop_btn.open_link {
    margin-bottom: 2vw;
  }
}

.open_pop {
  cursor: pointer;
}

/* -----------------------------
side_nav
------------------------------*/
.side_nav {
  position: fixed;
  z-index: 9;
  right: 0;
  top: 80px;
  opacity: 0;
  transition: 0.5s;
}
@media screen and (max-width: 1600px) {
  .side_nav {
    right: calc(50% - 46.429vw);
  }
}
@media print, screen and (min-width: 1601px) {
  .side_nav {
    right: calc(50% - 750px);
  }
}
@media only screen and (max-width: 768px) {
  .side_nav {
    top: 42.667vw;
    right: 4.533vw;
  }
}
.side_nav .side_ring {
  width: 182px;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .side_nav .side_ring {
    width: 24vw;
  }
}
.side_nav .side_arw {
  width: 18px;
  position: absolute;
  right: 37%;
  top: 118px;
}
@media only screen and (max-width: 768px) {
  .side_nav .side_arw {
    width: 2.4vw;
    top: 15.733vw;
  }
}
.side_nav .side_arw img {
  visibility: hidden;
  opacity: 0;
  height: 0;
}
.side_nav.fixed {
  position: fixed;
  top: 80px;
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .side_nav.fixed {
    top: 42.667vw;
  }
}
.side_nav.fixed .side_arw.is-active {
  opacity: 1;
  visibility: visible;
  transition: height 1s ease-out, opacity 0.1s linear 0.1s, visibility 0.1s linear 0.1s;
}
.side_nav.fixed .side_arw.is-active img {
  opacity: 1;
  visibility: visible;
  width: auto;
  height: 643px;
  transition: height 1s ease-out, opacity 0.1s linear 0.1s, visibility 0.1s linear 0.1s;
}
@media only screen and (max-width: 768px) {
  .side_nav.fixed .side_arw.is-active img {
    width: auto;
    height: 85.733vw;
  }
}
.side_nav.fixed .side_arw.is-active.company img {
  height: 564px;
}
@media only screen and (max-width: 768px) {
  .side_nav.fixed .side_arw.is-active.company img {
    height: 75.2vw;
  }
}
.side_nav.fixed .side_arw.is-active.recruit img {
  height: 547px;
}
@media only screen and (max-width: 768px) {
  .side_nav.fixed .side_arw.is-active.recruit img {
    height: 72.933vw;
  }
}
.side_nav.fixed .side_arw.is-active.newgrad img {
  height: 646px;
}
@media only screen and (max-width: 768px) {
  .side_nav.fixed .side_arw.is-active.newgrad img {
    height: 86.133vw;
  }
}
.side_nav.fixed .side_arw.is-active.news img {
  height: 428px;
}
@media only screen and (max-width: 768px) {
  .side_nav.fixed .side_arw.is-active.news img {
    height: 57.067vw;
  }
}

.side_arw.act.is-hide {
  opacity: 0;
  height: 0;
}