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

img {
	width: 100%;
}

html, body {
	width : 100%;
	background-color: #113367;
	font-family:"メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Osaka, Helvetica, sans-serif;
}

body {
	background: -moz-linear-gradient(to bottom,#113367,#0059cd 30%,#113367); 
	background: -webkit-linear-gradient(to bottom,#113367,#0059cd 30%,#113367); 
	background: linear-gradient(to bottom,#113367,#0059cd 30%,#113367); 
	font-size: 16px;
}

/* COMMON */
.center {
	text-align: center;
}
em {
	font-weight: bold;
}
em.caution {
	color: #f00;
}



/* HEADER */
header {
	padding: 0 10%;
	text-align: center;
	color: #fff;
	font-size: 30px;
	font-weight: bold;
	line-height: 5em;
}
header span {
	border-bottom: 5px solid #FFF;
}
@media screen and (max-width: 540px){
	header {
		font-size: 20px;
	}
}


/* LOGOUT */
#logout {
	position: absolute;
	top: 4%;
	right: 5%;
	font-size: 16px;
}

#logout>a {
	display: block;
	color: #FFF;
	text-decoration: underline;
}
#logout>a:hover {
	display: block;
	color: #FFF;
	text-decoration: none;
}
@media screen and (max-width: 640px) {
	#logout {
		position: absolute;
		top: 2%;
		right: 2%;
		font-size: 14px;
	}
}



/* CONTENTS */
section {
}
.inputarea {
	width: 100%;
	max-width: 600px;
	margin:0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2% 0;
}

.title {
	color: #FFF;
	font-size: 18px;
	font-weight: bold;
	width: 40%;
}
.area {
	color: #FFF;
	font-size: 18px;
	font-weight: bold;
	width: 60%;
    position: relative;
}
.inputbutton {
	max-width:80%;
	margin:0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10% 5%;
	color : #FFF;
}
input[type="text"],input[type="password"] {
	-webkit-appearance: none;
	width: 90%;
	font-size: 16px;
	padding: 5%;
	background-color: #FFF;
	border: none;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	box-shadow:0px 0px 5px 1px #999 inset;
	margin-bottom: 5px;
}
input[type="button"],input[type="submit"] {
	-webkit-appearance: none;
	color: #FFF;
	font-size: 20px;
	font-weight: bold;
	padding: 0.5em 3em;
	background: -moz-linear-gradient(to bottom,#666,#333 50%,#666); 
	background: -webkit-linear-gradient(to bottom,#666,#333 50%,#666); 
	background: linear-gradient(to bottom,#666,#333 50%,#666); 
	border-radius: 50px;
	border: 2px solid #FFF;
	margin: 0 1em 1em;
}

/*20191115 更新*/

select[name="sms_clientip_cd"]{
	-webkit-appearance: none;
	width: 100%;
	padding: 5%;
	border-radius: 8px;
	box-shadow: 0px 0px 5px 1px #999 inset;
	font-size: 16px;
	background-color: #fff;
	background-image: url(../images/select_down.png);
	background-repeat: no-repeat;
	background-position: right 10px center;
}

.unit:after{
    content: "円";
    position: absolute;
    top: 29%;
    bottom: 0;
    margin: auto;
    color: #17111a;
    right: 5%;
    font-size: 16px;
}

#confirm .check_items, #complete .check_items{
	background: #FFF;
   	padding: 5%;
	color: #000;
	font-weight: normal;
	line-height: 1.3;
}

#complete .inputarea{
	display: block;
}

#complete .title{
	width: 100%;
    text-align: center;
	margin-bottom: 50px;
}

#complete .area{
	width: 100%;
}


/* 20191209追加 */
.cautiontitle {
	color: #FFF;
	font-size: 18px;
	font-weight: bold;
	padding: 0 0 3%;
}
.cautiontxt {
	color: #FF0;
	font-size: 14px;
	font-weight: normal;
	padding: 0 0 8%;
}
input[type="checkbox"]{
}


.inputarea .error input[type="text"], .inputarea .error select {
	border: 1px solid #FF0000;
	/* color: #FF0000; */
	background-color: #ffffcc;
}




@media screen and (max-width: 640px) {
	.inputarea {
		display: block;
	}
	.title {
		width: 100%;
		text-align: center;
		margin-bottom: 0.5em;
	}
	.area {
		color: #FFF;
		font-size: 18px;
		font-weight: bold;
		width: 100%;
		text-align: center;
		margin-bottom: 1em;
	}
	input[type="text"],input[type="password"] {
		width: 80%;
		margin: 0 auto;
		text-align: left;
		font-size: 16px;
		padding: 3%;
	}
    
	select[name="sms_clientip_cd"]{
		width: 86%;
		margin: 0 auto;
		padding: 3%;
		border-radius: 8px;
		box-shadow: 0px 0px 5px 1px #999 inset;
		font-size: 16px;
		-webkit-appearance: none;
		background-color: #fff;
		background-repeat: no-repeat;
		background-image: url(../images/select_down.png);
		background-position: right 10px center;
	}
	
   	 .unit:after {
	        content: "円";
	        position: absolute;
	        top: 35%;
	        bottom: 0;
	        margin: auto;
	        color: #17111a;
	        right: 10%;
	        font-size: 16px;
		}
	
	#complete input[type="text"] {
		padding-bottom: 25%;
	}

	#confirm input[type="button"], #sms_input input[type="button"]{
		margin: 0 0.5em;
		padding: 0.5em 2em;
	}

	#confirm .check_items, #complete .check_items {
		background: #FFF;
		padding: 3% 5%;
		width: 78%;
		margin: 0 auto;
		text-align: left;
	}

	/* 20191209追加 */
	.cautiontitle {
		font-size: 16px;
		width: 78%;
		padding: 2% 5% 3%;
		text-align: left;
	}
	.cautiontxt {
		font-size: 14px;
		width: 78%;
		padding: 0 5% 3%;
		text-align: left;
	}

}
