@charset "utf-8";
/* CSS Document */
/*body{
	background-color: #cccccc;
}*/
h1{
	background-image: none;
	border: none;
	background-color: #116666;
	color: white;
	margin: 10px 0 20px 0;
	font-size: 24px;
	height: 44px;
	padding: 0 10px;
	display: flex;
	align-items: center;
}
h2{
	background-image: none;
	text-align: left;
	font-size: 21px;
	height: 40px;
	display: flex;
	align-items: center;
	padding: 0 10px 0 10px;
	background-color: #1a9999;
}
.omura_h1{
	background-image: none;
	border: none;
	background-color: #116666;
	color: white;
	margin: 10px 0 20px 0;
	font-size: 24px;
	height: 44px;
	padding: 0 10px;
	display: flex;
	align-items: center;
}
.omura_h2{
	background-image: none;
	text-align: left;
	font-size: 21px;
	height: 40px;
	display: flex;
	align-items: center;
	padding: 0 10px 0 10px;
	background-color: #1a9999;
}
.contents{
	width: 100%;
	background: white;
	padding: 10px;
}
/*スマホアコーディオン用インプットボタンを消す*/
.omura_accbox input {
		display: none;
	}
/*アンカーリンクずれ修正*/
.anchor{
	margin-top: -128px;
	padding-top: 128px;
}
/*スマホ対応*/
@media screen and (max-width : 767px ){
	#new_wrapper{
		width: 100%;
	}
	.container{
		width: 100%;
	}
	.contents{
		width: 100%;
		padding: 0;
	}
	.omura_h1{
		background-image: none;
		border: none;
		background-color: #116666;
		color: white;
		padding: 0 10px;
		font-size: 18px;
		line-height: 21px;
		height: 55px;
		display: flex;
		align-items: center;
		margin: 10px 0;
		width: 100%;
	}
	.omura_h2{
		background-image: none;
		text-align: left;
		font-size: 14px;
		height: 35px;
		display: flex;
		align-items: center;
		padding: 0 10px 0 10px;
		background-color: #1a9999;
		width: 100%;
	}
	/*アコーディオンメニュー-----------------------------*/
	/*ボックス全体*/
	.omura_accbox {
		margin: 0px;
		width: 100%;
		max-width: 767px;/*最大幅*/
		top:0;
		display: block;
		padding: 10px 0px 10px;
		position: relative;
        /*padding-top: 30px;*/
	}

	/*ラベル*/
	.omura_accbox label {
		display: block;
		margin: 0px;
		/*padding : 13px 12px;*/
		color: white;
		font-weight: normal;
		background: transparent;
		cursor :pointer;
		transition: all 0.5s;
		/*border-top: 1px solid gray;*/
		position: relative;
		border-bottom: 1px solid white;
	}
	.omura_accbox label:after {
		content: '＋';
		position: absolute;
		right: 10px;
		font-size: 20px;
		line-height: 35px;
		top: 0px;
	}

	/*チェックは隠す*/
	.omura_accbox input {
		display: none;
	}
	/*中身を非表示にしておく*/
	.omura_accbox .omura_accshow {
		height: 0px;
		padding: 0px;
		overflow: hidden;
		opacity: 0;
		/*transition: 0.8s;*/
		width: 100%;
		margin: 0;
	}

	/*クリックで中身表示*/
	.omura_accordion:checked + label + .omura_accshow {
		width: 100%;
		height: auto;
		padding: 10px;
		opacity: 1;
		margin: 0 0 25px 0;
	}

	.omura_accordion .omura_accshow p {
		margin: 15px 10px;
	}
	
	/*アイコンを入れ替える*/
	.omura_accordion:checked + label:after {
		content: 'ー';
	}
	/*アコーディオンメニュー終了-----------------------------*/
	
	/*アンカーリンクずれ修正 打消し*/
	.anchor{
		margin-top: 0px;
		padding-top: 0px;
	}
}