@charset "UTF-8";

/*Header*/
#header{
	width:800px;
	height:50px;
	font-size:95%;
	/* background-image:url(../images/head_bg.jpg); */
	margin: 0 auto;
	border-bottom: 1px solid #c4c4c4;
}
@media screen and (max-width:768px) {
	#header{
	width:100%;
	height: 52px;
	font-size:95%;
	/* background-image:url(../images/head_bg.jpg); */
	margin: 0 auto;
	border-bottom: 1px solid #c4c4c4;
	box-sizing: border-box;
}
}
#menu{
	display: block;
	width:800px;
}
@media screen and (max-width:768px) {
#menu{
	display: block;
	width:100%;
}	
}

#menu div.logo,
#menu h1.logo{
	float:left;
	width:200px;
	height: 30px;
	padding-top:10px;
	padding-left:10px;
	padding-bottom:10px;
}
#menu .headtop{
	float: right;
	margin-top:20px;
	margin-right:10px;
	word-spacing:8px;
	color:#FFFFFF;
}

.space{
	word-spacing:1px;
}

#menu p{
	margin: 0;
}
#menu .headtop p.textsize{
	float: left;
	padding-left: 13px;
	padding-right:10px;
	background-image:url(/common/images/head_icon01.gif);
	background-repeat: no-repeat;
	background-position: 0 0.2em;
}

#menu .headbtm{
	min-width: 400px;
	float: right;
	margin-right:10px;
}
#menu .headbtm ul li.headlink{
	float: left;
	padding-left: 13px;
	margin-left:10px;
	margin-top:5px;
	margin-bottom:5px;
	background-repeat: no-repeat;
	background-position: 0 0.3em;
}


#header a:link{
	color: #555;
	text-decoration:
	none;
}

#header a:visited{
	color:#555;
	text-decoration:none;
}

#header a:hover,
#header a span:hover{
	opacity:.75;
	text-decoration:underline;
}

.header-logo{
	max-width:200px;
}

@media screen and (max-width:768px) {
.header-logo{
	max-width: 220px;
}	
}

.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 33px;
    width: 53px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    /* background-color: #3584bb; */
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 30px;
    /* border-radius: 3px; */
    background-color: #000000;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #3584bb;
}
.menu-content ul {
    padding: 70px 30px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #888;
    list-style: none;
    font-size: 14px;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 16px;
    box-sizing: border-box;
    color: #000;
    text-decoration: none;
    padding: 20px 23px 20px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #000000;
    border-right: solid 2px #000000;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 30px;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #d9dada;
    transition: all 0.5s;/*アニメーション設定*/
}

#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}