@import url("https://use.typekit.net/bji2itd.css");
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&display=swap');

body{
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    box-sizing: border-box;
    background-color: rgb(255, 255, 255);
    font-family: "gill-sans-nova", sans-serif!important;
    font-weight: bold;
}

.header_area{
    display: flex;
    flex-wrap: wrap;
    width: 100vw;
}

.header_menu{
    color: #000;
    display: flex;
    flex-wrap: wrap;
}

.header_menu nav{
    position: absolute;
    right: 0px;
}

.header_menu nav ul{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.header_menu nav ul li{
    margin: 0 1.5vw 0 1.5vw;
}

/* hamburger_menu start */
.hamburger_menu{
    height: 9vh;
}

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:-120%;
    left:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#fff;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    width: 90vw;
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #000;
	text-decoration: none;
	padding:30px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
    font-size: 1.3rem;
	font-weight: 500;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;/*ボタンを最前面に*/
	right: 0;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #000;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
/* hamburger_menu end */

/* fv img start */
  .h1 {
    margin: 0;
    position: absolute;
    top: calc(50% - 0.5em);
    left: 60%;
    width: 40%;
    text-align: center;
    line-height: 1;
    font-size: 3vw;
  }
  /* fv img end */

  /* font start */

  h1{
    font-family: "gill-sans-nova", sans-serif;
  }

  .page_title h1{
    font-family: "gill-sans-nova", sans-serif;
  }

  /* h2{
    font-family: "gill-sans-nova", sans-serif;
  } */

  .heading_01 h2{
    font-family: "gill-sans-nova", sans-serif;
  }

  .heading_02 h2{
    font-family: "gill-sans-nova", sans-serif;
  }

  .heading_07 h2{
    font-family: 'Zen Kaku Gothic New', sans-serif!important;
    font-weight: 500;
  }

  .header_menu nav ul li{
    font-weight: 500!important;
  }

  .footer_menu ul li{
    font-weight: 500!important;
  }

  .contact_heading h2{
    font-family: 'Zen Kaku Gothic New', sans-serif!important;
  }

  .button_01{
    font-family: 'Zen Kaku Gothic New', sans-serif!important;
  }

  /* font end */

  .tab-002 div a p{
    text-decoration:underline!important;
  }