@charset "utf-8";

.google_form {
	width: 100%;
	max-width: 600px;
	margin: 0 auto 100px;
	overflow: hidden;
	color: #333;
	background: #000000;
	background: linear-gradient(135deg,rgba(0, 0, 0, 1) 0%, rgba(99, 99, 99, 1) 50%, rgba(0, 0, 0, 1) 100%);
	margin-bottom: 5em;
	padding: 3em 3% 1.5em;
	box-sizing: border-box;
	text-align: left;
	letter-spacing: .06em;
	line-height: 1.7;
	font-size: 16px;
	font-weight: 500;
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.google_form img {
	display: block;
	width: 100%;
	height: auto;
}
.google_form a {
	display: block;
}
.google_form a:hover {
	opacity: 0.5;
	transition: all .2s ease-in;
}
.google_form p {
	margin: 0 0 1em;
}
.google_form .fw_normal {
	font-weight: 500;
	font-size: .8em;
	line-height: 1.5;
}
.google_form .required {
	color: #b72c2c;
	background: 0;
}
.google_form .link {
	display: inline-block;
	color: #b72c2c;
	text-decoration: underline;
}
.google_form .link:hover {
	text-decoration: none;
}
.google_form h1 {
	font-size: 1.3em;
	color: #9c2929;
	text-align: center;
	border-bottom: 2px solid #9c2929;
	padding-bottom: .8em;
	margin-bottom: 0.8em;
}
.google_form h2 {
	font-size: 1.1em;
	border-bottom: 1px solid #1b1b1b;
	margin-bottom: 0.8em;
	padding-bottom: .5em;
}
.google_form h3 {
	margin-bottom: .5em;
}
.google_form placeholder {
	color: #ccc;
}
.google_form input[type="email"], .google_form input[type="text"], .google_form input[type="tel"] {
	border: 1px solid #999;
	width: 100%;
	max-width: 400px;
	padding: 10px;
	box-sizing: border-box;
	font-size: inherit;
	color: inherit;
	letter-spacing: inherit;
	font-weight: inherit;
}
.google_form input[type="email"]::placeholder,
.google_form input[type="text"]::placeholder,
.google_form input[type="tel"]::placeholder{
	color: #ccc;
	font-weight: 500;
}
.google_form textarea {
	border: 1px solid #999;
	padding: 5px;
}
.google_form .button_wrap {
	text-align: center;
}
.google_form .button_wrap input{
	background: 0;
}
.google_form button {
	background: #00b100;
	color: #fff;
	font-weight: bold;
	padding: 0.5em 2em;
	margin: 1em auto 2em;
	display: inline-block;
	cursor: pointer;
	border: none;
	outline: none;
	font-size: 1.4em;
	appearance: none;
}
.google_form button:hover {
	text-decoration: none;
	opacity: .5;
	transition: all .2s ease-in;
}
.google_form .form_course tr, .google_form .form_course td {
	width: 100%;
	display: block;
}
.google_form .box {
	background: #fff;
	border-radius: 0.3em;
	margin-bottom: 1em;
	padding: 1em 4%;
}
.google_form .bg_area {
	background: #fff7ea;
	padding: 1em;
	font-size: .8em;
	margin-bottom: 1em;
	line-height: 1.5;
}
.google_form .check_wrap {
	display: flex;
	align-items: center;
	margin: 1.5em 0;
}
.google_form .check_wrap label {
	font-weight: 600;
}
.google_form input[type="checkbox"] {
	width: 1.5em;
	height: 1.5em;
	cursor: pointer;
	margin-right: .5em;
}
.google_form .btn_form {
	width: 100%;
	animation: btn_form 1.5s ease-in-out infinite;
}
@-webkit-keyframes btn_form {
	0% {
		-webkit-transform: scale(.9);
		transform: scale(.9);
	}
	50% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	100% {
		-webkit-transform: scale(.9);
		transform: scale(.9);
	}
}
@media screen and (max-width: 768px) {
	.google_form {
		margin-bottom: 0;
	}
}