@charset "UTF-8";


/*========================================

#menu_button

========================================*/

#menu_button {
    position: fixed;
    top: 20px;
    right: 4%;
    z-index: 300;
    width: 80px;
    height: 80px;
	background: #ffffff;
    cursor: pointer;
}

#menu_button .menu_button_wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 40px;
}

#menu_button .menu_button_wrap > div {
    position: relative;
    height: 30px;
}

#menu_button .bar {
    position: absolute;
    width: 100%;
    height: 1px;
    background: #024789;
    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.75em;
    font-weight: 500;
    color: #024789;
}

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) {

	/* #menu_button {
		top: 20px;
		right: 4%;
	} */

}


@media (min-width: 1024px) {
	
	#menu_button {
		display: none;
	}

}









/*========================================
==========================================

#menu_body

==========================================
========================================*/

#menu_body {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -10;
    width: 100%;
    height: 100%;
    background: rgba(2,71,137,0.95);
    transition: all 0.5s;
    /* overflow-y: scroll; */
    opacity: 0;
}

input#menu_checkbox:checked ~ #menu_body {
    opacity: 1;
    z-index: 200;
}

#menu_body .menu_body_wrap {
    padding: 40px 6.25% 80px;
}

#menu_body .nav_area {
    padding: 40px 0 0;
}

#menu_body nav.menu_links ul li {
    border-bottom: solid 1px #ffffff;
}

#menu_body nav.menu_links ul li a {
    display: block;
    padding: 20px 0;
}


#menu_body nav.menu_links ul li a span {
    display: block;
    float: left;
    padding-right: 20px;
    font-size: 1.2em;
    font-weight: 700;
    line-height: 20px;
    color: #ffffff;
    transition: all 0.3s;
}

#menu_body nav.menu_links ul li a p {
	float: left;
    font-size: 0.8em;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 1px;
    color: #ffffff;
    transition: all 0.3s;
}

#menu_body nav.menu_links ul li a:hover span,
#menu_body nav.menu_links ul li a:hover p {
    color: #6596c4;
}

#menu_body nav.sns_links {
    padding: 20px 0 0;
}

#menu_body nav.sns_links ul li {
    float: left;
    width: 30%;
    margin: 0 0 20px;
}

#menu_body nav.sns_links ul li a {
    display: inline-block;
    font-size: 0.8em;
    line-height: 1;
    color: #ff3052;
    transition: all 0.3s;
}

#menu_body nav.sns_links ul li a:hover {
    color: #6fb334;
}

#menu_body nav.sns_links ul li a i {
    padding-right: 2px;
}

#menu_body .logo {
    width: 200px;
}

#menu_body .logo img {
    display: block;
    width: 100%;
    height: auto;
}


@media (min-width: 768px) {

	
}


@media (min-width: 1024px) {
	
	#menu_body {
		display: none;
	}

}









/*========================================
==========================================

header

==========================================
========================================*/

/*----------------------------------------

common

----------------------------------------*/

header .con {
	position: relative;
	width: 100%;
	height: 120px;
}


@media (min-width: 768px) {

	/* header .con {
		height: 160px;
	} */

}


@media (min-width: 1024px) {

}




/*----------------------------------------

.head_logo

----------------------------------------*/

header .head_logo {
	position: absolute;
	top: 50%;
	left: 4%;
	transform: translateY(-50%);
	width: 160px;
}

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;
}


@media (min-width: 768px) {

	header .head_logo {
		width: 200px;
	}
	
}


@media (min-width: 1024px) {
	

}




/*----------------------------------------

.head_nav

----------------------------------------*/

header .head_nav {
	display: none;
}


@media (min-width: 768px) {

}


@media (min-width: 1024px) {

	header .head_nav {
		display: block !important;
		position: absolute;
		top: 50%;
		right: 4%;
		transform: translateY(-50%);
		/* width: 65%;
		max-width: 800px; */
	}

	header .head_nav ul {
		display: flex;
	}

	header .head_nav ul li {
		flex: auto;
        margin-right: 25px;
	}

    header .head_nav ul li:last-of-type {
        margin-right: 0;
    }

	header .head_nav ul li a {
		display: block;
        font-size: 1em;
        font-weight: 700;
        letter-spacing: 1px;
        color: #024789;
        transition: all 0.3s;
	}

    header .head_nav ul li a:hover {
        color: #7D8902;
    }

	/* header .head_nav ul li a span.en {
		display: block;
	}


	header .head_nav ul li a p {
        text-align: center;
		font-size: 0.8em;
		font-weight: 700;
		letter-spacing: 1px;
		line-height: 1;
		color: #024789;
		transition: all 0.3s;
	}

	header .head_nav ul li a:hover p {
		color: #6596c4;
	} */

}