@charset "UTF-8";



/* 入力フォーム
-----------------------------------------------------------------------------*/
.tbl_form {
	width: 100%;
	letter-spacing: .18em;
}
.tbl_form th {
	position: relative;
	width: 17em;
	text-align: left;
	vertical-align: top;
	font-weight: normal;
	padding-right: 3%;
}
.tbl_form th span {
	display: inline-block;
	vertical-align: middle;
}
.tbl_form th .required {
	position: relative;
	color: #FFF;
	font-size: 55%;
	line-height: 1.6;
	background-color: #cc2d2d;
	border-radius: 5px;
	padding: 0.2em 0.5em 0.1em 0.7em;
	margin-right: 1em;
}
.tbl_form td {
	width: calc(100% - 17em);
	box-sizing: border-box;
	padding-bottom: 2.2em;
}
.tbl_form tr:last-of-type td {
	padding-bottom: 0;
}
.tbl_form td .radio_list li {
	float: left;
	margin-right: 2em;
}
.tbl_form td .radio_list li:last-of-type {
	margin-right: 0;
}

.tbl_form .map{
	margin-top: 1em;
}

/* ボタンレイアウト */
.submit_box {
	text-align: center;
	margin-top: 50px;
}
.submit_box p {
	font-size: 85%;
	line-height: 2.1;
	margin-bottom: 50px;
}
.submit_box p:last-of-type {
	font-weight: bold;
	line-height: 1.6;
}

.submit_box .btnlist {
	max-width: 530px;
	margin: 0 auto;
}
.submit_box .btnlist li {
	display: inline-block;
}
.submit_box .btnlist li.btn_l {
	width: 60%;
	max-width: 314px;
}
.submit_box .btnlist li.btn_r {
	width: 39%;
	max-width: 206px;
}
.submit_box input[type=checkbox] + label::before {   
    top: 0.15em;
}



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

/* テーブル */
.tbl_form th {
	width: 13em;
	padding-right: 3%;
}
.tbl_form th .required {
	padding-bottom: 0.2em;
}
.tbl_form td {
	width: calc(100% - 13em);
	padding-bottom: 1.8em;
}
    
/* ボタンレイアウト */
.submit_box {
	margin-top: 4%;
}
.submit_box p {
	font-size: 92%;
	margin-bottom: 4%;
}
.submit_box p:first-of-type {
	line-height: inherit;
}

	
    
}

/* 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 {
	padding-bottom: 0.4em;
}
.tbl_form th .required {
	padding-bottom: 0.2em;
}
.tbl_form td {
	padding-bottom: 1.4em;
}

/* ボタンレイアウト */
.submit_box {
	margin-top: 5%;
	font-size: 94%;
}
.submit_box p {
	text-align: left;
	font-size: 95%;
	margin-bottom: 7%;
}
.submit_box p:first-of-type {
	line-height: inherit;
}

.submit_box .btnlist li {
	display: block;
	margin: 0 0 10px;
}
.submit_box .btnlist li.btn_l,
.submit_box .btnlist li.btn_r {
	width: 100%;
	max-width: 100%;
}
.submit_box input[type=checkbox] + label::before {   
    top: 0.18em;
}
    

}



/* 入力項目デザイン
-----------------------------------------------------------------------------*/
.tbl_form .max_txt {
	width: 100%;
}
.tbl_form .middle_txt {
    width: 100%;
    max-width: 490px;
}
.tbl_form .min_txt {
	width: 100%;
	max-width: 320px;
}

/********************/
/* テキストボックス */
/********************/
input[type="text"] {
	padding: 0.7em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #fff;
	font-size: 16px;	
	outline: none;   
	border: solid 1px #cccccc;
	border-radius: 5px;
	-webkit-appearance: none;
}
textarea {
	padding: 0.7em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #fff;
	font-family: inherit;
	font-size: 16px;
	outline: none;
	border: solid 1px #cccccc;
	border-radius: 5px;
	-webkit-appearance: none;
	height: 115px;
	resize: none;
}

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

/******************/
/* コンボボックス */
/******************/
select {
	font-size: 16px;
	padding: 0.7em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: linear-gradient(to bottom, #E6E6E6 0, #FFF 100%);
	outline: none;   
	border: solid 1px #cccccc;
	border-radius: 5px;
	-webkit-appearance: none;
}

/**********/
/* ボタン */
/**********/
input[type="submit"],
input[type="reset"],
input[type="button"] {
	-webkit-appearance: none;
	width: 100%;
	height: 70px;
	border: none;
	cursor: pointer;
	border-radius: 0;
	font-size: 100%;
	letter-spacing: .05em;
	line-height: 1.2em;
	transition: all .5s;
}
input[type="submit"] {
	color: #fff;
	background: #62B8F5 url("../images/icon_arrow.svg") no-repeat 75% center;
    background-size: 0.7em auto;
}
input[type="reset"],
input[type="button"] {
	background-color: #CCCCCC;
	color: #fff;
}

/**********/
/* チェックを入れて送信 */
/**********/
/* 送信ボタン - マウスオーバー時 */
input[type="submit"]:hover {
	background-color: #3F6AB0;
}
 
/* 送信ボタン - 押せないとき */
input[type="submit"][disabled] {
	background-color: #CCCCCC;
	cursor: default;
}


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

}

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

input[type="submit"],
input[type="reset"] {
	height: 60px;
}
form input[type=checkbox] + label {
    padding-left: 1.8em;
}

}



/* ドメイン設定
-----------------------------------------------------------------------------*/
.mobile_attention {
	margin-top: 20px;
	font-size: 75%;
}
.mobile_attention .open_box{
    padding-top: 1em;
}
.mobile_attention dt {
    line-height: 1.5em;
	letter-spacing: .18em;
    text-decoration: underline;
}
.mobile_attention dt span {
    text-decoration: underline;
}
.mobile_attention ul {
	margin-top: 1.0em;
}
.mobile_attention li {
	float: left;
	margin-right: 1.0em;
}
.mobile_attention li a {
	padding-left: 15px;
	position: relative;
	vertical-align: middle;
	line-height: 1.0em;
}
.mobile_attention li a::before{
	position: absolute;
	top: .45em;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 6px;
	height: 6px;
	border-bottom: 1px solid #FFF;
	border-left: 1px solid #FFF;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.mobile_attention a:hover {
	text-decoration: underline;
}

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

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

.mobile_attention {
	margin-top: 1.5em;
}
}



/* プライバシーポリシー、電話お問い合わせ
-----------------------------------------------------------------------------*/
.privacy {
	margin-top: 50px;
	padding: 40px 0;
	font-size: 88%;
	line-height: 1.6;
	letter-spacing: .05em;
	border-top: 1px solid rgba(255,255,255,0.2);
	border-bottom: 1px solid rgba(255,255,255,0.2);
}
.privacy .open_trigger {
    text-align: center;
}
.privacy .open_trigger .open_txt {
	line-height: 1.6;
}
.privacy .open_box {
	font-size: 85%;
    padding-top: 1.5em;
}
.privacy dl {
	margin-top: 20px;
}
.privacy dt {
	font-size: 110%;
	font-weight: bold;
	line-height: 1.6em;
	margin-bottom: .5em;
}
.privacy dd li {
	text-indent: -1.6em;
	margin-left: 1.6em;
}

.open_trigger span {
    position: relative;
	display: inline-block;
	cursor: pointer;	
	padding-right: 1.5em;
	text-decoration: underline;
}
.open_trigger span::before{
	position: absolute;
	content: "";
	width: 1.1em;
	height: 1.1em;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background-image: url("../images/icon_plus.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
.open_trigger.active span::before{
	background-image: url("../images/icon_minus.svg");
}
.open_trigger span:hover {
	text-decoration: none;
}
.open_box {
	display: none;
}

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

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.privacy {
	margin-top: 6%;
	padding: 6% 4%;
}
.privacy .dl_box dl {
	margin-top: 5%;
}
}


/* 確認画面
-----------------------------------------------------------------------------*/
.form_end {
	background-color: #F2F4F7;
}
.form_end header {
	background-color: rgba(0,0,0,0.7);
	padding-right: 1%;
}
.form_end header .box_l {
	width: 30%;
	background-color: rgba(255,255,255,0.8);
	margin-right: 1%;
}
.form_end header .box_r {
	display: block;
	width: 68%;
	max-width: 1000px;
	align-self: center;
}
.form_end header .m_nav {
	width: 100%;
}
.form_end header .m_nav li a span {
	font-size: 84%;
}
.form_end #pagebody {
	text-align: center;
	padding: 100px 0;
}
.form_end #pagebody dl dt {
	font-size: 150%;
	line-height: 1.6;
	margin-bottom: .5em;
}
.form_end #pagebody .return_top {
	text-decoration: underline;
}
.form_end #pagebody .return_top:hover {
	text-decoration: none;
}
.form_end footer .copyright {
    background-color: transparent;
	border-top: 1px solid rgba(74,64,59,0.3);
}
.form_end footer .copyright p {
    color: #4a403b;
}
.form_end .kakunin_box .attention {
	margin-bottom: 2em;
}
.form_end .kakunin_box table {
	text-align: left;
	margin: 0 auto;
}
.form_end .kakunin_box table tr {
	border-bottom: 1px solid rgba(74,64,59,0.3);
}
.form_end .kakunin_box table th {
	padding: .8em 0;
	padding-right: 3%;
}
.form_end .kakunin_box table td {
	padding: .8em 0;
}

/* PC調整
------------------------------------------*/
@media only screen and (min-width: 960px) and (max-width: 1400px) {


.form_end header .m_nav li a span {
	font-size: 1.2vw;
}
	
}


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

.form_end header .m_nav li a span {
	font-size: 1.4vw;
}
	
}

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

.form_end header {
    background-color: #EBEBF0;
	padding: 0;
}
.form_end header .h_inbox {
	width: 85%;
	padding: 0;
    display: block;
}
.form_end header .box_l {
	position: relative;
    width: 90%;
	background-color: #EBEBF0;
	top: 0;
	padding: 10px;
}
.form_end header .box_r {
    display: none;
}
.form_end #pagebody {
	text-align: left;
	padding: 15% 0;
}
.form_end #pagebody dl dt {
	margin-bottom: .8em;
}
.form_end footer {
	padding: 8% 0;
}
.form_end .kakunin_box table tr {
	border-bottom: none;
}
.form_end .kakunin_box table th {
	background-color: #e7efed;
	padding: .5em 0;
	padding-left: 3%;
}
.form_end .kakunin_box table td {
	padding-left: 3%;
}
		
}
