@charset 'utf-8';
@import 'https://fonts.googleapis.com/css?family=Lora:400,700';

/* ////////////////////////////////////////////
 *								Toot
 * //////////////////////////////////////////// */

/* The root element
---------------------------------------- */
body {
	line-height: 1.6;
	color: #444;
	font-family: Helvetica, HiraKakuProN-W3, sans-serif;
	background: #f0f0f0;
}

a {
	color: #c1272d;
}
a:active, a:hover {
	color: #c1272d;
}


/* ////////////////////////////////////////////
 *								 Frame
 * //////////////////////////////////////////// */

.container {
	padding-top: 50px;
}

/* Header
------------------------------------------*/
.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: 50px;
	box-shadow: 0 0 5px rgba(0,0,0,0.25);
	background: #fff;
	text-align: center;
}

.header h1 {
	float: left;
}
.header h1 img{
	height: 50px;
}
.header .tel{
	float: right;
	width: 50px;
	height: 50px;
	background: #555; /* edit */
}
.header .tel img{
	width: 100%;
}

.nav-trigger {
	position: relative;
	float: right;
	width: 50px;
	height: 50px;
	background: #333 url(/img/sp/nav-trigger-bg.png) no-repeat center center; /* edit */
	background-size: 100%;
	cursor: pointer;
}
.nav-trigger .in {
	position: relative;
	top: 10px;
	left: 14px;
	width: 22px;
	height: 18px
}
.nav-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	-webkit-transition: all .4s;
	transition: all .4s;
	box-sizing: border-box;
}
.nav-trigger span:nth-of-type(1) {
	top: 0;
}
.nav-trigger span:nth-of-type(2) {
	top: 50%;
	margin-top: -1px;
}
.nav-trigger span:nth-of-type(3) {
	bottom: 0;
}

.nav-trigger.open {
	background-color: #000; /* edit */
}
.nav-trigger.open span:nth-of-type(1) {
	-webkit-transform: translateY(8px) rotate(-45deg);
	transform: translateY(8px) rotate(-45deg);
}
.nav-trigger.open span:nth-of-type(2) {
	opacity: 0;
}
.nav-trigger.open span:nth-of-type(3) {
	-webkit-transform: translateY(-8px) rotate(45deg);
	transform: translateY(-8px) rotate(45deg);
/* 	-webkit-transform: translateY(-10px) rotate(45deg);
transform: translateY(-10px) rotate(45deg); */
}

.nav-menu {
	display: none;
	overflow: hidden;
	position: fixed;
	top: 50px;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: 100%;
	height: -webkit-calc(100% - 50px);
	height:    -moz-calc(100% - 50px);
	height:         calc(100% - 50px);
	background: rgba(0,0,0,0.8); /* edit */
}
.nav-menu-list {
	padding-bottom: 150px;
}
.nav-menu-list li {
	opacity: 0;
	border-bottom: 1px solid #555; /* edit */
	text-align: center;
	-webkit-transition: all 0.2s ease;
	   -moz-transition: all 0.2s ease;
	        transition: all 0.2s ease;
	-webkit-transform: translateX(-60px);
	   -moz-transform: translateX(-60px);
	        transform: translateX(-60px);
}
.nav-menu-list li a {
	display: block;
	position: relative;
	padding: 15px 0 15px;
	line-height: 25px;
	color: #fff;
	font-family: 'Lora', serif;
	font-weight: bold;
	font-size: 14px;
	letter-spacing: 0.4em;
	-webkit-transition: all 0.4s ease;
	   -moz-transition: all 0.4s ease;
	        transition: all 0.4s ease;
}
.nav-menu-list li a small {
	display: block;
	height: 20px;
	line-height: 20px;
	font-family: Helvetica, HiraKakuProN-W3, sans-serif;
	color: #ff6666; /* edit */
	font-size: 11px;
	font-weight: normal;
	letter-spacing: 0.3em;
}
.nav-menu-list li a:after {
	display: block;
	opacity: 0;
	content: '';
	position: absolute;
	top: 0;
	right: 35px;
	bottom: 0;
	width: 11px;
	height: 7px;
	margin: auto;
	background: url('/img/sp/ico-arrow-right.png') no-repeat center center;
	background-size: 11px 7px;
	-webkit-transition: all 0.2s ease;
	   -moz-transition: all 0.2s ease;
	        transition: all 0.2s ease;
}
.nav-menu-list li a:hover {
	background: rgba(0,0,0,0.9); /* edit */

	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#E6062744,endColorstr=#E6062744);
}
.nav-menu-list li a:hover:after {
	opacity: 1;
	right: 15px;
}
.nav-menu-list li:last-child a {
	padding: 0;
	height: 75px;
	line-height: 75px;
}
.nav-menu-list li:last-child a span {
	display: block;
	overflow: hidden;
	text-indent: -9999px;
}
.nav-menu-list li:last-child a:before {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 34px;
	height: 34px;
	margin: auto;
	border: 1px solid rgba(255,255,255,0.5);
	border-radius: 50%;
	background: url('/img/sp/ico-arrow-top.png') no-repeat center center;
	background-size: 15px;
}
.nav-menu-list li:nth-child(1) {
	-webkit-transition-delay: 0.1s;
	   -moz-transition-delay: 0.1s;
	     -o-transition-delay: 0.1s;
	        transition-delay: 0.1s;
}
.nav-menu-list li:nth-child(2) {
	-webkit-transition-delay: 0.2s;
	   -moz-transition-delay: 0.2s;
	     -o-transition-delay: 0.2s;
	        transition-delay: 0.2s;
}
.nav-menu-list li:nth-child(3) {
	-webkit-transition-delay: 0.3s;
	   -moz-transition-delay: 0.3s;
	     -o-transition-delay: 0.3s;
	        transition-delay: 0.3s;
}
.nav-menu-list li:nth-child(4) {
	-webkit-transition-delay: 0.4s;
	   -moz-transition-delay: 0.4s;
	     -o-transition-delay: 0.4s;
	        transition-delay: 0.4s;
}
.nav-menu-list li:nth-child(5) {
	-webkit-transition-delay: 0.5s;
	   -moz-transition-delay: 0.5s;
	     -o-transition-delay: 0.5s;
	        transition-delay: 0.5s;
}
.nav-menu-list li:nth-child(6) {
	-webkit-transition-delay: 0.6s;
	   -moz-transition-delay: 0.6s;
	     -o-transition-delay: 0.6s;
	        transition-delay: 0.6s;
}
.nav-menu-list li:nth-child(7) {
	-webkit-transition-delay: 0.7s;
	   -moz-transition-delay: 0.7s;
	     -o-transition-delay: 0.7s;
	        transition-delay: 0.7s;
}
.nav-menu.open .nav-menu-list li {
	opacity: 1;
	-webkit-transform: translateX(0px);
	   -moz-transform: translateX(0px);
	        transform: translateX(0px);
}

/* Main
------------------------------------------*/
.main {
	padding: 10px;
}
.main > :last-child {
	margin-bottom: 0;
}

/* Footer
------------------------------------------*/
.footer-icon {
	padding: 10px 5px 10px;
}
.footer-icon li {
	float: left;
	width: 33.333%;
	padding: 0 5px 10px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	text-align: center;
}
.footer-icon li a {
	display: block;
	padding: 8px;
	border: #fff 2px solid;
	border-radius: 6px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	   -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fdf0f1), color-stop(100%, #f8dadc));
	background:    -moz-linear-gradient(top, #fdf0f1, #f8dadc);
	background: -webkit-linear-gradient(top, #fdf0f1, #f8dadc);
	background:         linear-gradient(to bottom, #fdf0f1, #f8dadc);
	color: #c1272d; /* edit */
	font-weight: bold;
	font-size: 12px;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 1);
}
.footer-icon li a img {
	pointer-events: none;
}

.footer-banner{
	padding: 0px 10px 20px;
	text-align: center;
}
.footer-banner li{
	margin-bottom: 10px;
}
.footer-banner li img{
	width: 100%;
}

.footer-tel {
	padding: 0px 10px 30px;
}

.footer-about {
	background: #222;
	color: #fff;
}

.footer-about .detail {
	padding: 15px 10px 18px;
	font-size: 12px;
}
.footer-about .detail p{
	margin-bottom: 10px;
}
.footer-about .detail p:last-child{
	margin-bottom: 0;
}

.viewmode-switcher {
	padding: 0 40px 20px;
}
.viewmode-switcher ul li {
	float: left;
	width: 50%;
}
.viewmode-switcher ul li span, .viewmode-switcher ul li a {
	display: block;
	height: 36px;
	border: 1px solid rgba(255,255,255,0.4);
	line-height: 36px;
	font-weight: bold;
	text-align: center;
}
.viewmode-switcher ul li span {
	border-right: none;
	background: #d3a834;
	color: #fff;
}
.viewmode-switcher ul li a {
	border-left: none;
	background: #f6eed6;
	color: #d3a834;
}

.footer .copyright {
	padding: 8px 0;
	border-top: #555 1px solid;
	font-size: 11px;
	text-align: center;
}


/* ////////////////////////////////////////////
 *								 Index
 * //////////////////////////////////////////// */

.kv {
	background: url(/img/sp/kv-bg.png) no-repeat center 0;
	-webkit-background-size: cover;
	        background-size: cover;
	text-align: center;
}
.kv-slide li img {
	width: 100%;
}

.main-widget {
	margin-bottom: 20px;
}
.main-widget ul li {
	margin-bottom: 12px;
}
.main-widget ul li:last-child {
	margin-bottom: 0;
}
.main-widget ul li iframe {
	width: 100%;
	height: 300px;
}

.btn-box {
	margin: 10px 0 20px;
}

.pickup-banner{
	text-align: center;
}
.pickup-banner li {
	width: 100%;
	margin-bottom: 10px;
}
.pickup-banner li img {
	width: 100%;
}

.main-banner {
	margin-bottom: 20px;
}
.main-banner img {
	width: 100%;
}
.main-banner ul li{
	margin-bottom: 10px;
}

.information-box .date {
	color: #888;
	font-size: 11px;
}

.entry-box.-system .tbl-borderd th, .entry-box.-system .tbl-borderd td {
	font-size: inherit;
}
.entry-box.-system .tbl-borderd th {
	width: 70%;
}
.entry-box.-system .tbl-borderd td {
	color: #b83248;
	font-weight: bold;
	text-align: right;
}


/* ////////////////////////////////////////////
 *								 Lower
 * //////////////////////////////////////////// */

.catch img {
	width: 100%;
}

/* Entry
------------------------------------------*/
.entry-box {
	margin-bottom: 15px;
	background: #fff;
	-webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.2);
	box-shadow: 0px 1px 3px rgba(0,0,0,0.2);
}
.entry-box h2 {
	padding: 10px 15px;
	background: #333;
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	text-shadow: 0 1px 0 #000;
}
.entry-box h2 small {
	margin-left: 8px;
	color: #ff6666;
	font-size: 13px;
}

.entry-box .entry-box-inner {
	padding: 15px;
}
.entry-box-footer {
	margin-top: 10px;
	padding-top: 10px;
	border-top: #ddd 1px solid;
	font-size: 11px;
	text-align: right;
}

.entry-body h3 {
	margin: 15px 0 10px;
	padding: 5px 10px;
	border-radius: 1px;
	background: #c1272d;
	color: #fff;
	font-weight: bold;
	font-size: 14px;
}
.entry-body h4 {
	margin: 15px 0 10px;
	padding: 2px 0 4px 5px;
	border-bottom: #ccc 1px dotted;
	border-left: #c1272d 3px solid;
	font-weight: bold;
	font-size: 13px;
}
.entry-body h5 {
	margin: 15px 0 10px;
	padding-bottom: 2px;
	border-bottom: #ddd 1px solid;
	font-weight: bold;
	font-size: 13px;
}

.entry-body p {
	margin-bottom: 10px;
}
.entry-body ul, .entry-body ol {
	margin: 10px 0;
}
.entry-body ul li, .entry-body ol li {
	margin-bottom: 5px;
}
.entry-body ol li {
	list-style: inside decimal;
}
.entry-body li ul, .entry-body li ol {
	padding: 5px 0 0 10px;
}
.entry-body .list-small li {
	margin-bottom: 0;
}

.entry-body :first-child {
	margin-top: 0 !important;
}
.entry-body :last-child {
	margin-bottom: 0 !important;
}

/* Extra
------------------------------------------*/
.sp-hide { display: none; }

.contents-textarea {
	overflow: hidden;
}
.contents-leftimg {
	float: left;
	margin: 0 15px 15px 0;
}
.contents-colorbox {
	margin: 15px 0;
	padding: 10px;
	border-radius: 2px;
	background: #f4f4f4;
	font-size: 12px;
}
.contents-colorbox.-warm {
	background: #faf6e8;
}
.contents-colorbox :last-child {
	margin-bottom: 0;
}
.contents-colorbox ul li {
	list-style: outside;
	margin: 0 0 5px 15px;
}
.list-common {
	padding: 10px;
	border-radius: 2px;
	background: #e18385;
	color: #fff;
}
.list-common dt {
	margin-bottom: 5px;
	padding-bottom: 3px;
	border-bottom: 1px dashed #fff;
	font-weight: bold;
}
.list-common dd {
	margin-bottom: 10px;
	font-size: 12px;
}

.googlemap iframe {
	width: 100%;
	height: 150px;
}

.tbl {
	width: 100%;
	margin: 15px 0;
}
.tbl th, .tbl td {
	padding: 5px 10px;
	border: #ccc 1px solid;
	font-size: 12px;
	text-align: left;
	vertical-align: top;
}
.tbl th {
	width: 30%;
	background: #ffdf80;
}
.tbl td {
	background: #fff;
}

.tbl-borderd {
	width: 100%;
	margin-bottom: 15px;
}
.tbl-borderd th, .tbl-borderd td {
	padding: 7px 5px;
	border-bottom: #b3b3af 1px dotted;
	font-size: 12px;
}
.tbl-borderd th {
	width: 30%;
	font-weight: normal;
	text-align: left;
}

/* button  */
.btn-primay {
	display: inline-block;
	height: 43px;
	padding: 0 10px;
	border-radius: 4px;
	background: #c1272d;
	line-height: 44px;
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	text-align: center;
	letter-spacing: 0.1em;
	text-shadow: 0 1px 0 rgba(0, 0, 0, .8);
	-webkit-box-shadow: 0 3px 0 #8d1d22;
	box-shadow: 0 3px 0 #8d1d22;
}
.btn-primay:hover {
	color: #fff;
}
.btn-primay.-expanded {
	display: block;
}


/* ////////////////////////////////////////////
 *								 Lower
 * //////////////////////////////////////////// */

/* topics
------------------------------------------*/
.entry-box.-topics .date {
	color: #888;
	font-size: 12px;
}

/* schedule
------------------------------------------*/
.sch-nav ul {
	margin-right: -3px;
}
.sch-nav ul li {
	float: left;
	width: 65px;
	margin: 0 3px 3px 0;
}
.sch-nav ul li a {
	display: block;
	padding: 5px 0;
	border-radius: 2px;
	background: #c1272d;
	color: #fff;
	font-weight: bold;
	font-size: 12px;
	text-align: center;
}
.sch-nav ul li.active a {
}
.sch-nav ul li.sat a {
	color: #cde7fa;
}
.sch-nav ul li.sun a {
	color: #fbcce0;
}

.sch-status {
	margin: 15px 0 10px;
	padding: 5px 10px;
	border: 2px solid #f2c117;
	border-radius: 2px;
	background: #ffe495;
	color: #c2282d;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
}

.therapist-list ul {
	margin: 0 -5px;
}
.therapist-list ul li {
	float: left;
	width: 50%;
	padding: 0 5px 20px;
	text-align: center;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.therapist-list ul li a {
	display: block;
}
.therapist-list ul li a * {
	pointer-events: none;
}
.therapist-list ul li .comment,
.therapist-list ul li .name{
	height: 25px;
	line-height: 25px;
	font-weight: bold;
}
.therapist-list ul li .comment {
	padding: 0 5px;
	background: #444;
	color: #fff;
	font-size: 10px;
}
.therapist-list ul li .thumb {
	overflow: hidden;
	position: relative;
	padding-top: 133.3%;
}
.therapist-list ul li .thumb > img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: none;
	height: 100%;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.therapist-list ul li .thumb > img{
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.therapist-list ul li a:hover .thumb > img{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.therapist-list ul li .thumb span{
	position: absolute;
	bottom: 0;
	right: 0;
}
.therapist-list ul li .name {
	color: inherit;
	font-size: 12px;
}
.therapist-list ul li .time {
	padding: 1px;
	color: #fff;
	font-size: 11px;
	font-weight: bold;
	background: #d3a834;
}
.therapist-list ul li .time span{
	display: block;
	height: 21px;
	border: 1px solid #fff;
	line-height: 21px;
}


/* profile
------------------------------------------*/
.profile-name {
	position: relative;
	margin-bottom: 15px;
	padding: 5px;
	border: 3px double #d0ad41;
	background: #fffae3;
	font-weight: bold;
	text-align: center;
}
.profile-name .ico img {
	position: absolute;
	bottom: 0;
	right: 0;
}
.profile-name p {
	color: #c0262c;
}
.profile-name p em {
	font-weight: bold;
	font-style: normal;
}
.profile-name h3 {
	font-size: 15px;
	font-weight: bold;
}

.profile-gallery {
	margin: 0 10% 30px !important;
}
.profile-gallery .slick-slide {
	margin: 5px;
	-webkit-transition: opacity 0.3s ease;
	   -moz-transition: opacity 0.3s ease;
	        transition: opacity 0.3s ease;
}
/*.profile-gallery .slick-slide:not(.slick-center) {
		-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	-o-transform: scale(0.9);
	transform: scale(0.9);
	opacity: 0.5;

	-webkit-filter: grayscale(100%);
	   -moz-filter: grayscale(100%);
	     -o-filter: grayscale(100%);
	    -ms-filter: grayscale(100%);
	        filter: grayscale(100%);
}
*/
.entry-box.-profile h4 {
	margin: 10px 0 10px;
	padding: 2px 0 0 5px;
	border-left: #c1272d 3px solid;
	font-weight: bold;
}
.entry-box.-profile .contents-colorbox{
	background: #fef2ea;
}
.entry-box.-profile .contents-colorbox img{
	max-width: 100% !important;
	height: auto !important;
}
.entry-box.-profile .contents-colorbox p{
	margin-bottom: 10px;
}
.entry-box.-profile .contents-colorbox :last-child{
	margin-bottom: 0;
}

.status-box {
	margin-bottom: 20px;
	padding: 2px;
	border: 2px solid #000;
}
.status-box dl {
	padding: 15px 10px 5px;
	border: 1px solid #000;
	background: #f6f7f9;
}
.status-box dl dt{
	margin-bottom: 5px;
	font-size: 12px;
	font-weight: bold;
}
.status-box dl dd{
	position: relative;
	display: block;
	overflow: hidden;
	height: 5px;
	margin-bottom: 15px;
	background: #ff2d55;
	background-image: -webkit-linear-gradient(left, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
	background-image:         linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
	text-indent: 100%;
	white-space: nowrap;
}
.status-box dl dd:after {
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	height: 100%;
	background: #ddd;
	animation-duration: 3s;
}

/* 1 */
.status-box dl dd.status00:after {
	width: 80%;
	animation-name: status-width00;
}
@keyframes status-width00 {
	0%, 100% {
		transition-timing-function: cubic-bezier(1, 0, 0.65, 0.85);
	}
	0% {
		width: 100%;
	}
	100% {
		width: 80%;
	}
}

/* 1.5 */
.status-box dl dd.status01:after {
	width: 70%;
	animation-name: status-width01;
}
@keyframes status-width01 {
	0%, 100% {
		transition-timing-function: cubic-bezier(1, 0, 0.65, 0.85);
	}
	0% {
		width: 100%;
	}
	100% {
		width: 70%;
	}
}

/* 2 */
.status-box dl dd.status02:after {
	width: 60%;
	animation-name: status-width02;
}
@keyframes status-width02 {
	0%, 100% {
		transition-timing-function: cubic-bezier(1, 0, 0.65, 0.85);
	}
	0% {
		width: 100%;
	}
	100% {
		width: 60%;
	}
}

/* 2.5 */
.status-box dl dd.status03:after {
	width: 50%;
	animation-name: status-width03;
}
@keyframes status-width03 {
	0%, 100% {
		transition-timing-function: cubic-bezier(1, 0, 0.65, 0.85);
	}
	0% {
		width: 100%;
	}
	100% {
		width: 50%;
	}
}

/* 3 */
.status-box dl dd.status04:after {
	width: 40%;
	animation-name: status-width04;
}
@keyframes status-width04 {
	0%, 100% {
		transition-timing-function: cubic-bezier(1, 0, 0.65, 0.85);
	}
	0% {
		width: 100%;
	}
	100% {
		width: 40%;
	}
}

/* 3.5 */
.status-box dl dd.status05:after {
	width: 30%;
	animation-name: status-width05;
}
@keyframes status-width05 {
	0%, 100% {
		transition-timing-function: cubic-bezier(1, 0, 0.65, 0.85);
	}
	0% {
		width: 100%;
	}
	100% {
		width: 30%;
	}
}

/* 4 */
.status-box dl dd.status06:after {
	width: 20%;
	animation-name: status-width06;
}
@keyframes status-width06 {
	0%, 100% {
		transition-timing-function: cubic-bezier(1, 0, 0.65, 0.85);
	}
	0% {
		width: 100%;
	}
	100% {
		width: 20%;
	}
}

/* 4.5 */
.status-box dl dd.status07:after {
	width: 10%;
	animation-name: status-width07;
}
@keyframes status-width07 {
	0%, 100% {
		transition-timing-function: cubic-bezier(1, 0, 0.65, 0.85);
	}
	0% {
		width: 100%;
	}
	100% {
		width: 10%;
	}
}

/* 5 */
.status-box dl dd.status08:after {
	width: 0;
	animation-name: status-width08;
}
@keyframes status-width08 {
	0%, 100% {
		transition-timing-function: cubic-bezier(1, 0, 0.65, 0.85);
	}
	0% {
		width: 100%;
	}
	100% {
		width: 0;
	}
}

.schedule-tbl {
	width: 100%;
	table-layout: fixed;
}
.schedule-tbl th, .schedule-tbl td {
	padding: 5px 10px;
	border: #ccc 1px solid;
	font-size: 12px;
	text-align: left;
	vertical-align: top;
}
.schedule-tbl th {
	width: 35%;
	background: #ffdf80;
}
.schedule-tbl .sat th {
	color: #2b5ebd;
}
.schedule-tbl .sun th {
	color: #c1272d;
}


/* ////////////////////////////////////////////
 *								 Contact
 * //////////////////////////////////////////// */

.frm table {
	width: 100%;
}
.frm table, .frm tbody, .frm tr, .frm th, .frm td {
	display: block;
}
.frm table th, .frm table td {
	font-size: 12px;
	text-align: left;
}
.frm table th {
	padding: 10px 0 5px;
}
.frm table td {
	padding-bottom: 15px;
	border-bottom: #ccc 1px dotted;
}

.frm input[type='text'], .frm input[type='email'], .frm select, .frm textarea {
	display: block;
	height: 26px;
	padding: 3px 5px;
	border: 1px solid #ccc;
	border-radius: 1px;
	box-sizing: border-box;
	-webkit-box-shadow: inset 0 1px 1xp rgba(0, 0, 0, 0.075);
	   -moz-box-shadow: inset 0 1px 1xp rgba(0, 0, 0, 0.075);
	        box-shadow: inset 0 1px 1xp rgba(0, 0, 0, 0.075);
	line-height: 1.42857;
	color: #474747;
	-webkit-transition: border-color 0.15s ease-in-out, bos-shadow 0.15s ease-in-out;
	   -moz-transition: border-color 0.15s ease-in-out, bos-shadow 0.15s ease-in-out;
	     -o-transition: border-color 0.15s ease-in-out, bos-shadow 0.15s ease-in-out;
	        transition: border-color 0.15s ease-in-out, bos-shadow 0.15s ease-in-out;
}
.frm input[type='text']:focus, .frm input[type='email']:focus, .frm select:focus, .frm textarea:focus {
	border-color: #7994cc;
	outline: 0;
}
.frm select {
	height: 26px;
}
.frm textarea {
	height: auto;
}
.frm input[type='radio'], .frm input[type='checkbox'] {
	position: relative;
	top: 2px;
	margin-right: 5px;
}
.frm label {
	margin-right: 10px;
	cursor: pointer;
}

.frm-footer {
	margin-top: 15px;
	text-align: center;
}
.frm-footer input, .frm-footer a {
	display: inline-block;
	min-width: 100px;
	height: 30px;
	margin: 0 5px;
	padding: 0 10px;
	border-radius: 2px !important;
	background: #aaa;
	line-height: 30px;
	color: #fff;
}
.frm-footer input:hover, .frm-footer input:active {
	opacity: 0.8;
	-webkit-transition: color 0.3s ease;
	   -moz-transition: color 0.3s ease;
	     -o-transition: color 0.3s ease;
	        transition: color 0.3s ease;

	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
}
.frm-footer .submit {
	background: #ce3c39 none repeat scroll 0 0;
	box-shadow: 0 3px 0 #aa2e2b;
}

.msg {
	background: #fff;
}
.msg.-no-data {
}