@charset "UTF-8";
/* ==========================================================================
   Setting
========================================================================== */
:root {
  --white: #FFF;
  --black: #212529;
  --d-gray: #39424a;
  --dd-gray: #2d3237;
  --gray: #8D949C;
  --color1: #088888;
  --color1_l: #E0F0F0;
  --color1_d: #077b7b;
  --color1_dd: #067272;
  --color2: #107799;
  --color2_d: #0C6B8A;
  --color2_dd: #085C78;
  --l-gray: #F7F7F7;
  --l-gray2: #EEE;
  --border1: #E8E8E8;
  --border2: #D8D8D8;
  --font1: "Outfit", sans-serif;
  --grid-gap: min(6vw, 45px);
  --grid-gapM: min(4vw, calc(45px*0.75));
  --grid-gapS: min(3vw, calc(45px*0.5));
}
/* ==========================================================================
   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;
  transform: translateY(1.5rem);
  transition: .3s ease-in-out;
  transition-property: opacity transform;
}
.iv.show {
  opacity: 1;
  transform: translateY(0);
}

@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: min(3.4vw, 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter Tight", "Noto Sans JP", sans-serif;
  line-height: 2;
  color: var(--black);
}
#container, #content {
  overflow: hidden;
}
/* ==========================================================================
   Header
========================================================================== */
#siteHeader {
  color: var(--black);
  height: 68px;
  font-size: 1.25rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: background .3s, height .2s;
}
#siteHeader.fixed {
  position: fixed;
  background: rgba(255, 255, 255, .95);
}
body.gNavOpen #siteHeader.fixed {
  animation: none;
}
body:has(#mv) #siteHeader:not(.fixed) {
  color: var(--white);
}
.inner-header {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: min(2.5vw, 25px);
  padding: 0 var(--grid-gap);
}

#logo {
  margin: 0;
  flex: 0 1 165px;
  position: relative;
  font-size: .625rem;
  line-height: 1;
  transform: translateY(-9%);
}
#logo .logo__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: inherit;
  position: relative;
  transition: .2s;
}
#logo .logo__inner svg {
  width: 100%;
  aspect-ratio: 40/7;
  display: block;
  vertical-align: bottom;
  color: var(--color1);
}
body:has(#mv) #siteHeader:not(.fixed) #logo .logo__inner svg {
  color: inherit;
}
#logo a span {
  display: block;
  font-weight: 700;
}
@media (min-width: 768px) {
  #siteHeader {
    height: 90px;
  }
  #logo {
    flex: 0 0 180px;
  }
}
@media (min-width: 992px) {
  #siteHeader {
    height: 115px;
    font-size: min(1.15vw, 1rem);
  }
  #siteHeader.fixed {
    height: 90px;
  }
  #logo {
    flex: 0 0 246px;
  }
}
/* ==========================================================================
   Global Navigation
========================================================================== */
nav a {
  display: block;
  text-decoration: none;
}
nav ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  row-gap: .5em;
  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%;
  font-weight: 700;
}
.gNav__inner {
  display: flex;
  width: 100%;
}
.gNav .navBar {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.gNav .navBar ul {
  display: flex;
  margin: 0;
}
.gNav .navBar ul li a {
  display: flex;
  align-items: center;
  gap: .5em;
}
.gNav .navBar ul li a::before {
  content: attr(data-en);
  font-family: var(--font1);
  font-size: .625em;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .1em;
  display: block;
}
.gNav .navBar ul li a span {
  display: block;
  line-height: 1;
}
/* ==========================================================================
   PC Global Navigation
========================================================================== */
@media(min-width: 992px) {
  .gNav {
    display: block !important;
  }
  .gNav .navBar ul li a {
    flex-direction: column-reverse;
  }
  .gNav .navBar ul li a::before {
    color: var(--color1);
  }
  body:has(#mv) #siteHeader:not(.fixed) .gNav .navBar ul li a::before {
    color: inherit;
  }
  .nav-btn {
    display: none;
  }
}

/* ==========================================================================
   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: .8s .2s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition-property: opacity transform;
  }
  .gNav ul.main-nav > li {
    border-bottom: 1px solid var(--color3);
  }
  .gNav ul.main-nav > li > .menu-parent {
    padding: 1.5em 0;
    position: relative;
  }
  .gNav .navBar ul li a {
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  /* OPEN */
  .gNav.on .gNav__inner {
    opacity: 1;
    height: 100vh;
  }
  .gNav.on ul {
    opacity: 1;
    transform: translateY(0);
  }
  /* Nav Btn */
  .nav-btn {
    color: inherit;
    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;
  }
}

@media(min-width: 768px) and (max-width: 991px) {
  .gNav .navBar > ul {
    margin: 90px 45px 30px;
  }
  .nav-btn {
    width: 90px;
    height: 90px;
  }
}

/* ==========================================================================
   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(--d-gray);
  color: var(--white);
  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%23FFF%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(--black);
  color: var(--white);
}
#siteFooter .inner-footer {
  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 var(--color3);
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-size: .75rem;
}
#siteFooter .footer-bottom nav ul {
  justify-content: center;
  margin-bottom: 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-bottom: 0;
  }
}
@media(min-width: 992px) {
  #siteFooter .logo__inner {
    margin-bottom: 0;
  }
}

/* ==========================================================================
   Footer Navigation
========================================================================== */
.fNav .navBar > ul {
  justify-content: center;
}
.fNav .navBar > ul > li > a {
  font-weight: 600;
  width: 100%;
}
.fNav .sub-menu ul li {
  flex-basis: 100%;
  font-size: .867em;
}
@media(min-width: 576px) {
  .fNav .navBar > ul {
    font-size: .875rem;
  }
}
@media(min-width: 992px) {
  .fNav .navBar > ul {
    justify-content: flex-end;
  }
}
