* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

body {
	font-family: Toyota Display;
	font-size: 18px;
}

.container {
	max-width: 1460px;
	padding: 0 40px;
	margin: auto;
	width: 100%;
}

.header {
	padding: 30px 0;
}

.header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	filter: invert(1);
}

.logo img {
	max-width: 200px;
}

.btn {
	background: none;
	border: 1px solid;
	color: #000;
	font-weight: bold;
	line-height: 20px;
	text-align: center;
	display: block;
	width: 100%;
	max-width: 240px;
	border-radius: 50px;
	cursor: pointer;
	outline: none;
	line-height: 54px;
	text-decoration: none;
	font-size: 18px;
}

.btn:hover {
	background: #e50000;
	color: #fff;
	border: 1px solid #e50000;
}

.introduction {
	background: #e3e3e3;
	padding: 80px 0;
}

.introduction .container {
	max-width: 1160px;
	margin: auto;
	display: flex;
	justify-content: space-between;
}

.introduction .title {
	font-size: 28px;
	width: 380px;
	text-transform: uppercase;
	margin-right: 80px;
}

.introduction .description {
	flex: 1;
	color: #333;
	display: flex;
}

.introduction .description span {
	flex: 1;
}

.introduction .description::before {
	content: '';
	width: 2px;
	height: 100%;
	background: #e50000;
	margin-right: 30px;
}

.section {
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.s1 {
	z-index: 2;
}

.s2 {
	margin-top: -7vh;
}

.section .img-container, .section .img-container img {
	display: block;
}

.section .img-container {
	width: 100vw;
	min-height: 100vh;
}

.section .img-container img {
	width: 100%;
	height: 100%;
	min-height: 100vh;
	object-fit: cover;
}

.section:not(.footer) .container {
	display: flex;
	justify-content: flex-end;
	position: absolute;
	left: 0;
	right: 0;
}

.section .text-group {
	width: 500px;
}

.section .title {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.section .info {
	margin-bottom: 30px;
	text-shadow: 0 0 1px #333;
}

.section .info p:not(:last-child) {
	margin-bottom: 20px;
}

.section .btn {
	border: 1px solid #e50000;
	background: #e50000;
	color: #fff;
}

ul {
	padding-left: 20px;
}

.footer {
	background: #000;
	color: #fff;
	min-height: auto;
	padding: 15vh 0;
}

.footer p {
	color: #fff;
}

.footer p:not(:last-child) {
	margin-bottom: 20px;
}

.footer p {
	line-height: 1.6;
}

.bg-red {
	background: #E50000;
}

.popup-content {
	background: #fff;
	margin: 0 auto;
	padding: 80px 60px 60px;
	position: relative;
	max-width: 640px;
}

.popup-content h3 {
	font-weight: bold;
	font-size: 44px;
	line-height: 30px;
	text-align: center;
	color: #E50000;
	margin-bottom: 40px;
}

.mfp-container {
	padding: 0
}

.popup-content .btn {
	margin: 40px auto 0;
	background: #e50000;
	color: #fff;
	transition: border .2s;
}

.form-row {
	margin: 0 auto;
	margin-bottom: 25px;
}

.form-container {
	position: relative;
	max-width: 400px;
	margin: 0 auto;
}

label {
	display: block;
	font-size: 16px;
	line-height: 19px;
	color: #333;
	margin-bottom: 10px;
}

input, textarea, select {
	width: 100%;
	display: block;
	border: 1px solid #333;
	border-radius: 5px;
	outline: none;
	font-size: 16px;
  font-family: inherit;
}

input, select {
	height: 55px;
	padding: 0 20px
}

textarea {
	resize: none;
	min-height: 130px;
	padding: 15px 20px;
}

select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
}

.select {
	position: relative;
}

.select .icon {
	position: absolute;
	top: calc(50% + 8px);
	right: 14px;
	background: url(../img/arrow-down.svg) no-repeat center / contain;
	width: 14px;
	height: 14px;
}

.close {
	position: absolute;
	right: -80px;
	top: -60px;
	width: 32px;
	height: 32px;
	background: none;
	border: none;
	cursor: pointer;
	outline: none
}

.close:active {
	opacity: .75
}

.close:before, .close:after {
	position: absolute;
	left: 15px;
	content: ' ';
	height: 33px;
	width: 6px;
	background-color: #e50000;
}

.close:before {
	transform: rotate(45deg);
}

.close:after {
	transform: rotate(-45deg);
}

.pc {
	display: block!important
}

.mob {
	display: none!important
}
.errorMessage{display:none;text-align:center;color:red;} 
.btn.loading{background-image:url(/static/img/loading.svg);background-repeat:no-repeat;background-position:center;background-size:50%;text-indent:200%;white-space:nowrap;overflow:hidden;}

@media screen and (max-width:1380px) {
	body, .btn {
		font-size: 1.2vw;
	}
}
@media screen and (max-width:1200px) {
	body {
		font-size: 12px;
	}
	.btn {
		font-size: 12px;
	}
	.section .text-group {
		width: 40%;
	}
}

@media screen and (max-width:640px) {
	.pc {
		display: none!important
	}
	.mob {
		display: block!important
	}
	.header {
		padding: 20px 0;
	}
	.container {
		padding: 0 20px;
	}
	.logo {
		display: flex;
		align-items: center;
	}
	.logo img {
		max-width: 160px;
	}
	.btn {
		width: 150px;
		line-height: 44px;
	}
	.introduction {
		padding: 40px 0;
	}
	.introduction .container {
		flex-wrap: wrap;
	}
	.introduction .title {
		width: 100%;
		font-size: 20px;
		margin-bottom: 20px;
		margin-right: 0;
	}
	.introduction .title br {
		display: none;
	}
	.introduction .description {
		position: relative;
		padding-top: 20px;
	}
	.introduction .description::before {
		width: 100%;
		height: 1px;
		position: absolute;
		left: 0;
		top: 0;
		margin-bottom: 20px;
	}
	.section {
		flex-wrap: wrap;
	}
	.s2 {
		margin-top: 0;
	}
	.section .btn {
		width: 180px;
	}
	.section .text-group {
		width: 100%;
	}
	.section .img-container {
		min-height: auto;
		height: 356px;
		text-align: center;
	}
	.section:not(.footer) .container {
		position: relative;
		padding: 40px 20px;
		justify-content: center;
	}
	.section .img-container img {
		width: auto;
		height: 100%
	}
	.section .title {
		font-size: 20px;
		margin-bottom: 15px;
	}
	.section .info p:not(:last-child) {
		margin-bottom: 15px;
	}
	.footer {
		padding: 40px 0 10px;
	}
	.popup-content {
		padding: 40px;
		margin: 0 15px;
	}
	.popup-content h3 {
		font-size: 24px;
		margin-bottom: 24px;
	}
	.close {
		right: -30px;
		top: -40px;
	}
	label, input, textarea, select {
		font-size: 14px;
	}
	.popup-content .btn {
		width: 180px;
		margin-top: 30px;
	}
	input, select {
		height: 44px;
	}
	.section .info {
		text-shadow: none;
	}
	.close:active {
		opacity: .75
	}
	.close:before, .close:after {
		position: absolute;
		content: ' ';
		height: 30px;
		width: 2px;
		background-color: #e50000;
	}
}