﻿body {
    background-color: #ffffff;
}


/*ヘーダー画像ここから*/
@media screen and (max-width: 768px) {
	#headerwrap {
        background-color: #00008b;
;  	background-size: cover;
  	opacity: 0.9;
	text-align: center;
}
	#headerwrap h1 {
	color: #ffffff;
	text-shadow: 1px 3px 6px #222222, 0 0 0 #000, 1px 3px 6px #444444;
	font-size: 30px;
	font-weight: bold;
	margin-top: 100px;
	}
}
@media screen and (min-width: 769px) {
	#headerwrap {
  	background-color: #00008b;
  	background-size: cover;
  	opacity: 0.9;
	text-align: center;
}
	#headerwrap h1 {
	color: #ffffff;
	text-shadow: 1px 3px 6px #222222, 0 0 0 #000, 1px 3px 6px #444444;
	font-size: 50px;
	font-weight: bold;
	margin-top: 100px;
	min-height: 100px;
	}
}
/*ヘーダー画像ここまで*/


#past-camps {
	margin-bottom: 40px;
}

#past-camps .title {
	font-size: 18px;
	font-weight: bold;
	color: #666666;
	text-align: center;
}

#related-links {
  	background-color: #f8e58c;
  	color: #444444;
	width: 100%;
	padding: 40px 10px;
	font-size: 16px;
}

#related-links ul {
	list-style-type: none;
}

#logos {
	background-color: #ffffff;
}

.logo-height1 {
	padding-top: 20px;
	padding-bottom: 10px;
}

.logo-height2 {
	padding-top: 5px;
}

.copyright {
	font-size: 14px;
	background-color: #393e4f;
	color: #ffffff;
	text-align: center;
	padding-top: 12px;
	line-height: 80%;
}
a{
	display: inline-block;
	position: relative;
	color: #3037ff;
 	text-decoration: none;
}
a:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 4px;
	background: #a9a9a9;
	transform: scale(0, 1);
	transition: 0.4s;
}
a:hover:before {
	transform: scale(1);
}