@charset "UTF-8";
body, a {
	color: #515151;
}
a:hover {
	opacity: 0.7;
}
h1 {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",
		"ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
	color: #FFF;
	font-size: 3rem;
	letter-spacing: 0.2rem;
	/*text-shadow: 0 0 5px rgba(31,50,53,0.8), 0 0 5px rgba(31, 50, 53, 0.3);*/
	margin: 0;
}
h2 {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",
		"ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
	font-size: 2.6rem;
	letter-spacing: 0.5rem;
}
.contentWrapper {
	width: 80%; /*70%*/
	margin: 0 auto;
	text-align: center;
	padding: 2rem 0;
}
.container2 {
	width: 80%; /*70%*/
	margin: auto auto;
	padding: 2rem 0;
	display: flex;
	flex-flow: column;
	min-height: 50vh;
}
/*.contentWrapper h1 {
	margin: -18% auto;
	text-align: center;
	padding: 2rem 0;
}*/

/** header **/
.contents-fix {
	max-width: 1020px;
	margin: 0 auto;
	padding: 0 20px;
}
.header {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	padding-top: 1.5em;
	padding-bottom: 1.5em;
}
.header-logo {
	margin: 0;
	font-size: 2em;
	line-height: 1;
}
.header-logo img {
	display: block;
	width: 6em;
	height: 100%;
}
.nav-menu {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	font-size: 1rem;
}
.nav-menu-item + .nav-menu-item {
	margin-left: 2em;
}
.nav-menu-item a {
	color: #333;
	font-weight: bold;
}
.nav-menu-item .btn_highlighted {
	color: white;
}
.hamburger-btn {
	display: none;
}
/*header {
	background-image: url("../images/mainv.jpg");
	height: 150px;
	background-size: cover;
	background-repeat: no-repeat;
}
header h1 {
	font-size: 30px;
}
header a {
	color: #FFF;
	font-weight: bold;
	text-shadow: 0 0 20px rgba(0,0,0,0.6);
}
header ul {
	display: flex;
	margin: 0;
	padding: 20px;
}
header li {
	padding: 0 15px;
}
header .contentWrapper {
	padding-top: 10rem;
}*/
.title {
	margin-bottom: 2rem;
    padding: 30px;
	background: #FED333;
}
.title h1 {
	/*margin: 0;*/
    line-height: 1;
	text-align: center;
	font-size: 2rem;
	color: #0d0015;
}

/*****************お知らせページ*****************/
/*.news h2 {
	font-size: 28px;
}*/
.news dl {
	/*width: 100%;*/
	margin: 0 auto;
	padding: 12px 10px;
}
.news dt, .news dd {
	float: left;
	text-align: left;
	padding: 10px 0;
	line-height: 160%;
}
.news dt {
	width: 10%;
}
.news dd {
	width: 80%;
}
.space {
	display: inline-block;
	margin-left: 60px;
}



/*****************お知らせページここまで*****************/

/** footer **/
#upperFooter {
	margin-top: 50px;
	background-color: #FED333;  /*#dfdfdf*/
}
#bottomFooter {
	background-color: #343434;
	text-align: center;
}
#upperFooter li {
	flex-grow: 1;
	flex-basis: auto;
}
footer nav {
	width: 70%;
	margin: 0 auto;
}
footer p,footer h2 {
	margin: 0;
}
small {
	color: #FFF;
	font-weight: bold;
	padding: 20px;
	display: block;
}

.flex {
	display: flex;
}
.clearfix::after {
	display: block;
	content: "";
	clear: both;
}

/* ここから上がPC向けCSS */
@media screen and (max-width: 480px) {
/*この中がスマートフォン向けCSS*/
	/*** common setting ***/
	.contentWrapper {
		width: 90%;
	}
	.title {
		font-size: 1.3rem;
		margin-bottom: 0;
	}
	.title h1 {
		font-size: 1.3rem;
	}
	h1 {
		font-size: 1.3rem;
	}
	h2 {
		font-size: 1.3rem;
	}
	/** header **/
	.contents-fix {
		width: auto;
		padding: 0 1rem;
	}
	
	.header {
		padding-top: 1.5em;
		padding-bottom: 1.5em;
	}
	header .contentWrapper {
		width: 100%;
		padding-top: 2rem;
	}
	header .contentWrapper p {
		font-size: 0.75rem;
	}
	.nav-menu {
		position: fixed;
		top: 0;
		left: -100%;
		bottom: 0;
		z-index: 1000;
		display: block;
		width: 70%;
		padding: 1rem;
		background-color: #fff;
		transition: left 0.3s ease-out 0s;
	}
	.nav-menu-item + .nav-menu-item {
		margin-left: 0;
	}
	.nav-menu-item a:not(.btn) {
		display: block;
		padding: 0.7rem;
	}
/*	.nav-menu-item:last-child {
		margin-top: 0.7rem;
	}*/
	.nav-menu.is-active {
		left: 0;
	}
	.header-menu-background {
		display: block;
    	background-color: #333;
		z-index: 998;
    	opacity: 0;
    	transition: opacity 0.3s ease-out 0s;
	}
	.nav-menu.is-active + .header-menu-background {
    	position: fixed;
    	top: 0;
    	right: 0;
		width: 100%;
    	height: 100%;
		opacity: 0.7;
	}
	.nav-menu.is-active + .header-menu-background + .hamburger-btn {
		color: #fff;
	}
	.hamburger-btn {
		position: relative;
		display: block;
		font-size: 1.5rem; /*2.5rem*/
		z-index: 999;
		background-color: #FED333; /*ハンバーガーバックカラー*/
		color: #FFFFFF;
		padding: 5px; /*周りの余白*/
	}
	
	/** お知らせページ **/
	#news dt {
		width: 100%;
		padding: 10px 0;
	}
	#news dd {
		width: 100%;
		padding-left: 0;
		margin-left: 0;
	}
	.news {
        width: 100%;
    }
	/** お知らせページここまで **/


	
	/** footer **/
	#upperFooter .contentWrapper,footer nav {
		width: 100%;
	}
	#upperFooter li {
		flex-grow: 1;
		flex-basis: auto;
		border-bottom: 1px solid #c0c0c0;
		padding: 1rem 0;
	}
	#upperFooter li:first-child {
		border-top: 1px solid #c0c0c0;
	}
	
	.flex {
		display: block;
	}
}


