@charset "UTF-8";

/* tbl_form
---------------------------------------------------------*/
.tbl_form{
	background: #fff;
	padding: 80px 4%;
	box-sizing: border-box;
	width: 100%;
}
.tbl_form dl,
.tbl_form tr{
	width: 100%;
	max-width: 850px;
	margin: 0 auto 2em;
	text-align: left;
}
.tbl_form dl:last-child,
.tbl_form tr:last-child{
	margin-bottom: 0;
}
.tbl_form dt,
.tbl_form th{
	font-size:120%;
	font-weight: normal;
	letter-spacing: 0.1em;
	line-height: 1.5em;
	margin-bottom: .6em;
}
.tbl_form dt span,
.tbl_form th span{
	font-size: 80%;
	color: #e84150;
}
.tbl_form .max_txt ,
.tbl_form .middle_txt {
	width: 100%;
}

/*確認ページ*/
.kakunin_box .tbl_form{
	padding-left: 5%;
	padding-right: 5%;
}
.tbl_form th{
	width: 30%;
}
.tbl_form td{
	width: 70%;
}
.tbl_form th,
.tbl_form td{
	border-bottom: 1px solid #ccc;
	padding: 1.5em 0;
}

/*submit_box*/
.submit_box {
	width: 100%;
	text-align: center;
	margin-top: 80px;
}
.submit_box ul {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
	text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.submit_box li {
	display: inline-block;
    width: 48%;
}
.submit_box li:nth-child(2){
    margin-left: 4%;
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) { 
.tbl_form{
	padding: 6% 4% 4%;
}
.tbl_form dl,
.tbl_form tr{
	margin: 0 auto 1.5em;
}
.tbl_form dt,
.tbl_form th{
	font-size:115%;
	margin-bottom: .4em;
}
.submit_box {
	margin-top: 6%;
}
	
/*確認ページ*/
.kakunin_box .tbl_form{
	padding-bottom: 8%;
}
}

/* Mobile (Portrait) 
------------------------------------------*/ 
@media only screen and (max-width: 767px) { 
.tbl_form{
	padding: 6% 5% 5%;
}
.tbl_form dl,
.tbl_form tr{
	margin: 0 auto 1.8em;
}
.tbl_form dt,
.tbl_form th{
	font-size:110%;
	letter-spacing: 0.05em;
	margin-bottom: .3em;
}

/*submit_box*/
.submit_box {
	margin-top: 8%;
}
	
/*確認ページ*/
.kakunin_box .tbl_form{
	padding-bottom: 8%;
}
.tbl_form {
	width: 100%;
}
.tbl_form th{
	width: 100%;
	border-bottom: none;
	padding: 1em 0 0;
	line-height: 1.2em;
}
.tbl_form td{
	width: 100%;
	padding:0 0 1em;
	line-height: 1.5em;
}
.tbl_form th,
.tbl_form td{
	display: block;
}
}






/* input
---------------------------------------------------------*/
/********************/
/* テキストボックス */
/********************/
.form input[type="text"] {
	padding: 1.2em 1em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #fff;
	outline: none;
	border: solid 1px #c2c6c9;
	-webkit-appearance: none;
	font-size: 16px;
    border-radius: 10px;
	font-family: "Shippori Mincho B1", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}
.form textarea {
	height: 16em;
	padding: 1.2em 1em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #fff;
	outline: none;
	border: solid 1px #c2c6c9;
	-webkit-appearance: none;
	font-size: 16px;
    border-radius: 10px;
	font-family: "Shippori Mincho B1", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

/**********/
/* ボタン */
/**********/
input[type="submit"], 
input[type="button"],
input[type="reset"] {
	-webkit-appearance: none;
	width: 100%;
	height: 65px;
	border: none;
	cursor: pointer;
	border-radius: 0;
	font-size:130%;
	letter-spacing: 0.1em;
	line-height: 1.0em;
	color: #fff;
	font-weight: normal;
	font-family: "Shippori Mincho B1", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
	font-style: normal;
}
input[type="button"], 
input[type="reset"] {
	background-color: #74a2bc;
}
input[type="submit"] {
	max-width: 220px;
	background: #fff;
	color: #416e8b;
	transition: 0.8s;
}
input[type="submit"]:hover {
	background: #377ba0;
	color: #fff;
	transition: 0.1s;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) { 
/********************/
/* テキストボックス */
/********************/
.form input[type="text"] {
	padding: .8em 1em;
	font-size: 15px;
    border-radius: 5px;
}
.form textarea {
	padding: .8em 1em;
	font-size: 15px;
    border-radius: 5px;
}

/**********/
/* ボタン */
/**********/
input[type="submit"], 
input[type="button"],
input[type="reset"] {
	height: 60px;
	font-size:120%;
}
}

/* Mobile (Portrait) 
------------------------------------------*/ 
@media only screen and (max-width: 767px) { 
/********************/
/* テキストボックス */
/********************/
.form input[type="text"] {
	padding: .8em;
	font-size: 3.8vw;
    border-radius: 5px;
}
.form textarea {
	height: 16em;
	padding: .8em;
	font-size: 3.8vw;
    border-radius: 5px;
}

/**********/
/* ボタン */
/**********/
input[type="submit"], 
input[type="button"],
input[type="reset"] {
	height: 3.5em;
	font-size:110%;
}
}






/* mobile_attention
---------------------------------------------------------*/
.form .mobile_attention {
	width: 100%;
	background: #8b8a81;
	border-radius: 10px;
	color: #fff;
	margin-top: 1.5em;
	padding: 0 4%;
	box-sizing: border-box;
}
.form .mobile_attention dt {
	font-size: 15px!important;
	text-align: center;
	padding:2em 0;
	box-sizing: border-box;
}
.form .mobile_attention dd{
	font-size: 15px!important;
	max-width: 715px;
	margin: 0 auto;
	padding-bottom:4em;
}
.form .mobile_attention ul {
	margin-top: 1em;
}
.form .mobile_attention li {
	margin-top: 5px;
	padding-left: 15px;
	float: left;
	margin-right: 20px;
	position: relative;
	vertical-align: middle;
	line-height: 1.2em;
}
.form .mobile_attention li::before {
	position: absolute;
	left: 0;
	top: 50%;
    transform: translateY(-50%) rotate(45deg);
	content: "";
	vertical-align: middle;
	width: 4px;
	height: 4px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}

.form .icon_open {
	line-height: 1em;
	width: 1.7rem;
	height:1.7rem;
	margin-left:.8em;
	background: #fff;
	border:1px solid #ced1d4;
	border-radius: 50%;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) { 
.form .mobile_attention {
	border-radius: 5px;
	margin-top: 1em;
}
.form .mobile_attention dt {
	padding: 1.5em 0 1.3em;
}
.form .mobile_attention dd{
	padding-bottom: 5%;
}

.form .icon_open {
	width: 1.3rem;
	height:1.3rem;
}
}

/* Mobile (Portrait) 
------------------------------------------*/ 
@media only screen and (max-width: 767px) { 
.form .mobile_attention {
	border-radius: 5px;
	margin-top: 1em;
	padding: 0 5%;
}
.form .mobile_attention dt {
	font-size: 3.8vw!important;
	padding: 1.5em 0;
}
.form .mobile_attention dd{
	font-size: 3.8vw!important;
	padding-bottom: 10%;
}
.form .mobile_attention ul {
	margin-top: 1em;
}

.form .icon_open {
	width: 1.5rem;
	height:1.5rem;
}
}









/* privacy
---------------------------------------------------------*/
.form .txt1,
.form .txt2{
	text-align: center;
	color: #fff;
}
.form .txt1{
	margin-top: 80px;
}
.form .txt2{
	margin-top: 1em;
}

.form .privacy {
	padding: 0 4%;
	box-sizing: border-box;
	margin-top: 40px;
	background: #377ba0;
	border-radius: 10px;
	color: #fff;
}
.form .privacy h3 {
	text-align: center;
	padding: 1.5em 0;
	font-size:15px!important;
}
.form .privacy .open_box {
	width: 100%;
	max-width: 940px;
	margin: 0 auto;
	font-size:15px!important;
	padding-bottom: 50px;
}
.form .privacy dl {
	width: 48%;
	margin-top: 1.8em;
}
.form .privacy dt {
	color: #ffff72;
	margin-bottom: .4em;
}
.form .privacy li {
	text-indent: -1.5em;
	margin-left: 1.5em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) { 
.form .txt1{
	margin-top: 7%;
}
.form .privacy {
	margin-top: 4%;
	border-radius: 5px;
}
.form .privacy h3 {
	padding: 1.4em 0 1.5em;
}
.form .privacy .open_box {
	padding-bottom: 4%;
}
.form .privacy dl {
	margin-top: 1.5em;
}
.form .privacy dt {
	margin-bottom: .3em;
}
}

/* Mobile (Portrait) 
------------------------------------------*/ 
@media only screen and (max-width: 767px) { 
.form .txt1,
.form .txt2{
	text-align: left;
}
.form .txt1{
	margin-top: 8%;
}

.form .privacy {
	padding: 0 5%;
	margin-top: 4%;
	border-radius: 5px;
}
.form .privacy h3 {
	padding: 1.5em 0;
	font-size: 3.8vw!important;
}
.form .privacy .open_box {
	font-size: 3.8vw!important;
	padding-bottom: 5%;
}
.form .privacy .flex_box{
	display: block;
}
.form .privacy dl {
	width: 100%;
	margin-top: 8%;
}
.form .privacy dt {
	margin-bottom: .2em;
}
}













/* 確認画面、完了ページ
-----------------------------------------------------------------------*/
.kakunin_bg {
	background: #5b91b0;
	padding: 80px 0 150px;
}
.err_box {
	text-align: center;
	font-weight: normal;
}
.txt_kakunin {
	font-size:120%;
	text-align: center;
	margin-bottom: 1.5em;
}
.submit_box p,
.kakunin_txt1{
	margin-bottom: 1.5em;
}

/*support_end*/
.support_end{
	padding-bottom: 150px;
}
.support_end dt{
	font-size:200%;
	letter-spacing: 0.1em;
	line-height: 1.5em;
	text-align: center;
	margin-bottom: .3em;
	color: #417ba5;
}
.support_end dd{
	font-size:120%;
	text-align: center;
	color: #417ba5;
}
.support_end .txt1{
	text-align: center;
	margin-top: 3em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) { 
.kakunin_bg {
	padding: 8% 0;
}
/*support_end*/
.support_end{
	padding-bottom: 10%;
}
.support_end dt{
	font-size:180%;
	margin-bottom: .2em;
}
.support_end dd{
	font-size:110%;
}
.support_end .txt1{
	margin-top: 2em;
}
}

/* Mobile (Portrait) 
------------------------------------------*/ 
@media only screen and (max-width: 767px) { 
.kakunin_bg {
	padding: 10% 0 15%;
}
.txt_kakunin {
	font-size:110%;
	margin-bottom: 1em;
}
	
/*support_end*/
.support_end{
	padding-bottom: 15%;
}
.support_end dt{
	font-size: 180%;
	margin-bottom: .2em;
}
.support_end dd{
	font-size:120%;
}
.support_end .txt1{
	text-align: left;
	margin-top: 2em;
}
}