@charset "utf-8";


/* -----------------------------------------------------------------------------
	お問合わせ内
----------------------------------------------------------------------------- */
#contentsbox h3{
	padding:0 0 10px 15px;
	margin:30px 20px 10px 20px;
	border-bottom:solid 1px #20C10D;
}

#contentsbox h4{
	margin:10px 20px 0 20px;
}
#contentsbox ul {
	margin-bottom:30px;
}
#contentsbox ul li {
	list-style-type:disc;
	margin:0 40px 0 50px;
}
#contentsbox ol li {
	margin:0 40px 0 50px;
}
#contentsbox p {
	margin:0 20px 0 20px;
}

#contentsbox dl{
	margin:10px 20px 0 20px;
	line-height:20px;
}
#contentsbox dt{
	font-weight:bold;
}
.kome{
	color:#C00;
	background:url(../item/kome.gif) no-repeat 0 3px;
	padding-left:8px;
}

@media (min-width: 1000px) {
	#contentsbox dt{
		float:left;
		width:240px;
		padding-bottom:20px;
	}
	#contentsbox dd{
		padding-left:250px;
		padding-bottom:20px;
	}
}

@media (min-width: 640px) and (max-width: 1000px) {
	#contentsbox dt{
		float:left;
		width:140px;
		padding-bottom:20px;
	}
	#contentsbox dd{
		padding-left:150px;
		padding-bottom:20px;
	}
}

@media (max-width: 640px) {
	#contentsbox dt{
		padding-bottom:5px;
	}
	#contentsbox dd{
		padding-bottom:20px;
	}
}

#btnbox .button_01, #btnbox .button_02{
	width: 80%;margin-left:20px;
}
@media (min-width: 640px) {
	#btnbox{
		text-align:center;
	}
	#btnbox .btninnerblock {
		width  : 480px;
		margin     : 0 auto;
	}
	#btnbox .btninnerblock_one {
		width  : 240px;
		margin     : 0 auto;
	}
	#btnbox .button_01, #btnbox .button_02{
		float:left;
		margin:10px;
		width: 220px;
	}
}

/* -----------------------------------------------------------------------------
	チェックボックス
----------------------------------------------------------------------------- */
@media (max-width: 640px) {
input[type="checkbox"] {
    -webkit-appearance: none;
    position: relative;
    margin-right: 5px;
    border-radius: 8px;
    border: 2px solid #4c4c4c;
    -webkit-box-sizing: border-box;
    width: 28px;
    height: 28px;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#fdfdfd),
        to(#d1d1d1)
    );
}

/* チェック時は背景色を変更 */
input[type="checkbox"]:checked {
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#353535),
        to(#8f8f8f)
    );
}

/* チェックの印を:before疑似要素と:after疑似要素を使って作成 */
input[type="checkbox"]:checked:before {
    position: absolute;
    left: 1px;
    top: 17px;
    display: block;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 1);
    content: "";
    width: 10px;
    height: 4px;
    background: #FFFFFF;
    -webkit-transform: rotate(45deg);
    -webkit-transform-origin: right center;
}

input[type="checkbox"]:checked:after {
    display: block;
    position: absolute;
    left: 9px;
    top: 17px;
    content: "";
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 1);
    width: 19px;
    height: 4px;
    background: #FFFFFF;
    -webkit-transform: rotate(-53deg);
    -webkit-transform-origin: left center;
}

/* -----------------------------------------------------------------------------
	ラジオボタン
----------------------------------------------------------------------------- */
input[type="radio"] {
    -webkit-appearance: none;
    position: relative;
    margin-right: 5px;
    border-radius: 14px;
    border: 2px solid #4c4c4c;
    -webkit-box-sizing: border-box;
    width: 28px;
    height: 28px;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#fdfdfd),
        to(#d1d1d1)
    );
    vertical-align: middle;
}

/* チェック時は背景色を変更 */
input[type="radio"]:checked {
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#353535),
        to(#8f8f8f)
    );
}

/* チェックの印を:before疑似要素を使って作成 */
input[type="radio"]:checked:before {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    margin: -5px 0 0 -5px;
    -webkit-box-shadow: 0 2px 1px rgba(0, 0, 0, 1);
    content: "";
    border-radius: 5px;
    width: 10px;
    height: 10px;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#fdfdfd),
        to(#d1d1d1)
    );
}
}
#radio1 input{
	    display: none;
	}
	#radio1 label{
	    display: inline-block;
	    position: relative;
	    cursor: pointer;
	    margin-left: 23px;
	    padding: 10px 20px;
	    border-radius: 2px;

	    text-align: center;
	    line-height: 1;
	}
	#radio1 label:before{
	    position: absolute;
	    content: "";
	    top: 50%;
	    left: -10px;
	    width: 20px;
	    height: 20px;
	    margin-top: -10px;
	    background: #ddd;
	    border-radius: 50%;
		
	}

	#radio1 input[type="radio"]:checked + label:after {
	    position: absolute;
	    content: "";
	    top: 50%;
	    left: -4px;
	    width: 8px;
	    height: 8px;
	    margin-top: -4px;
	    border-radius: 50%;
	    background: #dd9000;
	}

/* -----------------------------------------------------------------------------
	ボタン
----------------------------------------------------------------------------- */

/* color button */
.button_01 { 
	margin:10px auto;
	padding:0;
	text-align:center;
	box-shadow : 0px 0px 3px #999;
	float:left;
}
.button_01 input {
	color: #fff !important;
	font-weight:bold;		
	text-decoration: none;	    
	padding: 10px 10px 10px 10px;
	display: block;
	z-index: 2;
	border: solid 1px #009C00;
	-moz-border-radius: 3px;
	border-radius: 3px;
	cursor: pointer;
	background: -moz-linear-gradient(top, #54D800, #54D800 1%, #54D800 50%, #29C300 99%, #ccc); 
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(0.01, #54D800), color-stop(0.5, #54D800), color-stop(0.99, #29C300), to(#ccc)); 
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
	width: 100%; 
/* IE */
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#54D800,endColorstr=#29C300);
	background: linear-gradient(to bottom, #54D800, #29C300);
}	
.button_01 input:hover{
	background: -moz-linear-gradient(top, #29C300, #29C300 1%, #29C300 50%, #54D800 99%, #ccc);  
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(0.01, #29C300), color-stop(0.5, #29C300), color-stop(0.99, #54D800), to(#ccc));
/* IE */
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#29C300,endColorstr=#54D800);
	background: linear-gradient(to bottom, #29C300, #54D800);
}
.button_02 input {
	color: #000 !important;		
	text-decoration: none;	    
	padding: 10px 10px 10px 10px;
	display: block;
	width: 100%;
	position: relative;
	z-index: 2;
	border: solid 1px #d2d7d8;
	-moz-border-radius: 3px;
	border-radius: 3px;
	cursor: pointer;
	background: -moz-linear-gradient(top, #fff, #fff 1%, #fff 50%, #F1F1F1 99%, #ccc); 
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(0.01, #F1F1F1), color-stop(0.5, #F1F1F1), color-stop(0.99, #DFDFDF), to(#ccc)); 
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}	
.button_02 input:hover{
	background: -moz-linear-gradient(top, #fff, #e1e1e1 1%, #e1e1e1 50%, #cfcfcf 99%, #ccc);  
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(0.01, #e1e1e1), color-stop(0.5, #e1e1e1), color-stop(0.99, #cfcfcf), to(#ccc));
}

/* grey button */
.button_02 { 
	margin:10px auto;
	padding:0;
	text-align:center;
	box-shadow : 0px 0px 3px #999;
}
.button_02 a {
	color: #000 !important;		
	text-decoration: none;	    
	padding: 10px 10px 10px 10px;
	display: block;
	width: auto;
	position: relative;
	z-index: 2;
	border: solid 1px #d2d7d8;
	-moz-border-radius: 3px;
	border-radius: 3px;
	cursor: pointer;
	background: -moz-linear-gradient(top, #fff, #fff 1%, #fff 50%, #F1F1F1 99%, #ccc); 
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(0.01, #F1F1F1), color-stop(0.5, #F1F1F1), color-stop(0.99, #DFDFDF), to(#ccc)); 
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
/* IE */
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#F1F1F1,endColorstr=#DFDFDF);
	background: linear-gradient(to bottom, #F1F1F1, #DFDFDF);
}	
.button_02 a:hover{
	background: -moz-linear-gradient(top, #fff, #e1e1e1 1%, #e1e1e1 50%, #cfcfcf 99%, #ccc);  
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(0.01, #e1e1e1), color-stop(0.5, #e1e1e1), color-stop(0.99, #cfcfcf), to(#ccc));
/* IE */
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#e1e1e1,endColorstr=#cfcfcf);
	background: linear-gradient(to bottom, #e1e1e1, #cfcfcf);
}

/* -----------------------------------------------------------------------------
	フォーカス、入力ボックス
----------------------------------------------------------------------------- */
input[type="text"]:focus, select:focus, textarea:focus {
		background-color: #FFFFFF;
	}
	input[type="text"], select, textarea {
		border:0;
		background-color: #F7F7F7;
		padding:5px;
		color:#000000;
		border:solid 1px #ccc;
		-webkit-box-shadow: 0px 1px rgba(255, 255, 255, 0.5);
		-moz-box-shadow: 0px 1px rgba(255, 255, 255, 0.5);
		box-shadow: 0px 1px rgba(255, 255, 255, 0.5);
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 3px;
	}

/* -----------------------------------------------------------------------------
	入力エラー
----------------------------------------------------------------------------- */
	.d_error {
		color:#FF0000;
		font-size:12px;
		height:8px;
		line-height:20px;
	}
	.sp_error {
		color:#FF0000;
	}
	.d_error img {
		position:relative;top:3px;
	}
	.img_kome {
		position:relative;top:-3px;
	}
	.cl_stime {
		display:none;
	}
	
/* -----------------------------------------------------------------------------
	IME設定
----------------------------------------------------------------------------- */
input#NAME1 { ime-mode: active; }
input#KANA1 { ime-mode: active; }
input#MAIL1 { ime-mode: disabled; }
input#MAIL2 { ime-mode: disabled; }
input#TEL1 { ime-mode: disabled; }
input#ADDRNO { ime-mode: disabled; }
input#B_ADDR1 { ime-mode: active; }
input#B_ADDR2 { ime-mode: active; }
input#AGE { ime-mode: disabled; }
input#CMNT { ime-mode: active; }