@charset "UTF-8";
/* HEADER FOOTER CSS*/
/* -----------------------------------------------
 HEADER
-------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  z-index: 100;
}
.js-header {
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  z-index: 50;
  background-color: rgba(17,18,19,.9);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
/* ロゴ*/
#h_logo {
  position: fixed;
  z-index: 101;
  left: 3%;
  top: 20px;
}
#h_logo a {
  display: block;
  background-image: url("../images/logo_w.svg");
  background-position: left;
  background-repeat: no-repeat;
  background-size: 200px auto;
  width: 200px;
  height: 40px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
/*--- 1024以上pcのみ適応 --- */
@media screen and (min-width: 1024px) {
  /* メニュー */
  .global-nav {
    position: relative;
    top: 0px;
    width: 100%;
    z-index: 100
  }
  /* 親メニュー*/
  .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.contact > a {
    background-color: var(--bk);
    border-radius: 50px;
    margin: 0 2em 0 1em;
    border: 1px solid rgba(204, 204, 204, 0.47);
  }
.global-nav > .nav-list > .nav-item > a.nav-item_a:after { /*-- ↓ --*/
	position: absolute;
	left: 47%;
	bottom: -3px;
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: white;
  font-size: 7px;
}
  .global-nav > .nav-list > .nav-item > a {
    position: relative;
    display: block;
    color: white;
    font-size: 16px;
    padding: .8em 1.2em;
    line-height: 1;
    z-index: 3;
    cursor: pointer;
  }
  .global-nav > .nav-list > .nav-item > a {
    opacity: 1;
  }
  .global-nav .nav-list .nav-item > a:hover::after{
    position: absolute;
    bottom:0;
    left: 48%;
    content: "●";
    color: white;
    font-size: 5px!important;
    line-height: 5px
  }
 .global-nav > .nav-list > .nav-item.contact > a:hover::after {
	 display: none
  }
 .global-nav > .nav-list > .nav-item.contact > a:hover {
	 background: white;
	 color: black
  }
  /* リンクにホバーした際の下線の表示 
  .global-nav > .nav-list > .nav-item > a:after {
    background-color: white;
    bottom: -8px;
    content: "";
    height: 1px;
    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 { /* spボタン */
    display: none;
  }
  .disp { /* PC以外で表示メニュー*/
    display: block
  }
  /* 子メニュー（通常非表示ホバーで表示) */
  .nav-item_sub {
    opacity: 0;
    position: absolute;
    left: 0;
    top: -20px;
    transition: all 0.2s ease;
    visibility: hidden; /*必須*/
    background-color:rgba(17,18,19,.5);
    box-shadow: var(--shadow);
    width: 100%;
    height: auto;
	  padding-top: 78px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
	  z-index: -1
  }
  .nav-item_sub .inner {
    margin: 0 auto;
    width: 100%;
    display: flex;
	      background-color: rgba(255, 255, 255, 0.9);

  }
  .nav-item_sub .inner ul {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start; /*liの高さ上揃え*/;
	  justify-content: center
  }
  .nav-item_sub .inner ul li {
    list-style: none;
    width: 20%;
  }
  .global-nav .nav-list .nav-item_sub a {
    display: block;
    text-align: center;
    padding: 1em 1.5em;
    font-size: 15px;
    font-weight: 500;
  }
  .global-nav .nav-list .nav-item_sub a:hover {
    opacity: 1;
    rbackground: #00A1A4;
background: linear-gradient(90deg, rgba(0, 161, 164, 1) 1%, rgba(0, 113, 188, 1) 100%);
    color: white
  }
/*ホバーでサブメニューを表示*/
  .nav-item:hover .nav-item_sub {
    opacity: 1;
    visibility: visible;
  }
}
/*1024-1200*/
@media screen and (min-width:1024px) and (max-width:1200px) {}

/*Tablet以下*/
@media screen and (max-width: 1024px) {
  /* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  height: 60px;
  width: 100%;
  z-index: 100;
}
.js-header {
  height: 60px;
}
/* ロゴ*/
#h_logo {
  left: 3%;
  top: 15px;
}
#h_logo a {
  background-size: 160px auto;
  width: 160px;
  height: 30px;
}	
  /* メニュー */
  .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(41,46,48,1.00);
  }
  .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: 100px;
  }
  .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;
	  color: white;
    border-bottom: 1px solid rgba(215, 215, 215, .5);
  }
  /*------ Accordion矢印の切り替わり -------*/
  .global-nav > .nav-list > .nav-item > a.nav-item_a:after {
    position: absolute;
    right: 0;
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #666;
    font-size: 12px;
  }
  .global-nav > .nav-list > .nav-item > a.nav-item_a.active:after {
    content: "\f077";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #666;
  }
  /* 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;
	  list-style: none
  }
  .inner ul li a {
    display: block;
    font-size: 16px;
	  color: white
  }
  .inner ul li a:before {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    color:#666;
    font-weight: 900;
    font-size: 10px;
    padding-right: 1em
  }
  #inner-btn {
    width: 80%;
    position: relative;
    margin: 1.5em auto;
    padding-bottom: 3em
  }

  /*=============================
ハンバーガボタン
=============================*/
  .btn-trigger {
    position: relative;
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 1000;
  }
  .btn-trigger span {
    position: absolute;
    left: 15px;
    width: 30px;
    height: 2px;
    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: 20px;
  }
  .btn-trigger span:nth-of-type(2) {
    top: 30px;
  }
  .btn-trigger span:nth-of-type(3) {
    top: 40px;
  }
  /*=============================
#btn01
=============================*/
  #btn01.active span {
    background-color: white;
  }
  #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);
  }
}
/* ----- /heaerここまで ------- */
/* -----------------------------------------------
 FOOTER
-------------------------------------------------- */
footer {
  width: 100%;
  margin: 0px;
  position: relative;
  clear: both;
	background-color: white;
	z-index: 2
}
#f-contact { /*parallax*/
  width: 100%;
  margin: 0px;
  padding: 60px 0;
  position: relative;
  z-index: 1;
  background-image: url("../images/footer_bg.jpg");
  background-attachment: fixed;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
#f-contact::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #172a2c;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .5;
  z-index: 3;
}
.f-btn{
    display: block;
    width: 100%;
    box-sizing: border-box;
	border: 1px solid white;
	border-radius: 60px;
    padding: 1em;
    text-align: center;
	color: white;
}
.f-btn:hover{
	background-color: var(--bk);
	opacity: .8;
	border: 1px solid var(--bk);
}
.f-btn::before{
	background-image: url("../images/icon_people.svg");
	background-repeat: no-repeat;
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: -3px 10px 0 0;
  background-size: contain;
  vertical-align: middle;
}
.f-btn.contact::before{
	background-image: url("../images/icon_mail.svg");
	  margin: -3px 10px 0 0;
	  width: 22px;
  height: 18px;
}
#footer {
  padding: 5% 8%
}
.f-name {
	position: relative;
	left: 0;
	width: 220px
}
.address {
  font-size: 15px;
}
.f-links{
	display: flex;
	flex-wrap: wrap;
	margin-top: 1.5em;
	margin-left: -10px
}
.f-links li{
	margin: 0;
	align-items: center;
	line-height: 1;
	padding-bottom: 4px
}
.f-links li a{
	font-size: 14px!important;
	padding: 0 10px;
}
.f-links li a:hover{
	color: black;
	text-decoration: underline
}
.f-links li + li {
	border-left: 1px solid #ccc
}
.fbn {
  display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center
}
.fbn p  {
	padding: 5px
}
.fbn img {
  width: 60px;
	height: auto;
}
.kochake{
	text-align: right;
}
.kochake img{
	width: 180px
}
#copy {
  position: relative;
	text-align: right;
  font-size: 13px;
	margin-top: 1em
}
/* ページ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: var(--blue);
  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: 992px) {
.f-btn{
   width: 70%;
	margin: 1em auto 0 auto
}
#footer {
	text-align: center
}
.f-name {
	width: 200px
}
.address {
  font-size: 14px;
}
.f-links{
	justify-content: center
}
.fbn {
	justify-content: center;
}

.fbn img {
  width: 50px;
}
.kochake{
	text-align: center;
	padding: 1.5em 0 0 0;
}
.kochake img{
	width: 160px
}
#copy {
	text-align: center;
}
}
@media screen and (max-width: 768px) {
  #f-contact { /*parallax*/
    background-attachment: scroll;
  }

}
/* -----------------------------------------------
smartPhone 576以下
-------------------------------------------------- */
@media (max-width: 576px) {
  footer {
    width: 100%;
    margin: 0px;
    padding: 0 0 30px 0;
    position: relative;
    clear: both;
    float: none;
  }
.f-btn{
   width: 95%;
}
}