@charset "UTF-8";

/*

header.css

*/




/*========================================

#menu_button

========================================*/

#menu_button {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 300;
    cursor: pointer;
    transition: all 0.25s;
}

#menu_button .menu_button_inner {
    width: 80px;
    height: 80px;
    padding: 23px;
}

#menu_button .menu_button_wrap {
    position: relative;
    width: 34px;
    height: 34px;
}

#menu_button .bar {
    position: absolute;
    width: 100%;
    height: 5px;
	background: #313131;
    transition: all 0.5s;
}

#menu_button .bar1 {
    top: 0px;
    right: 0;
}

#menu_button .bar2 {
    top: 10px;
    right: 0;
}

#menu_button .menu_txt {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size: 0.8em;
    font-weight: 700;
    line-height: 1;
	color: #313131;
    transition: all 0.5s;
}

input#menu_checkbox:checked ~ #menu_button .bar1 {
    top: 5px;
    transform: rotate(20deg);
}

input#menu_checkbox:checked ~ #menu_button .bar2 {
    top: 5px;
    transform: rotate(-20deg);
}


@media (min-width: 768px) {

}


@media (min-width: 1024px) {
    
    #menu_button {
        display: none;
    }
    
}




/*========================================

#menu_body

========================================*/

#menu_body {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -100;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.9);
    overflow-y: scroll;
    /* -webkit-overflow-scrolling: touch; */
	transition: all 0.5s;
    opacity: 0;
}

input#menu_checkbox:checked ~ #menu_body {
    opacity: 1;
    z-index: 200;
}

#menu_body .menu_body_wrap {
    width: 100%;
    height: 100%;
}

#menu_body .main_menu {
    padding: 80px 20px;
}

#menu_body .main_menu ul li {
    border-bottom: solid 1px #313131;
}

#menu_body .main_menu ul li a {
	display: block;
	position: relative;
	padding: 20px 0;
	font-size: 0.9em;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 1px;
	transition: all 0.3s;
	color: #313131;
}

#menu_body .main_menu ul li a:hover {
    color: #008000;
}

#menu_body .main_menu ul li a span {
	display: inline-block;
	margin-left: 15px;
	font-size: 0.9em;
	transition: all 0.3s;
}

#menu_body .main_menu ul li a:hover span {
    color: #008000;
}

#menu_body .main_menu ul li a:before {
	display: block;
	content: '\f054';
	font-family: "Font Awesome 5 Free";
	font-size: 1;
	font-weight: 900;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	color: #313131;
	transition: all 0.3s;
}

#menu_body .main_menu ul li.tab a:before {
	content: '\f08e';
}

#menu_body .main_menu ul li a:hover:before {
    color: #008000;
}


@media (min-width: 768px) {
    
}


@media (min-width: 1024px) {
    
    #menu_body {
        display: none;
    }

}




/*========================================

header

========================================*/

header {
    width: 100%;
    height: 80px;
    background: #ffffff;
}

header .con {
	position: relative;
	height: 80px;
}

header .head_logo {
	position: absolute;
	top: 50%;
	left: 4%;
	transform: translateY(-50%);
	width: 160px;
	height: auto;
}

header .head_logo a {
	display: block;
}

header .head_logo img {
	display: block;
	width: 100%;
	height: auto;
	transition: all 0.3s;
}

header .head_logo a:hover img {
	opacity: 0.7;
}

header .head_nav_pc {
    display: none;
}


@media (min-width: 768px) {

    

}


@media (min-width: 1024px) {

    header {
        position: fixed;
        top: 0px;
        z-index: 100;
    }

	header .con {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0 40px;
	}

	header .head_logo {
		position: static;
		transform: translateY(0);
		width: 180px;
	}

    header .head_nav_pc {
        display: block !important;
    }

    header .head_nav_pc ul li {
        float: left;
        margin-right: 40px;
    }

    header .head_nav_pc ul li:last-of-type {
        margin-right: 0;
    }

    header .head_nav_pc ul li a {
        display: block;
        text-align: center;
        font-size: 0.9em;
        font-weight: 700;
        letter-spacing: 1px;
        transition: all 0.3s;
    }

    header .head_nav_pc ul li a i {
        padding-left: 3px;
        transition: all 0.3s;
    }

    header .head_nav_pc ul li a span {
        display: block;
        font-size: 0.9em;
        transition: all 0.3s;
    }

    header .head_nav_pc ul li a:hover,
    header .head_nav_pc ul li a:hover i,
    header .head_nav_pc ul li a:hover span {
        color: #008000;
    }

}