@charset "UTF-8";

/* ---------------------------------------------------
   File: contact.css
   Version: 1.0.0
   Update: 2016-12-26
   Author: http://flowlab.co.jp

   (c)2007-2015 Flowlab inc. All Rights Reserved.
--------------------------------------------------- */


/* ===================================================
    PC
=================================================== */

#contact {
	margin: 120px 0 0;
}

.well {
	padding: 20px 40px;
}
#contact dl {
	width: 48%;
	border-collapse: collapse;
	font-size: 0.8em;
	display: block;
	margin-bottom: 0;
	float: left;
}
#contact dl dd {
	padding-bottom: 10px;
}

#contact .txt_s {
margin-top: 50px;
}


input.input_area,
textarea {
	width: 100%;
	font-size: 1em;
	box-shadow: 1px 1px 4px -3px rgba(0,0,0,0.5) inset;
	padding: 8px 10px;
	border: 1px solid #CCC;
	border-top: #AAA 1px solid;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	outline: none;
}
textarea {
	resize: vertical;
	height: 360px;
}

/* Radio Button */
#contact dl dd#radio_button {
	padding: 0;
}
dd#radio_button ul {
	width: 100%;
	background: #FFF;
	border: 1px solid #CCC;
	border-radius: 4px; /* CSS3 */  
	-webkit-border-radius: 4px; /* Safari,Chrome */  
	-moz-border-radius: 4px; /* Firefox */
	outline: none;
}
dd#radio_button ul input[type=radio] {
	opacity: 0;
}
dd#radio_button ul input[type="radio"]:checked + label {
	background-color: #666;
	color: #FFF;
}
dd#radio_button ul li input {
	float:left;
	opacity: 0;
}
dd#radio_button ul li label {
	display: block;
	padding: 10px 20px;
	margin: 0;
}
dd#radio_button ul li:after {
	content:"";
	display: block;
	clear: both;
	height: 0;
	visibility:hidden;
}
dd#radio_button ul li {
	border-bottom: #ccc 1px solid;
}
	dd#radio_button ul li:last-child {
		border-bottom: none;
	}
dd#radio_button ul input:hover,
dd#radio_button ul label:hover {
	background-color: #666;
	cursor: pointer;
	color: #FFF;
}

/* Send Button */
#btn_send {
	text-align: center;
	margin: 10px auto;
	padding-top: 20px;
}
.btn-primary {
  background-color: #666;
  border-color: #666;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #999;
  border-color: #999;
}

/* Icon - Must */
#contact span.must {
	font-size: 0.8em;
	color: #fff;
  background-color: #666;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	padding: 2px 4px;
}



/* ===================================================
    TABLET - LARGE
=================================================== */
@media screen and (min-width: 992px) and (max-width: 1199px) {
}





/* ===================================================
    TABLET
=================================================== */
@media screen and (min-width: 768px) and (max-width: 991px) {
/* -------------------------------
		Contact
------------------------------- */
#contact dl {
	width: 100%;
	float: none;
}

}





/* ===================================================
    SMART PHONE
=================================================== */
@media screen and (max-width: 767px) {


/* -------------------------------
		Contact
------------------------------- */
#contact dl {
	width: 100%;
	float: none;
}
input.input_area,
textarea {
	padding: 10px 10px;
}

/* Radio Button */
dd#radio_button ul li label {
	padding: 18px 20px;
}

/* Send Button */
#btn_send {
	text-align: center;
	margin: 10px auto;
	padding-top: 0;
}
#btn_send .btn {
	width: 100%;
	padding: 20px 0;
}


}