@charset "utf-8";

@import url("reset.css");
@import url("set_common.css");


/*---------------------------------------------------------------

    基本設定

---------------------------------------------------------------*/
html {
	height:100%;
}

body{
	color: #000;
	font-size: 1.6rem;
	font-family: 'Noto Sans JP', "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 180%;
	height:auto;
	height:100%;
}

body.open_nv{
	overflow: hidden;
	touch-action: none;
}


@media only screen and (min-width: 768px) {
  
  body{
    line-height: 180%;
	}
  
}


@media only screen and (min-width: 1024px) {
}


@media only screen and (min-width: 1280px) {
	
	body{
	}
  
  body.open_nv{
	  overflow: visible;
  }
	
}



/*---------------------------------------------------------------

    パーツレイアウト　共通設定

---------------------------------------------------------------*/
section.layout,
article.layout{
  width: 100%;
}

section.layout > div,
article.layout > div{
  padding: 40px 15px;
}

section.layout img,
article.layout img{
  width: 100%;
}


@media only screen and (min-width: 768px) {
	
  section.layout > div,
  article.layout > div{
    padding: 60px 0;
    width: 690px;
    margin: 0 auto;
  }

}


@media only screen and (min-width: 1024px) {

  section.layout > div,
  article.layout > div{
    padding: 80px 0;
    width: 900px;
  }
  
  section.layout img,
  article.layout img{
    max-width: 100%;
  }
  
}


@media only screen and (min-width: 1280px) {
	
  section.layout > div,
  article.layout > div{
    width: 1040px;
  }

}



/*---------------------------------------------------------------

    ヘッダー

---------------------------------------------------------------*/

header{
	width: 100%;
	position: fixed;
	z-index: 110;
}

header .inner{
	width: 100%;
  background: rgba(255,255,255,1.00);
  height: 60px;
  box-sizing: border-box;
}

header h1{
	width: calc(100% - 85px);
	height: 60px;
	margin: 0 0 0 15px;
  display: flex;
  align-items: center;
  transition: 0.2s;
}

header h1 a{
  display: flex;
  align-items: center;
  width: 100%;
  pointer-events: none;
}

header h1 img{
  width: auto;
  height: 40px;
  margin-right: 15px;
}

	
/*メニュー部分*/
nav{
	display: none;
	/*display: block;*/
	position: absolute;
	top: 60px;
	width: 100%;
	left: 0;
	height: 100vh;
	overflow: auto;
	-ms-overflow-style: none;
	-webkit-overflow-scrolling: touch;
	background: rgba(0,0,0,0.7);
}

header nav ul{
	display: block;
	margin: 0 auto;
	width: 90%;
	height: 100%;
	box-sizing: border-box;
  overflow: hidden;
}

header nav::-webkit-scrollbar { width: 0 !important }

header nav ul li{
	margin: 0 auto;
}

header nav ul li a{
	font-size: 1.8rem;
	font-weight: bold;
	height: 70px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	position: relative;
	color: #FFF !important;
  text-decoration: none !important;
}


header nav ul li{
	border-bottom: 1px solid #FFF;
}

header nav ul li:last-of-type{
	padding: 0 0 130px 0;
  border-bottom: 0;
}

header nav ul li > span{
	font-size: 1.8rem;
	font-weight: bold;
	color: #000;
	background: #FFF;
	display: block;
	text-align: center;
	padding: 10px 0;
}

header nav ul li > span a{
	height: auto;
}


header nav ul li#h_info{
  color: #FFF;
  text-align: center;
  padding: 25px 0;
}

header nav ul li#h_info a{
  height: auto;
}

header nav ul li#h_info a span{
  display: flex;
  align-items: center;
  justify-content: center;
}

header nav ul li#h_info a span::before{
  content: "";
  width: 20px;
  height: 20px;
  background: url("../../img/common/tel_w.svg") no-repeat center;
  background-size: contain;
  display: block;
  margin-right: 5px;
}

header nav ul li#h_info p{
  font-size: 1.4rem;
}


		
/*開閉ボタン*/
#nav_toggle{
	display: block;
	width: 60px;
	height: 60px;
	position: absolute;
	z-index: 100;
	background: rgba(0,47,124,1.00);
	right: 0;
	top: 0;
	transition: background 0.3s;
}

#nav_toggle div {
	position: relative;
	width: 26px;
	height: 26px;
	top: 17px;
	left: 50%;
	margin-left: -13px;
}

#nav_toggle span{
	display: block;
	height: 2px;
	background: #FFF;
	position:absolute;
	width: 100%;
	left: 0;
	-webkit-transition: 0.5s ease-in-out;
	-o-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;	
	border-radius: 4px;
}

#nav_toggle span:nth-child(1){
	top:0px;
}

#nav_toggle span:nth-child(2){
	top:12px;
}

#nav_toggle span:nth-child(3){
	top:24px;
}


	
/*開閉ボタンopen時*/
.open #nav_toggle span:nth-child(1) {
	top: 13px;
  -webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	    transform: rotate(135deg);
}

.open #nav_toggle span:nth-child(2) {
	width: 0;
	left: 50%;
}

.open #nav_toggle span:nth-child(3) {
	top: 13px;
	-webkit-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	    transform: rotate(-135deg);
}


header + *{
  padding-top: 60px !important;
}


@media only screen and (min-width: 768px) {

  header .inner{
    height: 80px;
  }
  
  header h1{
    width: calc(100% - 125px);
	  height: 80px;
	  margin: 0 0 0 30px;
    font-size: 2.2rem;
  }
  
  nav{
	  top: 80px;
  }
  
  #nav_toggle{
	  width: 80px;
	  height: 80px;
  }

  #nav_toggle div {
	  top: 27px;
	  left: 50%;
	  margin-left: -13.5px;
  }
  
  header + *{
    padding-top: 80px !important;
  }

}


@media only screen and (min-width: 1024px) {

}


@media only screen and (min-width: 1280px) {
	
	header{
		width: 100%;
		height: 100px;
		overflow: hidden;
	}
	
	header .inner{
		position: relative;
		height: 100px;
	}
  
  header h1{
	  width: 50%;
	  height: 100px;
    font-size: 2.6rem;
  }
  
  header h1 a{
    width: 100%;
    height: 60px;
  }

	
/*メニュー部分*/
	
	nav{
		display: block !important;
		top: 0;
		left: auto;
		right: 0;
		height: 100px;
		background: none;
		width: auto;
	}

	header nav ul{
		margin: 0;
		padding-top: 0;
		width: inherit;
		display: flex;
	}

	header nav ul li{
		position: relative;
    border-bottom: none;
	}

	header nav ul li a{
		font-size: 1.6rem;
		height: 100px;
		transition: opacity 0.3s;
		color: #333 !important;
    padding: 0 20px;
	}
	
	header nav ul li a:hover{
		opacity: 0.6;
	}
	
	header nav ul li:first-child{
		display: none;
	}

	header nav ul li:last-of-type{
		padding: 0;
	}
	
	header nav ul li a span::before{
		display: none;
	}
	
	header nav ul li#navi_contact{
		width: 200px;
		height: 100px;
	}
	
	header nav ul li#navi_contact a{
    background: rgba(0,47,124,1.00);
		font-size: 1.6rem;
    padding: 0 !important;
	}
  
  header nav ul li#navi_contact span{
    display: flex;
    align-items: center;
  }
  
  header nav ul li#navi_contact a span{
    color: #FFF !important;
  }
  
  header nav ul li#h_info{
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  header nav ul li#h_info a{
    pointer-events: none;
    font-size: 2.4rem;
  }
  
  header nav ul li#h_info p{
    color: #000;
  }
  
  header nav ul li#h_info a span::before{
    width: 26px;
    height: 26px;
    background: url("../../img/common/tel_b.svg") no-repeat center;
    margin-right: 8px;
  }
  
  
/*開閉ボタン*/
	#nav_toggle{
		display: none;
	}
  
  
  header + *{
    padding-top: 100px !important;
  }

	
}



/*---------------------------------------------------------------

    footer

---------------------------------------------------------------*/
footer{
}

footer > div{
  padding: 40px 15px 20px 15px;
}

footer #f_add{
  text-align: center;
}

footer #f_add h2{
  width: 100%;
  margin: 0 auto;
}

footer #f_add h2 img{
  width: 150px;
  height: auto;
}

footer #f_add h2 span{
  display: block;
  margin-top: 0.5em;
  font-size: 2.0rem;
  font-weight: 700;
}

footer #f_add h2 + p{
  margin-top: 1em;
  font-size: 1.6rem;
  line-height: normal;
}

footer #f_add h2 + p span{
  display: block;
}

footer #f_add .f_tel{
  font-weight: 900;
  margin-top: 0.5em;
}

footer #f_add .f_tel a{
  font-size: 2.6rem;
  text-decoration: none !important;
}

footer #f_add .f_fax{
  font-weight: 900;
  margin-top: 0.5em;
}

footer #f_add .f_fax span{
  font-size: 2.6rem;
  text-decoration: none !important;
}


footer #f_navi{
  margin-top: 1em;
}

footer #f_navi ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

footer #f_navi ul li{
  margin-left: 1em;
}

footer #f_navi ul li a{
  display: flex;
  align-items: center;
}

footer #f_navi ul li a::before{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5px 0 7.5px 15px;
  border-color: transparent transparent transparent rgba(0,47,124,1.00);
  display: block;
  margin-right: 0.5em;
}

footer #copy{
  line-height: 50px;
  text-align: center;
  color: #FFF;
  font-weight: 700;
  font-size: 1.4rem;
  background: rgba(0,47,124,1.00);
}



@media only screen and (min-width: 768px) {
  
  footer{
  }
  
  footer > div{
    padding: 80px 0 40px 0;
    width: 690px;
    margin: 0 auto;
  }
  
  footer #f_add h2 span{
    margin-top: 1em;
    font-size: 3.2rem;
  }

  footer #f_add h2 + p{
  margin-top: 1em;
  font-size: 1.8rem;
  }
  
  footer #f_add h2 + p span{
    display: inline;
    margin-left: 1em;
  }

  footer #f_add .f_tel{
    margin-top: 1em;
  }

  footer #f_add .f_tel a{
    font-size: 3.0rem;
    margin-left: 0.2em;
    pointer-events: none;
  }
  
  footer #f_add .f_fax{
    margin-top: 0.5em;
  }

  footer #f_add .f_fax span{
    font-size: 3.0rem;
    margin-left: 0.2em;
  }


  footer #f_navi{
    margin-top: 40px;
  }

  footer #f_navi ul li{
    margin-left: 1.5em;
  }

  footer #copy{
    line-height: 80px;
  }


}


@media only screen and (min-width: 1024px) {
  
  footer > div{
    width: 900px;
  }
  
}


@media only screen and (min-width: 1280px) {
  
  footer > div{
    width: 1040px;
  }
  
}



/*---------------------------------------------------------------

    アンカーリンク

---------------------------------------------------------------*/
#anchor{
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 110;
  display: none;
}

#anchor a{
  width: 50px;
  height: 50px;
  background: rgba(0,47,124,1.00);
  border-radius: 10px;
  /* box-shadow */
  box-shadow: 0px 0px 16px -5px #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#anchor a::before{
	content: "";
  width: 16px;
  height: 16px;
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
  box-sizing: border-box;
  transform: rotate(-45deg);
  margin: 6px 0 0 2px;
}


@media only screen and (min-width: 768px) {
  
  #anchor a{
    width: 80px;
    height: 80px;
  }
  
  #anchor a::before{
    width: 26px;
    height: 26px;
    margin: 12px 0 0 2px;
  }
  
}


@media only screen and (min-width: 1024px) {
}


@media only screen and (min-width: 1280px) {


	
}