@charset "UTF-8";

/* HTML5 display definitions
================================================ */
/**
* Add the correct display in IE 9-.
* 1. Add the correct display in Edge, IE, and Firefox.
* 2. Add the correct display in IE.
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

/* Add the correct display in IE 9-. */
audio,
canvas,
progress,
video {
	display: inline-block;
}

/* Add the correct display in iOS 4-7. */
audio:not([controls]) {
	display: none;
	height: 0;
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera. */
progress {
	verticaalign: baseline;
}

/*
* Add the correct display in IE 10-.
* 1. Add the correct display in IE.
*/
template,
[hidden] {
	display: none;
}

/* 簡易リセットCSS */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 16px;
	line-height: 27px;
	font-weight: 500;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-moz-font-feature-settings: 'liga', 'kern';
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	color: #1e1e1e;
	font-feature-settings: "palt";
}

:where(p, h1, h2, h3, h4, h5, h6) {
	overflow-wrap: break-word;
}

ol ol,
ul ul,
ol ul,
ul ol,
ul li {
	margin-bottom: 0;
	list-style-type: none;
}

a {
	text-decoration: none;
	color: #fff;
	font-weight: bold;
}

img {
	max-width: 100%;
	/*親要素のサイズ*/
	max-height: 100%;
	/*親要素のサイズ*/
	object-fit: cover;
	display: block;
	/*下の空白削除*/
}

button {
	/* 背景色を無色に */
	background: transparent;
	/* 枠線を消す */
	border: none;
	/* クリックした際に枠線をnone消す */
	outline: none;
	/* 影を消す */
	box-shadow: none;
	cursor: pointer;
}

button {
	border-radius: 0;
}

button:focus {
	outline: none;
}

button,
input,
optgroup,
select {
	margin: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
	display: block;
	padding: 0;
	margin: 0;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
	cursor: pointer;
}

/*
LP
================================================ */
header .header-inner {
	width: 100%;
	height: 11.2vw;
	box-sizing: border-box;
	background: #66DBFA;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .header-inner .logo {
	width: 32%;
	min-height: 32px;
	display: flex;
	align-items: center;
}

.mv-img {
	max-width: 860px;
	margin: 0 auto;
	height: 100%;
}

.form-header .header-inner .license {
	padding-right: 1rem;
}

.end-message {
	display: none;
}

.false-message {
	display: none;
}

.caption {
	font-weight: 400;
	margin-bottom: .5rem;
}

.form-item .form-check-btn {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.form-item .form-check-btn label>span img,
.form-item .form-check-btn label>span img,
.form-item .form-check-btn label>span img,
.form-item .form-check-btn label>span img {
	width: 15vh;
	margin-bottom: 1.15vh;
	width: 12.4vh;
	height: 12vh;
	margin-bottom: 7.5px;
}

.form-item .form-check-btn .list-icon label>span .button-icon {
	width: 20vh;
	margin-bottom: .7vh;
}

.form-item .form-check-btn .list-icon {
	align-items: stretch;
}

.form-check {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}

.justify-center {
	display: flex;
	justify-content: center;
	align-items: center;
}

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

.form-item .form-check-btn li label>span {
	cursor: pointer;
}

.form-item .form-check-btn li label>span .small-txt {
	font-size: 85%;
	letter-spacing: -0.01em;
}

.form-item input[type="checkbox"],
.form-item input[type="radio"] {
	display: none;
}

.form-item input[type="checkbox"]:checked+span,
.form-item input[type="radio"]:checked+span {
	background-image: linear-gradient(130deg, #2B4EE0, #2B4EE0 60%, #2B4EE0);
	color: #fff;
}

input[type="date"]::-webkit-date-and-time-value {
	text-align: left;
}

/*ステップボタン*/
.buttom-area .nextbtn {
	display: inline-flex;
	width: 200px;
	justify-content: start;
	align-items: center;
	padding: 20px;
	background: #2B4EE0;
	box-shadow: 0 2px 0px #1F3A6D;
	overflow: hidden;
}

/* 無効状態 */
.nextbtn:disabled {
	background-color: #2B4EE0;
	/* 背景色 */
	opacity: .5;
	/* 半透明 */
	cursor: not-allowed;
	/* カーソルを無効アイコンに */
}

#step5 .buttom-area .nextbtn {
	justify-content: center;
	padding: 0;
}

.buttom-area .nextbtn:after {
	content: "";
	position: absolute;
	right: 10%;
	border-style: solid;
	border-width: 6px 0 6px 8px;
	border-color: transparent transparent transparent #fff;
}

#step5 .buttom-area .nextbtn:after {
	display: none;
}

.buttom-area {
	text-align: center;
	margin-top: 30px;
}

.buttom-area button {
	font-size: 3.8vw;
	font-weight: bold;
	color: #fff;
	border-radius: 4px;
	vertical-align: middle;
	outline: none;
	position: relative;
	height: 52px;
}

.buttom-area .free {
	margin: 0px 8px 0 .3rem;
	padding: 1px .3rem 0px;
	font-size: 3.2vw;
	border: 1px solid #fff;
}

.buttom-area .backbtn {
	width: 25%;
	margin-right: .7rem;
	background: #c7c7c7;
	box-shadow: 0 2px 0px rgba(0, 0, 0, .3);
	text-align: center;
}

/*
privacy
================================================ */
.pmark {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 3.5% 0 0 0;
	background: #faf4e7;
}

.pmark .txt {
	padding-left: 2%;
	line-height: 1.4;
	font-size: 2.6vw;
}

.policyBox {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	padding: 0% 0% 3%;
}

.policyBox li {
	display: inline-block;
	font-size: 3.2vw;
	margin-left: 3%;
}

/*
footer
================================================ */

#form-footer {
	padding: 3.6%;
	color: #fff;
	background-color: #4760ff;
	background-image: url(../image/common/footer.png);
	background-position: 50% 0;
	background-size: cover;
	background-repeat: no-repeat;
}

footer .copyright {
	font-size: 2.6vw;
	text-align: center;
}

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

@media screen and (min-width: 639px) {
	body {
		line-height: initial;
	}

	header .header-inner {
		max-width: 860px;
		height: 85px;
		margin: 0 auto;
		padding: 1em;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.logo img {
		width: 180px;
	}

	.license img {
		width: 151px;
	}

	.form-header {
		background: #66DBFA;
	}

	.entry-box {
		content: "";
		display: table;
		clear: both;
		max-width: 860px;
		margin: 0 auto;
	}

	.bg-step1 img,
	.bg-step2 img,
	.bg-step3 img,
	.bg-step4 img,
	.bg-step5 img {
		display: none;
	}

	.step-img img {
		margin-bottom: 18px;
		height: 100%;
	}

	.form-item {
		padding: .3rem 1rem 0;
		display: block;
	}

	.form-item .form-check-btn {
		gap: 9px;
	}

	.form-item dt {
		display: flex;
		padding-left: 15px;
		align-items: center;
		box-sizing: border-box;
		font-size: 17px;
		font-weight: bold;
		border-top: 1px solid #d2d2d2;
		border-bottom: 1px solid #d2d2d2;
		border-left: 1px solid #d2d2d2;
		border-radius: 3px 0 0 3px;
		background: #f6f6f6;
		position: relative;
		width: 35%;
		padding: 1rem;
	}

	.form-item.error>dt {
		background: #fde1e4;
		border-top: 1px solid #f66876;
		border-bottom: 1px solid #f66876;
		border-left: 1px solid #f66876;
	}

	.form-item.error>dt+dd {
		border: 1px solid #f66876;
	}

	.form-item dd {
		width: 65%;
		padding: 19px;
		box-sizing: border-box;
		border-radius: 0 3px 3px 0;
		border: 1px solid #d2d2d2;
	}

	.form-item .required::after,
	.form-item .optional::after {
		font-size: 15px;
	}

	.form-item dl {
		display: flex;
		flex-wrap: wrap;
		margin: .3rem 0 13px;
	}

	.form-item .form-check-btn li {
		width: 48%;
	}

	.form-item label>span {
		display: flex;
		justify-content: center;
		width: 100%;
		height: 50px;
		padding: 0 10px;
		box-sizing: border-box;
		line-height: 1.5;
		font-size: 15px;
		font-weight: bold;
		align-items: center;
		border-radius: 2.5px;
		background-color: rgba(60, 183, 248, 0.5);
		transition: .3s;
	}

	.form-item .required::after {
		content: "必須";
		background: #f66876;
		padding: .1% 1.8% .7%;
		margin-left: 9px;
		line-height: 1.4;
		border-radius: 3px;
		color: #fff;
		white-space: nowrap;
	}

	.form-item .optional::after {
		content: "任意";
		background: #c7c7c7;
		padding: .1% 1.8% .7%;
		margin-left: 4%;
		line-height: 1.4;
		border-radius: 2px;
		color: #fff;
	}

	.form-item .form-check-btn label>span img,
	.form-item .form-check-btn label>span img,
	.form-item .form-check-btn label>span img,
	.form-item .form-check-btn label>span img {
		display: none;
	}

	#form .wd-154 {
		width: 147px;
	}

	#form .wd-400 {
		max-width: 400px;
	}

	#step3 .form-item .pref-box:nth-of-type(2) {
		width: 73%;
	}

	input[type="text"],
	input[type="email"],
	input[type="tel"],
	input[type="date"],
	textarea .buttom-area .nextbtn .small-text {
		width: 100%;
		height: 39px;
		padding: 0 15px;
		border: 1px solid #b5b5b5;
		background: #fff;
		color: #1e1e1e;
		font-size: 16px;
		border-radius: 0;
		margin-right: 9px;
	}

	select {
		padding-left: 15px;
		height: 39px;
	}

	select {
		border-radius: 0;
		border: 1px solid #b5b5b5;
	}

	#step3 .form-item .pref-box {
		display: inline-block;
	}

	.buttom-area button {
		margin-bottom: 52px;
		height: 50px;
	}

	.buttom-area .nextbtn {
		width: 27%;
	}

	.small-text {
		line-height: 1.4;
		font-size: 11.5px;
	}

	.caption {
		margin-bottom: 0;
	}

	.buttom-area .backbtn {
		margin-right: 19px;
		width: 100px;
	}

	#form-footer {
		padding: 52px;
	}

	.policyBox {
		padding: 0 0 11px;
	}

	.policyBox li,
	footer .copyright,
	.buttom-area .free,
	.buttom-area button {
		font-size: 16px;
	}

	.policyBox li {
		margin-left: 1rem;
	}
}

@media screen and (max-width: 639px) {
	header .header-inner .logo {
		margin-left: 11px;
	}

	.logo img {
		width: 96px;
	}

	.form-header .header-inner .license {
		height: 21px;
	}

	h2 {
		font-size: 3.8vw;
		margin: 0px 0 .1rem 2px;
		white-space: nowrap;
	}

	.bg-step1,
	.bg-step2,
	.bg-step3,
	.bg-step4,
	.bg-step5 {
		position: relative;
	}

	.bg-step1 .form-item:nth-of-type(1),
	.bg-step2 .form-item:nth-of-type(1),
	.bg-step3 .form-item:nth-of-type(1),
	.bg-step4 .form-item:nth-of-type(1),
	.bg-step5 .form-item:nth-of-type(1) {
		position: absolute;
		width: 100%;
		top: 0;
		padding: 4.5% 6.5% 0;
	}

	#step1 .buttom-area,
	#step2 .buttom-area,
	#step3 .buttom-area,
	#step4 .buttom-area {
		margin-top: 18px;
	}

	#step5 .buttom-area {
		margin-top: 30px;
	}

	#step3 {
		display: flex;
		justify-content: space-between;
	}

	.entry-box ul li {
		width: 46.2%;
	}

	.step-img img {
		width: 100%;
		height: 36px;
	}

	.caption {
		font-size: 3.6vw;
		margin-top: -2px;
	}

	.form-item .form-check-btn li label>span {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		justify-content: center;
		padding: 8% 3% 8%;
		margin-bottom: .7rem;
		font-size: 3.6vw;
		font-weight: bold;
		text-align: center;
		border-radius: 2px;
		transition: .3s;
		background-color: rgba(60, 183, 248, 0.68);
	}

	.form-item .required::after {
		content: "必須";
		background: #da5a61;
		padding: 1.2% 1.5% 1.3%;
		margin-left: .3rem;
		line-height: 1;
		font-size: 3.2vw;
		border-radius: 3px;
		color: #fff;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}

	.form-item .optional::after {
		content: "任意";
		background: #c7c7c7;
		padding: 1.2% 1.5% 1.3%;
		margin-left: 2.5%;
		line-height: 1;
		font-size: 3.2vw;
		border-radius: 3px;
		color: #fff;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}

	.form-item dt {
		position: relative;
		font-size: 3.8vw;
		margin: 0 0 .3rem 1rem;
		font-weight: bold;
	}

	.buttom-area .nextbtn .small-text {
		font-size: 3.4vw;
	}

	.lh50 {
		line-height: 50px;
	}

	#step2 .buttom-area button,
	#step3 .buttom-area button,
	#step4 .buttom-area button {
		height: 52px;
		line-height: 52px;
	}

	#step5 .buttom-area button {
		height: 52px;
		line-height: 1.2;
	}

	#step5 .buttom-area .nextbtn .small-text {
		font-size: 3vw;
	}

	.form-item .pref-box {
		width: 49%;
	}

	.form-item dd>span {
		display: inline-block;
		width: 100%;
		vertical-align: top;
		font-size: 3.5vw;
	}

	.form-item input[type=text],
	.form-item input[type=email],
	.form-item input[type=tel],
	.form-item input[type=date],
	.form-item textarea,
	.form-item select {
		width: 100%;
		padding: 0 15px;
		margin-bottom: 12px;
		border: 1px solid #b5b5b5;
		background-color: #fff;
		color: #1e1e1e;
		font-size: 3.6vw;
		height: 39px;
		border-radius: 0;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		text-align: left;
	}

	.form-item input[type=text].mb {
		margin-bottom: -1px;
	}

	.error>dd input[type=text],
	.error>dd input[type=tel],
	.form-item input[type="email"],
	.form-item input[type="date"],
	.error>dd select,
	.error>dd textarea {
		border: 1px solid rgba(60, 183, 248, 0.7);
	}
}

@media screen and (min-width: 768px) {
	#step2 .form-item .form-check-btn li {
		width: 32%;
	}

	.form-item dt {
		white-space: nowrap;
	}
}


/*
サンクスページはCSSをHTMLファイル内に直接記述。
================================================ */