@charset "UTF-8";
/* CSS Document */


/***** form *****/
form .Required {
	color: #fff;
	background-color: #CD090C;
	font-size: 8px;
	padding: 1px 3px;
	margin: 0 0 0 5px;
	border-radius: 5px;
}
form .ex{
	color:#666;
	font-size:60%;
}

form input[type="text"],
form textarea {
	color: #333333;
	padding: 10px;
	font-size: 100%;
	border: 1px solid #e4e4e4;
	border-radius: 2px;
	-webkit-box-shadow: 2px 2px 2px 0 rgba(200,200,200,0.4) inset;
	-moz-box-shadow: 2px 2px 2px 0 rgba(200,200,200,0.4) inset;
	box-shadow: 2px 2px 2px 0 rgba(200,200,200,0.4) inset;
	background-color: #fff;
	margin: 0 5px 0 0;
}

form label {
	margin-right:15px;
}

input[type="text"]:focus,textarea:focus {
	outline: 0;
	border-color: #999;
}

form .SS {
	width: 30% !important;
}
form .S {
	width: 30% !important;
}
form .M {
	width: 60% !important;
}
form .L {
	width: 100% !important;
}

@media (max-width: 736px) { /* forSMP */
	form .SS {
		width: 38% !important;
		margin:0 2px 0 0;
	}
	form .S {
		width: 42% !important;
	}
	form .M {
		width: 96.5% !important;
	}
	form .L {
		width: 96.5% !important;
	}
}

table.form {
    width: 100%;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0px 15px;
}
 
table.form th,
table.form td {
    padding: 10px;
}
 
table.form th {
    background: #ddd0c0;
    vertical-align: middle;
    text-align: left;
    width: 120px;
    overflow: visible;
    position: relative;
    color: #333;
    font-weight: normal;
    font-size: 90%;
}
 
table.form th:after {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-left-color: #EDEDED;
    border-width: 10px;
    margin-top: -10px;
}
/* firefox */
@-moz-document url-prefix() {
    table.form th::after {
        float: right;
        padding: 0;
        left: 30px;
        top: 10px;
        content: " ";
        height: 0;
        width: 0;
        position: relative;
        pointer-events: none;
        border: 10px solid transparent;
        border-left: #295890 10px solid;
        margin-top: -10px;
    }
}
 
table.form td {
    background: #f9f9f9;
    width: 360px;
    padding-left: 20px;
	text-align:left;
}


@media (max-width: 736px) { /* forSMP */
	table.form tr {
	}
	
	table.form th,
	table.form td {
		display:block;
		width:100%;
		position: static;
			box-shadow: none;
	-webkit-box-shadow: none;
	}
	
	table.form th:after {
    	border: none;
	}
	table.form td {
		border-radius:0 0 3px 3px;
		padding-left: 10px;
	}
}



/***** btn form *****/
.btnBox {
	text-align : center ;
}

.btnBox a.btn {
	display: inline-block;
	text-align: center;
	border-radius: 3px;
	position: relative;
	text-decoration: none;
    background: #E84A88;
    color: #fff;
    }
.btnBox a.btn span {
  position: relative;
  z-index: 100;
  font-weight: bold;
}
.btnBox a.btn::before,
.btnBox a.btn::after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  transition: .2s;
}
.btnBox a.btn::before {
  left: 0;
}
.btnBox a.btn::after {
  right: 0;
}
.btnBox a.btn:hover:before,
.btnBox a.btn:hover:after {
  width: 0;
}
.btnBox a.btn:hover {
	color: #fff;
	z-index: 99;
    background: #CB2F6C;
}
.btnBox a.btn:active{
    -webkit-box-shadow:inset 0px 0px 5px #334c66;
    -moz-box-shadow:inset 0px 0px 2px #3a6da0;
    box-shadow:inset 0px 0px 2px #3a6da0;
}


.btn.M {
	font-size: 16px;
	padding: 10px 30px;
}

@media (max-width: 736px) { /* forSMP */
	.btn.S {
		font-size: 11px;
	}
}











/* 確認画面 */


*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}


body{
   font-family: 'Meiryo',"ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック","Osaka", sans-serif;
}

#formWrap {
	width:860px;
	margin:0 auto;
	color:#555;
	line-height:120%;
	font-size:90%;
	padding: 50px;
}
	
#formWrap h1 {
	font-size: 300%;
	margin: 0 0 50px 0;
	color: #000;
	text-align: center;
}
	
#formWrap h2 {
	font-size: 120%;
	margin: 0 0 30px 0;
	text-align: center;
}
	
#formWrap section.error {
	padding: 15px 30px;
	margin: 0 0 30px 0;
	border-radius: 5px;
	box-shadow: 0 0 10px #D7D7D7;
	font-size: 110%;
}
	
p.error_messe{
	margin:15px 0;
	color:#C01414;
}
	
	
.fa-exclamation-triangle:before {
	content: "\f06a";
	color: #AC0002;
	padding: 0 10px 0 0;
}
.fa-comments:before {
	color: #0053AC;
	padding: 0 10px 0 0;
}


button{
	background: #EEEEEE;
	border: none;
	font-size: 100%;
	text-align: center;
	padding: 15px 40px;
    margin: 0 auto;
    display: block;
}

button.back {
	background: #EEEEEE;
}
button.go {
	background: #3242A5;
	color: #fff;
}

button.go:hover {
	background: #263590;
	color: #fff;
}

button:hover{
	background: #DEDEDE;
	cursor: pointer;
}

	
table.formTable{
	width:100%;
	margin:0 auto 30px;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	border:1px solid #ccc;
	padding:10px;
}
table.formTable th{
	width:30%;
	font-weight:bold;
	background:#efefef;
	text-align:left;
}

.brsp{
	display: none;
}



@media (max-width: 736px) { /* forSMP */
	#formWrap {
		width: 100%;
    	padding: 20px 10px;
	}
	
	#formWrap h1 {
	margin: 0 0 20px 0;
	font-size: 200%;
	}
	
	#formWrap h2 {
		margin: 0 0 15px 0;
		line-height: 150%;
		font-size: 110%;
	}
	
	table.formTable{
	margin:0 0 30px 0;
	}
	
	
	table.formTable td,
	table.formTable th{
		display: block;
		width: 100%;
	}
	
	button{
		width: 100%;
		margin: 0 0 10px 0;
	}
	
	.brsp{
	display: inherit;
	}
	
}


.ulbtn{
	padding: 0;
}
.ulbtn li{
	float: left;
    width: 49%;
    list-style: none;
}
.ulbtn li:nth-child(1){
	margin: 0 2% 0 0;
}
.ulbtn li button{
	width: 100%;
}













form .formItem li 
{overflow:hidden; zoom: 1;}
form .formItem li:after
{content: "."; display: block; height: 0px; clear: both; visibility: hidden;}

