@charset "utf-8";

section#download {
	position: relative;
	width: 100%;
	max-width: 440px;
	margin: 0 auto;
	padding: 80px 20px;
	color: #304779;
}

section#download h2 span {
	display: block;
	width: 100%;
	max-width: 300px;
	margin: 0 auto 20px;
}

section#download h2 + p {
	margin-bottom: 60px;
	line-height: 1.8;
	text-align: center;
	font-weight: bold;
}

section#download dl {
}

section#download dt {
	padding: 0 0 .75em;
	font-weight: bold;
}

section#download dt em {
	margin-left: 1em;
	font-style: normal;
	color: #FF6200;
}

section#download dt span {
	display: block;
	margin: .5em 0 0;
	font-weight: normal;
	font-size: 1.5rem;
}

section#download dd {
	padding: 0 0 45px;
}

section#download dd ul {
	display: flex;
	flex-flow: row wrap;
}

section#download dd ul li {
	width: 28%;
	padding: .5em 0;
	font-weight: bold;
}
section#download dd ul li:nth-of-type(3) {
	width: 44%;
}

input:focus {
	outline: none;
}

/* チェックボックス */
input[type=checkbox] {
	display: none;
}
.cb {
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 5px 10px 5px 40px;
	cursor: pointer;
}
.cb::before {
	content: '';
	display: block;
	position: absolute;
	left: 5px;
	top: 50%;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	background-color: #ffffff;
	box-shadow: 2px 2px 3px 2px rgba(0,0,0,0.2) inset;
}
.cb::after {
	content: '';
	display: block;
	position: absolute;
	left: 11px;
	top: 50%;
	width: 10px;
	height: 14px;
	margin-top: -9px;
	border-right: 3px solid #304779;
	border-bottom: 3px solid #304779;
	transform: rotate(45deg);
	opacity: 0;
}
input[type=checkbox]:checked + .cb::after {
	opacity: 1;
}

input[type=text],
input[type=tel],
input[type=email] {
	display: block;
	width: 100%;
	max-width: 400px;
	padding: 10px;
	background-color: #ffffff;
	border-radius: 10px;
	box-shadow: 3px 3px 4px 2px rgba(0,0,0,0.2) inset;
	cursor: pointer;
}

input.error {
	background-color: #FFE6D6;
}

.alertMsg {
	margin: 1em 0 0 1em;
	font-weight: bold;
	color: #FF6200;
}

.btnBox {
	width: 100%;
	max-width: 380px;
	margin: 0 auto;
}

.formBtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: .75em .2em;
	background: transparent linear-gradient(270deg, #4A69FF 0%, #4AD384 100%) 0% 0% no-repeat padding-box;
	box-shadow: 0px 6px 20px #A4D1DC;
	border-radius: 99em;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	color: #FFFFFF;
	opacity: 1;
}

.formBtn::before {
	flex-shrink: 0;
	content: "";
	width: 12px;
	height: 12px;
}

.formBtn::after {
	flex-shrink: 0;
	content: "";
	width: 24px;
	height: 14px;
	margin-top: 2px;
	background: url("../../images/icon_arw_next.svg") 50% 50% no-repeat;
	transition: .3s;
}

.formBtn:hover::after {
	background: url("../../images/icon_arw_next.svg") 100% 50% no-repeat;
}

/* ボタン無効化 */
.formBtn.invalid {
	pointer-events: none;
	opacity: 0.5;
}

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

@media (max-width: 767px) {

section#download {
	padding: 10.42% 20px;
}

section#download h2 + p {
	margin-bottom: 9.6%;
}

}

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

@media (max-width: 479px) {
section#download dd ul li {
	width: auto;
}
section#download dd ul li:nth-of-type(3) {
	width: auto;
}

.cb {
	padding: 5px 30px;
}

}