body, html
{
	width: 100%;
	height: 100vh;
}

body
{
	position: relative;
	margin: 0;
	padding: 0;
	font-size: 14px;
	color: #000;
}

*, textarea
{
	font-family: 'Noto Sans JP', sans-serif;
}

p
{
	font-size: 14px;
	line-height: 26px;
}

.block
{
	display: block;
	position: relative;
	width: 100%;
}

.block.hide
{
	display: none;
}

.logo
{
	display: inline-block;
	position: relative;
	width: 150px;
}

.airmas-line
{
	display: inline-block;
	position: relative;
	width: 100px;
	height: 2px;
	margin-top: 5px;
	margin-bottom: 5px;
	background: #FFB850;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to left, #FFB850, #FFB850);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to left, #FFB850, #FFB850); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.new-wrapper
{
	display: block;
    position: absolute;
    overflow: auto;
    left: 0;
    top: 0;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.new-container
{
	display: table;
	position: relative;
	width: 100%;
	max-width: 980px;
	height: 100%;
	margin: 0 auto;
}

.new-container .row
{
	display: table-row;
}

.new-container .row .cell
{
	display: table-cell;
	width: 50%;
	vertical-align: middle;
	padding: 20px;
}

.new-container .row .cell h1
{
	color: #fff;
	font-size: 36px;
	font-weight: 500;
}

.new-container .row .cell:last-child
{
	text-align: right;
}

.new-content
{
	display: inline-block;
	position: relative;
	width: 350px;
	border-top-left-radius: 50px;
	border-bottom-right-radius: 50px;
	background-color: rgba(255,255,255,0.8);
	text-align: left;
	padding: 40px 40px 60px 40px;
	box-sizing: border-box;
	-webkit-animation-name: movingleft;
	-webkit-animation-duration: 1s;
	animation-name: movingleft;
	animation-duration: 1s;
}

.new-content.reset
{
	display: none;
}

@-webkit-keyframes movingleft { 0% {right:50px; opacity:0} 100% {right:0; opacity:1} }
@keyframes movingleft { 0% {right:50px; opacity:0} 100% {right:0; opacity:1} }

.new-content h2
{
	color: #1B6FAE;
}

.new-form-group
{
	display: block;
	position: relative;
	width: 100%;
	margin-bottom: 10px;
}

.new-form-group input
{
	display: block;
	position: relative;
	width: 100%;
	padding: 0 15px;
	box-sizing: border-box;
	border-radius: 5px;
	line-height: 40px;
	border: 1px solid #dfe4ea;
	background-color: #f7f8fa;
}

.new-form-group .right-icon
{
	position: absolute;
	right: 0;
	top: 0;
	width: 40px;
	line-height: 40px;
	text-align: center;
}

.new-form-group .right-icon i
{
	font-size: 18px;
	color: #b2bec3;
}

.new-form-group input::placeholder{color: #9aa5a9;/* Firefox */}
.new-form-group input:-ms-input-placeholder{ /* Internet Explorer 10-11 */color: #9aa5a9;}
.new-form-group input::-ms-input-placeholder { /* Microsoft Edge */color: #9aa5a9;}

.new-form-group button
{
	display: inline-block;
	position: relative;
	width: 100%;
	max-width: 200px;
	padding: 0 20px;
	line-height: 40px;
	border-radius: 20px;
	text-align: center;
	border: none;
	font-size: 16px;
	color: #fff;
	font-weight: 500;
	background: #1CBCD1;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #3173AF, #1CBCD1);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #3173AF, #1CBCD1); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.new-form-group button:hover
{
	background: #20adbf;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #346da0, #20adbf);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #346da0, #20adbf); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.new-form-group button.fullwidth
{
	width: 100%;
	max-width: 100%;
}


@media (max-width: 1017px) {

.new-container
{
	max-width: 800px;
}

}


@media (max-width: 767px) {

	p
	{
		font-size: 12px;
		line-height: 24px;
	}

	.logo
	{
		width: 100px;
	}

	.new-container .row .cell h1
	{
		font-size: 24px;
	}

	.new-container, .new-container .row, .new-container .row .cell
	{
		display: block;
		position: relative;
		max-width: 100%;
		width: 100%;
		box-sizing: border-box;
	}

	.new-container .row .cell:last-child
	{
		text-align: left;
		padding-bottom: 60px;
	}

	.new-content
	{
		width: 100%;
	}

}



