@charset "UTF-8";
/* HEADER FOOTER CSS*/
/* -----------------------------------------------
 HEADER
-------------------------------------------------- */
/* js_Header */
/*#header_bg {
  position: fixed;
  top: 0;
  left: 0;
  height: 100px;
  width: 100%;
  z-index: 999;
  box-shadow: var(--shadow);
  background-color: rgba(255, 255, 255, .9);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}*/
/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  height: 90px;
  width: 100%;
  z-index: 1000;
  font-size: 16px;
  /*box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.70);*/
}
#header a {
  text-decoration: none;
  font-size: 15px
}
/* ロゴ*/
#h_logo {
  position: fixed;
  z-index: 100;
  left: 23px;
  top: 10px;
   
}
#h_logo a {
  display: block;
  background-image: url("../images/logo.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 140px auto;
  width: 140px;
  height: 70px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/*=============================
ハンバーガボタン
=============================*/
  .btn-trigger {
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
    height: 90px;
    cursor: pointer;
    z-index: 1000;
    background-color: #A3041F;
  }
  .btn-trigger span {
    position: absolute;
    left: 28px;
    width: 40px;
    height: 2px;
    background-color: #fff;
  }
  .btn-trigger, .btn-trigger span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
  }
  .btn-trigger span:nth-of-type(1) {
    top: 32px;
  }
  .btn-trigger span:nth-of-type(2) {
    top: 44px;
  }
  .btn-trigger span:nth-of-type(3) {
    top: 56px;
  }
  /*=============================
#btn01
=============================*/
  #btn01.active span {
    /*background-color: #5E9961;*/
    padding-right: 10px
  }
  #btn01.active span:nth-of-type(1) {
    -webkit-transform: translateY(12px) rotate(-45deg);
    transform: translateY(12px) rotate(-45deg);
  }
  #btn01.active span:nth-of-type(2) {
    opacity: 0;
  }
  #btn01.active span:nth-of-type(3) {
    -webkit-transform: translateY(-12px) rotate(45deg);
    transform: translateY(-12px) rotate(45deg);
  }
/* ボタン*/
#recruit-btn {
  position: absolute;
  top: 0;
  right: 225px;
  z-index: 100;
  align-items: center;
}
#recruit-btn a {
  display: block;
  background-image: linear-gradient(90deg, rgba(0, 47, 121, 1), rgba(0, 88, 180, 1));
  color: white;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  width: 135px;
  height: 90px;
  border-right: solid 1px #fff;
  padding-top: 32px;
}
#entry-btn {
  position: absolute;
  top: 0;
  right: 90px;
  z-index: 100;
  align-items: center;
}
#entry-btn a {
  display: block;
  background-color: var(--main);
  color: white;
  text-align: center;
  font-family: var(--Montserrat);
  font-weight: 500;
  font-size: 16px;
  width: 135px;
  height: 90px;
  border-right: solid 1px #fff;
  padding-top: 32px;
}
  /* メニュー */
  .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-bottom: 2em;
    background-color: rgba(255, 255, 255, 1);
  }
  .global-nav .nav-list {
    position: relative;
    width: 70%;
    height: auto; /*必須*/
    display: block;
    margin: 0 auto;
    list-style: none;
    align-items: center;
    padding-right: 0;
    padding-top: 60px;
  }
  .global-nav > .nav-list > .nav-item > a { /*表示されているメニュー*/
    position: relative;
    width: auto;
    display: block;
    vertical-align: middle;
    text-align: left;
    font-size: 16px;
    height: auto;
    padding: 1em;
    border-bottom: 1px solid rgba(215, 215, 215, 1.00);
  }
  .global-nav > .nav-list > .nav-item br { /*スマホbr削除*/
    display: none
  }
  .global-nav > .nav-list > .nav-item > a.open.da { /*-- 2行用↓ --*/
    position: relative;
    padding: 1em;
  }
  .global-nav > .nav-list > .nav-item > a.open.da:after { /*-- 2行用↓ --*/
    right: 0;
  }
  /*------ Accordion矢印の切り替わり -------*/
  .global-nav > .nav-list > .nav-item > a.open:after {
    position: absolute;
    right: 0;
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--maincolor);
    font-size: 12px;
  }
  .global-nav > .nav-list > .nav-item > a.open.active:after {
    content: "\f077";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--maincolor);
  }
  /* open*/
  .open .global-nav {
    transform: translateX(0);
  }
  /* open*/
  .open {
    overflow: hidden;
  }
  .open .global-nav {
    visibility: visible;
    opacity: 1;
  }
  /*--- サブナビ ---*/
  .nav-item_sub {
    display: none;
    padding: 0;
    margin: 0;
  }
  .nav-list {
    height: 100%;
  }
  .inner {
    margin-bottom: 1em
  }
  .inner ul {
    padding: 0;
    margin: 0
  }
  .inner ul li {
    padding: 0.5em 1em 0.5em 2em
  }
  .inner ul li a {
    display: block;
    font-size: 16px;
  }
  .inner ul li a:before {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    color: #5E9961;
    font-weight: 900;
    font-size: 10px;
    padding-right: 1em
  }
  #inner-btn {
    display: block;
    width: 70%;
    position: relative;
    margin: 1.5em auto;
    padding-bottom: 3em
  }
  #inner-btn a.inner-recruit {
    display: inline-block;
    width: 49%;
    padding: 1em;
    border-radius: 50px;
    text-align: center;
    background-image: linear-gradient(90deg, rgba(0, 47, 121, 1), rgba(0, 88, 180, 1));
    color: white;
    margin-right: 2%;
  }
  #inner-btn a.inner-entry {
    display: inline-block;
    width: 49%;
    padding: 1em;
    border: 1px solid var(--main);
    border-radius: 50px;
    text-align: center;
    background-color: var(--main);
    color: white;
    font-family: var(--Montserrat)
  }
/*--- 1024以上pcのみ適応 --- */
/*@media screen and (min-width: 1024px) {

  .global-nav {
    position: relative;
    top: 0px;
    right: 170px;
    width: 100%;
    z-index: 1
  }

  .global-nav .nav-list {
    position: relative;
    top: 20px;
    list-style: none;
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  .global-nav > .nav-list > .nav-item > a {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    color: var(--bk);
    font-size: 15px;
    height: 60px;
    padding: 0 1.3em;
    font-weight: 500;
    border-left: 1px solid #ccc;
    cursor: pointer;
  }
  .global-nav > .nav-list > .nav-item:last-child {
    border-right: 1px solid #ccc;
  }
  .global-nav > .nav-list > .nav-item > a {
    opacity: 1;
  }
  .global-nav > .nav-list > .nav-item > a:hover {
    opacity: 1;
  }
  .global-nav > .nav-list > .nav-item > a:after {
    background-color: var(--main);
    bottom: -4px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
    width: 100%; 
  }
  
  .global-nav > .nav-list > .nav-item > a:hover::after {
    transform: scale(1, 1);
  }
  .global-nav-icon { 
    display: none;
  }
  .disp { 
    display: block
  }
  .nav-item_sub {
    opacity: 0;
    position: absolute;
    top: 70px;
    transition: all 0.2s ease;
    visibility: hidden; 
    background-color: white;
    border-radius: 15px;
    box-shadow: var(--shadow)
  }
  .nav-item_sub .inner {
    display: flex;
    margin: 0 auto;
  }
  .nav-item_sub .inner ul {
    margin: 0;
    padding: 0;
  }
  .nav-item_sub .inner ul li {
    list-style: none;
    border-bottom: 1px dotted #ccc;
  }
  .nav-item_sub .inner ul li:last-child {
    border-bottom: none;
  }
  .global-nav .nav-list .nav-item_sub a {
    display: block;
    text-align: left;
    color: var(--bk);
    padding: .5em 1.5em;
    font-size: 15px;
    font-weight: 500;
  }
  .global-nav .nav-list .nav-item_sub a:hover {
    opacity: 1;
    color: var(--main);
  }
  .global-nav > .nav-list > .nav-item > a:hover {
    border-bottom: 2px solid var(--maincolor)
  }
  .nav-item:hover .nav-item_sub {
    opacity: 1;
    visibility: visible;
  }
}*/

/*Tablet以下*/
@media screen and (max-width: 1024px) {
  /* header */
  header {
    height: 60px;
  }
  /* ロゴ*/
  #h_logo {
    left: 10px;
    top: 5px;
  }
  #h_logo a {
    background-size: 100px auto;
    width: 100px;
    height: 50px;
  }
 .btn-trigger {
    width: 60px;
    height: 60px;
  }
  .btn-trigger span {
    position: absolute;
    left: 15px;
    width: 30px;
    height: 2px;
    background-color: #fff;
  }
 .btn-trigger span:nth-of-type(1) {
    top: 20px;
  }
 .btn-trigger span:nth-of-type(2) {
    top: 28px;
  }
 .btn-trigger span:nth-of-type(3) {
    top: 36px;
  }
  /*=============================
#btn01
=============================*/
  #btn01.active span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
  }
  #btn01.active span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
  }
/* ボタン*/
#recruit-btn,#entry-btn{
    display: none;
}
}
/* ----- /heaerここまで ------- */
/* -----------------------------------------------
 FOOTER
-------------------------------------------------- */
footer {
  width: 100%;
  position: relative;
  color: white;
}
#f-recruit { /*parallax*/
  width: 100%;
  margin: 0px;
  padding-top: 80px;
  position: relative;
  z-index: 1;
  background-image: url("../images/f_cover.jpg");
  background-attachment: fixed;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
#f-recruit::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: white;
  mix-blend-mode: multiply;
}
#f-recruit h2 {
  font-size: 2.3em;
  font-family: var(--Montserrat);
  margin-bottom: 1.5em;
    margin-top: 0;
}
#f-recruit .bor-r {
  position: relative;
  border-right: 1px solid #fff
}
#f-recruit p.f-name {
  font-size: 1.2rem;
  margin-bottom: .8em
}
#f-recruit p.address {
  margin-bottom: 2em;
  font-family: "Inter", sans-serif;
}
/*f-contact*/
#f-recruit .entry-btn {
  text-align: center;
}
#f-recruit .entry-btn a {
  position: relative;
  display: inline-block;
  border: solid 1px #fff;
  color: white;
  padding: 1em 3.5em;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1.3em;
}
#f-recruit .entry-btn a::before {
  content: '';
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url("../images/arrow_red.svg");
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: .5em;
}
#f-recruit .link_line{
text-align: center;
}
#f-recruit .link_line a{
color: #fff;
text-decoration: underline;
}
#f-recruit .link_line a i{
padding-right: 4px;
}
#f-recruit .tel {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  line-height: 1;
margin-bottom: 20px;
}
#f-recruit .tel a{
  color: white;
  font-size: 2.8em;
  letter-spacing: 2px;
}
#f-recruit .tel a i{
  font-size: .7em;
   transform: rotate(5deg);
}
#f-recruit .tel_text{
  font-size: 15px;
  text-align: center;
  letter-spacing: 1px;
}
.f-name {
  font-weight: 600;
  font-size: 120%;
  margin-bottom: .8em
}
.f-name span{
  font-family: var(--Montserrat);
  font-size: 15px;
  font-weight: 300;
  padding-left: 1em;
}
.address {
  font-size: 16px;
  font-weight: 500;
}
.address i{
  margin-right: .5em;  
}
.tel {
  font-weight: 500;
  font-size: 120%
}
.footer_right{
    position: absolute;
    right: 0;
    bottom: 55px;
}
.f_link a{
    color: white;
}
#copy {
  font-size: 11px;
  color: white;
  font-family: var(--Montserrat);
  margin-top: .8em;
}
/* ページTOPに戻る */
/*.pagetop {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100
}
.pagetop a {
  display: block;
  font-size: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  background: #43A857;
  border-radius: 50%;
  line-height: 50px;
}
.pagetop a i {
  font-size: 20px;
  color: #fff;
  line-height: 50px;
}*/
@media screen and (max-width: 1200px) {
}
/*Tablet以下*/
@media screen and (max-width: 1024px) {
#f-recruit .bor-r {
    border-right: none
}
.footer_right{
    position: relative;
    left: 0;
    top: 0;
}
.f_link{
    margin-top: 1em
    }
#copy {
  margin-top: 0;
}
}
@media screen and (max-width: 768px) {
  #f-recruit { /*parallax*/
    background-attachment: scroll;
  }
  #copy {
    font-size: 10px;
  }
}
/* -----------------------------------------------
smartPhone 576以下
-------------------------------------------------- */
@media (max-width: 576px) {
#f-recruit { /*ios用*/
   background-attachment: scroll;
}
#f-recruit .contact-btn a {
    padding: 1em 2.5em;
    font-size: 1em;
  }
.f-name {
  font-size: 17px!important;
}
}
/*マイナビバナー追加*/
.mynavi{
	width: 180px;
	margin-bottom: 15px
}