@charset "utf-8";
/* このファイルはUTF-8のBOMなし(UTF-8N)で保存しています */

/**
 * CSS Information
 * ===============================================================
 *
 * Site URL:  http://
 * File name: contents.css
 * Summary:   ページ・コンテンツごとの固有スタイル
 * Author:    CrEa., Inc.
 *
 * -----------------------------------
 *
 * TOC:
 *     =0    common
 *     =1    home
 *
 * ===============================================================
*/



/** =0
 * ========================================
 * common
 * ========================================
 */

body.index {		background: url(../image/bg_index.gif) 0 0 repeat;}
body.result0 {		background: url(../image/bg_00.gif) 0 0 repeat;}
body.result15 {		background: url(../image/bg_15.gif) 0 0 repeat;}
body.result30 {		background: url(../image/bg_30.gif) 0 0 repeat;}
body.result50 {		background: url(../image/bg_50.gif) 0 0 repeat;}
body.result70 {		background: url(../image/bg_70.gif) 0 0 repeat;}
body.result100 {	background: url(../image/bg_100.gif) 0 0 repeat;}


.l-container {
	position: relative;
	height: auto;
	min-height: 100%;
	max-width: 1024px;
	width: 90%;
	margin: 0 auto;
	padding-bottom: 30px;
}
	/* -- >>> styles for narrow layout ----- */
	@media screen and (max-width: 599px) {
		.l-container {
			width: 95%;
			padding-bottom: 15px;
		}
	}

	/** =1-1
	 * header
	 * ----------------------------------
	 */

	.l-header {
		width: 100%;
		height: auto;
		margin: 0 auto;
		text-align: center;
		margin-bottom: -28px;
		position: relative;
		z-index: 100;
	}
		/* -- >>> styles for narrow layout ----- */
		@media screen and (max-width: 680px) {
			.l-header {
				xmargin-bottom: -18px;
				margin-bottom: -4vw;
			}
		}


	/** =1-2
	 * contents
	 * ----------------------------------
	 */

	.l-contents {
		background: #FFFFFF;
		border-radius: 18px;        /* CSS3草案 */  
		-webkit-border-radius: 18px;    /* Safari,Google Chrome用 */  
		-moz-border-radius: 18px;   /* Firefox用 */
		padding: 30px;
	}
		/* -- >>> styles for narrow layout ----- */
		@media screen and (max-width: 599px) {
			.l-contents {
				padding: 15px;
				border-radius: 10px;        /* CSS3草案 */  
				-webkit-border-radius: 10px;    /* Safari,Google Chrome用 */  
				-moz-border-radius: 10px;   /* Firefox用 */
			}
		}


/** =1
 * ========================================
 * home
 * ========================================
 */

#home .l-contents {
	padding: 30px 5%;
}
#home .l-contents p.first{
	font-weight: bold;
	font-size: 120%;
	text-align: center;
}
	/* -- >>> styles for narrow layout ----- */
	@media screen and (max-width: 599px) {
		#home .l-contents p.first{
			text-align: left;
			padding: 10px;
		}
		#home .l-contents {
			padding: 15px 5%;
		}
	}

#home .l-contents ul{
	margin: 3% 0;
}
#home .l-contents ul li {
	position: relative;
	display: inline-block;
	display: block;
	margin-bottom: 20px;
}
#home .l-contents ul input {
	position: absolute;
	top: 0;
	opacity: 0;
	width: 100%;  
	height: 100%;
	cursor: pointer;
}
 
#home .l-contents ul input[type="checkbox"] + label {
	display: block;
	background-image: url(../image/checkbox_off.png);
	background-size: 42px;
	background-position: left top;
	background-repeat: no-repeat;
	padding: 0 0 0 60px;
}
 
#home .l-contents ul input[type="checkbox"]:checked + label {
	background-image: url(../image/checkbox_on.png);
}

#home .l-contents ul li label img{
	max-width: 525px;
	width: 100%;
	margin-bottom: 10px;
}
	/* -- >>> styles for narrow layout ----- */
	@media screen and (max-width: 599px) {
		#home .l-contents ul input[type="checkbox"] + label {
			background-size: 30px;
			padding: 0 0 0 40px;
		}
	}

#home .l-contents .btn{
	width: 180px;
	height: 60px;
	margin: 0 auto;
}
#home .l-contents .btn button{
	background: url(../image/btn.png);
	width: 180px;
	height: 60px;
	text-indent: -9999px;
	border: none;
	cursor: pointer;
	-moz-transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
#home .l-contents .btn button:hover{
	filter: alpha(opacity=40);
    -moz-opacity:0.40;
    opacity:0.40;
}



/** =2
 * ========================================
 * result
 * ========================================
 */

#result .l-contents {
	text-align: center;
}
#result .l-contents p.result{
	margin: 2%;
}
#result .l-contents p.result_txt{
	font-weight: bold;
	font-size: 135%;
	line-height: 1.6;
	margin: 3% 0;
}
#result .l-contents .footer p img{
	margin: 15px 0 ;
}
#result .l-contents .footer p.sns img{
	margin: 5px ;
}
	/* -- >>> styles for narrow layout ----- */
	@media screen and (max-width: 599px) {
		#result .l-contents{
			text-align: left;
		}
		#result .l-contents p.result_txt{
			font-size: 120%;
			margin: 5% 0;
		}
		#result .l-contents .footer{
			text-align: center;
		}
		#result .l-contents .footer p img{
			margin: 10px 0 ;
		}
		#result .l-contents .footer p.sns img {
			margin: 5px 0 ;
		}
	}

