@charset "utf-8";
/* CSS Document */


/*==================================================================

	$料金表ページ　＊　price

==================================================================*/
#price {
	padding-bottom: 0;
}

/*------------------------------ 共通inner ------------------------------*/
.price-inner {
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 100px 0;
}
@media screen and (max-width: 640px) {
	.price-inner {
		padding: 60px 0;
	}
}



/*==================================================================

	リード

==================================================================*/
#price-intro {
}
@media screen and (max-width: 640px) {
}


/*==================================================================

	お支払い方法

==================================================================*/
#price-payment {
	background: #f4f3f0;
}
#price-payment ul {
	display: flex;
	gap: 20px;
	margin-bottom: 40px;
}
#price-payment ul li {
	flex: 1;
	padding: 15px 10px;
	background: #fff;
	border-radius: 5px;
	text-align: center;
	font-family: "Shippori Mincho B1", serif;
}
#price-payment ul li small {
	font-size: 13px;
}
#price-payment dl dt {
	font-size: 16px;
	font-weight: 500;
	color: var(--color-green);
}
@media screen and (max-width: 640px) {
	#price-payment .text {
		margin-bottom: 30px;
	}
	#price-payment ul {
		flex-direction: column;
		gap: 10px;
		margin-bottom: 25px;
	}
	#price-payment ul li {
		padding: 12px 20px;
		line-height: 1.6;
	}
	#price-payment ul li small {
		display: block;
	}
}





/*==================================================================

	料金セクション共通

==================================================================*/
#price-dental {
	background: linear-gradient(to top, #f7f7f7, #fff);
}
#price-derm {
	background: linear-gradient(to top, #f7f7f7, #fff);
}

.price-block {
	margin-bottom: 60px;
}
.price-block:last-of-type {
	margin-bottom: 0;
}
.price-block h4 {
	padding-bottom: 5px;
	border-bottom: 2px solid var(--color-green-light);
}
.price-block h4 span {
	font-size: 17px;
	letter-spacing: 0.5px;
	margin-left: 10px;
}
.price-block .note {
	font-size: 14px;
	color: #888;
	margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
	.price-block {
		margin-bottom: 30px;
	}
	.price-block h4 span {
		font-size: 16px;
		letter-spacing: 0px;
		margin-left: 5px;
	}
	.price-block .note {
		font-size: 14px;
		line-height: 1.7;
	}
}


/*------------------------------ Table ------------------------------*/
.price-table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.price-table {
	width: 100%;
	border-collapse: collapse;
	white-space: nowrap;
}
.price-table thead th {
	background: var(--color-green-light);
	color: #fff;
	padding: 10px 16px;
	text-align: left;
	font-weight: 500;
	letter-spacing: 0.05em;
}
.price-table tbody tr {
	border-bottom: 1px solid #e0ddd8;
}
.price-table tbody td {
	padding: 17px 16px;
}
.price-table tbody td:nth-child(2) {
	font-family: "Lato", sans-serif;
	color: var(--color-gold);
	font-weight: 500;
	white-space: nowrap;
}
.price-table tbody td:nth-child(3) {
	font-family: "Lato", sans-serif;
	text-align: center;
	white-space: nowrap;
}
.price-table tbody tr:nth-child(even) {
	background: rgba(0,0,0,0.03);
}
@media screen and (max-width: 640px) {
	.price-table thead th {
		padding: 6px 16px;
	}
	.price-table tbody td {
		padding: 14px 16px;
	}
}


/*------------------------------ リスク・副作用について ------------------------------*/
.price-risk {
	margin-top: 40px;
	padding: 30px 40px 40px;
	background: #fff;
	border-radius: 5px;
	border: 1px solid #eee;
}
.price-risk h4 {
	font-size: 22px;
	letter-spacing: 1px;
	padding-bottom: 5px;
	border-bottom: 2px solid rgba(102, 157, 145, 0.7);
}
.price-risk dl {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.price-risk dt {
	font-weight: 500;
	color: var(--color-green);
	margin-top: 16px;
}
.price-risk dt:first-of-type {
	margin-top: 0;
}
.price-risk dd {
	font-size: 15px;
	line-height: 1.9;
	padding-left: 1em;
}
@media screen and (max-width: 640px) {
	.price-risk {
		padding: 20px 24px 30px;
	}
	.price-risk h4 {
		font-size: 19px;
		letter-spacing: 0;
		padding-bottom: 3px;
		border-bottom: 1px solid rgba(102, 157, 145, 0.7);
	}
	.price-risk dl {
		gap: 0;
	}
	.price-risk dt {
		margin-top: 15px;
	}
	.price-risk dd {
		font-size: 14px;
		line-height: 1.8;
		padding-left: 0;
	}
}




/*==================================================================

	費用の価値

==================================================================*/
#price-value {
	background: url("../images/bg_02.jpg") no-repeat center top;
	background-size: cover;
}
#price-value h3 em {
	color: var(--color-gold);
}
#price-value .box {
	display: flex;
	gap: 60px;
	margin-top: 60px;
}
#price-value .text {
	flex: 1;
	display: flex;
	flex-direction: column;
	margin-bottom: 0;
}
#price-value h4 {
	font-size: 22px;
	letter-spacing: 0.5px;
	padding-bottom: 10px;
	border-bottom: 2px solid rgba(183, 164, 135, 0.6);
	color: var(--color-gold);
}

@media screen and (max-width: 640px) {
	#price-value .box {
		flex-direction: column;
		gap: 30px;
		margin-top: 40px;
	}
	#price-value .box h4 {
		font-size: 22px;
		border-bottom: none;
		line-height: 1.8;
		padding-bottom: 0;
		margin-bottom: 13px;
	}
}




