@charset "UTF-8";

/* 
--------------------------------------------------------------------*/
.required {
	display: inline-block;
	color: #FFF;
	font-size: 75%;
	line-height: 2;
	box-sizing: border-box;
	background-color: #994350;
	padding: 0 .6em;
	border-radius: 3px;
	vertical-align: 0.1em;
	margin-left: 1em;
}
.tbl_form {
	width: 100%;
	border-collapse: collapse;
	border-top: 1px solid rgba(128,128,128,0.3);
}
.tbl_form caption {
	text-align: left;
	margin-bottom: 1em;
}
.tbl_form tr {
	border-bottom: 1px solid rgba(128,128,128,0.3);
}
.tbl_form th,
.tbl_form td {
	vertical-align: middle;
	padding: 1.8em 2.5em;
}
.tbl_form th {
	width: 25%;
	font-weight: 400;
	font-style: normal;
	text-align: left;
	white-space: nowrap;
}
.tbl_form th.va_t {
	vertical-align: top;
}
.tbl_form td {
	width: 75%;
	padding-left: 0;
}
.tbl_form .max_txt {
	width: 100%;
}
.tbl_form .mid_txt {
	width: 50%;
}
.tbl_form .radio_list li {
	float: left;
    margin-right: 2.5em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

.tbl_form {
	font-size: 95%;
}
.tbl_form th {
	width: 30%;
}
.tbl_form td {
	width: 70%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
	
.tbl_form tr,
.tbl_form th,
.tbl_form td {
	display: block;
	width: 100%;
	box-sizing: border-box;
}
.tbl_form th {
    letter-spacing: normal;
	padding: 1em 5%;
}
.tbl_form td {
	padding: 0 4% 1.2em;
}
.tbl_form .mid_txt {
	width: 100%;
}
.tbl_form .radio_list li {
    margin-bottom: .2em;
}
}


/* submit_box
-----------------------------------------------------------------------------*/
.submit_box {
	text-align: center;
}
.submit_box dt {
	font-size: 118%;
	margin-bottom: .8em;
}
.submit_box .submit_txt {
	line-height: 2.2;
}
.submit_box .com_grd_btn {
	text-align: center;
}
.submit_box .btnlist {
	display: flex;
	justify-content: center;
}
.submit_box .btnlist > li {
	margin-right: 1em;
}
.submit_box .btnlist > li:last-of-type {
	margin-right: 0;
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.submit_box .submit_txt {
	text-align: left;
	line-height: 2;
}
.submit_box .check_btn label {
	text-align: left;
}
.submit_box .btnlist {
	display: block;
}
.submit_box .btnlist > li {
	margin-right: 0;
	margin-top: .5em;
}

}

/* form
------------------------------------------------------------------*/
/********************/
/* テキストボックス */
/********************/
form input[type="text"],
form textarea {
	width: 100%;
	padding: 1em;
	height: 2.8em;
	box-sizing: border-box;
	background: #fff;
	font-size: 100%;	
	outline: none;   
	border: solid 1px rgba(128,128,128,0.6);
	border-radius: 3px;
	-webkit-appearance: none;
}
form textarea {
	height: 200px;
	resize: none;
}
::placeholder {
    color: #CCC;
	font-weight: normal;
}

/*********************************/
/* ラジオボタン・チェックボックス */
/*********************************/
form input[type=radio],
form input[type=checkbox] {
    display: inline-block;
}
form input[type=radio] + label,
form input[type=checkbox] + label {
    position: relative;     
    display: inline-block;
    cursor: pointer;
}
 
@media (min-width: 1px) {
    form input[type=radio],
    form input[type=checkbox] {
/*        display: none;*/
		position: absolute;		/* 上に別の要素が乗るようにする */
		z-index: -1;			/* 最背面にする */
		pointer-events: none;	/* クリック無効 */
		visibility: hidden;		/* 非表示 */
        margin: 0;
    }
    form input[type=radio] + label,
    form input[type=checkbox] + label {
        padding-left: 2.5em;
    }
    form input[type=radio] + label::before,
    form input[type=checkbox] + label::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;         
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
        width: 1.6em;
        height: 1.6em;
    }
    form input[type=radio] + label::before {   
		border: solid 1px rgba(128,128,128,0.6);   
        border-radius: 50%;
		top: 50%;
		transform: translateY(-50%);
    }
    form input[type=checkbox] + label::before {   
		border: solid 1px rgba(128,128,128,0.6);  
		border-radius: 3px;
    }
    form input[type=radio]:checked + label::after,
    form input[type=checkbox]:checked + label::after {
        content: "";
        position: absolute;
        box-sizing: border-box;
        display: block;
    }
    form input[type=radio]:checked + label::after {
        width: 1em;
        height: 1em;
        background: rgba(138,150,78,0.6);
        border-radius: 50%;
        left: .3em;         
		top: 50%;
		transform: translateY(-50%);
    }
    form input[type=checkbox]:checked + label::after {
        left: .4em;
		top: -0.1em;
        width: 1.5em;
        height: .8em;
        border-left: 4px solid rgba(138,150,78,0.6);
        border-bottom: 4px solid rgba(138,150,78,0.6);         
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

/******************/
/* コンボボックス */
/******************/
form select {
	font-size: 16px;
	height: 30px;
}

/**********/
/* ボタン */
/**********/
form button {
	-webkit-appearance: none;
	width: 100%;
	max-width: 18em;
	min-width: 18em;
	border: none;
	cursor: pointer;
	border-radius: 0;
	font-family: inherit;
	font-size: 106%;
	font-weight: normal;
	line-height: 1.2em;
	padding: 1.5em 0;
	margin: 0 auto;
	transition: opacity .4s;
}
form button[type="submit"]:disabled {
	pointer-events: none;
	opacity: 0.8;
}
form button[type="reset"],
form button[type="button"] {
	background: linear-gradient(90deg, rgba(128,128,128,1) 0%, rgba(128,128,128,0.8) 100%);
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
	
form input[type="text"] {
	height: 2em;
}
/**********/
/* ボタン */
/**********/
form button {
	min-width: 16em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

form textarea {
	height: 150px;
}
form input[type="text"] {
	height: 1.8em;
}
@media (min-width: 1px) {
    form input[type=radio] + label,
    form input[type=checkbox] + label {
		line-height: 1.4;
        padding-left: 2.2em;
    }
    form input[type=radio] + label::before,
    form input[type=checkbox] + label::before {
        width: 1.4em;
        height: 1.4em;
    }
    form input[type=radio]:checked + label::after {
        width: .9em;
        height: .9em;
    }
    form input[type=checkbox]:checked + label::after {
        left: .3em;
        width: 1.3em;
        height: .7em;
    }
}

}



/* 確認画面、完了ページ
-----------------------------------------------------------------------------*/
.kakunin .kakunin_txt {
	font-size: 112%;
	margin-bottom: .5em;
}
    

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {


}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
	

}