@charset "utf-8";

*:focus {
outline: none;
}

/*========= 上部固定させるためのCSS ===============*/
#header {
	position: fixed; /*fixedを設定して固定*/
	height: 60px; /*高さ指定*/
	width: 100%; /*横幅指定*/
	z-index: 999; /*最前面へ*/
	top: 0;
	/*以下はレイアウトのためのCSS*/
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: none;
	color: #333333;
	background-color: rgba(255,255,255,0.75);
	box-shadow: 0 0 5px 2px rgba(0,0,0,0.1);
	text-align: center;
	padding: 10px 20px;
}
@media screen and (max-width:767px) {
	#header {
		padding: 20px 10px 20px 20px;
	}
}


/*------------------------------------------ハンバーガーメニュー*/
/*ボタン外側*/
.openbtn1 {
  position: relative;/*ボタン内側の基点となるためrelativeを指定*/
  background: none;
  cursor: pointer;
  width: 50px;
  height: 36px;
  border-radius: 5px;
}

/*ボタン内側*/
.openbtn1 span {
  display: inline-block;
  position: absolute;
  left: 14px;
  height: 2px;
  background: #b41e00;
  width: 45%;
}
.openbtn1 span:nth-of-type(1) {
  top:6px; 
}
.openbtn1 span:nth-of-type(2) {
  top:13px;
}
.openbtn1 span:nth-of-type(3) {
  top:20px;
}
.openbtn1 span.openbtn_text {
  top:28px;
	left: 1px;
	background: none;
	font-size: 1.0rem;
	letter-spacing: 0.1em;
	text-align: center;
	width: 100%;
}


/*--------------------------------------モーダルメニュー開閉*/
/*hideエリアをはじめは非表示*/
.hide-area{
	display: none;
}
/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after, 
.modaal-close:before{
	background:#ccc;	
}
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}
/*--------------------------------------モーダルメニュー開閉 ここまで*/

/*========= レイアウトのためのCSS ===============*/
.h_logo {
	width: 220px;
	position: relative;
	/*top: 13px;
    left: 10px;*/
	z-index: 100;
}

nav#hmenu {
	display: flex;
	flex-wrap: wrap;
}
nav#hmenu ul {
	list-style: none;
	display: flex;
	justify-content: center;
}
nav#hmenu ul li a {
	display: block;
	text-decoration: none;
	color: #333333;
	padding: 10px;
	font-size: 1.3rem;
	letter-spacing: 0.02em;
	line-height: 1;
	font-weight: 700;
	transition: all 0.3s;
	position: relative;
}
nav#hmenu ul li a.link_column {
	color: #ffffff;
	background-color: #b41e00;
	border-radius: 6px;
}
nav#hmenu ul li.current a,
nav#hmenu ul li a:hover,
nav#hmenu ul li a:active {
	color: #b41e00;
	text-shadow: none;
}
nav#hmenu ul li.current a.link_column,
nav#hmenu ul li a.link_column:hover,
nav#hmenu ul li a.link_column:active {
	color: #ffffff;
	opacity: .7;
}
@media screen and (max-width:1199px) {
	nav#hmenu ul li.spnone {
		display: none;
	}
}


/*--------モーダル内メニュー*/
ul#menu {
	display: flex;
	flex-wrap: wrap;
	max-width: 600px;
	margin: 0 auto;
}
ul#menu li {
	width: 48%;
	font-size: 1.4rem;
	margin-bottom: 0.8em;
}
ul#menu li a {
	display: block;
	color: #ffffff;
	font-weight: 700;
}
@media screen and (max-width:767px) {
	ul#menu {
		justify-content: space-between;
	}
}









