@charset "utf-8";
/* CSS Document */

/* ヘッダー見出しの文字色 */
div#header h1 a {
	color: #06C;
        font-size: large; 
}
/* ヘッダー見出しの文字色（マウスオーバー時） */
div#header h1 a:hover {
	color: #09F;
}
/* ヘッダー説明文の文字色 */
div#header p {
	color: #666;
}

/* Landscape phones and down */
@media (max-width: 480px) {
	body {
		background-image: none !important;
	}
	div#contents img {
		max-width: 100%;
		height: auto !important;
		display: inline-block;
		float: none !important;
	}
	ul#global_menu {
		display: none;
	}
	.display_sp {
		display: inline-block;
	}
	.display_pc {
		display: none;
	}
}

@media (max-width: 767px) {
	ul#global_menu {
		display: none;
	}
}
 

/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) {
	div#header {
		height: 200px;
		padding: 0.5em;
		margin: 1em 0;
	}
	div.container {
		width: 900px;
		border-left: 1px solid #CCC;
		border-right: 1px solid #CCC;
	}
	div#socialbuttons {
		overflow: hidden;
		clear: both;
	}
	div#socialbuttons>div {
		float: left;
	}
	.display_sp {
		display: none;
	}
	.display_pc {
		display: inline-block;
	}
}

div#header h1 {
	margin: 0;
}
div.container {
	background: #FFF;
}
ul#global_menu {
	padding: 0;
}
ul#global_menu li {
	font-size: 12px;
	width: 16.28%;
	display: inline-block;
	text-align: center;
	border: 1px solid #666;
	background: #CCC;
}
ul#global_menu li a {
	display: block;
	padding: 5px;
}
/* div#contents h3 {*/
/* 	padding: 0.5em;*/
/* 	background: #CCC;*/
/* 	clear: both;*/
/* 	margin: 1em 0;*/
/* }*/

h3{
position: relative;
background: #dfefff;
box-shadow: 0px 0px 0px 5px #dfefff;
border: dashed 2px white;
padding: 0.2em 0.5em;
color: #454545;
}

h3:after{
position: absolute;
content: '';
left: -7px;
top: -7px;
border-width: 0 0 15px 15px;
border-style: solid;
border-color: #fff #fff #a8d4ff;
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}


.breadcrumb>li+li:before {
	content: none;
}

div.ovh {
	overflow: hidden;
}

a.cp_btn {
position: relative;
width: 160px;
padding: 0.8em;
text-align: center;
font-weight: bold;
text-decoration: none;
color: #2196F3;
transition: .4s;
}
a.cp_btn:before {
position: absolute;
display: inline-block;
content: '';
width: 4px;
height: 100%;
top: 0;
left: 0;
border-radius: 3px;
background:#2196F3;
transition: .2s;
}
a.cp_btn:after {
position: absolute;
display: inline-block;
content: '';
width: 4px;
height: 100%;
top:0;
left: 100%;
border-radius: 3px;
background:#2196F3;
transition: .2s;
}
a.cp_btn:hover:before,a.cp_btn:hover:after {
transform: rotate(20deg);
}