@charset "UTF-8";
/*----------------------------------contents*/
.btn_basic {
    margin-top: var(--ctr_inpd);
}

/*----------------------------------form*/
table#contact {
	width: 100%;
	margin: var(--ctr_inpd) 0;
	border-top: 1px solid var(--gray);
	border-left: 1px solid var(--gray);
}
table#contact tr th {
	display: block;
	padding: 10px;
	border-right: 1px solid var(--gray);
	background: var(--pale_blue);
	line-height: 150%;
	text-align: left;
	vertical-align: middle;
}
table#contact tr th span {
	transform: var(--rotate_base);
}
table#contact tr td {
	display: block;
	padding: 10px;
	border-right: 1px solid var(--gray);
	border-bottom: 1px solid var(--gray);
	text-align: left;
	background: #fff;
	vertical-align: middle;
}
table#contact tr td.td_child {
	border-bottom: 1px dotted var(--gray);
}
table#contact tr td label {
    display: inline-block;
	transform: var(--rotate_base);
}
table#contact p {
	margin-bottom: 5px;
	transform: var(--rotate_base);
}
table#contact tr td .attention {
	white-space: nowrap;
}

table#contact tr th span.form_title {
	display: block;
	overflow: hidden;
}

/*必須アイコン*/
table#contact tr th span.txt_required {
	float: left;
	font-size: 12px;
	font-weight: normal;
	text-align: center;
	border-radius: 2px;
	color: #fff;
	background: var(--red);
	padding: 6px 0;
	margin-right: 10px;
	line-height: 70%;
	width: 40px;
	display: block;
}
/*任意アイコン*/
table#contact tr th span.txt_optional {
	float: left;
	font-size: 12px;
	text-align: center;
	font-weight: normal;
	border-radius: 2px;
	color: #fff;
	background: #666;
	padding: 6px 0;
	margin-right: 10px;
	line-height: 70%;
	width: 40px;
	display: block;
}
/*入力エリア装飾*/
input[type="text"], input[type="tel"], textarea {
	padding: 10px;
    font-family: var(--font_sans);
	font-size: 1rem;
	border-radius: 0;
	border: 1px solid #e8e8e8;
	background: #e8e8e8;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#e8e8e8));
	background-image: -webkit-linear-gradient(left, #e8e8e8, #e8e8e8);
}
select {
	padding: 10px;
    font-family: var(--font_sans);
	font-size: 1rem;
	border-radius: 0;
	border: none;
	background: #e8e8e8;
}
select:focus {
	padding: 10px;
    font-family: var(--font_sans);
	font-size: 1rem;
	border-radius: 0;
	border: none;
}
/*入力エリアサイズ*/
.input_10 {
	width: 10%;
}
.input_20 {
	width: 20%;
}
.input_30 {
	width: 30%;
}
.input_50 {
	width: 50%;
}
.input_70 {
	width: 70%;
}
.input_100 {
	width: 100%;
}

.input_zip {
	width: 180px;
}
.input_tel {
	width: 200px;
}

/*入力モード*/
.ime_dis {
	ime-mode:disabled;
}
.ime_act {
	ime-mode:active;
}

/*入力例の文字装飾*/
::-webkit-input-placeholder {
    color: #bbb;
}
::-moz-placeholder {
    color: #bbb;
}
:-ms-input-placeholder {
    color: #bbb;
}
input:focus::-webkit-input-placeholder { 
	color:transparent;
}
input:focus:-moz-placeholder {
	color:transparent;
}
input:focus::-moz-placeholder {
	color:transparent;
}
textarea:focus::-webkit-input-placeholder { 
	color:transparent;
}
textarea:focus:-moz-placeholder {
	color:transparent;
}
textarea:focus::-moz-placeholder {
	color:transparent;
}
/*ラジオボタン余白調整*/
input[type=radio] {
	margin-left: 15px;
}
td label.first input[type=radio] {
	margin-left: 0;
}
/*チェックボックス余白調整*/
input[type=checkbox] {
	margin-left: 15px;
}
td label.first input[type=checkbox] {
	margin-left: 0;
}

/*送信・戻るボタン*/
ul.submit_btn {
	font-size: 0;
	text-align: center;
	margin-bottom: 20px;
}
ul.submit_btn li {
	display: inline-block;
	cursor: pointer;
    transition: all 0.5s;
}
ul.submit_btn li.inp_submit01 input {
	color: #fff;
	background: var(--red);
	border: none;
    padding: 1.075em 2em;
	margin: 0 5px;
    line-height: 1.2;
    font-family: var(--font_sans);
    font-size: var(--font_m);
    font-weight: 700;
    border-radius: 100px;
	cursor: pointer;
	transform: var(--rotate_base);
}
ul.submit_btn li.inp_submit02 input {
	color: #fff;
	background: var(--dark_gray);
	border: none;
    padding: 0.75em 2em;
	margin: 0 5px;
    line-height: 1.2;
    font-family: var(--font_sans);
    font-size: var(--font_m);
    font-weight: 700;
    border-radius: 100px;
	cursor: pointer;
	transform: var(--rotate_base);
}
ul.submit_btn li:hover {
	opacity: 0.7;
}

/*エラーメッセージ用*/
.errtop {
	position: relative;
	margin-top: 20px;
	padding:10px;
	text-align: center;
	font-weight: bold;
	color:#c33;
	background: #fcc;
}
.errtop::after {
	position: absolute;
	left:50%;
	bottom:-30px;
	width: 0;
	height: 0;
	margin-left:-15px;
	content: "";
	border:solid 15px transparent;
	border-top:solid 15px #fcc; 
}
.errmsg span {
	position: relative;
	display: inline-block;
	margin-top:10px;
	padding:5px 10px;
	font-weight: bold;
	color:#c33;
	background: #fcc;
}
.errmsg span::after {
	position: absolute;
	left:30px;
	top:-20px;
	width: 0;
	height: 0;
	content: "";
	border:solid 10px transparent;
	border-bottom:solid 10px #fcc; 
}

/*遷移後のランディング位置調整*/
#form_landing {
	margin-top: -80px;
	padding-top: 80px;
    transform: var(--rotate_base);
}
/*送信完了画面用*/
#thanks {
	margin:20px 0;
}
#thanks h4 {
	margin:-80px 0 1em;
	padding-top: 80px;
	font-size: var(--font_l);
	font-weight:bold;
}
#thanks p {
    transform: var(--rotate_base);
}
@media print, screen and (min-width:768px) {
table#contact {
	border-collapse: separate;
}
table#contact tr th {
	display: table-cell;
	width: 28%;
	border-bottom: 1px solid var(--gray);
}
table#contact tr td {
	display: table-cell;
}
table#contact tr td.td_child {
	border-right: 1px dotted var(--gray);
	border-bottom: 1px solid var(--gray);
}
/*入力例の文字装飾*/
::-webkit-input-placeholder {
    color: #666;
}
::-moz-placeholder {
    color: #666;
}
:-ms-input-placeholder {
    color: #666;
}
}

#privacy dl dt {
    margin-top: var(--ctr_inpd);
    margin-bottom: 0.5em;
    font-size: var(--font_l);
    font-weight: bold;
}
#privacy dl dd p {
    transform: var(--rotate_base);
}
#privacy dl dd ul {
    margin-top: 0.75em;
}

@media print, screen and (min-width:768px) {
#privacy .wrap {
    margin: 0 120px;
}
}
