@charset 'UTF-8';





/*


	Base


*/

/*  font  */
body {
	font-family: 'M PLUS 1p', sans-serif;
	color: #000000;
	font-size: 13px;
	font-size: 1.3rem;
	font-weight: 700;
}
@media screen and (min-width: 800px) {
	body {
		font-size: 15px;
		font-size: 1.5rem;
	}
}

/*  heading  */
h2 {
	margin: 1em 0;
	font-size: 1.75em;
}
h3 {
	margin: 0 0 1em 0;
	font-size: 1.25em;
}
h4 {
	margin: 0 0 1em 0;
	font-size: 1em;
}
@media screen and (min-width: 800px) {
	h2 {
		font-size: 3em;
	}
	h3 {
		font-size: 2em;
	}
	h4 {
		font-size: 1.5em;
	}
}

/*  layout  */
body {
	position: relative;
}
body:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: url('./images/bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	//opacity: 0.75;
	z-index: -1;
}
.container {
	width: 100%;
	margin: 0 auto;
	padding: 10px;
	text-align: center;
	box-sizing: border-box;
}
section .container {
	padding: 1em 10px;
}
@media screen and (min-width: 800px) {
	.container {
		padding: 1em 0;
		max-width: 1020px;
		text-align: left;
	}
	section .container {
		padding: 2em 0;
	}
}

/*  a  */
a {
	color: inherit;
	cursor: pointer;
}
a:hover {
	opacity: 0.75;
}

/*  i  */
i {
	display: block;
	font-style: normal;
}
@media screen and (min-width: 800px) {
	i {
		display: inline;
		margin: 0 1em;
	}
}

/*  img/iframe  */
img,
iframe {
	width: 100%;
	height: auto;
}

/*  .link_btn  */
.link_btn {
	text-align: center;
}
.link_btn a {
	display: inline-block;
	padding: 0.25em 1em;
	border-radius: 9999px;
	background-color: #0A3E8B;
	font-size: 1.5em;
	font-weight: 800;
	color: #ffffff;
	text-align: center;
	box-sizing: border-box;
}

/*  @keyframes  */
@keyframes fadeUp {
	0% {
		opacity:0;
		transform: translateY(3em);
	}
	100% {
		opacity:1;
		transform: translateY(0);
	}
}
.fadeUp.animate {
	opacity: 0;
}
.fadeUp.animate.show {
	opacity:1;
	animation-name: fadeUp;
	animation-duration: 0.8s;
	animation-timing-function: linear;
}





/*

	header

*/
/*  common  */
header {
	padding: 10px 0 0 0;
	background-color: #ffffff;
	background-image: url(./images/bar.png);
	background-repeat: no-repeat;
	background-size: 100% 10px;
	background-position: center top;
	box-sizing: border-box;
}
/*  .sitetop  */
header .container a.sitetop {
	display: inline-block;
	line-height: 0;
}
header .container a.sitetop img {
	width: auto;
	height: 30px;
}
@media screen and (min-width: 800px) {
	header .container a.sitetop img {
		height: 45px;
	}
}





/*

	footer
	
*/
footer {
	padding: 10px 0 0 0;
	background-color: #ffffff;
	background-image: url(./images/bar.png);
	background-repeat: no-repeat;
	background-size: 100% 10px;
	background-position: center top;
	box-sizing: border-box;
}
/*  .sitetop  */
footer .container a.sitetop {
	display: inline-block;
	line-height: 0;
}
footer .container a.sitetop img {
	width: auto;
	height: 30px;
}
footer .container p {
	margin: 1em 0 0;
}
@media screen and (min-width: 800px) {
	footer .container {
		overflow: hidden;
	}
	footer .container a.sitetop img {
		height: 45px;
	}
	footer .container p {
		float: right;
		margin: 1em 0;
	}
}





/*

	#mv

*/
#mv .container h2+p {
	font-size: 1.25em;
}
#mv .container img {
	display: block;
	margin: 0 auto;
	width: auto;
	height: 30px;
}
@media screen and (min-width: 800px) {
	#mv .container {
		position: relative;
	}
	#mv .container h2+p {
		font-size: 1.5em;
	}
	#mv .container img {
		position: absolute;
		top: -22.5px;
		right: 0;
		height: 45px;
	}
}





/*

	#action

*/
#action {
	background-color: rgba(255,255,255,0.75);
}
#action .container ul {
	list-style: none;
	text-align: left;
}
#action .container ul li {
	margin: 1em 0;
	padding: 0 1em;
	overflow: hidden;
	box-sizing: border-box;
}
#action .container ul li:nth-of-type(1) h3,
#action .container ul li:nth-of-type(1) h4 {
	color: #346928;
}
#action .container ul li:nth-of-type(2) h3,
#action .container ul li:nth-of-type(2) h4 {
	color: #C78004;
}
#action .container ul li:nth-of-type(3) h3,
#action .container ul li:nth-of-type(3) h4 {
	color: #EF9000;
}
#action .container ul li img {
	float: right;
	width: 35%;
	margin: 0 0 1em 1em;
}
@media screen and (min-width: 800px) {
	#action .container ul {
		display: flex;
	}
	#action .container ul li {
		width: 33.33%;
		padding: 0 2em;
	}
	#action .container ul li img {
		float: none;
		width: 100%;
		margin: 0 0 1em 0;
	}
}




/*

	#example

*/
#example .container {
	max-width: none;
}
#example .container p {
	text-align: center;
}
#example .container .bx-wrapper {
	margin: 2em 0;
	max-width: 100% !important;
	border: none;
	background-color: transparent;
	box-shadow: none;
	overflow: hidden;
}
#example .container .bx-wrapper .bx-viewport ul.bxslider {
	margin: 0;
}
#example .container .bx-wrapper .bx-viewport ul.bxslider li {
	margin: 0;
	width: 180px;
	height: 120px;
	overflow: hidden;
}






/*

	#sumup

*/
#sumup {
	background-color: rgba(255,255,255,0.75);
}
#sumup .container img {
	display: block;
	margin: 0 auto 1em;
	width: auto;
	height: 100px;
}
#sumup .container p {
	font-size: 1.25em;
}
@media screen and (min-width: 800px) {
	#sumup .container {
		position: relative;
	}
	#sumup .container img {
		position: absolute;
		right: 0;
		bottom: 2em;
	}
	#sumup .container p {
		font-size: 1.5em;
	}
}
