@charset "UTF-8";
/* CSS Document */
/*! Pushy - v1.1.0 - 2017-1-30
* Pushy is a responsive off-canvas navigation menu using CSS transforms & transitions.
* https://github.com/christophery/pushy/
* by Christopher Yee */
/* Menu Appearance */
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* min / max maps（OK） */
/* mixins（map キー存在チェックを追加すると安全） */
/* 個別 alias（必要なら） */
/* CSS Document */
/*! Pushy - v1.1.0 - 2017-1-30
* Pushy is a responsive off-canvas navigation menu using CSS transforms & transitions.
* https://github.com/christophery/pushy/
* by Christopher Yee */
/* Menu Appearance */
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* CSS Document */
/*! Pushy - v1.1.0 - 2017-1-30
* Pushy is a responsive off-canvas navigation menu using CSS transforms & transitions.
* https://github.com/christophery/pushy/
* by Christopher Yee */
/* Menu Appearance */
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* 色の定義
--------------------------------------------------*/
/* テキストパーツ
--------------------------------------------------*/
.white {
  color: #FFFFFF;
}

.blue {
  color: #006CB7;
}

.sky-blue {
  color: #009BDF;
}

.light-sky-blue {
  color: #E8F8FF;
}

.black {
  color: #2F3134;
}

.gray {
  color: #7A9098;
}

.light-gray {
  color: #D9D9D9;
}

.lighter-gray {
  color: #F4F7FB;
}

.text-shadow {
  color: 0 0 4px rgba(0, 0, 0, 0.25);
}

/* フォントの定義
--------------------------------------------------*/
html, body, ul, ol, dl, li, dt, dd, p, div, span, img, svg, a, table, tr, th, td, figure, button {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Noto Sans JP", "Yu Gothic", "游ゴシック体", sans-serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.65;
  color: #2F3134;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  html, body, ul, ol, dl, li, dt, dd, p, div, span, img, svg, a, table, tr, th, td, figure, button {
    font-size: 1.4rem;
  }
}

h1, h2, h3, h4 {
  font-family: inherit;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.65;
  color: #2F3134;
}

body {
  font-family: inherit;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.65;
}

html {
  font-size: 62.5%;
}

p {
  font-family: inherit;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.65;
  letter-spacing: 0.08em;
  color: #2F3134;
}
@media screen and (min-width: 769px) {
  p {
    font-size: 1.6rem;
    line-height: 1.65;
  }
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/*safari リセット*/
/* SPメニュー
--------------------------------------------------*/
body {
  position: relative;
}

#nav_head {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  height: 60px;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s;
  background-color: #fff;
}
@media screen and (max-width: 999px) {
  #nav_head {
    display: flex;
  }
}
#nav_head .header_logo_sp {
  position: relative;
  z-index: 10000;
  height: 50px;
  display: flex;
  align-items: center;
  max-width: 350px;
  min-width: 240px;
  width: 50%;
}
#nav_head .header_logo_sp a {
  display: block;
}
#nav_head .header_logo_sp a img {
  padding: 10px 0 5px 20px;
}
#nav_head .openbtn {
  /*reset*/
  background-color: #006CB7;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  /*reset*/
  display: none;
  position: relative;
  width: 60px;
  height: 60px;
  z-index: 10000;
  transition: 0.3s;
}
@media screen and (max-width: 999px) {
  #nav_head .openbtn {
    display: block;
  }
}
#nav_head .openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  background: #FFFFFF;
  width: 25px;
}
#nav_head .openbtn span:nth-of-type(1) {
  top: 16px;
}
#nav_head .openbtn span:nth-of-type(2) {
  top: 23px;
}
#nav_head .openbtn span:nth-of-type(3) {
  top: 30px;
}
#nav_head .openbtn.active span {
  width: 25px;
}
#nav_head .openbtn.active span:nth-of-type(1) {
  top: 18px;
  transform: translateY(6px) translateX(-50%) rotate(-45deg);
}
#nav_head .openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
#nav_head .openbtn.active span:nth-of-type(3) {
  top: 30px;
  transform: translateY(-6px) translateX(-50%) rotate(45deg);
}
#nav_head .openbtn .menu_txt {
  color: #FFFFFF;
  font-size: 11px;
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  margin: auto;
}
#nav_head #nav_sp {
  display: none;
  position: fixed;
  top: 60px;
  right: 0;
  width: 100%;
  height: calc(100% - 60px);
  overflow-y: auto;
  overscroll-behavior-y: contain;
  opacity: 0;
  pointer-events: none;
  transition-duration: 0.3s;
  z-index: 999;
  background-color: #F4F7FB;
  padding-bottom: 60px;
  /* タップ中のフィードバック：ほんの少し縮む＋白ベール */
}
#nav_head #nav_sp.active {
  opacity: 1;
  pointer-events: all;
}
@media screen and (max-width: 999px) {
  #nav_head #nav_sp {
    display: block;
  }
}
#nav_head #nav_sp .nav_list {
  margin: 20px auto auto;
  width: 90%;
}
#nav_head #nav_sp .nav_list li {
  border-bottom: 1px solid #D9D9D9;
}
#nav_head #nav_sp .nav_list li .link {
  padding: 15px 0;
  display: inline-block;
  font-size: 18px;
  display: block;
}
#nav_head #nav_sp .nav_list li .child {
  padding: 10px 0px 10px 15px;
  display: block;
  font-size: 16px;
  color: #7A9098;
  position: relative;
}
#nav_head #nav_sp .nav_list li .child::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 1px;
  left: 0;
  top: 24px;
  background-color: #D9D9D9;
}
#nav_head #nav_sp .nav_list li .child:first-of-type {
  padding: 10px 10px 10px 15px;
}
#nav_head #nav_sp .nav_list li .child:last-of-type {
  padding: 10px 10px 25px 15px;
}
#nav_head #nav_sp .nav_list li .dropdownlink {
  position: relative;
}
#nav_head #nav_sp .nav_list li .dropdownlink .link {
  display: inline-block;
  transition: 0.3s;
}
#nav_head #nav_sp .nav_list li .dropdownlink::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #7A9098;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
#nav_head #nav_sp .nav_list li .dropdownlink::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  background-color: #7A9098;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
#nav_head #nav_sp .nav_list li.open .dropdownlink::after {
  opacity: 0;
}
#nav_head #nav_sp .nav_list li.open .link {
  color: #006CB7;
}
#nav_head #nav_sp .nav_list .arrow_link {
  position: relative;
}
#nav_head #nav_sp .nav_list .arrow_link a {
  position: relative;
}
#nav_head #nav_sp .nav_list .arrow_link a::after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='_レイヤー_1' data-name='レイヤー_1' xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 18 18'%3E%3C!-- Generator: Adobe Illustrator 29.7.1, SVG Export Plug-In . SVG Version: 2.1.1 Build 8) --%3E%3Cdefs%3E%3Cstyle%3E .st0 %7B fill: none; stroke: %237a9098; %7D .st1 %7B fill: %237a9098; %7D %3C/style%3E%3C/defs%3E%3Crect class='st1' x='8.5' y='4.2' width='1' height='6' transform='translate(-2.5 8.5) rotate(-45)'/%3E%3Crect class='st1' x='6' y='10.3' width='6' height='1' transform='translate(-5 9.5) rotate(-45)'/%3E%3Ccircle class='st0' cx='9' cy='9' r='8.5'/%3E%3C/svg%3E");
}
#nav_head #nav_sp .accordion-menu .submenuItems {
  display: none;
}
#nav_head #nav_sp .accordion-menu li.open .submenuItems {
  display: block;
}
#nav_head #nav_sp .recruit-sp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  margin: 20px auto auto;
  padding-bottom: 60px;
}
@media screen and (min-width: 1000px) {
  #nav_head #nav_sp .recruit-sp {
    display: none;
  }
}
#nav_head #nav_sp .recruit-sp a {
  display: block;
  width: 300px;
  height: 150px;
  border-radius: 5px;
  overflow: hidden;
}
#nav_head #nav_sp .recruit-sp a img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
#nav_head #nav_sp .recruit-sp a:active {
  transform: scale(0.985);
}
#nav_head #nav_sp .recruit-sp a:active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  pointer-events: none;
}
#nav_head #nav_sp .contact_btn {
  background-color: #009BDF;
  margin: 30px auto auto;
  width: 90%;
  /* 矢印 */
  /* 押してる間だけ */
}
#nav_head #nav_sp .contact_btn .special-text {
  color: #FFFFFF;
}
#nav_head #nav_sp .contact_btn .contact-left {
  display: flex;
  column-gap: 10px;
}
#nav_head #nav_sp .contact_btn .arrow-small {
  color: #FFFFFF;
  display: inline-block;
  width: 8px;
  height: 8px;
  position: relative;
  transform: rotate(-135deg);
  flex-shrink: 0;
  transition: background-color 0.5s ease;
}
#nav_head #nav_sp .contact_btn .arrow-small::before, #nav_head #nav_sp .contact_btn .arrow-small::after {
  content: "";
  position: absolute;
  background-color: currentColor;
}
#nav_head #nav_sp .contact_btn .arrow-small::before {
  width: 1px;
  height: 100%;
  left: 0;
  top: 0;
}
#nav_head #nav_sp .contact_btn .arrow-small::after {
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
}
#nav_head #nav_sp .contact_btn a:active {
  background-color: #FFFFFF;
  color: #009BDF;
  border: 1px solid #009BDF;
}
#nav_head #nav_sp .contact_btn a:active .special-text,
#nav_head #nav_sp .contact_btn a:active .arrow-small {
  color: #009BDF;
}
#nav_head #nav_sp .contact_btn a:active .icon {
  content: url(../img/common/contact-sp.svg);
}/*# sourceMappingURL=pushy.css.map */