/* CSS Document */
/* ------------------------------------------------------------------------ */

/*  reset

/* ------------------------------------------------------------------------ */

html {
	overflow-y	: scroll;
	height		: 100%;
}

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
pre,form,fieldset,p,blockquote {
	margin 	: 0;
	padding : 0;
}

fieldset {
	display:inline;
}

address,caption,cite,code,dfn,em,strong,th,var {
	font-style : normal;
}

li {
	list-style-type : none;
}

/* Flexible Images */
img{
    max-width	: 100%;
    height		: auto;
    width /***/	: auto;
}

.pcStyle{
	display: block;
}

.spStyle{
	display: none;
}

a{
	text-decoration	: none;
	color: #2470b3;
}

a:visited {
	text-decoration	: underline;
}

a:hover {
	text-decoration	: none;
	opacity: 0.8;
}




/* list
--------------------------------------------------------------------------- */

.ulStyle01 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin	: 10px 50px 40px;
}

	.ulStyle01 li {
		width: 48%;
		border: 2px solid #2470b3;
		border-radius: 5px;
		list-style	: none;
		margin		: 0 0 15px !important;
		padding		: 0;
		text-align	: left;
		box-shadow: 2px 2px 4px #f0f0f0;
	}
	
	.ulStyle01 li a{
		font-size: 20px;
		display: block;
		padding: 15px;
		font-weight: bold;
		text-align: center;
	}

body{
	border-top: 20px solid #2470b3;
	border-bottom: 20px solid #2470b3;
	margin: 0;
	padding		: 0;
	font-family	: 'Noto Sans Japanese',"Meiryo","MS PGothic", sans-serif;
	font-size	: 87%;
	line-height	: 1.8;
	color		: #444;
}

body * {
	box-sizing: border-box;
}

.logo{
	text-align: center;
	margin: 80px auto 40px;
}

#contentsBlock{
	max-width: 840px;
	width: 100%;
	margin: 0 auto;
}

.copy{
	text-align: center;
	color: #666666;
	font-size:14px;
}


ul.lang{
	max-width: 1000px;
	width: 100%;
	margin: 50px auto;
	padding: 5px 0;
	display: flex;
	justify-content: center;
}
	
	ul.lang li{
		border-left: 1px solid #2671b2;
	}
	
	ul.lang li:first-child{
		border-left:none;
	}
	
	ul.lang li a{
		font-weight: bold;
		display: block;
		color: #2671b2;
		padding: 0 7px;
		text-decoration: underline;
	}
	
@media screen and (max-width:660px){
	.logo{
		margin: 40px auto;
	}
	
	#contentsBlock{
		padding: 0 10px;
	}
	
	.ulStyle01{
		display:block;
	}
		.ulStyle01 li{
			width: 100%;
		}
		
		.ulStyle01 li a{
			padding: 10px;
			font-size: 16px;
		}
	
	ul.lang {
		display: flex;
		flex-wrap: wrap;
	}
}