@charset "utf-8";
/* CSS Document */
/* common css*/
/*文字*/
body{
	font-family: "メイリオ","Hiragino Kaku Gothic ProN","Hiragino Sans",sans-serif;
	font-size: 14px;
		 background-image: url("../images/iconicon10_small.svg"),linear-gradient(rgba(40, 26, 20, 1), rgba(40, 26, 20, 1));/*背景模様*/
  background-repeat: repeat-y;
    background-size: 200%;
	background-attachment: fixed;
}
main{
	width:100%;
}
/*見出しh2のセクション*/
.h2box{
	margin: 0 auto;
	height: 280px;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: transparent;
	color: #fff;
}
.h2icon{
	margin-top: 120px;
	width: 10vw;
	height: 10vw;
}
h2{
	text-align: center;
}
.bg_red{
	background-color:#8B0000;
	color: white;
}

.bg_green{
	background-color:#1E6E57;
	color: white;
}

.bg_yellow{
	background-color:#F6DD0F;
	color: black;
}

.bg_white{
	background-color:#FFFFFF;
	color: black;
}

/* header common*/
header{
	position:fixed;
	top: 0;
	left: 0;
	width:100%;
	border-bottom: solid 1px #281A14;
	z-index: 99999;
}

nav{
	display:none;
}

#header_flexbox{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex:0 0 20%;
}

#togglebutton{
	background: none;
	border: none;
	margin-right: 10px;
	color: white;
}

ul{
	list-style-type: none;
}

nav ul{
	display: flex;
	flex-wrap: wrap;
	width: auto;
	height: 75vh;
	z-index: 999;
}

nav ul a{
	color: white;
	text-decoration: none;
	text-align: center;
}

nav li{
	display: block !important;
	flex: 1 1 50%;
	text-align: center;
	background-color: black;
}

.nav_box{
	display:flex;
	align-items: center;
	justify-content: center;
	height: 25vh;
	border: solid 3px #fff;
	margin: 0 -3px -3px 0;
}
.nav_contact{
    line-height:1.2;
}

h1{
	padding-top: 10px;
	padding-left: 10px;
}

/*ニュッと出るメニュー*/
#nyu_menu {
	font-size: 100%;
	font-weight: bold;
	list-style: none;
}
#nyu_menu li {
	margin-bottom: 0.8em;
}
#nyu_menu li a {
    background-position: 30px center;
    background-repeat: no-repeat;
    color: #281A14;
    display: block;
    height: 64px;
    line-height: 64px;
    padding-left: 90px;
    position: fixed;
    text-decoration: none;
}
.nyu{
	background-image:url("../images/nyu.png");
	top:130px;
	right: -100px;
	z-index: 10001;
}
/*見出しh3茶色のハト*/
.brown{
	text-align: center;
}
.brown::before{
	content: url("../images/h3_lb.svg");
	display: inline-block;
	width: 50px;
	height: 40px;
	vertical-align: center;
}
.brown::after{
	content: url("../images/h3_rb.svg");
	display: inline-block;
	width: 50px;
	height: 40px;
	vertical-align: center;
}
/*見出しh3白いハト*/
.pg{
	text-align: center;
	color: #fff;
}
.pg::before{
	content: url("../images/h3_lw.svg");
	display: inline-block;
	width: 50px;
	height: 40px;
	vertical-align: center;
}
.pg::after{
	content: url("../images/h3_rw.svg");
	display: inline-block;
	width: 50px;
	height: 40px;
	vertical-align: center;
}


/* フッター：スマホ画面サイズ*/

#footer_wrap{
	text-align: center;
	padding:20px ;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

adress{
	display: inline-block;
	margin: 0 auto;
	padding-top: 30px;
		font-size: 12px;
}

footer caption{
	font-size:14px;
	font-weight: bold;
	padding-bottom:5px;
}
footer table{
	min-width:100px; 
}

footer td{
	text-align: left;
    padding-left: 15px;
	font-size: 12px;
}

footer a{
	color:white;
	font-size: 12px;
	text-decoration: none;
}

#footer_logoandCW{
	padding-top: 20px;
	text-align: center;
	align-items: center;
}


/* 以上footer　*/

/*共通部分：ディスプレイサイズ768以上(PC想定)*/
@media(min-width: 768px){

/* 以下PCヘッダー */
	#header_flexbox{
		justify-content: center;
	}
	#header_togglebutton{
		display: none;
	}
	
	#togglemenu{
		flex:0 0 80%;
		display:inline;
	}
	
	nav ul{
		height:100px;
		width:auto;
		flex-wrap: nowrap;
	}	

	nav li{
		padding:0.5rem;
		font-size:12px;
		flex: 1;
		background-color:inherit;
	}
	
	.nav_innerbox{
		margin-top:5px;
		align-items: center;
	}
	
	
	nav{
		background-color: inherit;
	}
	
	h1{
		height: auto;
	}
	
	#header_wrap{
		display: flex;
		margin: 0 auto;
		width: 90%;
		max-width: 800px;
		align-items:center;
		justify-content: center;
	}
	
	.nav_box{
		height: auto;
		min-width:80px;
		border: none;
	}
/* 以上ヘッダー（PC) */
	
/* 以下メイン部分（PC） */
	body{
		font-size: 16px;
	}
	.h2icon{
		max-width: 80px;
		max-height: 80px;
	}
/* 以下フッター（PC) */
	#footer_wrap{
		margin: 0 auto;
		max-width: 600px;
		display:flex;
		flex-direction: row;
		justify-content: space-between;
		align-items:center;
        text-align:left;
	}
    #footer_wrap adress{
        margin: 0;
    }
    
	}

/* ==========================
IE10以降対策
============================= */
@media all and (-ms-high-contrast:none){
	body{
		background-image:none;
		background-color:rgba(40, 26, 20, 1);/*背景模様*/
}
}
/* ==========================
Edge対策
============================= */
@supports (-ms-ime-align:auto) {


}

/* common css以上 */