/* mv
-----------------------------------------------------*/
.mv .cont-inn {
	width: 100%;
}
/* read
-----------------------------------------------------*/
.read p {
	text-align: center;
}
.read .cont-inn > p {
	margin-top: 1em;
}
.read p,
.read ul li {
	font-size: 3rem;
	font-weight: 700;
}
.read p.col-b {
	font-size: 3.2rem;
}
.read p span,
.read ul li span {
	color: var(--color-accent);
}
.read .bg-b {
	display: flex;
	justify-content: center;
}
.read ul {
	display: inline-block;
}
.read ul li {
	position: relative;
	padding-left: 2em;
}
.read ul li + li {
	margin-top: 10px;
}
.read ul li::before {
	content: '';
	position: absolute;
	background: url(../img/top/icon_check.svg) no-repeat center;
	background-size: 100%;
	width: 47px;
	height: 58px;
	top: -0.05em;
	left: 0;
}
.read ul li span {
	font-size: 3.6rem;
}
.read .txt-m {
	font-size: 4.2rem;
	line-height: 1;
}
.read .txt-b {
	font-size: 5rem;
	line-height: 1;
	display: inline-block;
	margin-top: -0.8em;
	background: linear-gradient(transparent 90%, #ffec1d 90%);
}
.read .bg-b,
.read .bg-o {
	padding: 1em;
	margin-top: 2em;
}
.read-image {
	width: 100%;
	max-width: 535px;
	margin: 0 auto;
}
.read-arrow {
	width: 100%;
	max-width: 580px;
	margin: 0 auto;
}
@media (max-width: 768px) {
	.read p,
	.read ul li {
		font-size: 4.8vw;
	}
	.read p.col-b {
		font-size: 5.1vw;
	}
	.read ul li {
		padding-left: 1.7em;
		line-height: 1.4;
	}
	.read ul li + li {
		margin-top: 4vw;
	}
	.read ul li::before {
		width: 5.667vw;
		height: 8.333vw;
		top: -1.3vw;
	}
	.read ul li span {
		font-size: 5.6vw;
	}
	.read .txt-m {
		font-size: 6.8vw;
	}
	.read .txt-b {
		font-size: 8vw;
	}
	.read .bg-b,
	.read .bg-o {
		margin-top: 5vw;
	}
	.read-image {
		max-width: initial;
	}
	.read-arrow {
		max-width: initial;
	}
}

/* case
-----------------------------------------------------*/
.case {
	background: var(--color-light-blue);
	margin-top: 70px;
}
.case .ttl-wrap {
	display: flex;
	justify-content: center;
}
.case .sec-ttl {
	position: relative;
	display: inline-block;
	padding: 0 0.5em;
}
.case .sec-ttl::before,
.case .sec-ttl::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 2px;
	height: 2.8em;
	background: var(--color-primary);
	transform: translateY(-50%) rotate(-20deg);
}
.case .sec-ttl::before {
	left: 0;
}
.case .sec-ttl::after {
	right: 0;
	transform: translateY(-50%) rotate(20deg);
}
.case-con {
	display: flex;
	gap: 20px;
}
.case .txt {
	padding: 0 20px;
	text-decoration: underline;
}
.case .price {
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--color-red);
	padding: 0 20px 20px;
	line-height: 1.4;
	text-align: center;
}
.case .item {
	display: block;
	background: #fff;
	border: 1px solid var(--color-primary);
	border-radius: 10px;
}
.case .item img {
	border-radius: 10px;
}
.case .btn {
	margin-top: 50px;
}
@media (max-width: 768px) {
	.case {
		margin-top: 10vw;
	}
	.case-con {
		gap: 2vw;
	}
	.case .sec-ttl {
		font-size: 6.4vw;
	}
	.case .txt {
		padding: 0 2vw;
		font-size: 3.2vw;
	}
	.case .price {
		font-size: 4.8vw;
		padding: 2vw 2vw 2vw;
		line-height: 1.4;
	}
	.case .item {
		border-radius: 2.7vw;
	}
	.case .item img {
		border-radius: 2.7vw;
	}
	.case .btn {
		margin-top: 7vw;
	}
}
/* point
-----------------------------------------------------*/
.point {
	background: var(--color-light-orange);
}
.point .sec-ttl span:not(.col-o) {
	font-size: 5.6rem;
}
@media (max-width: 768px) {
	.point .sec-ttl span:not(.col-o) {
		font-size: 10vw;
	}
}

/* howto
-----------------------------------------------------*/
.howto {
	background: var(--color-light-blue);
}
.howto .btn {
	margin-top: 50px;
}
@media (max-width: 768px) {
	.howto .btn {
		margin-top: 7vw;
	}
}

/* faq
-----------------------------------------------------*/
.faq-con {
	border: 1px solid var(--color-primary);
	padding: 30px;
	border-radius: 10px;
}
.faq-con + .faq-con {
	margin-top: 20px;
}
.faq dl dt {
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--color-primary);
	position: relative;
	margin-bottom: 0.5em;
	padding-left: 50px;
}
.faq dl dt::before {
	content: '';
	position: absolute;
	width: 35px;
	height: 35px;
	background: url(../img/common/icon_q.svg) no-repeat center;
	background-size: 100%;
	top: 0.1em;
	left: 0;
}
.faq dl dd {
	font-weight: 500;
	position: relative;
	padding-left: 50px;
}
.faq dl dd::before {
	content: '';
	position: absolute;
	width: 35px;
	height: 35px;
	background: url(../img/common/icon_a.svg) no-repeat center;
	background-size: 100%;
	top: -0.2em;
	left: 0;
}
.faq dl dd a {
	color: var(--color-accent);
	text-decoration: underline;
}
.faq .btn {
	margin-top: 50px;
}
@media (max-width: 768px) {
	.faq-con {
		padding: 5vw;
		border-radius: 2.7vw;
	}
	.faq-con + .faq-con {
		margin-top: 3vw;
	}
	.faq dl dt {
		font-size: 5vw;
		padding-left: 11vw;
		line-height: 1.4;
	}
	.faq dl dt::before {
		width: 8vw;
		height: 8vw;
	}
	.faq dl dd {
		padding-left: 11vw;
	}
	.faq dl dd::before {
		width: 8vw;
		height: 8vw;
	}
	.faq .btn {
		margin-top: 7vw;
	}
}

/* voice
-----------------------------------------------------*/
.voice {
	background: var(--color-light-blue);
}
.voice-read {
	font-size: 2.6rem;
	font-weight: 500;
	text-align: center;
	margin-bottom: 40px;
}
.slick-track {
	display: flex !important;
}
.slick-slide {
	height: auto !important;
}
.slide-item {
	border: 1px solid var(--color-primary);
	border-radius: 10px;
	padding: 25px;
	margin: 0 10px;
	background: #fff;
	width: 435px !important;
	display: flex !important;
	flex-direction: column;
}
.voice-icon {
	width: 84px;
	margin: 0 auto;
}
.voice-copy {
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--color-accent);
	margin: 0.7em 0 0.5em;
	line-height: 1.4;
}
.voice-txt {
	font-size: 1.8rem;
	font-weight: 500;
	margin-bottom: 0.5em;
	flex-grow: 1;
}
.voice-info {
	font-weight: 700;
	text-align: right;
}
.slick-dots {
	bottom: -40px !important;
}
.slick-dots li.slick-active button:before {
	color: var(--color-secondary) !important;
}
.slick-dots li button:before {
	font-size: 8px !important;
}
.slick-dots li {
	margin: 0 !important;
}
@media (max-width: 768px) {
	.voice-read {
		font-size: 4vw;
		margin-bottom: 5vw;
	}
	.slide-item {
		border-radius: 2.7vw;
		padding: 5vw;
		margin: 0 2.5vw;
		width: 80vw !important;
	}
	.voice-icon {
		width: 14.4vw;
	}
	.voice-copy {
		font-size: 4.8vw;
	}
	.voice-txt {
		font-size: 3.7vw;
	}
	.slick-dots {
		bottom: -10vw !important;
	}
}

/* inquiry
-----------------------------------------------------*/
.inquiry-ttl {
	font-size: 3.2rem;
	text-align: center;
	margin-bottom: 30px;
	line-height: 1.6;
	color: var(--color-primary);
}
.inquiry-ttl span {
	position: relative;
	display: inline-block;
	padding: 0 1em;
}
.inquiry-ttl span::before,
.inquiry-ttl span::after {
	content: '';
	position: absolute;
	top: 55%;
	width: 15px;
	height: 123px;
	background: url(../img/top/icon_slash.svg) no-repeat center;
	background-size: 100%;
	transform: translateY(-50%) rotate(-20deg);
}
.inquiry-ttl span::before {
	left: 0;
}
.inquiry-ttl span::after {
	right: 0;
	transform: translateY(-50%) rotate(20deg);
}
@media (max-width: 768px) {
	.inquiry-ttl {
		font-size: 6.4vw;
		margin-bottom: 5vw;
	}
	.inquiry-ttl span::before,
	.inquiry-ttl span::after {
		top: 85%;
		width: 2.667vw;
		height: 16vw;
	}
	.inquiry-ttl span::before {
		left: 1vw;
	}
	.inquiry-ttl span::after {
		right: 1vw;
		transform: translateY(-50%) rotate(20deg);
	}
}

/* purchase
-----------------------------------------------------*/
.purchase-con {
	display: flex;
	/* justify-content: space-between; */
	flex-wrap: wrap;
	gap: 50px 30px;
	margin: 70px 0 50px;
}
.purchase-con .item {
	width: calc((100% - 30px * 2) / 3);
}
.purchase .image {
	border-radius: 10px;
	border: 1px solid var(--color-primary);
}
.purchase .image img {
	border-radius: 10px;
}
.purchase .txt {
	margin: 0.8em 0;
}
.purchase .price {
	font-size: 2.1rem;
	font-weight: 700;
	color: var(--color-red);
	line-height: 1.4;
	text-align: center;
}
.purchase .item .btn {
	width: 100%;
	height: 50px;
	line-height: 50px;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	display: block;
	color: #fff;
	border-radius: 5px;
	margin-top: 0.8em;
}
.purchase .item .btn.more {
	background: var(--color-secondary);
}
.purchase .item .btn.apply {
	background: var(--color-accent);
}
.purchase-list li a {
	position: relative;
	text-decoration: underline;
	padding-left: 1.5em;
	color: var(--color-primary);
	display: block;
}
.purchase-list li a::before {
	position: absolute;
	content: '';
	width: 16px;
	height: 16px;
	background: url(../img/common/icon_arrow_o.svg) no-repeat center;
	left: 0;
	top: 0.4em;
}
@media (max-width: 768px) {
	.purchase-con {
		flex-wrap: wrap;
		gap: 6vw 3vw;
		margin: 7vw 0 7vw;
	}
	.purchase-con .item {
		width: calc((100% - 3vw) / 2);
		margin: 0 auto;
	}
	.purchase .image {
		border-radius: 2.7vw;
	}
	.purchase .image img {
		border-radius: 2.7vw;
	}
	.purchase .txt {
		margin: 0.6em 0;
		font-size: 3.2vw;
	}
	.purchase .price {
		font-size: 4.8vw;
	}
	.purchase .item .btn {
		width: 100%;
		height: 10vw;
		line-height: 10vw;
		font-size: 4vw;
		border-radius: 1.3vw;
	}
	.purchase-list li a::before {
		width: 4.267vw;
		height: 4.267vw;
	}
}

/* popularpost
-----------------------------------------------------*/
.popularpost-list {
	display: flex;
	justify-content: flex-start;
	gap: 20px;
	flex-wrap: wrap;
}
.popularpost-list li {
	width: calc((100% - 20px * 4) / 5);
}
.popularpost-list li a {
	display: block;
	position: relative;
}
.popularpost-list img {
	border-radius: 10px;
	border: 1px solid var(--color-primary);
}

.popularpost-list li:nth-child(1) a::after {
	position: absolute;
	content: '1';
	width: 38px;
	height: 38px;
	font-size: 2.1rem;
	font-weight: 700;
	background: var(--color-red);
	color: #fff;
	border-radius: 9px 0 0 0;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.popularpost-list li:nth-child(2) a::after {
	position: absolute;
	content: '2';
	width: 38px;
	height: 38px;
	font-size: 2.1rem;
	font-weight: 700;
	background: var(--color-accent);
	color: #fff;
	border-radius: 9px 0 0 0;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.popularpost-list li:nth-child(3) a::after {
	position: absolute;
	content: '3';
	width: 38px;
	height: 38px;
	font-size: 2.1rem;
	font-weight: 700;
	background: var(--color-accent);
	color: #fff;
	border-radius: 9px 0 0 0;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.popularpost .txt {
	font-size: 1.4rem;
	color: var(--color-primary);
	margin-top: 0.5em;
}
@media (max-width: 768px) {
	.popularpost-list {
		flex-wrap: wrap;
		gap: 3vw;
	}
	.popularpost-list li {
		width: calc((100% - 3vw) / 2);
	}
	.popularpost-list img {
		border-radius: 2.7vw;
	}
	.popularpost-list li:nth-child(1) a::after {
		width: 8.8vw;
		height: 8.8vw;
		font-size: 5.333vw;
		border-radius: 2.4vw 0 0 0;
	}
	.popularpost-list li:nth-child(2) a::after {
		width: 8.8vw;
		height: 8.8vw;
		font-size: 5.333vw;
		border-radius: 2.4vw 0 0 0;
	}
	.popularpost-list li:nth-child(3) a::after {
		width: 8.8vw;
		height: 8.8vw;
		font-size: 5.333vw;
		border-radius: 2.4vw 0 0 0;
	}
	.popularpost .txt {
		font-size: 3.2vw;
	}
}
