@charset "UTF-8";

html {
	overflow-y: scroll;	
	min-height: 100vh;
	height: -webkit-fill-available;
	font-size: 16px!important;
}

body {
	word-break: break-all;
	min-height: 100vh;
	height: -webkit-fill-available;
	line-height: 1.5;
	font-size: 16px;
}

img { 
	max-width: 100%;
	height: auto; 
}

/* レスポンシブ */
@media screen and (max-width:1024px) {
	.pc { display: none; } 
}
@media screen and (min-width:1025px) {
	.sp { display: none; }
}

.red {
	color: #c00;
}

/*=========================================================

PC

=========================================================*/

body {
	background-image: url("../images/bg.png")!important;
	background-size: cover!important;
}

#wrapper {
	max-width: 1280px;
	margin: 0 auto;
	/*
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	*/
	position: relative;
}

/*---------------------------------------------------------
header
---------------------------------------------------------*/

#header {
	width: 100%;
	padding: 0 30px;
	box-sizing: border-box;
	background: #fff;
}

#header .inner {
	max-width: 1280px;
	height: 100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#header h1 {
	font-weight: 600;
	font-size: 1rem;
}

/*---------------------------------------------------------
main
---------------------------------------------------------*/

#main {
	background: url("../images/fv.jpg") top center no-repeat;
	background-size: 100% auto;
	width: 100%;
	box-sizing: border-box;
	padding: 0 30px;
	border-radius: 0 0 10px 10px;
}

#main .inner {
	max-width: 1024px;
	margin: 0 auto;
	text-align: center;
	position: relative;
}

#main .copy {
	margin-bottom: 30px;
	padding-top: 10%;
}

#main .points {
	display: flex;
	justify-content: center;
	width: 75%;
	margin: 0 auto;
}

#cta {
	padding: 0 30px 60px;
	text-align: center;
}

#cta .inner {
	background: #fff url("../images/contents_bg.png") bottom center no-repeat;
	background-size: 100% auto;
	border-radius: 10px;
	padding: 10% 5% 5%;
	margin: -10% auto 0;
	max-width: 1024px;
	text-align: center;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	box-sizing: content-box!important;
}

#cta .staff {
	min-width: 20%;
	width: 70%;
	max-width: 460px;
	display: inline-block;
}

#cta a {
	display: block;
	background: #e83828;
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
	padding: 30px;
	border-radius: 1000px;
	position: relative;
	border-bottom: 5px solid #252525;
	/*box-shadow: 0 0 10px rgba(0,0,0,0.6);*/
	cursor: pointer;
	overflow: hidden
}

#cta a:before {
	animation: shine 3s ease-in-out infinite;
	background-color: #fff;
	content: " ";
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: -180px;
	transform: rotate(45deg);
	width: 30px;
}

@-webkit-keyframes shine {
	0% {
		transform: scale(0) rotate(45deg);
		opacity: 0;
	}
	80% {
		transform: scale(0) rotate(45deg);
		opacity: 0.5;
	}
	81% {
		transform: scale(4) rotate(45deg);
		opacity: 1;
	}
	100% {
		transform: scale(50) rotate(45deg);
		opacity: 0;
	}
}

#cta a:hover {
	opacity: 0.7;
}

#cta a:after {
	content: "▲";
	width: 30px;
	height: 30px;
	background: #fff;
	color: #e83828;
	position: absolute;
	right: 20px;
	top: 50%;
	margin-top: -15px;
	font-size: 0.8rem;
	line-height: 28px;
	border-radius: 1000px;
	transform: rotate(90deg);
}

#cta a span {
	color: #eff21a;
}

#footer {
	background: #252525;
	text-align: center;
	padding: 45px 30px;
	color: #fff;
	border-radius: 10px 10px 0 0;
}

#footer img {
	margin-bottom: 15px;
}

#modal {
	background: rgba(0,0,0,0.8);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	display: table;
	padding: 20px;
	box-sizing: border-box;
}
#modal .inner {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

#modal .inner img {
	vertical-align: middle;
}

@media screen and (max-height:640px) {
	
	#modal .inner img {
		width: auto;
		height: 100%;
	}
	
}

/*---------------------------------------------------------
contact
---------------------------------------------------------*/

#contact {
	width: 100%;
	background: #fff;
	box-sizing: border-box;
	text-align: center;
	padding: 0 30px 100px;
}

#contact h2 {
	margin:  0 -30px 75px;
	font-size: 2rem;
	font-weight: bold;
	padding: 75px 0;
	background: #ddd;
}

#contact table {
	margin: 0 auto 100px;
	max-width: 600px;
	width: 100%;
}

#contact table th {
	font-size: 1.4rem;
	font-weight: bold;
	padding-bottom: 5px;
}

#contact table td {
	padding-bottom: 20px;
}

#contact table tr:last-child td {
	padding-bottom: 0;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact select {
	border-radius: 10px;
	padding: 10px;
	font-size: 1.4rem;
	width: 100%;
	box-sizing: border-box;
	background: #fff;
	border: 2px solid #ddd;
}

#contact input::placeholder {
	color: #ddd!important;
}

.submit input {
	display: block;
	background: #e83828;
	color: #fff;
	font-size: 1.4rem;
	font-weight: bold;
	padding: 25px 100px;
	border-radius: 1000px;
	position: relative;
	border-bottom: 5px solid #252525;
	margin: 0 auto;
	border: none;
	cursor: pointer;
}

.submit input:before {
	content: "▲";
	width: 30px;
	height: 30px;
	background: #fff;
	color: #e83828;
	position: absolute;
	right: 20px;
	top: 50%;
	margin-top: -15px;
	font-size: 0.8rem;
	line-height: 28px;
	border-radius: 1000px;
	transform: rotate(90deg);
}

.submit input:disabled {
	background: #ddd;
}

/*---------------------------------------------------------
thankyou
---------------------------------------------------------*/

#step3 h3 {
	font-size: 1.6rem;
	margin-bottom: 50px;
	color: #e83828;
	font-weight: bold;
	margin-top: 100px;
}

#step3 .text {
	text-align: center;
	max-width: 750px;
	margin: 0 auto 50px;
}

#step3 .text p {
	text-align: left;
	display: inline-block;
	line-height: 2;
}

#step3 .back a {
	display: block;
	width: 250px;
	margin: 0 auto;
	background: #252525;
	padding: 10px;
	color: #fff;
	border-radius: 5px;
}

#step3 .back a:hover {
	opacity: 0.7;
}

/*=========================================================

SP

=========================================================*/

@media screen and (max-width:1024px) {
	
	
	#wrapper {
		min-height: 100vh;
		background: #252525;
	}

	/*---------------------------------------------------------
	header
	---------------------------------------------------------*/

	#header {
		padding: 0 10px;
	}

	#header .inner {
		height: 70px;
	}
	
	#header p img {
		width: auto;
		height: 30px;
	}

	#header h1 {
		font-size: 0.6rem;
	}

	/*---------------------------------------------------------
	main
	---------------------------------------------------------*/


	#main {
		padding: 0 10px;
	}
	
	#main .points {
		width: 90%;
		margin: 0 auto;
	}
	
	#cta {
		padding: 0;
		border-radius: none;
	}
	
	#cta .inner {
		padding: 20% 5% 7%;
		margin: -15% 0 0;
		box-shadow: none;
		border-radius: 0;
	}
	
	#cta a {
		display: block;
		font-size: 0.9rem;
		padding: 10px;
	}
	
	#cta a:after {
		content: "▲";
		width: 20px;
		height: 20px;
		right: 10px;
		top: 50%;
		margin-top: -10px;
		font-size: 0.4rem;
		line-height: 18px;
	}
	
	/*---------------------------------------------------------
	footer
	---------------------------------------------------------*/
	
	#footer {
		padding: 25px 15px;
		border-radius: 0;
	}

	#footer img {
		margin-bottom: 10px;
		width: auto;
    	height: 30px;
	}
	/*---------------------------------------------------------
	contact
	---------------------------------------------------------*/
	
	#contact {
		padding-bottom: 50px;
	}
	
	#contact h2 {
		font-size: 1.5rem;
		padding: 35px 0;
		margin-bottom: 50px;
	}
	
	#contact table {
		margin-bottom: 50px;
	}
	
	#contact table th {
		font-size: 1.1rem;
	}
	
	#contact input[type="text"], 
	#contact input[type="email"], 
	#contact input[type="tel"], 
	#contact select {
		font-size: 1.1rem;
	}
	
	.submit input {
		padding: 15px 45px;
		font-size: 1.2rem;
	}
	
	/*---------------------------------------------------------
	thankyou
	---------------------------------------------------------*/
	
	#step3 #contact {
		padding-bottom:75px;
	}
	
	#step3 h3 {
		font-size: 1.35rem;
		margin-bottom: 30px;
		margin-top: 0;
	}
	
	#step3 .text {
		margin-bottom: 30px;
	}
	
}