@charset "utf-8";
h3 span {
	font-size: 1.5em;
}

#price ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#price ul li {
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background-color: #edf8ff;
	margin-bottom: 2em;
	text-align: center;
	width: calc(50% - 1em);
	height: auto;
}
#price ul li img {
	width: 60px;
	height: auto;
	margin-bottom: 1em;
}
#price ul li p {
	color: var(--main);
	font-weight: 700;
	line-height: 1.2em;
	margin-bottom: 0;
}
#price dl {
	margin: auto;
	padding: 0 1em;
	width: fit-content;
}
#price dl dt {
	font-weight: 700;
}
#price dl dd {
	padding-left: 1em;
	margin-bottom: 1.5em;
}
#price dl dd br.pc {
	display: none;
}
#price .link {
	font-size: var(--f20);
	font-weight: 700;
	margin-top: 3em;
}
#price .link a {
	color: var(--main);
}
#plan ul {
	margin-bottom: 2em;
}
#plan ul li {
	background-color: #fff;
	font-weight: 700;
	padding: 1em;
	text-align: center;
}
#plan ul li .plan {
	background-color: var(--main);
	border-radius: 9999px;
	color: #fff;
	font-size: var(--f24);
	height: 1.5em;
	line-height: 1.5em;
	margin: auto;
	width: 10em;
}
#plan ul li .price {
	color: var(--main);
	font-size: var(--f36);
	margin-bottom: 0.3em;
}
#plan ul li .price span {
	font-size: 1.5em;
}
#plan ul li .note {
	font-weight: 400;
	margin-bottom: 0;
}
#plan ul li.month {
	margin-bottom: 2em;
}
#plan ul li.year {
	position: relative;
}
#plan ul li.year img {
	position: absolute;
	top: -1em;
	right: -0.5em;
	width: 80px;
	height: auto;
}
#option p span {
	color: var(--main);
	font-weight: 700;
}
#option table {
	margin:0 auto 3em;
}
#option table tr:nth-child(odd) {
	background-color: #edf8ff;
}
#option table th {
	padding: 0.5em 1em;
	text-align: left;
	width: 10em;
	vertical-align: middle;
}
#option table th span {
	display: inline-block;
	font-size: 0.9em;
}
#option table td {
	padding: 0.5em 1em;
	vertical-align: middle;
	width: 14em;
}
#option table td span {
	font-size: 0.8em;
}
@media screen and (min-width: 768px) {
	#price ul li {
		width: calc(33% - 2em);
		max-width: 240px;
	}
	#price ul li img {
		width: 80px;
	}
	#price dl dd br.pc {
		display: inline;
	}
	#plan ul {
		display: flex;
		justify-content: space-between;
	}
	#plan ul li {
		width: calc(50% - 4em);
	}
	#plan ul li.month {
		margin-bottom: 0;
	}
	#option table th {
		width: 16em;
	}
	#option table th .sp {
		display: none;
	}
}
@media screen and (min-width: 960px) {
	#price ul {
		gap: 3em;
	}
	#plan ul li.year img {
		width: 100px;
	}
}
@media screen and (min-width: 1280px) {
	#plan ul li.year img {
		width: 120px;
	}
}