@charset "utf-8";

/*===============================================
●PC.css 画面の横幅が769px以上 ヘッダー　フッター
===============================================*/
@media screen and (min-width: 769px) {

/*-------------------------------------------
ヘッダー
-------------------------------------------*/
#herder-box {
	display: flex;
	width: 1160px;
	height: 80px;
	margin: 0 auto;
	 -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
 align-items: center; /* 縦方向中央揃え */
 -webkit-justify-content: center; /* 横方向中央揃え（Safari用） */
 justify-content: center; /* 横方向中央揃え */
}


      .h_rogo {
	display: flex;
	width: 300px;
	height: 70px;
}
		

#h_navbox {
	font-size: 16px;
	font-weight: 400;
display: flex;
justify-content: flex-end;
flex: 1;
}


	.hc {
		color: #F0Adc8;
	}
	
.nav1 {
	display: flex;
	}

	
.nav2 {
	display: flex;
	margin-left: 30px;
	}
	
.nav3 {
	display: flex;
	margin-left: 30px;
	}
	
.nav4 {
	display: flex;
	margin-left: 30px;
	}
	
.nav5 {
	display: flex;
	margin-left: 30px;
	}

.nav6 {
	display: flex;
	margin-left: 30px;
	}	
	
.nav7 {
	display: flex;
	margin-left: 30px;
	}	

#slide-line{
    position: absolute;
    bottom: 0;
    height: 2px;
    background-color:#55CAEC;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
    
    
    /*-------------------------------------------	
非表示
--------------------------------------------*/	
.drawer {
		display: none;
	}
		
/*-------------------------------------------	
ご相談・お問い合わせ
--------------------------------------------*/	

	.p_text {
		text-align: center;
		margin-bottom: 20px
	}
	 
	.cntact_tel {
	text-align: center;
	width:850px;
	height: auto;
	margin: 0 auto 40px auto;
	}
	
    a.no-links  {
    pointer-events: none;
}


	.cntact_form {
	width: 400px;
	height: 80px;
	margin: 0 auto;
	}


	
/*-------------------------------------------
フッターナビゲーションメニュー
-------------------------------------------*/
footer {
	width:100%;
	height:auto;
    margin:0 auto 0 auto;
	padding:80px 0 0 0;
	font-size:13px;
	overflow: hidden;
    bottom:0;
	}

#f_pc {
	width:1160px;
	height:auto;
    margin:0 auto 20px auto;
	
	}
	
#fad_add_pc {
	    width:450px;
		margin: 0 auto 40px auto;
		text-align: left;
	}
	
	#fad_nav_pc {
		width: 800px;
		margin: 0 auto 20px auto;
display: flex;
justify-content: center;
justify-content: space-around;
	}
	
		.nav_left {
		display: flex;
	}
	
#f_sp {
	display: none;
	}
	
	.f_rogo {
		text-align: center;
		width:450px;
		margin-bottom: 20px;
	
	}
	
/*-------------------------------------------
コピーライト
-------------------------------------------*/		
.copyright {
	width: 100%;
	height: auto;
	font-size: 11px;
	padding:5px;
	text-align: center;
	margin: 0 auto 0 auto;
    color: #fff;
    background-color: #3698ce;
}




}

/*===============================================
●SP.css  画面の横幅が768pxまで　ヘッダー フッター
===============================================*/
@media screen and (max-width:768px) {
/*-------------------------------------------
ヘッダー
-------------------------------------------*/
#herder-box {
    width: 100%;
    height: auto;
    position: fixed!important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
    z-index:100;
    background-color: #fffaf0;
    
}


.h_rogo {
	width: 253px;
}


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

  ここから下がハンバーガーメニュー
  に関するCSS

------------------------------*/
  
/* チェックボックスは非表示に */
.drawer-hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer-open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;/* 重なり順を一番上に */
  cursor: pointer;
    padding: 0 20px 0 0;
}

/* ハンバーガーメニューのアイコン */
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}

/* 三本線のうち一番上の棒の位置調整 */
.drawer-open span:before {
  bottom: 8px;
}

/* 三本線のうち一番下の棒の位置調整 */
.drawer-open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer-check:checked ~ .drawer-open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 60px;
  left: 100%;/* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #fffaf0;
  transition: .5s;
}
    
    .drawer-item {
       
	border-bottom: 1px solid #000000;
    }
    
     li a {
          padding:10px;
	display: block;
	text-decoration: none;
}


/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked ~ .drawer-content {
  left: 0;/* メニューを画面に入れる */
}

/*-------------------------------------------	
非表示
--------------------------------------------*/	
#h_navbox {display: none}
	
.link {
	display: none;
	}
	
	#f_pc {
	display: none;
	}
	
/*-------------------------------------------
	ご相談
--------------------------------------------*/
.cntact_tel {
	text-align: center;
	width:100%;
	height: auto;
	margin: 0 auto 40px auto;
	}

.cntact_form {
	width: 80%;
	height: auto;
	margin: 0 auto;
	}


	
.p_text {
		text-align: left;
		margin-bottom: 20px;
	}


/*-------------------------------------------
フッターナビゲーションメニュー
-------------------------------------------*/	
footer {
    margin:0 auto 0 auto;
	padding:60px 15px 0 15px;
	font-size: 90%;
	overflow: hidden;
	}
	
	
	.f_rogo {
	width:100px;
	height:72px;
    margin:0 auto 20px auto;
	}
	
#fad_add_sp {
	    width:100%;
		margin: 0 auto 40px auto;
	
		text-align: center;
	
	}
	
	#fad_nav_sp {
	width:100%;
	height:auto;
	margin: 0 auto 40px auto;
		overflow: hidden;
	}
	
	.line_t {
		border-top: solid #B2B2B2 1px;
	}
	
	
	/* コピーライト */
.copyright {
width: 100%;
	height: auto;
	font-size: 60%;
	padding:3px 0 3px 0;
	text-align: center;
    color: #fff;
    background-color: #3698ce;
}

	
/*-------------------------------------------
リンクボタン
-------------------------------------------*/		
	
	/* リンクボタン */
    .button {
	width: 100%;
	height: auto;
	border-bottom: solid #B2B2B2 1px;
	}
	
/* リンク領域のスタイル */
   .button-a {
	   font-weight: 600;
   display: block;
   padding: 15px 0 15px 0;
    
}
	
		
	.f_img {
		text-align: center;
		margin: 0 auto 30px auto;
	}

}
