@charset "UTF-8";
/*============================================================
全体の設定
============================================================*/
/*--------------------
* 全体と定番定義
* -----------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.bold{
  font-weight:bold;
}
.pc_only{
  display:block;
}
.pc_only_inline{
  display:inline;
}
.sp_only,.sp_only_inline{
  display:none;
}
.t-c{
  text-align: center !important;
}
.indent-1{
	text-indent: -1em;
	padding-left: 1em;
}
.indent-2{
	text-indent: -2em;
	padding-left: 2em;
}
.indent-35{
	text-indent: -3.5em;
	padding-left: 3.5em;
}
.mgl1{
	margin-left: 1em;
}
.mgb10{
	margin-bottom: 10px;
}
.mgb5{
	margin-bottom: 5px;
}
.tbl_list li{
	text-indent: -1em;
	padding-left: 1em;
	line-height: 1.5;
}
img{
  width: auto;
  vertical-align: bottom;
}

a:hover img{
  opacity: .6;
}
sup{
  vertical-align: top;
}

@media screen and (max-width: 768px) {
  .pc_only,.pc_only_inline{
    display:none;
  }
  .sp_only{
    display:block;
  }
  .sp_only_inline{
    display: inline;
  }
  a:active,
  a:active *{
    transition: none;
  }
}
/*============================================
      layout
============================================*/
html,
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  color: #000;
}

@media screen and (max-width: 768px) {
  html,
  body {
    font-size: 3.73333vw;/*1px= 0.233333125*/
  }
}

.header_inner{
	width: 1030px;
	padding: 10px 20px;
	margin:0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header_inner p{
	font-weight: bold;
	font-size: 14px;
}
.logo-amiya {
	width: 134px;
}
.list_conversion{
	display: flex;
}
.list_conversion a{
	display: block;
	text-align: center;
	padding: 20px 10px;
	color: #fff;
	border-radius: 10px;
	background: linear-gradient(to right, #183260 0, #355792 100%);
	text-decoration: none;
	transition: opacity .4s cubic-bezier(.39, .575, .565, 1);
	margin-left: 10px;
	font-size: 14px;
}
.list_conversion a:hover{
	opacity: .8;
}

@media screen and (max-width: 768px) {
	.header_inner{
		width: 100%;
		padding: 8px 20px 10px 8px;
		height: 50px;
		justify-content: start;
	}
	.header_inner .list_conversion{
		display: none;
	}
	.header_inner p{
		font-weight: normal;
		font-size: 12px;
		line-height: 1.3;
		padding-right: 40px;
	}
	.header_inner .logo-amiya{
		padding-right: 0;
	}
}
.btn{
	display: none;
}
nav{
	background: #121c2f;
	padding: 20px 0;
	border-bottom: 1px solid #fff;
	min-width: 1030px;
}
nav ul{
	width: 990px;
	margin:0 auto;
	display: flex;
}
nav ul li a{
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	margin-right: 40px;
}
@media screen and (max-width: 768px) {
	nav{
		background: #121c2f;
		padding: 0;
		border-bottom: none;
		min-width: auto;
	}
	nav ul{
		position: fixed;
		right: -70%;
		width: 70%;
		height: 100vh;
		margin-left: auto;
		/* メニューを縦に */
		display: flex;
		flex-direction: column;
		color: #efefef;
		background-color: rgba(85, 82, 47, 0.95);
		transition: .3s;
		top:0;
		padding-top: 100px;
	}
	nav ul li {
		width: 100%;
		/*height: 50%;*/
		/* メニューテキスト位置をリスト内中心に */
		display: flex;
		justify-content: center;
		align-items: center;
	}
	nav ul li a{
		margin: 20px auto;
		font-size: 3vw;
	}
	.btn {
		display: block;
		margin: 0;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		color: inherit;
		vertical-align: middle;
		text-align: inherit;
		font: inherit;
		-webkit-appearance: none;
		appearance: none;
		/* ボタンの配置位置  */
		position: fixed;
		top: 0;
		right: 0;
		/* ボタンの大きさ  */
		width: 50px;
		height: 50px;
		/* 最前面に */
		z-index: 10;
		background: #1b3f5c;
	}
	.btn-line {
		display: block;
		position: relative;  /* バーガー線の位置基準として設定 */
		width: 60%;  /* 線の長さと高さ */
		height: 2px;
		background-color: #fff;  /* バーガー線の色 */
		transition: .2s;
		margin: auto;
	}
	/****** 上下のバーガー線 *****/
	.btn-line::before,
	.btn-line::after {
		content: "";
		position: absolute;
		width: 100%;
		height: 100%;
		background-color: #fff;
		transition: .5s;
		right: 0;
	}
	.btn-line::before {
		/* 上の線の位置 */
		transform: translateY(-10px);
	}
	.btn-line::after {
		/* 下の線の位置 */
		transform: translateY(10px);
	}
	nav ul.open {
		right: 0;
	}
	/***** メニューオープン時 *****/
	.btn-line.open {
	background-color: transparent;  	/* 真ん中の線を透明に */
	}
	.btn-line.open::before ,
	.btn-line.open::after {
		content: "";
		background-color: #fff;  /* 上下の線の色を変える */
		transition: .2s;
	}
	.btn-line.open::before {
		transform: rotate(45deg);  /* 上の線を傾ける */
	}
	.btn-line.open::after {
		transform: rotate(-45deg);  /* 下の線を傾ける */
	}
	.conversion_btn a{
		display: block;
		text-align: center;
		padding: 20px 10px;
		color: #fff;
		border-radius: 10px;
		background: linear-gradient(to right, #183260 0, #355792 100%);
		text-decoration: none;
		transition: opacity .4s cubic-bezier(.39, .575, .565, 1);
		margin: 0 auto 20px;
		font-size: 14px;
		width: 70%;
	}
}
.hero_area{
	background: url(../img/kv_img.png) no-repeat top center;
	background-size: cover;
	color: #fff;
	padding: 30px 30px 60px;
	min-width: 1030px;
}
.hero_inner{
	width: 990px;
	margin:0 auto;
}
.hero_area .ttl_area{
	display: flex;
	align-items: center;
}
.hero_area .ttl_area .logo_area{
	width: auto;
}
.hero_area h1{
	font-size:34px;
	font-weight: bold;
	margin-bottom: 5px;
	margin-top: 15px;
	text-shadow:3px 0 6px #000;
}
.hero_area .ttl p{
	font-size: 12px;
}
.hero_area p{
	line-height: 1.5;
	font-weight: bold;
	color: #fff;
	text-shadow:3px 0 6px #000;
}
.hero_area .hero_txt01{
	font-size: 18px;
	margin-top: 40px;
	text-shadow:3px 0 6px #000;
}
.hero_area .hero_txt02{
	font-size: 24px;
	margin-top: 120px;
	text-shadow:3px 0 6px #000;
}
.hero_area .hero_txt03{
	margin-top: 20px;
	width: 690px;
	font-size: 16px;
}
@media screen and (max-width: 768px) {
	.hero_area{
		min-width: 100%;
		background: url(../img/kv_img_sp.png) no-repeat top center;
		padding: 20px;
	}
	.hero_inner{
		width: 100%;
	}
	.hero_area .ttl_area{
		display: block;
	}
	.hero_area .ttl_area .logo_img{
		margin-bottom: 10px;
	}
	.hero_area .hero_txt02{
		margin-top: 30px;
	}
	.hero_area .hero_txt03{
		width: 100%;
	}
}
@media screen and (max-width: 480px) {
	.hero_area h1{
		font-size: 6vw;
	}
	.hero_area .ttl p{
		font-size: 2.5vw;
	}
	.hero_area .hero_txt01{
		font-size: 4.19999625vw;
	}
	.hero_area .hero_txt02{
		font-size: 5.599995vw;
	}

}
.contets_block{
	border-bottom: 10px solid #55522f;
	padding-top: 70px;
	text-align: center;
	min-width: 1030px;
}
.contets_block h2{
	font-size: 28px;
	line-height: 1.3;
}
.contets_block h2 span {
	background: linear-gradient(transparent 70%, #dedab9 70%);
	font-weight: bold;
}
.contets_block .article_area{
	background: #f3f1e8;
	width: 990px;
	margin:40px auto 0;
	padding: 50px 20px;
}
.contets_block .article_area .txt{
	line-height: 2;
	margin: 0 auto 30px;
}
.contets_block .article_area h3{
	font-weight: bold;
	font-size: 28px;
	margin-bottom: 40px;
	line-height: 1.3;
}

@media screen and (max-width: 768px) {
	.contets_block{
		min-width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}
	.contets_block .article_area{
		width: 100%;
	}
}

@media screen and (max-width: 480px) {
	.contets_block {
		padding-top: 30px;
	}
	.contets_block h2{
		font-size: 6.5333275vw;
	}
	.contets_block .article_area{
		margin: 20px auto 0;
		padding: 30px 10px;
	}
	.contets_block .article_area .txt{
		text-align: left;
	}
	.contets_block .article_area .txt br{
		display: none;
	}
	.contets_block .article_area h3{
		font-size: 6.5333275vw;
		margin-bottom: 20px;
	}
}
.cont02_block{
	display: flex;
	justify-content: center;
	align-items: center;
	margin:40px auto 0;
	padding-bottom: 40px;
	border-bottom: 1px solid #dfddd1;
}
.cont02_block ul{
	margin: 0 0 20px 40px;
}
.cont02_block ul li{
	margin-bottom: 10px;
	font-weight: bold;
	text-align: left;
	text-indent: -1em;
	padding-left: 1em;
	line-height: 1.3;
}
.cont02_block + h3{
	margin-top: 80px;
}
@media screen and (max-width: 480px) {
	.cont02_block{
		padding-bottom: 20px;
	}
	.cont02_block ul{
		margin: 0 0 20px 10px;
	}
	.cont02_block ul li{
	}
	.cont02_block + h3 {
		margin-top: 30px;
	}
}
.cont03_block{
	width: 740px;
	margin: 40px auto ;
}
.cont03_block .arrow_img{
	margin-bottom: 30px;
}
.cont03_block .cont03_list{
	border: 10px solid #55522f;
	padding: 50px 40px 20px;
}
.cont03_block .cont03_list .check_block{
	border-radius: 10px;
	background: url(../img/icon_check.png) no-repeat center left 20px #e3e0d0;
	font-size: 28px;
	font-weight: bold;
	padding: 30px 60px;
	margin-bottom: 30px;
}
.cont03_block .cont03_list .accident_block{
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.cont03_block .cont03_list .accident_block p{
	margin-right: 10px;
}
.cont03_block .cont03_list .accident_block span{
	font-size: 24px;
}
.cont03_block .arrow_img2{
	margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
	.cont03_block{
		width: 100%;
	}
	.cont03_block .cont03_list{
		padding: 15px;
	}
}
@media screen and (max-width: 480px) {
	.cont03_block .cont03_list .check_block{
		font-size: 5.5333275vw;
		padding: 20px 15px 20px 50px;
		background: url(../img/icon_check.png) no-repeat center left 10px #e3e0d0;
		line-height: 1.3;
	}
	.cont03_block .cont03_list .accident_block span{
		font-size: 4.5333275vw;
	}
}
.solution_txt{
	font-size: 36px;
}
@media screen and (max-width: 480px) {
	.solution_txt{
			font-size: 6.5333275vw;
			line-height: 1.5;
	}
}
.solution_txt span {
	background: linear-gradient(transparent 70%, #cbbcbc 70%);
	font-weight: bold;
}
.cont04_block{
	display: flex;
	flex-wrap: wrap;
	width: 770px;
	margin: 30px auto 0;
}
.cont04_item{
	width: 370px;
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}
.cont04_item:nth-of-type(2n){
	margin-left: 30px;
}
.cont04_item div{
	width: 65%;
	text-align: left;
}
.cont04_item div h4{
	font-weight: bold;
	font-size: 24px;
	margin-bottom: 10px;
}
.cont04_item div p{
	font-size: 18px;
	line-height: 1.5;
}

@media screen and (max-width: 768px) {
	.cont04_block{
		width: 100%;
		display: block;
	}
	.cont04_item{
		width: 100%;
	}
	.cont04_item:nth-of-type(2n){
		margin-left: 0;
	}
}
@media screen and (max-width: 480px) {
	.cont04_img{
		margin-right: 10px;
	}
	.cont04_item{
		padding: 10px;
	}
	.cont04_item div h4{
		font-size: 5.599995vw;
	}
}
.overview_block{
	width: 800px;
	margin: 0 auto 30px;
}
.contets_block .article_area .overview_block h3{
	background: #55522f;
	color: #fff;
	padding: 15px;
	margin-bottom: 0;
	font-size: 20px;
}
.overview_item{
	background: #fff;
	padding: 20px;
	text-align: left;
}
.overview_item p{
	line-height: 1.5;
}
.overview_item table th,
.overview_item table td{
	padding: 5px;
	line-height: 1.5;
}
.overview_item.flexBlock{
	display: flex;
	justify-content: space-between;
}
.overview_item.flexBlock .img{
	width: 100px;
}
.overview_item.flexBlock .disc{
	width: calc(100% - 100px);
}

@media screen and (max-width: 768px) {
	.overview_block{
		width: 100%;
	}
}
.target_payment{
	background: #f2f2f2;
	display: flex;
	padding: 20px;
	margin-bottom: 20px;
}
.target_payment p{
	font-weight: bold;
	width: 20%;
}
.target_payment ul{
	width: 80%;
}
.target_payment ul li{
	font-weight: bold;
	line-height: 1.5;
}
@media screen and (max-width: 480px) {
	.target_payment{
		padding: 10px;
	}
	.target_payment p{
		width: 30%;
	}
	.target_payment ul{
		width: 70%;
	}
}
.scrollBox {
	overflow-x: auto;
	margin-bottom: 30px;
}
.scrollBox table{
	width: 100%;
	margin: 0 auto;
}
.scrollBox table th,
.scrollBox table td{
	border: 1px solid #ccc;
	padding: 5px;
	font-size: 12px;
	vertical-align: middle;
}
.scrollBox table th{
	background: #55522f;
	color: #fff;
	white-space: nowrap;
	text-align: center;
}
.scrollBox table td{
	background: #fff;
	text-align: left;
}



.tmr-discBox{
	border: 1px solid #979797;
	padding: 20px;
	margin: 20px auto;
	box-shadow:2px 2px 6px 0px #e0e0e0;
	background: #fff;
}
.contets_block .article_area .tmr-midHeading {
	font-size: 20px;
	margin-bottom: 10px;
	line-height: 1.3;
	color: #1c5694;
	text-alig: left;
	font-weight: bold;
}
.contets_block .article_area .contact_txt{
	font-size: 14px;
	margin-bottom: 10px;
}
.tmr-discBox p{
	line-height:1.8;
}
.discBox_txt{
	text-align: left;
}
.tmr-fpContact{
	display:flex;
	justify-content: space-between;
	padding:0 30px;
}
.tmr-fpContact .list_conversion a{
	margin-left: 0;
	margin-bottom: 10px;
	padding: 15px 80px;
}
.tmr-fpContact .tel:before{
	content: url(../img/icon_free.png);
	position: absolute;
	top: 3px;
	left:0;
}
.tmr-fpContact .tel a{
	text-decoration: none;
	color: #333;
	font-weight:bold;
}
@media screen and (min-width: 769px)
.tmr-telLink {
	pointer-events: none;
}
.tmr-infoTxt{
	font-size:1.25rem;
	line-height:1.8;
	margin-bottom:20px;
}
.tmr-fpContact table th{
	text-align:left;
	padding:5px;
}
.tmr-fpContact table td:before{
	content: "：";
}
@media screen and (max-width: 768px) {
	.tmr-fpContact{
		display:block;
		padding:0 20px;
	}
	.tmr-fpContact .discBox_txt{
		margin-bottom:20px;
	}
	.tmr-infoTxt{
		font-size:1rem;
	}
}
@media screen and (max-width: 480px) {
	.tmr-fpContact{
		padding:0;
	}
	.tmr-fpContact .txt{
		margin-bottom:20px;
	}
	.tmr-fpContact .tel{
		font-size:2rem;
	}
	.tmr-fpContact table th,
	.tmr-fpContact table td{
		display:block;
		padding:0;
		padding-bottom:5px;
	}
	.tmr-fpContact table th{
		font-weight:bold;
	}
	.tmr-fpContact table td{
		padding-bottom:10px;
	}
	.tmr-fpContact table td:before{
		content: "";
	}
}







footer{
	background: #121c2f;
	padding: 20px 0;
	min-width: 1030px;
}

.footer_inner{
	width: 990px;
	margin:0 auto;
	display: flex;
	background: #fff;
	padding: 30px;
}
.footer_block{
	display: flex;
	width: 100%;
	justify-content: space-between;
}
.footer_item{
	width: 48%;
}
.footer_item + .footer_item {
	width: 49%;
}
.footer_item p{
	font-size: 12px;
	line-height: 1.5;
}
.footer_item .ttl{
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}
.footer_item .ttl2{
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
}
.footer_item .ttl3{
	font-size: 14px;
	text-align: left;
}
.footer_item .ttl3 span{
	font-size: 24px;
}
.footer_item .list_conversion{
	margin :10px auto 5px;
	display: block;
}
.footer_item .list_conversion a{
	padding: 15px;
	margin-left: 0;
	width: 100%;
	display: block;
}
.footer_item table td{
	padding: 10px;
	text-align: left;
	border-bottom: 1px solid #ccc;
	line-height: 2;
}
@media screen and (max-width: 768px) {
	footer{
		min-width: 100%;
	}
	.footer_inner{
		width: 100%;
		padding: 20px;
	}
	.footer_block{
		display: block;
	}
	.footer_item{
		width: 100%;
	}
	.footer_item + .footer_item {
		width: 100%;
		margin-top: 30px;
	}
	.footer_item table td{
		font-size: 16px;
	}
}
@media screen and (max-width: 480px) {
	.footer_item table td{
		font-size: 13px;
		padding: 5px;
	}
	.footer_item p{
	}
	.footer_item .list_conversion{
		display: block;
	}
	.footer_item .list_conversion a{
		margin-right: 0;
		margin-top: 10px;
	}
	.footer_item .ttl2{
		font-size: 15px;
		margin-bottom: 6px;
	}
	.footer_item .ttl3{
		font-size: 12px;
		text-align: center;
	}
	.footer_item .ttl3 span{
		font-size: 20px;
	}
	.footer_item table td br{
		display: none;
	}
}
.pagetop_btn{
	position: fixed;
	right: 30px;
	bottom: 50px;
	display: none;
	width: 60px;
	height: 60px;
	background: url(../img/icon-scroll.png) center / 100% no-repeat;
	vertical-align: bottom;
	cursor: pointer;
}
@media screen and (max-width: 768px) {
	.pagetop_btn{
		right: 10px;
	}
}



/** ========================================================
 * @
 * フォーム関連
 * ====================================================== */
/* ------------------------------
 * 項目の見出し
 * --------------------------- */
.tmr-mainHeading{
	background:#121c2f;
	color:#fff;
	font-size:1.5rem;
	font-weight:bold;
	padding:20px 0;
}
/** ========================================
 * @LAYOUT
 * 
 * ====================================== */
.tmr-inner {
	display: block;
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
	padding: 15px;
}
@media screen and (max-width: 768px) {
	.tmr-inner {
		max-width: initial;
	}
}
.tmr-form em.required{ font-style: normal; font-weight: normal; font-size: .875rem; color: #fff; background: #ca3131; display: inline-block; padding: 3px 6px; line-height: 1; }
.tmr-form em.optional { font-style: normal; font-weight: normal; font-size: .875rem; color: #fff; background: #0d58a6; display: inline-block; padding: 3px 6px; line-height: 1; }
_:-ms-fullscreen, :root .tmr-form em.required {
	padding: 6px 6px 2px 6px;
}
.tmr-form h2 { margin-bottom: 20px; }
.tmr-form h3 { margin-bottom: 10px; margin-top: 40px; }
.tmr-form h3 em { margin-right: 10px; }
.tmr-form h3 + p { margin-top: 0; }
.tmr-form p { margin-bottom: 1.5em; line-height: 2;}
.tmr-form small { font-size: 1.2rem; font-weight: normal; display: block; }

.tmr-form table { margin-bottom: 30px; width:100%; }
.tmr-form table th { background: #f0f0f0; text-align: left; padding: 10px 20px; border: 1px solid #ccc; font-weight:bold;vertical-align:middle;width:30%;line-height:1.5; }
.tmr-form table th em { /*margin-left: 10px;*/ float:right;}
.tmr-form table td { padding: 10px 20px; border: 1px solid #ccc; vertical-align: middle; }
.tmr-form table td input[type=text],
.tmr-form table td input[type=email],
.tmr-form table td input[type=tel] { border: 1px solid #ccc; width: 470px; padding: 5px;font-size:1rem;font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;}
.tmr-form table td textarea { border: 1px solid #ccc; width: 100%; height: 160px; padding: 5px;font-size:1rem;font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;}
.tmr-form table label { margin-right: 25px; display: inline-block; }
.tmr-form table input[type=radio],
.tmr-form table input[type=checkbox] { margin-right: 5px; }

.tmr-form .submit{
	text-align:center;
}
.tmr-form .submit input[type="submit"]{
	width: 255px;
	padding: 19px 0;
	color: #fff;
	background: linear-gradient(to right, #183260 0, #355792 100%);
	cursor: pointer;
	appearance: button;
	font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
	font-size:1.15rem;
	border:none;
}
.tmr-form .submit input[type="submit"]:hover{
	opacity:.7;
}
.tmr-form .back_btn{
	display:inline-block;
	width: 255px;
	padding: 19px 0;
	color: #fff;
	background-color: #bdbdbd;
	cursor: pointer;
	appearance: button;
	font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
	font-size:1.15rem;
	margin-right:20px;
	line-height:1.5;
}

_:-ms-fullscreen, :root .tmr-form .submit input[type="submit"],
_:-ms-fullscreen, :root .tmr-form .back_btn {
	padding: 19px 0 13px;
}
.tmr-formDoneBlock {
	margin: 60px auto 80px;
	background: #f0f0f0;
	padding: 40px 0 20px;
	text-align: center;
}
.tmr-formDoneBlock p {
	line-height: 1.6;
	margin-bottom: 1.5em;
}
.tmr-form table td input[type=text].w_short,
.tmr-form table td input[type=email].w_short,
.tmr-form table td input[type=tel].w_short {
	width:200px;
}
.tmr-form table td input[type=text].w_date,
.tmr-form table td input[type=email].w_date,
.tmr-form table td input[type=tel].w_date {
	width:100px;
}
.tmr-form table td input[type=text].w_price,
.tmr-form table td input[type=email].w_price,
.tmr-form table td input[type=tel].w_price {
	width:100px;
	text-align:right;
}
@media screen and (max-width: 768px) {
	.tmr-form em.required { font-style: normal; font-weight: normal; font-size: .875rem; color: #fff; background: #ca3131; display: inline-block; padding: 1vw 2vw; line-height: 1; }
	.tmr-form em.optional { font-style: normal; font-weight: normal; font-size: .875rem; color: #fff; background: #0d58a6; display: inline-block; padding: 1vw 2vw; line-height: 1; }
	.tmr-form h2 { margin-bottom: 4vw; }
	.tmr-form h3 { margin-bottom: 2vw; margin-top: 3vw; }
	.tmr-form h3 em { margin-right: 2vw; }
	.tmr-form p { margin-bottom: 1.5em; }
	.tmr-form small { font-size: 3.1vw; font-weight: normal; display: block; }

	.tmr-form table { margin-bottom: 5vw;  border-top: 1px solid #ccc;border-collapse: collapse; }
	.tmr-form table th { background: #f0f0f0; border-bottom:none;border-top:none;width:100%; }
	.tmr-form table th,
	.tmr-form table td { text-align: left; padding: 3vw; display: block; }
	.tmr-form table th em { /*margin-left: 2vw;float:none;*/ }
	.tmr-form table td input[type=text],
	.tmr-form table td input[type=email],
	.tmr-form table td input[type=tel] { border: 1px solid #ccc; width: 100%; padding: 1vw; }
	.tmr-form table td textarea { border: 1px solid #ccc;; height: 160px; padding: 5px; }
	.tmr-form table label { margin-right: 3vw; display: inline-block; }
	.tmr-form table input[type=radio],
	.tmr-form table input[type=checkbox] { margin-right: 1vw; }
	.tmr-form .submit .back_btn{
		display:block;
		margin:0 auto 10px;
	}
	.tmr-formDoneBlock{
		padding: 20px;
		margin: 30px auto;
	}
}