@charset "utf-8";

/* ------------------------------
 ボタン
------------------------------ */
.cms_text a {
	color: #3d6ead;
	text-decoration: underline;
}
.cms_text a[target="_blank"]::after {
	content: "";
	display: inline-block;
	width: 11px;
	height: 11px;
	background: url(../img/icon_blank_b.svg) no-repeat center / 11px auto;
	vertical-align: 4px;
	margin-left: 6px;
	margin-right: 8px;
}
/* -- フォームのボタン -- */
button.btn-a {
	min-width: 350px;
	z-index: 2;
	cursor: pointer;
}
/* 確認画面 */

/* 戻るボタン */
.btn-b {
	position: relative;
	width: 200px;
	height: 80px;
	font-size: 2rem !important;
	color: #fff;
	line-height: 1.5;
	background-color: #979ca2;
	border-radius: 80px;
	padding: 12px 30px 15px;
	cursor: pointer;
	float: left;
	margin-right: -200px;
	transition: .3s ease-in-out;
}
button.btn-b::before {
	content: "";
	position: absolute;
	width: 11px;
	height: 18px;
	background: url(../img/icon_arrow_w.svg) no-repeat center / cover;
	top: 0;
	bottom: 0;
    left: 25px;
	right: auto;
	margin: auto;
	transition: .3s ease-in-out;
	transform: rotate(-180deg);
}
button.btn-b:hover {
	opacity: .7;
}
/* 同意チェックの有無 */
.btn-a:disabled,
.btn-a.is-disabled,
.btn-a:disabled:hover,
.btn-a.is-disabled:hover {
	opacity: 0.5;
	cursor: auto;
}
/* ------------------------------
 ボタン（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	button.btn-a {
		width: 100%;
		min-width: unset;
		font-size: 1.8rem;
	}
	/* 確認画面 */
	.btn-b {
		width: 100px;
		height: 40px;
		font-size: 1.5rem !important;
		padding: 0;
		margin-top: 100px;
	}
	button.btn-b::before {
		width: 8px;
		height: 12px;
		left: 14px;
	}
}

/* ------------------------------
 パーツ装飾
------------------------------ */
table input[type='text'],
table select,
table textarea {
	width: 100%;
	font-size: 1.6rem;
	color: #000;
	text-align: left;
	background-color: #fff;
	border-radius: 0;
	padding: 4px 10px;
	-webkit-appearance: none;
	vertical-align: middle;
	border-radius: 5px;
}
table input[type='text']:focus,
table textarea:focus {
    outline: 0;
}
table input[type='text']:focus,
table select:focus ,
table textarea:focus {
	outline: 0;
	box-shadow: 0 0 2px 3px rgba(0, 0, 0, 0.05) inset;
}
table textarea {
	resize: vertical;
    height: 163px;
    min-height: 163px;
}
input[type="checkbox"] {
    margin-right: 5px;
    appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	position: absolute;
	top: 8px;
}
input[type="number"] {
	width: 70px;
	border: solid 1px #000;
	border-radius: 5px;
	padding: 0 0 0 10px;
	margin-right: 5px;
}
label {
	position: relative;
    display: block;
    width: fit-content;
	padding-left: 25px;
}
.tac label {
	display: inline-block;
}
/* -- ラジオボタン -- */
input[type=radio] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	position: absolute;
	top: 8px;
}
input[type=radio] + span {
	display: inline-block;
	width: 18px;
	height: 18px;
	vertical-align: top;
	background-color: #fff;
	border-radius: 100%;
	position: absolute;
	top: 7px;
	left: 0;
}
input[type=radio] + span:before {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	background-color: transparent;
	border-radius: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
input[type=radio]:checked + span:before {
	background-color: #3d454f;
}
input[type=radio]:focus {
	outline: 0;
}
input[type=radio]:focus + span {
	outline: 2px solid #333;
	outline-offset: -2px;
}
/* チェックボックス */
input[type=checkbox] + span {
	display: inline-block;
	width: 18px;
	height: 18px;
	vertical-align: top;
	background-color: #fff;
	position: absolute;
	top: 6px;
	left: 0;
	border-radius: 3px;
}
input[type=checkbox] + span:before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background-color: transparent;
	border-radius: 10%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
input[type=checkbox]:checked + span:before {
	background-color: #3d454f;
}
input[type=checkbox]:focus {
	outline: 0;
}
input[type=checkbox]:focus + span {
	outline: 2px solid #333;
	outline-offset: -2px;
}
.bgBox input[type=checkbox] + span {
	background-color: #e0ebf5;
	top: 5px;
}
.check-boxes {
	font-size: 1.8rem;
    margin: 50px 0;
}
.check-boxes a {
	color: #0FA0D2;
	text-decoration: underline;
}
#company_div_required .hide {
	display: none;
}
.textbox {
	display: inline-block;
	width: 100px;
}
.textbox input[type="text"] {
	width: 100%;
	font-size: 1.6rem;
	font-weight: normal;
	color: #000;
	text-align: left;
	background-color: #e9ebee;
	border-radius: 0;
	padding: 4px 10px;
	-webkit-appearance: none;
	vertical-align: middle;
}

/* ------------------------------
 スマホ用コード
------------------------------ */
@media screen and (max-width: 767px) {
	table input[type='text'],
	table select,
	table textarea {
		font-size: 1.5rem;
	}
	
	/* -- チェックボックス -- */
	input[type=checkbox] + span {
		top: 7px;
	}
	.check-boxes {
		font-size: 1.6rem;
	}
}

/* ------------------------------
 お問合せ項目
------------------------------ */
.inputList table {
	width: 100%;
}
.contents .inputList table:not(.simple table) tr {
    border-bottom: solid 1px #CCCCCC;
}
.contents .inputList table:not(.simple table) tr:first-child {
    border-top: solid 1px #CCCCCC;
}
.contents .inputList table:not(.simple table) th:not(:last-child),
.contents .inputList table:not(.simple table) td:not(:last-child) {
	border-right: none;
}
.contents .inputList table:not(.simple table) th {
	position: relative;
	width: 24%;
	vertical-align: top;
	background: none;
	padding: 35px 35px 35px 0;
	border-bottom: solid 1px #c0c7cb;
}
.contents .inputList table:not(.simple table) td {
	width: 75%;
	padding: 35px 0;
	background: none;
	border-bottom: solid 1px #c0c7cb;
}
.contents .inputList table tr th span {
	display: inline-block;
	min-width: 34px;
	font-size: 1.2rem;
	font-weight: 500;
	color: #fff;
	text-align: center;
	line-height: 14px;
	background-color: #db7b8f;
	padding: 3px;
	vertical-align: 0;
  	margin-right: 10px;
	border-radius: 4px;
}
.contents .inputList table tr th span.any {
	background-color: #808080;
}
.contents .inputList table tr td li {
	vertical-align: middle;
}
table input[type="text"].address1 {
	width: 250px;
	margin-right: 12px;
}
/* 住所検索 */
.zip_srch {
    font-size: 1.5rem;
    line-height: 1;
    color: #fff;
    background: #3d6ead;
	border-radius: 5px;
    padding: 10px 18px 11px;
    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;
}
.zip_srch:hover {
    opacity: .7;
}
/* プルダウン装飾 */
.address2 {
    position: relative;
    display: block;
    cursor: pointer;
    width: 200px;
	padding-left: 0;
}
.address2::after {
    content: "";
    position: absolute;
    top: 10px;
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 6px 0 6px;
    border-color: #323232 transparent transparent transparent;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
}

/* ------------------------------
 スマホ用コード
------------------------------ */
@media screen and (max-width: 767px) {
	.contents .inputList table:not(.simple table) th {
		width: auto !important;
		display: block;
		padding: 15px 0 10px;
	}
	.contents .inputList table:not(.simple table) td {
		width: auto !important;
		min-height: 35px;
		display: block;
		padding: 0 0 20px;
	}
	.contents .inputList table:not(.simple table) th:not(:last-child),
	.contents .inputList table:not(.simple table) td:not(:last-child) {
		border-bottom: none;
	}
	.contents .inputList table tr th span {
		font-size: 1.1rem;
		top: 18px;
		right: 5px;
		
	}
	table input[type="text"].address1 {
		width: 60%;
		margin-right: 6px;
	}
	/* 住所検索 */
	.zip_srch {
		font-size: 1.1rem;
		padding: 11px 6px;
	}
}

/* ------------------------------
 横幅
------------------------------ */
.w5em {width: 5em !important;}
.w10em {width: 10em !important;}
.w20em {width: 20em !important;}
.mr2p { margin-right: 2%;}
.mr4p { margin-right: 4%;}
/* ------------------------------
 スマホ用コード
------------------------------ */
@media screen and (max-width: 479px) {
	.w10em {width: 32% !important;}
	.w20em {width: 100% !important;}
}
