﻿/*安心ポイント(開始)*/
/*.ansin {
	padding: 40px 0;*/
/*background: #f8fafc;*/
/*background: #ADD8E6;
	height: 330px;
}

.points-inner {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 20px;*/
/*background: red;*/
/*}

.points-title {
	font-size: 30px;
	margin-bottom: 24px;
	border-left: 4px solid #2563eb;
	padding-left: 8px;
}

.points-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.point-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.point-number {
	font-size: 35px;
	font-weight: 700;
	color: #2563eb;
	margin-bottom: 1px;
}

.point-card h3 {
	font-size: 30px;
	margin-bottom: 1px;
	text-decoration: underline;
	text-decoration-color: #2563eb;*/ /* 白い下線 */
/*}

.point-card p {
	font-size: 20px;*/
/*color: #64748b;*/
/*color: black;
	line-height: 1.6;
}*/

/*ここからはcが書いた(開始)*/
.top-title {
	font-size: 28px; /* ← 好きな大きさに変更 */
	text-align: center;
	margin: 0;
}
/* 安心ポイント全体 */
.ansin {
	padding: 60px 20px;
	background: #fff;
}

.points-inner {
	max-width: 1080px;
	margin: 0 auto;
}

.points-title {
	text-align: center;
	font-size: 32px;
	margin-bottom: 40px;
}

/* カードのグリッド */
.points-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

/* カード本体 */
.point-card {
	position: relative;
	background: #f9fafb;
	padding: 40px 20px 25px;
	border-radius: 12px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.05);
	text-align: center;
}

/* 左上の番号 */
.point-number {
	position: absolute;
	top: -12px;
	left: -12px;
	background: #1D4ED8;
	color: #fff;
	font-weight: bold;
	padding: 8px 14px;
	border-radius: 8px;
	font-size: 16px;
}

/*以下がPC画面で見る際の設定(開始)*/
.top-m .top-title {
	font-size: 35px;
	text-align: center;
	margin-bottom: 80px;
	margin-top: 80px;
	/*color: #2563eb;*/
}
/*以下がPC画面で見る際の設定(終了)*/
/* スマホ用（〜768px） */
@media (max-width: 768px) {

	.top-title {
		font-size: 28px; /* ← 好きな大きさに変更 */
		text-align: center;
		margin: 0;
	}

	.points-title {
		font-size: 23px;
		margin-bottom: 20px;
		margin-top: 40px;
	}

	.ansin {
		padding: 10px 15px;
	}

	.points-grid {
		grid-template-columns: 1fr; /* ← 1列にする */
		gap: 1px;
	}

	.point-card {
		padding: 10px 18px 22px;
		border-radius: 10px;
		height: 55%;
		background: #E0FFFF;
	}

	.point-number {
		top: -10px;
		left: -10px;
		font-size: 14px;
		padding: 6px 12px;
	}

	.point-card h3 {
		font-size: 20px;
		margin-bottom: 10px;
		margin-top: 1%;
	}

	.point-card p {
		font-size: 15px;
		line-height: 1.6;
	}
	/*ここからはメニューの文字(開始)*/

	/*ここからはメニューの文字(開始)*/

}

/*ここからはcが書いた(終了)*/

/* スマホ対応 */
@media (max-width: 768px) {
	.points-grid {
		grid-template-columns: 1fr;
	}

	/*安心ポイント(終了)*/

	/*エアコンクリーニングトップ(開始)*/
	.top-m .top-title {
		font-size: 25px;
		text-align: center;
		margin-bottom: 40px;
		margin-top: 40px;
		/*color: #2563eb;*/
	}
	/*メニュー(開始)*/
	/*.menu {
	margin-top: 50px;
}*/
	/*メニュー(終了)*/


	/*【開始】(エアコンクリーニング)以下は台数を選択する部分のCSS*/
	.base-price {
		background: #e6faff; /* 淡い水色で見積もり欄に最適 */
		padding: 8px 20px;
		border-radius: 8px;
		border: 1px solid #cce7f0;
		display: flex;
		flex-direction: column;
		gap: 10px;
		width: fit-content;
	}

	.base-price-main {
		font-size: 20px;
		font-weight: bold;
		color: #1d4ed8;
	}

	.base-price-sub {
		font-size: 12px;
		color: #666;
	}

	#baseQty {
		padding: 6px 10px;
		font-size: 16px;
		border-radius: 6px;
		border: 1px solid #ccc;
		width: 120px;
		cursor: pointer;
	}
}

#baseQty:hover {
	border-color: #999;
}
/*【終了】(エアコンクリーニング)以下は台数を選択する部分のCSS*/


/*.option-qty {
	margin-top: 8px;
	padding: 6px 10px;
	font-size: 15px;
	border-radius: 6px;
	border: 1px solid #ccc;
	width: 120px;
	cursor: pointer;
}

	.option-qty:hover {
		border-color: #999;
	}*/

/*【開始】(防カビコート)ここは防カビコートのCSSの設定*/
.option-card {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 15px;
	border: 1px solid #ddd;
	border-radius: 10px;
	background: #fff;
	margin-bottom: 15px;
}

/* 左側：チェックボックス＋タイトル＋説明 */
.option-info {
	flex: 1;
}

.option-checkbox {
	margin-bottom: 8px;
}

.option-title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 6px;
}

.option-desc {
	font-size: 14px;
	color: #555;
	line-height: 1.6;
}

/* 右側：価格＋台数セット */
.option-price-set {
	display: flex;
	/*background: red;*/
	flex-direction: column;
	margin-left: auto; /* ←右端に寄せる */
	min-width: 150px;
	gap: 6px;
}

.option-price {
	font-size: 16px;
	font-weight: bold;
}

.option-qty {
	padding: 6px 10px;
	font-size: 15px;
	border-radius: 6px;
	border: 1px solid #ccc;
	width: 120px;
}
/*【終了】(防カビコート)ここは防カビコートのCSSの設定*/
