:root {
	--color-secondary: gray;
	--color-danger: #C00;
	--color-danger100: rgba(204, 0, 0, 0.1);
	--color-primary: #0066CC;
	--color-primary100: #0066cc10;
	--color-warning: #FF9900;
	--color-warning100: #ff990010;
	--color-info: #39d1ff;
	--color-info100: #39d1ff10;
}

.col {
	margin: 1rem auto;
}

.title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	padding-bottom: .5rem;
}

.d-flex {
	display: flex;
}

@media (max-width: 600px) {
	.d-flex--sp-column {
		flex-direction: column;
	}
}

.d-flex__item,
.d-flex p {
	flex: 1 1 70%;
}

.d-flex__item {}


.d-flex__item--danger {
	padding: 1rem;
	border: 2px solid var(--color-danger);
	background: white;
	border-radius: .5rem;
	color: var(--color-danger);
}

.d-flex figure {
	flex: 1 1 30%;
}

figure img {
	width: 100%;
}

.flex-align--center {
	align-items: center;
}

.btn {
	cursor: pointer;
	border: none;
	padding: 1rem 1rem;
	font-size: 1rem;
	border-radius: .5rem;
	text-align: center;
	text-decoration: unset;
}


.btn--primary {
	background: var(--color-primary);
	color: white;
}

.btn--secondary,
.btn--primary:disabled {
	background: var(--color-secondary);
	color: white;
}

.btn--warning {
	background: #FF9900;
	color: #fff;
}

.btn--danger,
.btn--secondary.is-active {
	background: var(--color-danger);
	color: white;
}

#agreementBtn {
	margin: auto;
	width: 300px;
	display: block;
}

.gap-0_5 {
	gap: .5rem;
}

.gap-1 {
	gap: 1rem;
}

.contact-box {
	display: none;
}

.contact-box.is-active {
	display: block;
}

.text {}

.text strong {
	font-weight: 600;
}

.media-box {
	padding: 1rem;
	border-radius: .5rem;
	font-size: 1.125rem;
	line-height: 1.7;
	margin-bottom: 1rem;
}

.media-box--danger {
	border: 1px solid var(--color-danger);
	background: var(--color-danger100);
}

.media-box--primary {
	border: 1px solid var(--color-primary);
	background: var(--color-primary100);
}

.media-box--warning {
	border: 1px solid var(--color-warning);
	background: var(--color-warning100);
}

.media-box--info {
	border: 1px solid var(--color-info);
	background: var(--color-info100);
}

.media-box dt {
	font-size: 1.25rem;
	font-weight: 500;
	margin-bottom: .5rem;
}

.media-box dd {
	margin-bottom: .5rem;
}

.media-box ul {}

.media-box li {
	margin-left: 1rem;
	list-style: disc;
}

.media-box select {
	height: 3rem;
	padding: .2rem;
	border-radius: .5rem;
}

.media-box__child {
	padding: 1rem;
	border-radius: .5rem;
	background: white;
}

.media-box__st {
	font-weight: 500;
}

.licenseBox {}

.issuingAuthorityBox {
	display: none;
}

@media (max-width:600px) {
	.flex--sp-column {
		flex-direction: column;
	}

	.title {
		font-size: 1.125rem;
		margin-bottom: .5rem;
	}

	.btn {
		font-size: 1rem;
		padding: .5rem;
	}

	.text {
		font-size: 1rem;
	}

	.media-box dt {
		font-size: 1.125rem;
	}
}