@charset "utf-8";

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
margin:0;
padding:0;
border:0;
outline:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
}

body {
line-height:1;
	}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
display:block;
}

nav ul {
list-style:none;
}

blockquote, q {
quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
content:'';
content:none;
}

a {
margin:0;
padding:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
}

del {
text-decoration: line-through;
}

abbr[title], dfn[title] {
border-bottom:1px dotted;
cursor:help;
}

table {
border-collapse:collapse;
border-spacing:0;
}

/* change border colour to suit your needs 
*/
hr {
display:block;
height:1px;
border:0; 
border-top:1px solid #cccccc;
margin:1em 0;
padding:0;
}

input, select {
vertical-align:middle;
}

* {
	margin: 0;
	padding: 0;
}

html,body {
	text-align: center;
}

/*Chrome*/
::-webkit-scrollbar {/*スクロールバーの幅*/
    width: 12px;
    height: 12px;
}
::-webkit-scrollbar-track {/*スクロールバーの軌道*/
    background: #009FA8;
}
::-webkit-scrollbar-thumb {/*つまみの部分*/
    box-shadow: inset 0 0 10px #EFEFEF;
    border-radius: 10px;
    background: #EFEFEF;
}
::-webkit-scrollbar-thumb:hover {/*マウスホバー時*/
    background: #CCCCCC;
}
/*Firefox*/
.hljs {/*適用させる箇所のID, クラスに置き換えてください*/
    scrollbar-width: thin;/*細さ(幅・高さ両方に適用)*/
    scrollbar-color: #EFEFEF #EFEFEF;/*つまみの色 軌道の色*/
}

body {
	-webkit-text-size-adjust: 100%;
	/*background-color: #FFFFFF;*/
	background-size: cover;
	background-position: center;
	background-repeat:no-repeat;
	
}

a,a:link,a:visited {
	overflow: hidden;
}

a:hover,a:active,a:focus {
	overflow: hidden;
}

a img,:link img,:visited img {
    border: none;
}

a:link{
	text-decoration: underline;
	color:#000000;
}

a:visited {
	text-decoration: underline;
	color:#000000;
}

a:hover{
	text-decoration:none;
	color: #009FA8;
	transition: color 0.3s ease 0s;
}

a:active {
	text-decoration: underline;
	color:#000000;
}

p,div,th,td {
	background-image: url(img/dummy.png);
}

img { 
    max-width: 100%; 
    height:auto;
	image-rendering: -webkit-optimize-contrast;
	-ms-interpolation-mode: bicubic;
	-webkit-backface-visibility: hidden;
}	

.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
}

.pc {
	display: block;	
}

@media screen and (max-width: 680px) {
.pc {
	display: none;
}
}

.sp {
	display: none;
}

@media screen and (max-width: 680px) {
.sp {
	display: block;
}
}

#wrapper {
	margin: 0 auto;
}

/*-----------------------------------------------
	#copy
-----------------------------------------------*/

#copy {   
	padding: 30px 0;
	margin: 0 auto;
	
}
@media screen and (max-width: 991px) {
	#copy {
		padding: 30px 0;
	}
}

#copy h5 {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 88%;
	font-weight: 400;
	font-style: normal;
	line-height: 1.8em;
	letter-spacing: 1px;
	color: #000000;
}
@media screen and (max-width: 680px) {
	#copy h5 {
		font-size: 88%;
	}
}
#copy .copyarea {
	margin: 0 auto;
	padding: 0;
	max-width: 1140px;
}
@media screen and (max-width: 680px) {
	#copy .copyarea {
		width: 95%;
	}
}

.fade_off {
    opacity: 0;
    -webkit-transition: all 3s;
    -moz-transition: all 3s;
    -o-transition: all 3s;
    -ms-transition: all 3s;
    transition: all 3s;
}

.fade_on {
    opacity: 1;
}