@charset "UTF-8";
/* HEADER FOOTER CSS*/
/* -----------------------------------------------
 HEADER
-------------------------------------------------- */
/* header_menu */
#header {
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  z-index: 1000;
  /*background-color: var(--aqua);
  box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.70);*/
}
/*スクロールで背景色変化js用*/
#header.change-color {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.70);
  transition: background-color .4s, transform .4s, color .4s;
}
#h_logo {
  position: fixed;
  z-index: 100;
  left: 20px;
  top: 20px;
}
#h_logo a {
  display: block;
  background-image: url("../images/logo.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 160px 40px;
  width: 200px;
  height: 40px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
/*--- contact ---*/
#contact-btn, #recruit-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 100;
  width: auto;
  text-align: center;
}
#contact-btn a {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.57);
  padding: 0.5em 1.5em;
  font-size: 14px;
  color: white;
  background-color: #202020;
  border-radius: 5px;
  transition: .3s; /*変形の時間*/
}
#recruit-btn {
  right: 170px;
}
#recruit-btn a {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.57);
  padding: 0.5em 1.5em;
  font-size: 14px;
  color: white;
  border-radius: 5px;
  background: rgb(0, 71, 157);
  background: linear-gradient(90deg, rgba(0, 71, 157, 1) 0%, rgba(42, 125, 248, 1) 100%);
  transition: .3s; /*変形の時間*/
}
/* メニュー */
.global-nav {
  width: 100%;
  position: relative;
}
.global-nav .nav-list {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  align-items: center;
  margin: 0;
  padding-right: 280px;
  width: auto;
}
.global-nav .nav-list li {
  margin: 0 0.7em
}
.global-nav .nav-list li a {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  color: white;
  font-size: 14px;
  height: 50px;
  padding: 2em 0 0.5em;
  /*transition: .5s;*/
}
.global-nav .nav-list li a {
  opacity: 1;
}
.global-nav-icon { /* spボタン */
  display: none;
}
.disp { /* PC以外で表示メニュー*/
  display: block
}
/*--- 1024以上pcのみ適応 --- */
@media screen and (min-width: 1025px) {
  /*gn hover effect*/
  .global-nav .nav-list li a:hover {
    transition: .5s
  }
  /*アンダーラインのスタイル*/
  .global-nav .nav-list li a::after {
    background: #fff;
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
  }
  .global-nav .nav-list li a:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  .nav-list {
    position: relative;
  }
}
/*Tablet以下*/
@media screen and (max-width: 1024px) {
  /* header_menu */
  #header {
    height: 60px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.70);
    z-index: 1000
  }
  /*---スクロールで背景色変化js用---*/
  #header.change-color {
    background-color: rgba(0, 0, 0, 0.44);
  }
  #h_logo {
    left: 15px;
    top: 15px;
  }
  #h_logo a {
    display: block;
    background-image: url("../images/logo.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 110px auto;
    width: 110px;
    height: 30px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  /** btn-trigger **/
  .btn-trigger {
    position: relative;
    position: absolute;
    top: 8px;
    right: 15px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1000;
  }
  .btn-trigger span {
    position: absolute;
    left: 0;
    right: 0;
    width: 35px;
    height: 1px;
    background-color: white;
  }
  .btn-trigger, .btn-trigger span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
  }
  .btn-trigger span:nth-of-type(1) {
    top: 10px;
  }
  .btn-trigger span:nth-of-type(2) {
    top: 20px;
  }
  .btn-trigger span:nth-of-type(3) {
    top: 30px;
  }
  /** #btn01 **/
  #btn01.active span {
    background-color: white;
    padding-right: 10px
  }
  #btn01.active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }
  #btn01.active span:nth-of-type(2) {
    opacity: 0;
  }
  #btn01.active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }
  /* メニュー */
  .global-nav {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    text-align: left;
    align-items: center;
    font-size: 18px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch; /*慣性スクロールを追加*/
    padding-top: 8em;
    padding-bottom: 8em;
    background-color: rgba(0, 0, 0, 0.9);
  }
  .global-nav .nav-list {
    position: relative;
    width: 80%;
    height: auto; /*必須*/
    display: block;
    margin: 0 auto;
    list-style: none;
    align-items: center;
    padding-right: 0;
  }
  .global-nav .nav-list li a { /*表示されているメニュー*/
    position: relative;
    width: 80%;
    display: block;
    vertical-align: middle;
    text-align: center;
    font-size: 16px;
    height: auto;
    padding: 1em;
    color: white;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin: 0 auto;
  }
  /* open*/
  .open .global-nav {
    transform: translateX(0);
  }
  /* open*/
  .open {
    overflow: hidden;
  }
  .open .global-nav {
    visibility: visible;
    opacity: 1;
  }
  .open .global-nav li {
    opacity: 1;
    transform: translateX(0);
    transition: transform 1s ease, opacity 0.9s ease;
  }
  #contact-btn, #recruit-btn {
    width: 70%;
    position: relative;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 1em
  }
  #contact-btn a, #recruit-btn a {
    padding: 1em
  }
}
/* -----------------------------------------------
smartPhone 576以下
-------------------------------------------------- */
@media (max-width: 599px) {}
/* ----- /heaerここまで ------- */
/* -----------------------------------------------
 FOOTER
-------------------------------------------------- */
#footer {
  width: 100%;
  margin: 0px;
  padding: 0;
  position: relative;
  clear: both;
  float: none;
  z-index: 20;
  background-color: white;
}
#f-contact { /*parallax*/
  width: 100%;
  margin: 0px;
  padding: 0;
  position: relative;
  z-index: 1;
  background-image: url("../images/index_p_contact.jpg");
  background-attachment: fixed;
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  color: white;
  min-height: 400px;
}
#f-contact::before {
  position: absolute;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
#f-contact h2 {
  margin-top: 80px;
  position: relative;
  display: inline-block;
  width: auto;
  font-family: 'Roboto', sans-serif;
  font-size: 60px;
  font-weight: 300;
  margin-bottom: 1em;
  line-height: 1;
    padding-left: 0;
    border-left: 0
}
#f-contact h2 span {
  position: relative;
  display: block;
  font-family: var(--N_sans);
  padding-top: 15px;
  font-size: 18px;
  font-weight: 400;
}
/*f-contact*/
#f-contact ul {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}
#f-contact ul li {
  margin: 10px;
  width: 360px;
  text-align: center;
}
#f-contact ul li a {
  display: block;
  width: 100%;
  height: 70px;
  background-color: white;
  border-radius: 3px;
  color: #01479E;
  font-size: 18px;
  border: 1px solid #ccc;
  text-align: center;
  padding-top: 15px;
  font-weight: 600;
   transition: .3s;
}
#f-contact ul li a:hover {
    opacity: 1;
  border: 1px solid #01479D;
  transform: translateY(-7px);
}
#f-contact ul li a.tel {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 26px;
}
#f-contact ul li a.tel::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 26px;
  margin: -5px 5px 0 0;
  background: url("../images/icon-phone.svg") no-repeat;
  background-size: contain;
  vertical-align: middle;
}
#f-contact ul li a.mail {
  padding-top: 20px;
}
#f-contact ul li a.mail::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 26px;
  margin: 2px 10px 0 0;
  background: url("../images/icon-mail.svg") no-repeat;
  background-size: contain;
  vertical-align: middle;
}
#f-logo {
  width: 240px;
  margin: 0 auto 1em auto
}
#copy {
  width: 100%;
  background-color: #2B2F35;
  color: white;
  font-size: 12px;
  text-align: center;
  padding: 2em
}
.pagetop {
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 0;
  cursor: pointer;
  right: 0;
  z-index: 100;
}
@media screen and (max-width: 1200px) {}
/*Tablet以下*/
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 768px) {
  /*f-contact*/
  #f-contact { /*parallax*/
    background-attachment: scroll;
  }
  #f-contact h2 {
    margin-top: 50px;
    font-size: 50px;
  }
  #f-contact h2 span {
    font-size: 13px;
    top: 10px;
  }
  #f-contact ul {
    display: block;
    width: 80%
  }
  #f-contact ul li {
    margin: 0 auto 10px auto;
    padding: 0
  }
  #f-logo {
    width: 180px;
  }
}
/* -----------------------------------------------
smartPhone 576以下
-------------------------------------------------- */
@media (max-width: 576px) {
  #footer #f-logo {
    text-align: center;
    margin: 0 auto 1em
  }
  #footer p {
    text-align: center
  }
  #f-contact { /*ios用*/
    background-attachment: scroll;
  }
  #f-contact h2 {
    font-size: 30px;
  }
  #f-contact h2 span {
    font-size: 12px;
  }
  #f-contact ul {
    display: block;
    width: 80%
  }
#f-contact ul li {
  width: 90%;
  text-align: center;
}
#f-contact ul li a {
  font-size: 14px;
  height: 60px;
}
#f-contact ul li a.tel {
  font-size: 20px;
}
#f-contact ul li a.tel::before {
  width: 20px;
  height: 22px;
}
#f-contact ul li a.mail {
  padding-top: 18px
}
#f-contact ul li a.mail::before {
  width: 20px;
  height: 23px;
  margin: 4px 10px 0 0;
}
}