@charset "utf-8";
.contents .heading{
	height: 320px;
	padding-top: 130px;
	margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
	.contents .heading{
		height: 150px;
		display: flex;
		align-items: center;
		padding-top: 0;
		margin-bottom: 50px;
	}
	.contents .heading h1{
		margin-bottom: 0;
	}
}
/* ------------------------------
 フォーム（PC）
------------------------------ */
.required,
.any {
	width: 45px;
	line-height: 20px;
	display: inline-block;
	font-size: 1.3rem;
	font-weight: bold;
	color: #fff;
	border-radius: 50px;
	background-image: linear-gradient(135deg, #e91e2e 10%, #b9062b 90%);
	text-align: center;
	margin-right: 10px;
}
.required {
	background-image: linear-gradient(135deg, #e91e2e 10%, #b9062b 90%);
}
.any {
	background: #828990;
	padding-left: 0;
	text-indent: 0;
}
.indent{
  padding-left: 3.4em !important;
  text-indent: -3.4em;
}
.contents table {
	border-top: none;
	border-bottom: none;

}
.contents table th,
.contents table td{
	border-top: none;
	border-bottom: none;
	background: transparent;
	text-align: left;
	vertical-align: top;
	padding: 22px 0;
}
.contents table th{
	border-bottom: solid 1px #828990;
	vertical-align: middle;
}
.contents table tr:first-child th{
	border-top: solid 1px #828990;
}
.contents table td{
	font-size: 1.5rem;
	border-bottom: solid 1px #d3d6d8;
}
@media print, screen and (min-width: 768px) {
	.contents table th{
		width: 220px;
	}
	.contents table td{
		padding-left: 50px;
	}
	.contents table tr:first-child td{
		border-top: solid 1px #d3d6d8;
	}
}
/* フォーム */
label {
	display: inline-block;
	position: relative;
	cursor: pointer;
}
textarea::placeholder,
input::placeholder {
	color: #9b9b9b;
}
input[type='text'],
input[type='number'],
input[type='tel'],
input[type='email'],
input[type='password'],
textarea {
	-webkit-appearance: none;
	width: 100%;
	padding: 10px 12px;
	background: #ecedee;
	color: #000;
	font-family: "Zen Kaku Gothic New", sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.5;
	font-weight: 500;
	text-align: left;
	vertical-align: middle;
	font-size: 16px;
	font-weight: normal;
}
input[type='text']:focus,
input[type='number']:focus,
input[type='tel']:focus,
input[type='email']:focus,
textarea:focus {
	outline: 0;
	box-shadow: 0 0 3px 3px #e0e0e0 inset;
}
input[type='text']:disabled,
input[type='number']:disabled,
input[type='tel']:disabled,
input[type='email']:disabled,
textarea:disabled {
	background-color: #ddd;
	cursor: default;
}
textarea {
	height: calc( 2em * 5 );
}
/* ラジオボタン */
input[type=radio] {
	position: absolute;
	top: 8px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input[type=radio] + span {
	display: inline-block;
	position: relative;
	top: 3px;
	width: 16px;
	height: 16px;
	margin-right: 6px;
	border: solid 1px #757b82;
	border-radius: 50%;
	background-color: #fff;
}
input[type=radio] + span:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background-color: transparent;
	margin: auto;
}
input[type=radio]:checked + span:before {
	background: #b9062b;
}
input[type=radio]:focus {
	outline: 0;
}
input[type=radio]:focus + span {
	outline: 0;
	box-shadow: 0 0 2px 2px #e0e0e0;
}
/* チェックボックス */
input[type=checkbox] {
	position: absolute;
	top: 3px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input[type=checkbox] + span {
	display: inline-block;
	position: relative;
	top: 3px;
	width: 16px;
	height: 16px;
	margin-right: 6px;
	background-color: #e6e7e9;
}
input[type=checkbox] + span:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 16px;
	height: 13px;
	margin: auto;
}
input[type=checkbox]:checked + span:before {
	background: #ecedee url("../img/icon_check.svg") no-repeat center center / 12px auto;
}
input[type=checkbox]:focus {
	outline: 0;
}
input[type=checkbox]:focus + span {
	outline: 0;
}

/*  ボタン  */
.contentsContact .btn{
	width: 230px;
	min-height: 68px;
	line-height: 68px;
	color: #000;
	font-size: 1.8rem;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-weight: bold;
	display: inline-block;
	text-align: left;
	border: none;
	cursor: pointer;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	background: url(/shared/img/icon_arrow_menu.svg) no-repeat right 7px center / 12px auto;
	border-bottom: solid 1px #c0c4c8;
}
.btn-b {
	-webkit-appearance: none;
	appearance: none;
	color: #fff;
	min-width: 100px;
	width: 100px;
	float: left;
	margin-right: -100px;
	line-height: 1.5;
	line-height: 50px;
	cursor: pointer;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	border-radius: 50px;
	background: #c0c0c0;
    font-size: 18px;
    font-weight: bold;
	cursor: pointer;
}
.btn:disabled,
.btn.is-disabled {
	cursor: auto;
	color: #828990;
	background: url(../img/icon_arrow_gray.svg) no-repeat right 7px center / 12px auto;
}
.contentsContact input::-webkit-input-placeholder {
	color: #9b9b9b;
}
.contentsContact input[type='text']:focus ,
.contentsContact select:focus ,
.contentsContact textarea:focus {
	outline: 0;
	box-shadow: 0 0 2px 3px #ddd inset;
}
.contentsContact textarea {
    height: 180px;
}
.contentsContact input[type='text']:focus ,
.contentsContact textarea:focus {
    outline: 0;
}
.check-boxes {
    margin-bottom: 20px;
    padding-left: 1.7em;
    text-indent: -1.7em;
}
input[type="checkbox"] {
    margin-right: 5px;
    vertical-align: baseline;
}
label {
    vertical-align: baseline;
    display: inline-block;
}
@media screen and (min-width: 768px) {
	.btn:hover{
		color: #b9062b;
	}
	.btn-b:hover{
		opacity: 0.7;
	}
	.btn:disabled:hover{
		opacity: 1;
		color: #828990;
	}
}
/* ------------------------------
 フォーム（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.contents > .inBlock {
		width: 90%;
		margin-left: 5%;
		margin-right: 5%;
	}
	.contents table th{
		padding-top: 20px;
		padding-bottom: 0;
		border-bottom: none;
	}
	.contents table td{
		padding-top: 13px;
	}
	/* フォーム */
	label {
		display: block;
	}
	input[type='text'],
	input[type='number'],
	input[type='tel'],
	input[type='email'],
	input[type='password'],
	textarea {
		padding: 12px 18px;
		font-size: medium;
	}
	/*  ボタン  */
	.contentsContact .btn{
		font-size: 17px;
		display: block;
		margin: 0 auto;
		margin-bottom: 20px;
	}
	.btn-b{ 
		float: none;
		margin-right: 0;
		font-size: 17px;
	}
}
