@charset "UTF-8";
/* ==========================================================================
   Setting
========================================================================== */ :root {
  --white: #FFF;
  --l-gray: #F4FAFF;
  --gray: #AAA;
  --d-gray: #888;
  --black: #111;
  --border1: #DDD;
  --color1: #2C9EF5;
  --color2: #005FA7;
  --red: #dd301d;
  --font1: 'Jost', sans-serif;
  --font2: 'Barlow', sans-serif;
  --mincho: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
/* ==========================================================================
   Loading
========================================================================== */
body #container::before {
  content: '';
  width: 100%;
  height: 100%;
  background: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 105;
  transition: 1s cubic-bezier(.39, .575, .565, 1);
}
body.loaded #container::before {
  opacity: 0;
  pointer-events: none;
}
/* ==========================================================================
   Animation
========================================================================== */
.iv {
  opacity: 0;
}
.delay02 {
  animation-delay: 0.2s;
}
.delay04 {
  animation-delay: 0.4s;
}
.delay06 {
  animation-delay: 0.6s;
}
.delay08 {
  animation-delay: 0.8s;
}
.delay10 {
  animation-delay: 1.0s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes btnIcon {
  0% {
    opacity: 1;
    right: calc(2rem - 4px);
  }
  60% {
    right: 0;
    opacity: 1;
  }
  100% {
    right: 0;
    opacity: 0;
  }
}
/* ==========================================================================
   Base
========================================================================== */
html {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
@media (max-width: 374px) {
  html {
    font-size: 4.25vw;
  }
}
@media (min-width: 1440px) {
  html {
    font-size: 110%;
  }
}
@media (min-width: 1760px) {
  html {
    font-size: 120%;
  }
}

body {
  font-family: sans-serif;
  line-height: 2;
  letter-spacing: .04em;
  color: var(--black);
}
@media (min-width: 992px) {
  body {
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  }
}
main {
  font-size: .875rem;
}
#container, #content {
  overflow: hidden;
}
/* ==========================================================================
   Header
========================================================================== */
#siteHeader {
  color: var(--white);
  height: 68px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: background .3s, height .2s;
}
#siteHeader.fixed {
  color: var(--black);
  position: fixed;
  animation-name: fadeIn;
  animation-duration: 0.3s;
}
body.gNavOpen #siteHeader.fixed {
  animation: none;
}
#siteHeader.fixed {
  background: rgba(255, 255, 255, .95);
}
#siteHeader.fixed #logo .logo__inner img.logo-color {
  opacity: 1;
}
.inner-header {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#logo {
  margin: 0;
  flex: 0 1 165px;
  max-width: 165px;
  position: relative;
}
#logo .logo__inner {
  display: block;
  color: inherit;
  margin: 0 15px;
  position: relative;
}
#logo .logo__inner img {
  display: block;
  vertical-align: bottom;
}
#logo .logo__inner img.logo-color {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: opacity .3s;
}
@media (min-width: 768px) {
  #siteHeader {
    height: 90px;
  }
  #logo {
    flex: 0 0 180px;
    max-width: 180px;
  }
  #logo .logo__inner {
    margin: 0 20px;
  }
}
@media (min-width: 992px) {
  #siteHeader {
    height: 115px;
  }
  #siteHeader:hover {
    color: var(--black);
    background: rgba(255, 255, 255, .95);
  }
  #siteHeader:hover #logo .logo__inner img.logo-color {
    opacity: 1;
  }
  #logo {
    flex: 0 0 246px;
    max-width: 246px;
  }
  #logo .logo__inner {
    margin: 0 30px;
  }
}
/* ==========================================================================
   Global Navigation
========================================================================== */
nav a {
  display: block;
  text-decoration: none;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 0;
  margin: 0;
}
nav ul li a {
  display: block;
  color: inherit;
  text-decoration: none;
  line-height: 1.25;
  padding: .75em 0;
}
nav ul li ul.sub-menu li a, nav ul li ul.children li a {
  padding-left: 30px;
}
nav ul li a span, nav ul li a em {
  display: block;
  font-style: normal;
}
.gNav {
  flex: 1 1 100%;
  max-width: 100%;
  height: 100%;
}
.gNav__inner {
  display: flex;
  width: 100%;
  height: 100%;
}
.gNav .navBar {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  font-size: .75em;
}
.gNav .navBar ul {
  display: flex;
  margin: 0;
}
.gNav .navBar ul li a span {
  display: block;
  line-height: 1;
}
.gNav ul.main-nav > li > .menu-parent {
  display: flex;
  padding: 0;
  align-items: center;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: .16em;
}
.gNav ul.main-nav > li > .menu-parent .slug {
  font-weight: 400;
}
.gNav ul.main-nav > li > .menu-parent .slug ~ span, .gNav .navBar .sub-menu > ul > li > a .slug ~ span, .gNav .navBar .sub-menu .sub-menu-parent .slug ~ span {
  display: block;
  font-size: .917em;
}
/* Sub Navigation */
.gNav .navBar .sub-nav li a {
  background: var(--color1);
}
/* Sub menu */
.gNav .main-nav > .has-children > .sub-menu {
  background: var(--color1);
  color: var(--white);
}
.gNav .main-nav > .has-children > .sub-menu .menu-img {
  height: 100%;
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
/* ==========================================================================
   PC Global Navigation
========================================================================== */
@media(min-width: 992px) {
  .gNav {
    display: block !important;
  }
  .gNav .navBar {
    margin-right: 30px;
  }
  .gNav ul.main-nav .slug {
    font-size: 1.167em;
  }
  .gNav ul.main-nav .slug ~ span {
    margin-top: 1em;
  }
  .gNav ul.main-nav {
    justify-content: flex-end;
  }
  .gNav ul.main-nav > li > .menu-parent {
    height: 100%;
    text-align: center;
    padding: 0 2vw;
    position: relative;
    overflow: hidden;
  }
  .gNav ul.main-nav > li.has-children > .menu-parent::before {
    content: '';
    width: 3px;
    height: 0;
    background: var(--color1);
    position: absolute;
    top: calc(50% + 2.25em);
    left: 50%;
    transform: translateX(-50%);
    transition: height .2s;
  }
  .gNav ul.main-nav > li.has-children > .menu-parent:hover::before {
    height: calc((115px /2) - 2.25em);
  }
  .gNav ul.main-nav > li:not(.has-children) > .menu-parent::before {
    content: '';
    width: 0;
    height: 3px;
    background: var(--color1);
    position: absolute;
    top: calc(50% + 2.25em);
    left: 50%;
    transform: translateX(-50%);
    transition: width .2s;
  }
  .gNav ul.main-nav > li:not(.has-children) > .menu-parent:hover::before {
    width: calc((115px /2) - 2.25em);
  }
  .gNav ul.main-nav > li > .menu-parent .slug {
    font-size: 1.167em;
  }
  .gNav ul.main-nav > li > .menu-parent .slug ~ span {
    margin-top: .75em;
  }
  #siteHeader.fixed .gNav ul.main-nav > li > .menu-parent .slug ~ span, #siteHeader:hover .gNav ul.main-nav > li > .menu-parent .slug ~ span {
    color: var(--gray);
  }
  .gNav ul.main-nav > li > .sub-menu {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    transition: opacity .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  }
  .gNav ul.main-nav > li:hover > .sub-menu {
    display: block !important;
    opacity: 1;
    pointer-events: auto;
  }
  .gNav.megaMenu ul.main-nav > li > .sub-menu {
    top: 100%;
    right: 0;
    left: 0;
  }
  .gNav.megaMenu ul.main-nav > li > .sub-menu > ul {
    padding: 2vw 1vw;
  }
  .gNav.megaMenu ul.main-nav > li > .sub-menu > ul > li {
    border-right: 1px solid currentColor;
    padding: 0 2vw;
    margin: 2vw 0;
    flex: 0 0 33.33333%;
  }
  .gNav.megaMenu ul.main-nav > li > .sub-menu > ul > li:nth-of-type(1), .gNav.megaMenu ul.main-nav > li > .sub-menu > ul > li:nth-of-type(2), .gNav.megaMenu ul.main-nav > li > .sub-menu > ul > li:nth-of-type(3) {
    margin: 2vw 0 0;
  }
  .gNav ul.main-nav > li > .sub-menu > ul > li:nth-of-type(3n), .gNav ul.main-nav > li > .sub-menu > ul > li:last-of-type {
    border-right: none;
  }
  .gNav ul.main-nav > li > .menu-parent, .gNav ul.main-nav > li > .sub-menu > ul > li > a, .gNav ul.main-nav > li > .sub-menu .sub-menu-parent {
    flex-direction: column;
    justify-content: center;
    font-weight: 600;
    line-height: 1;
  }
  .gNav ul.main-nav > li > .sub-menu > ul > li > a, .gNav ul.main-nav > li > .sub-menu .sub-menu-parent {
    align-items: flex-start;
    padding: 0;
  }
  .gNav ul.main-nav > li > .sub-menu > ul > li > a {
    align-items: flex-start;
    font-weight: normal;
  }
  .gNav .sub-menu > ul > li > a.view-more {
    padding: 1em 0 !important;
    margin-top: 1em;
  }
  .gNav .sub-menu .sub-menu > ul > li {
    flex: 0 0 100%;
  }
  .gNav .sub-menu .sub-menu > ul > li a {
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding: 0.8em 0;
    position: relative;
  }
  .gNav .sub-menu .sub-menu > ul > li a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 1px;
    background: currentColor;
  }
  .gNav .sub-menu .sub-menu {
    margin-top: 1em;
  }
  .gNav .sub-menu .sub-menu.first {
    margin: 1em 0 3em 0;
  }
  .gNav .sub-menu .sub-menu > ul > li > a.view-more {
    margin-top: 0;
  }
  .gNav .sub-menu .sub-menu > ul > li a::after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 100%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .gNav .sub-menu .sub-menu > ul > li a:hover::after {
    animation: btnIcon 1.5s infinite cubic-bezier(0.61, 1, 0.88, 1);
  }
  .nav-btn {
    display: none;
  }
}
@media(min-width: 992px) {
  .gNav.megaMenu ul.main-nav > .has-children > .sub-menu {
    padding-left: 22vw;
    padding-bottom: 2vw;
  }
  .gNav.megaMenu ul.main-nav > .has-children > .sub-menu .menu-img {
    display: block;
    width: 22vw;
  }
  .gNav.megaMenu ul.main-nav > .has-children > .sub-menu > ul {
    padding: 2vw .25vw;
  }
}

@media(min-width: 992px) {
  .gNav.megaMenu ul.main-nav > .has-children.menu-block-service > .sub-menu {
    display: flex !important;
  }
  .gNav.megaMenu ul.main-nav > .has-children.menu-block-service > .sub-menu > ul:nth-of-type(1) li {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .gNav.megaMenu ul.main-nav > .has-children.menu-block-service > .sub-menu > ul:nth-of-type(2) {
    max-width: calc(56em + 8vw);
  }
  .gNav.megaMenu ul.main-nav > .has-children.menu-block-service > .sub-menu > ul > li {
    flex: 0 0 50%;
    border-right: 1px solid currentColor!important;
  }
  .gNav.megaMenu ul.main-nav > .has-children.menu-block-service > .sub-menu > ul > li:nth-of-type(even) {
    border-right: 0!important;
  }
}
@media(min-width: 1440px) {
  .gNav.megaMenu ul.main-nav > .has-children > .sub-menu > ul {
    padding: 1vw 1vw;
  }
  .gNav.megaMenu ul.main-nav > .has-children > .sub-menu > ul > li {
    flex: 0 0 25%;
  }
}
/* ==========================================================================
   SP Global Navigation
========================================================================== */
@media(max-width: 991px) {
  .gNav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    display: none;
  }
  .gNav__inner {
    background: var(--color1);
    color: var(--white);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    opacity: 0;
    height: 0;
    transition: all 1s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  }
  .gNav .navBar {
    flex-direction: column;
    justify-content: flex-start;
    height: 100vh;
    overflow-y: auto;
  }
  .gNav .navBar .slug {
    font-size: 1.333em;
    margin-right: 1em;
  }
  .gNav .navBar > ul {
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    margin: 68px 30px 30px;
    transition: opacity 1s .4s cubic-bezier(0.190, 1.000, 0.220, 1.000), transform 1s .4s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  }
  .gNav ul.main-nav > li {
    border-bottom: 1px solid rgba(255,255,255,0.3);
  }
  .gNav ul.main-nav > li > .menu-parent {
    padding: 1.5em 0;
    position: relative;
  }
  .gNav ul.main-nav > li.has-children > a::before, .gNav ul.main-nav > li.has-children > a::after {
    content: '';
    display: block;
    width: .833em;
    height: 1px;
    background: var(--white);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: transform .2s;
  }
  .gNav ul.main-nav > li.has-children > a::after {
    transform: translateY(-50%) rotate(90deg);
  }
  .gNav ul.main-nav > li.has-children.on > a::after {
    transform: translateY(-50%) rotate(0);
  }
  .gNav ul.main-nav > li > .sub-menu {
    padding-bottom: 1.5em;
    display: none;
  }
  .gNav ul.main-nav .sub-menu ul li {
    flex: 0 0 50%;
  }
  .gNav ul.main-nav li .sub-menu ul li.has-children {
    flex: 0 0 100%;
  }
  .gNav ul.main-nav .sub-menu ul li .slug, .gNav ul.main-nav .sub-menu ul li .view-more {
    display: none !important;
  }
  .gNav ul.main-nav .menu-block-service .sub-menu ul li {
    flex: 0 0 100%;
  }

  /* OPEN */
  .gNav.on .gNav__inner {
    opacity: 1;
    height: 100vh;
  }
  .gNav.on ul {
    opacity: 1;
    transform: translateY(0);
  }
  /* Nav Btn */
  .nav-btn {
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 68px;
    height: 68px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    transition: .5s;
  }
  body.gNavOpen .nav-btn {
    position: fixed;
  }
}

.nav-btn i {
  display: block;
  background: currentColor;
  width: 18px;
  height: 2px;
  position: absolute;
  right: 0;
  left: 0;
  margin: -1px auto 0;
  transition: transform .3s;
}
.nav-btn i:nth-of-type(1) {
  top: calc(50% - 4px);
}
.nav-btn i:nth-of-type(2) {
  top: calc(50% + 4px);
}
.nav-btn.on i:nth-of-type(1) {
  top: 50%;
  transform: rotate(45deg);
}
.nav-btn.on i:nth-of-type(2) {
  top: 50%;
  transform: rotate(135deg);
}
#siteHeader.fixed .nav-btn {
  color: var(--color2);
}
.nav-btn.on {
  color: var(--white) !important;
}
/* Sub Navigation */
.gNav .navBar ul.sub-nav {
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 30px 30px;
}
.gNav .navBar ul.sub-nav li {
  flex: 0 0 50%;
}
@media(min-width: 576px) and (max-width: 991px) {
  .gNav ul.main-nav .sub-menu ul li {
    flex: 0 0 33.33333%;
  }
}
@media(min-width: 768px) and (max-width: 991px) {
  .gNav .navBar > ul {
    margin: 90px 45px 30px;
  }
  .nav-btn {
    width: 90px;
    height: 90px;
  }
  .gNav .navBar ul.sub-nav {
    margin: 0 45px 30px;
  }
}
/* ==========================================================================
   Fixed contents
========================================================================== */
#recruit-fixed-link {
  width: 100vw;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 99;
}
#recruit-fixed-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92vw;
  margin: 2vh auto;
  padding: .85em 1em;
  color: var(--color1);
  background: var(--white);
  border: 4px solid currentColor;
  border-radius: 3em;
  font-weight: 600;
  line-height: 1.5;
}
#recruit-fixed-link a::before {
  content: '';
  display: block;
  width: 1.25em;
  height: 1.25em;
  margin-right: .5em;
  background: url(../img/icon-search.svg) no-repeat center center / contain;
}
#recruit-fixed-link a:hover {
  color: var(--color2);
}
#recruit-fixed-link a > span {
  display: inline-block;
}
@media(min-width: 768px) {
  #recruit-fixed-link {
    width: auto;
  }
  #recruit-fixed-link a {
    flex-direction: column;
    width: 10.75em;
    height: 10.75em;
    margin: 2vw;
    border-radius: 50%;
    font-size: .875rem;
  }
  #recruit-fixed-link a::before {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0;
    margin-bottom: .5em;
  }
}
@media(min-width: 992px) {
  #recruit-fixed-link a {
    border-width: 6px;
  }
}

/* ==========================================================================
   Breadcrumb
========================================================================== */
.breadcrumb-wrapper {
  background: var(--l-gray);
  overflow: hidden;
  padding: .75em 0;
}
#breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: .813rem;
  line-height: 1.25;
}
#breadcrumb ol li {
  padding: .75em 0;
  display: flex;
  align-items: center;
}
#breadcrumb ol li a {
  display: inline-block;
}
#breadcrumb ol .separator {
  display: block;
  padding: .5em .75em;
}
#breadcrumb ol .separator::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 9px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225%22%20height%3D%229%22%20viewBox%3D%220%200%205%209%22%3E%3Cpath%20d%3D%22M10.689%2C14.739l3.4-3.309a.654.654%2C0%2C0%2C1%2C.908%2C0%2C.618.618%2C0%2C0%2C1%2C0%2C.885l-3.856%2C3.749a.656.656%2C0%2C0%2C1-.887.018L6.375%2C12.318a.616.616%2C0%2C0%2C1%2C0-.885.654.654%2C0%2C0%2C1%2C.908%2C0Z%22%20transform%3D%22translate(-11.246%2015.188)%20rotate(-90)%22%20fill%3D%22%23111%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
/* ==========================================================================
   #group-company
========================================================================== */
#group-company ul {
  margin-top: 1em;
}
#group-company ul li {
  margin: 1em 0;
}
#group-company ul li a {
  display: block;
}
/* ==========================================================================
   Footer
========================================================================== */
#siteFooter {
  clear: both;
  overflow: hidden;
  background: var(--color2);
  color: var(--white);
}
#siteFooter nav ul li a {
  padding: .75em 1em;
}
#siteFooter .inner-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
#siteFooter .logo__inner {
  display: inline-block;
  color: inherit;
  margin: 0 0 2.5em 0;
}
#siteFooter .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-size: .75rem;
}
#siteFooter .footer-bottom nav ul {
  justify-content: center;
  margin: 0 -15px 1em;
}
#siteFooter .copyright {
  text-align: center;
}
@media(min-width: 576px) {
  #siteFooter .footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #siteFooter .footer-bottom nav ul {
    margin: 0 -1em;
  }
}
/* ==========================================================================
   Footer Navigation
========================================================================== */
.fNav .navBar {
  font-size: .938rem;
}
.fNav .navBar > ul {
  margin-right: -1em;
  margin-left: -1em;
}
.fNav .navBar > ul.sub-nav {
  margin-top: 2em;
}
.fNav .navBar > ul > li {
  flex-basis: 50%;
}
.fNav .navBar > ul.sub-nav > li {
  flex-basis: 100%;
  padding: 0 1em;
  margin-bottom: .75em;
}
.fNav .navBar > ul > li > a {
  font-weight: 600;
  width: 100%;
}
.fNav .navBar > ul.sub-nav > li > a.btn {
  background: rgba(255,255,255,0);
  font-size: .867em;
  padding: 1em 0.75em !important;
  border: 1px solid #fff;
}
.fNav .navBar > ul.sub-nav > li > a.btn:hover {
  background: rgba(255,255,255,1);
  color: var(--color1);
}
.fNav .sub-menu ul li {
  flex-basis: 100%;
  font-size: .867em;
}
@media(min-width: 576px) {
  .fNav .navBar > ul > li {
    flex-basis: 50%;
  }
  .fNav .navBar > ul.sub-nav > li {
    flex-basis: 50%;
  }
}
@media(min-width: 768px) {
  .fNav .navBar > ul {
    flex-wrap: nowrap;
  }
  .fNav .navBar > ul > li {
    flex-basis: 100%;
  }
  .fNav .navBar > ul.sub-nav > li {
    max-width: 17.5em;
  }
}
