@charset "utf-8";
/* CSS Document */
	body {
		font-family: "Hiragino Kaku Gothic ProN","Hiragino Sans",  Meiryo, "sans-serif"
	}
	a {
		color: inherit;
		text-decoration: none;
	}
	p {
		font-size: 30px;
		color: #FFF;
	}
	/* iOS含めて確実にロックする */
	body.no-scroll {
		position: fixed;
		width: 100%;
		overflow: hidden; /* 念のため */
	}
/*------ここからヘッダー------*/
	.pcnav {
		display: none;
	}
	header {
		position: fixed;
		height: 80px;
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		background: #fff;
		box-shadow: 0px 0px 10px #999999ad;
		z-index: 999;
	}
	header ul {
		padding-top: 30%;
	}
	header ul li {
		border-top: 1px solid #767676;
		padding: 20px 0;
	}
	header ul li:last-child {
		border-bottom: 1px solid #767676;
	}
	header a {
		font-size: 20px;
		font-weight: bold;
		color: #FFF;
		padding-left: 30px;
		display: block;
	}
	.h_logo {
		margin-left: -10%;
		width: 100px;
	}
/* ハンバーガーメニューに関するCSS */
  
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

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

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

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

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

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

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

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-30deg);
	background-color: #FFF;
}
  
/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #292929;
  transition: .3s;
}

/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 0;/* メニューを画面に入れる */
}
	.link_h_other {
		padding-top: 40px;
	}
	.link_h_other a {
		display: inline-block;
		font-size: 14px;
		color: #a1a1a1;
	}
/*-------------ここまでヘッダー-------------*/

/*-------------ここからフッター-------------*/
	.footer_pc {
		display: none;
	}
	footer {
		display:block;
		color: #FFF;
		background-color: #292929;
	}
	footer h2 {
		font-size: 22px;
	}
	footer .link_f a {
		display: block;
		color: #FFF;
		font-size: 20px;
		font-weight: bold;
	}
	.link_f {
		padding: 28px;
	}
	.link_f li {
		border-bottom: 1px solid #767676;
		padding: 10px 10px 10px 0px;
	}
	.link_f_other{
		padding: 0px 28px;
	}
	.link_f_other li {
		padding: 10px 10px 10px 0px;
	}
	.link_f_other li a{
		font-size: 12px;
	}
	.link_f_other li:last-child {
		border-bottom: 1px solid #767676;
		padding-bottom: 40px;
	}
	.f_logo {
		display: block;
		width: 30%;
		margin: 0 auto;
		padding: 60px 0px 20px;
	}
	.copyright {
		font-size: 10px;
		text-align: center;
		color: #999;
		margin: 0 auto;
		padding-bottom: 30px;
	}
/*------ここまでフッター------*/

@media screen and (min-width: 760px){
	body {
			width: 100%;
			margin: 0 auto;
		}
	.nav {
			display: none;
		}
	
	/*------ここからヘッダー------*/
	
	header {
			height: 100px;
		}
	header ul {
			padding-top: 0;
			padding-right: 40px;
		}
	header ul li {
		text-align:center; 
		border-top: none;
		line-height: 18px;
		padding-left: 40px;
		}
	header ul li:last-child {
		border-bottom: none;
		}
		header a {
			padding-left:  0;
		}
	.pcnav {
			display: flex;
		}
	.pcnav li a{
			font-size: 20px;
			color: #292929;
		}
	.pcnav span {
			font-size: 12px;
			font-weight: normal;
			color: #555555;
		}
	.h_logo {
			width: 120px;
			padding-left: 50px;
		}
	/*------ここまでヘッダー------*/
	/*------ここからフッター------*/
		.footer_phone {
			display: none;
		}
		.footer_pc {
			display: flex;
			justify-content: space-between;
		}
		.fpc_left {
			font-size: 10px;
			text-align: left;
			margin: 0 0 20px 40px;
		}
		.fpc_right {
			display: flex;
			padding: 60px 40px 0 0;
			padding-bottom: 10px;
		}
		.fpc_right_nav {
			font-size: 22px;
			font-weight: bold;
			line-height: 20px;
		}
		.fpc_right ul li{
			padding-bottom: 10px;
		}
		.fpc_right_nav span {
			font-size: 10px;
			font-weight: normal;
		}
		.fpc_right_other {
			font-size: 13px;
			white-space: nowrap;
			padding-left: 50px;
			line-height: 22px;
		}
		.f_logo {
			width: 50%;
			margin-left: 0;
			padding-bottom: 120px;
		}
		/*------ここまでフッター------*/
	}