@charset "UTF-8";
/* CSS Document */

nav{
	width: 100%;


}
ul {
	margin:0;
}
li {
	list-style:none;
	line-height: 2;
	margin:0;
	padding:0px;
	font-family: "Times New Roman", Times, "serif";
	font-size: 18px;
}
li a ,.tel_a{
	color:#fff;
	text-decoration:none;
}
li a:hover , .tel_a:hover {
	color:#dfdfdf;
	text-decoration:underline;
}

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

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

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

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

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

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

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

/* アイコンがクリックされたら真ん中の線を透明にする */
#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: 0;
  left: 100%;/* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #333;
  transition: .5s;
padding: 3%;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked ~ .drawer-content {
  left: 0;/* メニューを画面に入れる */
}
.foot_ul li{float: left;margin-right: 3%;font-size: 1em;padding-top: 3%;}
/*================================================
 *  スマートフォン向けデザイン
 ================================================*/
@media screen and (max-width:560px) {
.foot_ul li{float: none;margin-right: 3%;font-size: 1em;padding-top: 3%;}

}
