@charset "utf-8";


.contents01{}
.contents01 .txtwrap{
	text-align:left;
	margin-bottom:20px;
}
.contents01 .img01{
}
@media (min-width: 768px){
	.contents01{
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	.contents01.rvs{
		flex-direction: row-reverse;
	}
	.contents01 .txtwrap{
		width:46%;
		margin-bottom:0;
	}
	.contents01 .img01{
		width:50%;
	}
}
/**/


/**/
.price01{
	width:100%;
	line-height: 1.5;
	font-size: clamp(2rem,2.5vw,2.5rem);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	font-feature-settings: "palt";
	position: relative;
	align-items: center;
	border-left:10px solid #0079c3;
}
.price01::before{
	display: block;
	content: "";
	border-bottom: 3px dotted #0079c3;
	width:100%;
	height: 1px;
	position: absolute;
	top: 0.85em;
	z-index: 1;
}
.price01 .ttl{
	width:auto;
	text-align: left;
	background-color:#fff;
	z-index: 2;
	padding-right: 0.2em;
	padding-left:10px;
	color:#0079c3;
}
.price01 .price{
	width:auto;
	text-align: left;
	background-color:#fff;
	padding-left: 0.2em;
	z-index: 2;
	font-size:120%;
	color:#00afdd;
}
/**/

.contents02{
	margin-bottom: 20px;
}
.contents02 .price01{
	margin-bottom: 10px;
}
.contents02 .detail{
	font-size: clamp(1.4rem,1.6vw,1.6rem);
	text-align: left;
}
@media (min-width: 768px){
	.contents02{
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	.contents02 .price01{
		width:56%;
	}
	.contents02 .detail{
		width:40%;
	}
}