@charset "UTF-8";

/*開閉アイコン*/
.com_form .icon_open {
	border-radius: 50%;
	background-color: #6C7C83;
}
.com_form .icon_open::before,
.com_form .icon_open::after {
	width: .6em;
	height: 1px;
}
.formError {
    z-index: 1;
}

/* 入力フォーム
--------------------------------------------------------------------*/
/* テーブル */
.tbl_form {
	width: 100%;
	max-width: 1220px;
	color: #000;
	line-height: 1.6;
	border-top: 1px solid #99a0a6;
}
.tbl_form caption {
	text-align: left;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 1em;
}
.tbl_form caption::before {
	color: #df5d4c;
	content: "＊";
}
.tbl_form tr {
	border-bottom: 1px solid #99a0a6;
}
.tbl_form th,
.tbl_form td {
	padding: 1.8em 3%;
}
.tbl_form th {
	width: 24%;
	background-color: #ddf0f3;
	text-align: left;
	font-weight: bold;
	letter-spacing: .1em;
	vertical-align: middle;
	white-space: nowrap;
}
.tbl_form th.va_t {
	vertical-align: top;
	padding-top: 2em;
}
.tbl_form td {
	width: 76%;
}
.tbl_form th.required::after {
	color: #df5d4c;
	content: "＊";
}
.tbl_form .radio_list li {
	float: left;
    margin-right: 2em;
}
.tbl_form .radio_list li:last-of-type {
    margin-right: 0;
}
.tbl_form .sub_txt {
	font-size: 83%;
	letter-spacing: .08em;
	font-feature-settings: "halt";
}
.tbl_form input + .sub_txt {
	margin-left: 1em;
}
.tbl_form td p {
	margin-top: 1em;
}
/* ボタンレイアウト */
.submit_box {
	text-align: center;
}
.submit_box .chk_btn {
	font-size: 125%;
	letter-spacing: .15em;
	line-height: 1.6;
	margin-top: 2em;
	margin-bottom: 3em;
}


/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
.btnlist {
	display: flex;
	justify-content: center;
	margin-top: 80px;
}
.btnlist > li {
	margin-right: .7em;
}
.btnlist > li:last-of-type {
	margin-right: 0;
}
}

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

/* テーブル */
.tbl_form {
	font-size: 95%;
}
.tbl_form th,
.tbl_form td {
	padding-top: 1.5em;
	padding-bottom: 1.5em;
}
.tbl_form .radio_list li {
    margin-right: 1.5em;
}
/* ボタンレイアウト */
.btnlist {
	margin-top: 8%;
}
.submit_box .chk_btn {
	font-size: 115%;
	letter-spacing: .1em;
}

}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
	
/* テーブル */
.tbl_form {
	font-size: 90%;
}
.tbl_form caption {
	font-size: 90%;
}
.tbl_form tr,
.tbl_form th,
.tbl_form td {
	display: block;
	width: 100%;
	box-sizing: border-box;
}
.tbl_form th,
.tbl_form td {
	padding: 1.2em 5%;
}
.tbl_form th {
	letter-spacing: .15em;
}
.tbl_form th.va_t {
	padding-top: 1em;
}
.tbl_form .radio_list li {
    margin-right: 1.2em;
}
	
.submit_box {
	text-align: left;
	font-size: 88%;
}
.submit_box .chk_btn {
	font-size: 105%;
	letter-spacing: .08em;
	font-feature-settings: "halt";
	margin-bottom: 2em;
}
.btnlist {
	margin-top: 10%;
}
.btnlist button {
	display: block;
	margin: 0 auto 10px;
	width: 90% !important;
	max-width: none !important;
}

}


/* 入力項目デザイン
------------------------------------------------------------------*/
.tbl_form .min_txt {
	width: 30%;
	max-width: 128px;
}


/********************/
/* テキストボックス */
/********************/
.com_form input[type="text"],
.com_form textarea {
	width: 100%;
	padding: .6em;
	box-sizing: border-box;
	background: #fff;
	font-size: 100%;	
	outline: none;   
	border: solid 1px #dad8d8;
	border-radius: 0;
	-webkit-appearance: none;
}
.com_form input[type="text"] {
	height: 3em;
}
.com_form textarea {
	height: 200px;
	resize: none;
}
::placeholder {
    color: #ADAAA7;
	font-weight: normal;
}

/*********************************/
/* ラジオボタン・チェックボックス */
/*********************************/
.com_form input[type=radio],
.com_form input[type=checkbox] {
    display: inline-block;
}
.com_form input[type=radio] + label,
.com_form input[type=checkbox] + label {
    position: relative;     
    display: inline-block;
    cursor: pointer;
}
 
@media (min-width: 1px) {
    .com_form input[type=radio],
    .com_form input[type=checkbox] {
/*        display: none;*/
		position: absolute;		/* 上に別の要素が乗るようにする */
		z-index: -1;			/* 最背面にする */
		pointer-events: none;	/* クリック無効 */
		visibility: hidden;		/* 非表示 */
        margin: 0;
    }
    .com_form input[type=radio] + label {
        padding-left: 2em;
    }
    .com_form input[type=checkbox] + label {
        padding-left: 3.7em;
    }
    .com_form input[type=radio] + label::before,
    .com_form input[type=checkbox] + label::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;         
        box-sizing: border-box;
        display: block;
        width: 1.3em;
        height: 1.3em;
        background: #fff;   
		border: solid 1px #dcdcdc;
		transform: translateY(-50%);
    }
    .com_form input[type=radio] + label::before { 
        border-radius: 50%;
    }
    .com_form input[type=checkbox] + label::before {   
		width: 2em;
		height: 2em;
		border-radius: 3px;
    }
    .com_form input[type=radio]:checked + label::after,
    .com_form input[type=checkbox]:checked + label::after {
        content: "";
        position: absolute;
        top: .8em;       
        box-sizing: border-box;
        display: block;
    }
    .com_form input[type=radio]:checked + label::after {
        width: .8em;
        height: .8em;
        background: #1096c5;
        border-radius: 50%;
        left: .25em;         
		top: 50%;
		translate: 0 -50%;
    }
    .com_form input[type=checkbox]:checked + label::after {
        left: .3em;
		top: 50%;
        width: 1.8em;
        height: .8em;
        margin-top: -0.8em;         
        border-left: 4px solid #1096c5;
        border-bottom: 4px solid #1096c5;         
        rotate: -45deg;
    }
}

/******************/
/* コンボボックス */
/******************/
.com_form select {
	font-size: 100%;
	height: 2.2em;
	color: inherit;
	background: #fff url("../images/top/select_arw.svg") no-repeat right .8em center;
	background-size: 6px auto;
	padding: .2em .5em;
	padding-right: 2em;
    box-sizing: border-box;
    outline: none;
    border: solid 1px #999;
	-webkit-appearance: none;
    appearance: none;
	border-radius: 0;
}

/**********/
/* ボタン */
/**********/
.com_form button {
	position: relative;
	display: block;
	cursor: pointer;
	width: 18em;
	max-width: 100%;
	color: #FFF;
	font-size: 100%;
	letter-spacing: .1em;
	white-space: nowrap;
	background-color: #99a0a6;
	padding: 1.2em 3em;
	outline: none;
	border: none;
	transition: all .5s;
}
.com_form button span {
	display: block;
	font-size: 180%;
}
.com_form button:hover {
	background-color: #7e8991;
}
.com_form button[type="submit"] {
	width: 31em;
	background-color: #1096c5;
}
.com_form button[type="submit"]:hover {
	background-color: #0082a5;
}


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

}

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

.tbl_form .mid_txt {
	width: 100%;
}
.tbl_form .min_txt {
	width: 30%;
}
	
.com_form textarea {
	height: 12em;
}
.com_form input[type="text"],
.com_form select {
/*	height: 2.5em;*/
}
.com_form input[type="text"],
.com_form textarea,
.com_form select {
	font-size: 16px;	
}
.com_form input[type=checkbox] + label {
    padding-left: 3em;
}
.com_form input[type=checkbox] + label::before {
    width: 1.8em;
    height: 1.8em;
}

.com_form button {
	font-size: 90%;
}
.com_form button span {
	font-size: 160%;
}
}

/* res_box
-----------------------------------------------------------------------------*/
.tbl_form .res_box {
	margin-bottom: 1em;
}
.tbl_form .cal_box img {
	display: inline;
    width: 1.8em;
	cursor: pointer;
	margin-left: .5em;
}
.ui-datepicker {
    font-size: 80% !important;
}

/* PC
------------------------------------------*/
@media only screen and (min-width: 768px) {
.tbl_form .res_box {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.tbl_form .res_box dt {
	margin-right: 1em;
}
.tbl_form .res_box dd {
	display: flex;
	align-items: center;
}
.tbl_form .time_box {
    margin-left: 1.2em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.tbl_form .res_box dt {
	margin-bottom: .5em;
}
.tbl_form .time_box {
    margin-top: .5em;
}
}


/* 個人情報
-----------------------------------------------------------------------------*/
.privacy {
	background-color: #fff;
	box-sizing: border-box;
	padding: 40px 5%;
	margin-bottom: 50px;
}
.privacy dt {
	font-weight: bold;
	line-height: 1.6;
	margin-bottom: .5em;
}
.privacy dd {
	font-size: 87%;
	line-height: 2;
	letter-spacing: normal;
}
.privacy ol li {
	list-style-position: inside;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

.privacy .dl_box {
	display: flex;
	margin-top: 35px;
}
.privacy .dl_box > dl {
	width: 50%;
}
.privacy .dl_box > dl:first-of-type {
	padding-right: 4%;
	margin-right: 5%;
	border-right: 1px solid #99a0a6;
}
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.privacy {
	padding: 4% 5%;
	margin-bottom: 5%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.privacy {
	padding: 7% 6%;
	margin-bottom: 8%;
}	
.submit_txt {
	text-align: left;
}
.privacy .dl_box {
	display: block;
	margin-top: 5%;
}
.privacy .dl_box dl {
	width: 100%;
	max-width: none;
	margin-top: 20px;
}
.privacy .dl_box dl:first-of-type {
	margin-top: 0;
}
.privacy dd {
	font-size: 85%;
	line-height: 1.8;
}
}

/*確認ページ
---------------------------------------------------------*/
.form_kakunin .com_bg {
	color: #FFF;
	background-color: #6C7C83;
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.form_kakunin .submit_box {
	text-align: center;
}
}