:root {
	--fsz-l: 2rem;
	--fsz-m: 1.4rem;
	--fsz-n: 1.1rem;
	--fsz-s: 0.9rem;
}
@media screen and (max-width: 767px) {
	:root {
		--fsz-l: 1.7rem;
		--fsz-m: 1.2rem;
		--fsz-n: 1rem;
		--fsz-s: 0.8rem;
	}
}
@media screen and (max-width: 480px) {
	:root {
		--fsz-l: 1.5rem;
		--fsz-m: 1.1rem;
		--fsz-n: 0.9rem;
		--fsz-s: 0.75rem;
	}
}
* {
	margin: 0;
	padding: 0;
}
html,
body {
	font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
	font-size: 14px;
	color: #666;
	line-height: 1.5;
	background: white;
	word-break: break-all;
}
a {
	outline: none;
	text-decoration: none;
}
img {
	width: 100%;
	height: auto;
	border: none;
	display: block;
}
body::before,
body::after {
	content: '';
	display: block;
	width: 100%;
	height: 20%;
	position: fixed;
	left: 0;
	z-index: -1;
}
body::before {
	top: 0;
	background-color: cornflowerblue;
}
/* body::after {
	bottom: 0;
	background-color: #c5e5eb;
} */
h1 {
	background: cornflowerblue;
	padding: 20px 5%;
	color: white;
	font-weight: normal;
	font-size: var(--fsz-m);
	text-align: center;
}
.cntinner {
	width: 95%;
	max-width: 1000px;
	margin: 0 auto;
}
header {
	margin-bottom: 30px;
}
header .cntinner {
	width: 100%;
	max-width: unset;
}
section .cntinner {
	padding: 3%;
	background: lightblue;
}
.formflow {
	display: flex;
	margin-bottom: 20px;
	align-items: center;
}
.formflow .flowone {
	flex-basis: 33.33%;
	background: lightskyblue;
	text-align: center;
	padding: 15px 0;
	color: white;
	font-size: var(--fsz-n);
}
.formflow .flowone.active {
	font-weight: bold;
	font-size: var(--fsz-m);
	background: crimson;
}
.error {
	margin-bottom: 20px;
	color: crimson;
}
.error p {
	background: lightcoral;
	color: white;
	padding: 5px 2%;
	margin-bottom: 10px;
}
.error .alert {
	background: white;
	padding: 10px 2%;
}
.formgroup {
	background: white;
	margin-bottom: 20px;
	padding: 10px 2%;
}
.formttl {
	font-size: var(--fsz-m);
	font-weight: bold;
	padding-left: 15px;
	position: relative;
	color: cornflowerblue;
	margin-bottom: 10px;
	display: table;
}
.formttl:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 8px;
	height: 100%;
	background: cornflowerblue;
	transform: translateY(-50%);
}
.formttl p {
	margin-top: 5px;
	font-size: var(--fsz-n);
	font-weight: normal;
	color: #888;
}
.formttl a {
	text-decoration: underline;
}
.formttl span {
	font-size: var(--fsz-s);
}
.formttl span.need {
	background: lightcoral;
	color: yellow;
	padding: 5px;
	border-radius: 5px;
	display: inline-block;
	margin-left: 5px;
	margin-top: -4px;
	vertical-align: middle;
}
.info {
	font-size: var(--fsz-n);
	font-weight: normal;
	color: #888;
}
.formarea input,
.formarea textarea {
	padding: 15px 2%;
	width: calc(100% - 4%);
	border: none;
	border-radius: 5px;
	font-size: var(--fsz-n);
	color: #424242;
	background: #eee;
}
.formarea input[name='zip1'] {
	width: calc(48% - 4%);
	float: left;
}
.formarea input[name='zip2'] {
	width: calc(50% - 4%);
	margin-left: 2%;
}

.imggroup img {
	max-width: 300px;
}
.imggroup .formarea input {
	border: none;
	background: none;
	padding: 0 2% 10px 2%;
}
.subttl {
	color: cornflowerblue;
	font-size: var(--fsz-m);
	margin-bottom: 5px;
	font-weight: bold;
}
.formarea .subttl {
	font-size: var(--fsz-n);
	color: lightcoral;
	margin: 5px 0;
}
.formarea .subttl span {
	font-size: var(--fsz-s);
}
.attention {
	background: white;
	font-size: var(--fsz-n);
	padding: 10px 3% 15px 3%;
	margin-bottom: 20px;
}
button,
.linkbtn {
	display: block;
	width: 70%;
	padding: 10px 3%;
	margin: 20px auto 0 auto;
	font-size: var(--fsz-n);
	border: none;
	background: coral;
	color: white;
	border-radius: 5px;
	text-align: center;
}
.limit_alerttxt {
	background: white;
	padding: 20px 3%;
	margin-bottom: 20px;
}
.confirm .inputdata {
	padding: 10px 2% 5px 2%;
	border-bottom: 1px solid #ccc;
	margin-bottom: 5px;
	font-size: var(--fsz-n);
}
.thanks .attention {
	font-size: var(--fsz-n);
}
.thanks .attention p {
	font-size: var(--fsz-m);
	border-bottom: 1px solid coral;
	padding-bottom: 5px;
	margin: 10px 0;
}
