@charset "utf-8";

.l-main img {
	max-width: 100%;
	height: auto;
}

.p-variety {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.p-variety__desc {
	box-sizing: border-box;
	width: 49%;
}

.p-variety__desc ul {
	border: solid 1px var(--main-color);
	font-size: 0.875rem;
	padding: 10px 5px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.p-variety__image {
	width: 49%;
	text-align: center;
}

.p-variety__desc li {
	box-sizing: border-box;
	width: 12em;
	padding: 0;
	margin: 0 0 0 2em;
}

@media screen and (max-width: 768px) {
	.p-variety__desc {
		width: 100%;
		margin-bottom: 20px;
	}
	.p-variety__image {
		width: 100%;
	}
	.p-variety__desc ul {
		justify-content: space-between;
	}
	.p-variety__desc li {
		width: calc( 33% - 2em );
	}
}

@media screen and (max-width: 660px) {
	.p-variety__desc ul {
		justify-content: space-around;
	}
	.p-variety__desc li {
		width: calc( 50% - 2em );
	}
}

@media screen and (max-width: 480px) {
	.p-variety__desc ul {
		justify-content: space-between;
	}
	.p-variety__desc li {
		width: 100%;
	}
}


.p-level {
	padding: 24px;
	background: rgba(var(--sub-color-light-rgb),0.4);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.p-level__item {
	width: 32%;
	padding: 0 0 20px 0;
	background: #fff;
	overflow: hidden;
}

.p-level__header {
	display: flex;
}

.p-level__label {
	width: 50%;
	padding: 0.3em 10px;
	font-size: 1.5rem;
	color: #fff;
	text-align: center;
	background: #595757;
}
.p-level--special .p-level__label {
	background: var(--main-color);
}
.p-level--advanced .p-level__label {
	background: var(--main-color-dark);
}

.p-level__star {
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.p-level__star img {
	margin: 0 3px;
}

.p-level__name {
	font-size: 1.25rem;
	text-align: center;
	font-weight: bold;
	margin: 1.3em 0;
	padding: 0 20px;
	line-height: 1.4;
}

.p-level--special .p-level__name {
	padding: 0 40px;
}

.p-level__desc {
	padding: 0 20px;
	font-size: 0.875rem;
}


.p-plan .p-level__item {
	width: 49%;
}

.p-plan .p-level__label {
	width: 100%;
}


@media screen and (max-width: 768px) {
	.p-level__item,
	.p-plan .p-level__item {
		width: 100%;
		margin: 0 0 20px;
	}
	.p-level__item:last-child,
	.p-plan .p-level__item:last-child {
		margin: 0;
	}
}


.p-secure {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.p-secure__desc {
	box-sizing: border-box;
	width: 49%;
}

.p-secure__image {
	width: 49%;
	text-align: center;
}

.p-secure__copy {
	font-size: 1.125rem;
	font-weight: bold;
	margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
	.p-secure__desc {
		width: 100%;
		margin-bottom: 20px;
	}
	.p-secure__image {
		width: 100%;
	}
}