@charset "utf-8";

body {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
}

.container {
	max-width: 1600px;
	margin: 0 auto;
	height: 100%;
	width: 100%;
}

h1 {
	color: #444444;
	font-size: min(3.8vw,22px) !important;
	font-weight: bold;
	line-height: 110%;
	margin: 30px 0 0 10px !important;
	display: block;
}

@media screen and (max-width:600px){
	h1 {
		font-size: min(2.4vw,15px) !important;
		margin: 20px 0 0 10px !important;
	}
}

header {
	position: fixed;
	left: 0px;
	top: 0px;
	display: flex;
	justify-content: flex-end;
	width: 100%;
	margin-bottom: 10px;
}

@media screen and (max-width:600px){
	header {
		height: 50px;
	}
}

header .h_inner {
	background: rgba(255,255,255,0.7);
	box-shadow: none;
	border-bottom-left-radius: 90px 90px;
	display: flex;
	justify-content: space-between;
	z-index: 2;
	width: 94%;
}

@media screen and (max-width:900px){
	header .h_inner {
		width: 98%;
	}
}


header a {
	color: #000;
	transition: 0.4s;
}

header a:hover {
	color: #29acef;
	text-decoration: none;
}

header ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

.h_inner .inner_left {
	display: flex;
}

@media screen and (max-width:600px){
	.h_inner .inner_left {
		width: 45%;
	}
}



/*ロゴ画像*/
header #logo {
	margin-left: 50px;
}

@media screen and (max-width:900px){
	header #logo {
		margin-left: 30px;
	}
}

@media screen and (max-width:600px){
	header #logo {
		margin-left: 20px;
		width: 15%;
	}
}


header #logo img {
	width: 80px;
}

@media screen and (max-width:900px){
	header #logo img {
		top: 10px;
		left: 10px;
	}
}

@media screen and (max-width:600px){
	header #logo img {
		width: 100%;
	}
}


header .top_nav {
	text-align: right;
	margin-right: 20px;
}

@media screen and (max-width:900px){
header .top_nav {
	margin-right: 0;
	}
}


/*アイコンを囲むブロック全体の設定*/
header ul.icon {
	display: inline-block;
	margin-top: 15px;
	margin-right: 8px;
	text-align: right;
}

@media screen and (max-width:900px){
	header ul.icon {
		margin-top: 12px;
		margin-right: 52px;
		left: auto;
		right: 70px;
		bottom: 0px;
	}
}

/*アイコン１個あたりの設定*/
header ul.icon li {
	display: inline;
}

@media screen and (max-width:900px){
	header ul.icon li {
	}
}


/*アイコン画像の設定*/
header ul.icon img {
	margin-left: 5px;
	max-width: 30px;
}


@media screen and (max-width:900px){
	header ul.icon img {
		margin: 0;
		max-width: 20px;
	}
}

@media screen and (max-width:600px){
	header ul.icon img {
		max-width: 15px;
	}
}


/* 未リンクのアイコンの透過  */
header ul.icon img.mute {
	opacity: 0.3;
}





/*ナビメニュー*/
header #menubar {
	font-size: 20px;
	overflow: hidden;
}

/*スマホ時：PC用メニュー非表示*/
@media screen and (max-width:900px){
	header #menubar {
		display: none;
	}
}




/*ナビメニュー１個あたりの設定*/
header #menubar li {
	overflow: hidden;
	float: left;
	text-align: center;
	padding: 0px 10px;
}

header #menubar li a {
	display:  block;text-decoration: none;
	padding-top: 3px;
}



/*PC時：スマホ用メニュー非表示*/
header #menubar-s {
	display: none;
}

/*スマホ時：スマホ用メニュー表示*/
@media screen and (max-width:900px){

	header #menubar-s {
		display: block;
		position: fixed;
		z-index: 3;
		top: 81px;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.8);
	}

	header #menubar-s li a {
		display: block;text-decoration: none;
		padding: 10px 3%;
		border-bottom: 1px solid #fff;
		color: #fff;
		font-size: 16px;
	}

	header #menubar-s li a span {
		display: block;
		font-size: 10px;
	}
}

/*狭いスマホ時*/
@media screen and (orientation: landscape) and (max-height:500px){
	header #menubar-s li a {
		float: left;
		width: 44%;
		line-height: 1.2;
	}
}






/*PC時：ハンバーガー非表示*/
header #menubar_hdr {
	display: none;
}

/*スマホ時：ハンバーガー表示*/
@media screen and (max-width:900px){

	/*ハンバーガー開閉ボタン*/
	header #menubar_hdr {
		display: block;
		position: fixed;z-index: 50;
		top: 1px;
		right: 2px;
	}

	header #menubar_hdr.close,
	header #menubar_hdr.open {
		width: 50px;
		height: 50px;
	}

	header #menubar_hdr.close {
		background: url(../img/common/icon_menu.png) no-repeat center top/50px;
	}

	header #menubar_hdr.open {
		background: url(../img/common/icon_menu.png) no-repeat center bottom/50px;
	}

}



.top_img img {
	border: none;
	margin-bottom: 50px;
	max-width: 1300px;
	width: 100%;
}


