/* 妙法の郷ページのスタイル */

/* 妙法の郷紹介セクション */
.myouhou-intro {
	margin-bottom: 40px;
}

.section-banner {
	text-align: center;
	margin-bottom: 30px;
}

.section-banner img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.intro-content-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: flex-start;
	margin-bottom: 30px;
}

.intro-images {
	display: flex;
	justify-content: center;
}

.image-item {
	max-width: 490px;
}

.image-item img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.intro-text {
	margin-bottom: 0;
}

.intro-text h2 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 20px;
	font-weight: bold;
	color: #333;
	margin: 0 0 15px 0;
	background-color: #f0f0f0;
	padding: 20px 15px;
	border-radius: 4px;
	border-left: 4px solid #333;
}

.intro-text p {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	margin: 0 0 15px 0;
}

.intro-text p:last-child {
	margin-bottom: 0;
}

.intro-image {
	text-align: center;
	margin-bottom: 30px;
}

.intro-image img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-titles {
	text-align: center;
	margin: 20px 0;
}

.section-titles h3 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #333;
	margin: 0;
	padding: 15px 0;
	border-bottom: 2px solid #e0e0e0;
	display: inline-block;
}

/* 特徴セクション */
.myouhou-features {
	margin-bottom: 40px;
	background-color: #fff;
	border: 2px solid #333;
	border-radius: 8px;
	padding: 30px;
}

.feature-list {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	margin: 0;
	padding-left: 20px;
}

.feature-list li {
	margin-bottom: 15px;
	position: relative;
}

.feature-list li::before {
	content: "★";
	color: #333;
	font-weight: bold;
	position: absolute;
	left: -20px;
}

/* 概要セクション */
.myouhou-overview {
	background-color: #f8f8f8;
	border-radius: 8px;
	padding: 30px;
	margin-bottom: 40px;
}

.myouhou-overview h3 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 24px;
	font-weight: bold;
	color: #333;
	margin: 0 0 30px 0;
	background-color: #f0f0f0;
	padding: 20px 15px;
	border-radius: 4px;
	border-left: 4px solid #333;
	text-align: center;
}

.overview-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.overview-item {
	background-color: #fff;
	border: 2px solid #333;
	border-radius: 8px;
	padding: 20px;
}

.overview-item h4 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #333;
	margin: 0 0 15px 0;
	background-color: #f0f0f0;
	padding: 8px 12px;
	border-radius: 4px;
	border-left: 4px solid #333;
}

.overview-item p {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 15px;
	line-height: 1.8;
	color: #333;
	margin: 0 0 12px 0;
}

.overview-item p:last-child {
	margin-bottom: 0;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
	.myouhou-intro,
	.myouhou-overview {
		padding: 20px;
	}

	.intro-text h2 {
		font-size: 18px;
	}

	.intro-text p {
		font-size: 15px;
	}

	.intro-content-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.section-titles h3 {
		font-size: 16px;
		padding: 12px 0;
	}

	.feature-list {
		font-size: 15px;
	}

	.myouhou-overview h3 {
		font-size: 20px;
	}

	.overview-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.overview-item {
		padding: 15px;
	}

	.overview-item h4 {
		font-size: 16px;
	}

	.overview-item p {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.myouhou-intro,
	.myouhou-features,
	.myouhou-overview {
		padding: 15px;
	}

	.intro-text h2 {
		font-size: 16px;
	}

	.intro-text p {
		font-size: 14px;
	}

	.section-titles h3 {
		font-size: 14px;
		padding: 10px 0;
	}

	.feature-list {
		font-size: 14px;
	}

	.myouhou-overview h3 {
		font-size: 18px;
	}

	.overview-item {
		padding: 12px;
	}

	.overview-item h4 {
		font-size: 15px;
	}

	.overview-item p {
		font-size: 13px;
	}
}

/* 価格表セクション */
.pricing-table {
	margin-bottom: 40px;
}

.table-content {
	max-width: 1000px;
	margin: 0 auto;
}

.pricing-table table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-table th,
.pricing-table td {
	padding: 15px;
	text-align: center;
	border: 1px solid #e0e0e0;
}

.pricing-table th {
	background-color: #f8f8f8;
	font-weight: bold;
	color: #333;
}

.pricing-table td {
	color: #333;
}

.table-note {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	color: #666;
	margin: 0 0 20px 0;
	text-align: center;
}

.table-content p:last-child {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	text-align: center;
	margin: 0;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
	.overview-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.contact-methods {
		flex-direction: column;
		gap: 30px;
	}

	.phone-contact,
	.email-contact {
		max-width: 100%;
	}

	.contact-content h3 {
		font-size: 20px;
		padding: 15px;
	}

	.phone-contact h4,
	.email-contact h4 {
		font-size: 16px;
		padding: 12px;
	}

	.pricing-table table {
		font-size: 14px;
	}

	.pricing-table th,
	.pricing-table td {
		padding: 10px 8px;
	}
}

@media (max-width: 480px) {
	.pricing-table table {
		font-size: 12px;
	}

	.pricing-table th,
	.pricing-table td {
		padding: 8px 5px;
	}
}
