@charset 'UTF-8';





/*


	Base


*/

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

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

/*  a  */
a {
	color: inherit;
	cursor: pointer;
}
a:hover {
	opacity: 0.75;
}
a.link {
	color: #289d1a;
}

/*  em  */
em {
	font-style: normal;
	color: #ffff00;
}

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

@keyframes fadeIn {
	0% {
		opacity:0;
		transform: translateY(-50%);
	}
	100% {
		opacity:1;
		transform: translateY(0);
	}
}
.fadeIn {
	animation-name: fadeIn;
	animation-duration: 1s;
	animation-timing-function: linear;
}

@keyframes slideUp {
	0% {
		opacity:0;
		transform: translateY(100%);
	}
	100% {
		opacity:1;
		transform: translateY(0);
	}
}
.slideUp.animate.show {
	animation-name: slideUp;
	animation-duration: 1s;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
}

@keyframes slideIn {
	0% {
		opacity:0;
		transform: translateX(100%);
	}
	100% {
		opacity:1;
		transform: translateX(0);
	}
}
@media screen and (min-width: 800px) {
	.slideIn.animate.show {
		animation-name: slideIn;
		animation-duration: 1s;
		animation-timing-function: linear;
	}
}

@keyframes zoom {
	0% {
		opacity: 0;
		transform: scale(0);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
.zoom {
	animation-name: zoom;
	animation-duration: 1s;
	animation-timing-function: linear;
}
.zoom.animate.show {
	animation-name: zoom;
	animation-duration: 1s;
	animation-timing-function: linear;
}





/*

	header

*/
/*  common  */
header {
	background-color: rgba(255,255,255,0.75);
}
header .container {
	position: relative;
	padding: 10px;
	overflow: hidden;
}
/*  .bar  */
header .bar {
	background-color: #000000;
	color: #ffffff;
}
header .bar .container p {
	margin: 0;
	font-size: 1.0rem;
	text-align: center;
}
@media screen and (min-width: 800px) {
	header .bar .container p {
		font-size: 1.5rem;
	}
	header .bar .container p:nth-of-type(1) {
		float: left;
	}
	header .bar .container p:nth-of-type(2) {
		float: right;
	}
}

/*  .sitetop  */
header .container a.sitetop {
	display: block;
	line-height: 0;
}
header .container a.sitetop img {
	width: auto;
	height: 40px;
}
@media screen and (min-width: 800px) {
	header .container a.sitetop img {
		height: 60px;
	}
}

/*  .tel  */
header .container a.tel {
	position: absolute;
	top: 0;
	right: 60px;
	display: block;
	width: 60px;
	height: 60px;
	padding: 10px;
	background-color: #289d1a;
	line-height: 1;
	box-sizing: border-box;
}
header .container a.tel:before {
	content: "";
	display: inline-block;
	width: 40px;
	height: 40px;
	background-image: url('./images/tel_w.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
header .container a.tel span {
	display: none;
}
@media screen and (min-width: 800px) {
	header .container a.tel {
		right: 80px;
		width: auto;
		height: 80px;
		padding: 20px;
		font-size: 3.0rem;
	}
	header .container a.tel:before {
		margin: 0 10px 0 0;
		vertical-align: middle;
	}
	header .container a.tel span {
		display: inline;
		font-weight: bold;
		color: #ffffff;
	}
}

/*  .mail  */
header .container a.mail {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 60px;
	height: 60px;
	padding: 10px;
	background-color: #ffffff;
	line-height: 1;
	box-sizing: border-box;
}
header .container a.mail:before {
	content: "";
	display: inline-block;
	width: 40px;
	height: 40px;
	background-image: url('./images/mail.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
@media screen and (min-width: 800px) {
	header .container a.mail {
		width: 80px;
		height: 80px;
		padding: 20px;
	}
}





/*

	footer
	
*/
/*  common  */
footer {
	background-image: url('./images/footer.jpg');
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
}
@media screen and (min-width: 800px) {
	footer>.container {
		padding: 4em 0;
	}
}

/*  .sitetop  */
footer .container a.sitetop {
	display: block;
	margin: 0 auto;
	text-align: center;
	line-height: 0;
}
footer .container a.sitetop img {
	width: auto;
	height: 40px;
}
@media screen and (min-width: 800px) {
	footer .container a.sitetop img {
		height: 100px;
	}
}

/*  .catch  */
footer .container p.catch {
	font-size: 1.5em;
	font-weight: bold;
	text-align: center;
}
@media screen and (min-width: 800px) {
	footer .container p.catch {
		font-size: 3em;
	}
}

/*  nav  */
footer nav {
	width: 100%;
	padding: 10px;
	background-color: rgba(255,255,255,0.75);
	box-sizing: border-box;
}
footer nav ul {
	width: 100%;
	list-style: none;
	margin: 0 auto;
	overflow: hidden;
}
footer nav ul li {
	float: left;
	width: 50%;
	margin: 0;
}
footer nav ul li a:before {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	margin: 0 0.5em 0 0;
	border: 0.25em solid transparent;
	border-left: 0.25em solid #289d1a;
}
@media screen and (min-width: 800px) {
	footer nav ul {
		max-width: 1020px;
	}
	footer nav ul li {
		width: 25%;
	}
}

/*  .base  */
footer .base {
	background-color: #eeeeee;
}
footer .base .container ul {
	margin: 0;
	list-style: none;
	text-align: center;
}
footer .base .container ul li {
	display: inline;
	margin: 0;
	font-size: 1.0rem;
}
footer .base .container ul li+li:before {
	content: "|";
	margin: 0 1em;
}
footer .base .container small {
	display: block;
	font-size: 1.0rem;
	text-align: center;
}
@media screen and (min-width: 800px) {
	footer .base .container {
		overflow: hidden;
	}
	footer .base .container ul {
		float: left;
		text-align: left;
	}
	footer .base .container small {
		float: right;
		text-align: right;
	}
}





/*

	#mv

*/
/*  common  */
#mv {
	background-image: url('./images/bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
}
#mv .container {
	position: relative;
}
@media screen and (min-width: 800px) {
	#mv {
		background-image: none;
	}
}

/*  .catch  */
#mv .container p.catch {
	font-size: 2.5em;
	font-weight: bold;
	color: #ffffff;
	text-shadow: 2px 2px 2px #000000;
	line-height: 1.25;
}
@media screen and (min-width: 800px) {
	#mv .container p.catch {
		font-size: 4em;
	}
}

/*  .pop  */
#mv .container p.pop {
	position: absolute;
	top: 3.5em;
	right: 0;
	margin: 0;
}
#mv .container p.pop a {
	display: inline-block;
	width: 8em;
	height: 8em;
	padding: 1.25em 1em;
	border-radius: 9999px;
	background-color: #d20000;
	font-size: 1.25em;
	font-weight: bold;
	color: #ffffff;
	text-align: center;
	box-sizing: border-box;
}
#mv .container p.pop a span {
	display: block;
	margin: 0.5em 0 0 0;
	font-size: 0.5em;
	color: #ffff00;
}
@media screen and (min-width: 800px) {
	#mv .container p.pop {
		top: 6em;
		right: 15%;
	}
	#mv .container p.pop a {
		font-size: 2em;
	}
}

/*  .bar  */
#mv .bar {
	background-color: #289d1a;
}
#mv .bar .container p {
	margin: 0;
	font-size: 1.5em;
	font-weight: bold;
	color: #ffffff;
}
#mv .bar .container p span {
	display: block;
}
#mv .bar .container p span:before {
	content: "";
	display: inline-block;
	width: 1em;
	height: 1em;
	margin: 0 0.5em 0 0;
	background-image: url('./images/caution.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	vertical-align: middle;
}
#mv .bar .container img {
	position: absolute;
	right: 0;
	bottom: 0;
	display: block;
	width: 30%;
	height: auto;
}
@media screen and (min-width: 800px) {
	#mv .bar .container p {
		width: 75%;
		font-size: 2em;
	}
	#mv .bar .container p span {
		display: inline;
	}
}





/*

	#task

*/
/*  common  */
#task {
	background-color: #eeeeee;
}
@media screen and (min-width: 800px) {
	#task {
		background-color: transparent;
	}
}

/*  .sample  */
#task .container .sample {
	position: relative;
	margin: 0 auto;
	padding: 0 5px 5px;
	overflow: hidden;
	box-sizing: border-box;
}
#task .container .sample+.sample {
	margin-top: 2em;
}
#task .container .sample ul {
	list-style: none;
	width: 75%;
	margin: 0;
	padding: 1.5em;
	background-color: #ffffff;
	box-shadow: 3px 3px 3px #cccccc;
	box-sizing: border-box;
}
#task .container .sample:nth-of-type(odd) ul {
	float: right;
}
#task .container .sample:nth-of-type(even) ul {
	float: left;
}
#task .container .sample ul li {
	position: relative;
	margin: 0;
	padding: 0 0 0 1.5em;
	font-weight: bold;
	text-align: justify;
	text-justify: distribute;
	box-sizing: border-box;
}
#task .container .sample ul li:before {
	position: absolute;
	top: 0.25em;
	left: 0;
	content: "";
	display: block;
	width: 1em;
	height: 1em;
	background-image: url('./images/check.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
#task .container .sample img {
	display: block;
	width: 30%;
	height: auto;
	z-index: 1;
}
#task .container .sample:nth-of-type(odd) img {
	position: absolute;
	left: 0;
	bottom: 0;
}
#task .container .sample:nth-of-type(even) img {
	position: absolute;
	right: 0;
	bottom: 0;
}
@media screen and (min-width: 600px) {
	#task .container .sample {
		min-height: 200px;
	}
	#task .container .sample ul li {
		font-size: 1.5em;
	}
}
@media screen and (min-width: 700px) {
	#task .container .sample {
		min-height: 250px;
	}
}
@media screen and (min-width: 800px) {
	#task .container .sample {
		width: 800px;
		min-height: 300px;
	}
}





/*

	#solution

*/
#solution {
	background-blend-mode: multiply;
	background: #289d1a url('./images/solution.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover; 
}
#solution .container p {
	color: #ffffff;
	font-weight: bold;
	text-align: center;
}
#solution .container p strong {
	display: block;
	font-size: 2em;
}
#solution .container p strong span {
	display: block;
}
#solution .container p small {
	display: block;
	font-size: 0.75em;
}
@media screen and (min-width: 800px) {
	#solution .container p {
		font-size: 1.5em;
		text-align: left;
	}
}





/*

	#contact

*/
/*  common  */
@media screen and (min-width: 800px) {
	#contact {
		background-color: rgba(255,255,255,0.75);
	}
}
/*  .bar  */
#contact .bar {
	position: relative;
	background-color: #d20000;
}
#contact .bar:after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2em;
	content: "";
	display: block;
	width: 0;
	height: 0;
	margin: auto;
	border: 1em solid transparent;
	border-top: 1em solid #d20000;
}
#contact .bar .container p {
	margin: 0;
	font-size: 1.5em;
	font-weight: bold;
	color: #ffffff;
	text-align: center;
}
@media screen and (min-width: 800px) {
	#contact .bar .container p {
		font-size: 2em;
	}
}

/*  .list  */
#contact .container ul.list {
	list-style: none;
	margin: 0 auto;
}
#contact .container ul.list li {
	margin: 1em 0;
	font-weight: bold;
	text-align: center;
}
#contact .container ul.list li span {
	display: block;
	font-size: 1.25em;
	color: #d20000;
}
#contact .container ul.list li a {
	display: inline-block;
	width: 100%;
	margin: 0.5em auto;
	padding: 0.5em 1em;
	border-radius: 10px;
	background-color: #d20000;
	font-size: 1.5em;
	color: #ffffff;
	text-align: center;
	box-sizing: border-box;
}
#contact .container ul.list li a:before {
	content: "";
	display: inline-block;
	width: 1em;
	height: 1em;
	margin: 0 0.5em 0 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	vertical-align: middle;
}
#contact .container ul.list li a.tel:before {
	background-image: url('./images/tel_w.png');
}
#contact .container ul.list li a.mail:before {
	background-image: url('./images/mail_w.png');
}
#contact .container ul.list li small {
	display: block;
	color: #000000;
}
#contact .container ul.list li:nth-of-type(2) small {
	width: 65%;
	text-align: left;
}
@media screen and (min-width: 800px) {
	#contact .container ul.list {
		max-width: 600px;
	}
	#contact .container ul.list li a {
		font-size: 2em;
	}
}

/*  img  */
#contact .container {
	position: relative;
}
#contact .container img {
	position: absolute;
	right: 0;
	bottom: 0;
	display: block;
	width: 40%;
	height: auto;
}

