@charset "utf-8";
		/* スローガンセクション */
		.slogan_section {
			text-align: center;
			margin-bottom: 100px;
		}
		.slogan_main {
			font-size: 32px;
			font-weight: 600;
			line-height: 1.6;
			color: var(--ecbeing_color_green2);
			margin-bottom: 40px;
		}
		.slogan_sub {
			font-size: 18px;
			font-weight: 400;
			line-height: 1.7;
			color: #333;
		}
		.slogan_sub span {
			font-size: 22px;
			font-weight: 500;
		}
 
		/* メッセージセクション - 左右2列 */
		.message_layout {
			display: grid;
			grid-template-columns: 300px 1fr;
			gap: 48px;
			align-items: start;
			margin-top: 50px;
		}
		.message_photo {
			text-align: center;
		}
		.message_photo figure {
			margin: 0 0 16px 0;
		}
		.message_photo figure img {
			width: 100%;
			max-width: 300px;
			height: auto;
			border-radius: 4px;
		}
		.message_photo .caption {
			font-size: 12px;
			color: #666;
			line-height: 1.6;
		}
		.message_content {
			font-size: 15px;
			line-height: 1.8;
			color: #333;
		}
		.message_content p {
			margin-bottom: 20px;
		}
		.message_content p:last-child {
			margin-bottom: 0;
		}
 
		/* レスポンシブ */
		@media screen and (max-width: 768px) {
			.slogan_main {
				font-size: 24px;
				margin-bottom: 24px;
			}
			.slogan_sub {
				font-size: 14px;
			}
			.slogan_sub span {
				font-size: 16px;
			}
			.message_layout {
				grid-template-columns: 1fr;
				gap: 24px;
				margin-top: 40px;
			}
			.message_photo {
				order: 2;
			}
			.message_content {
				order: 1;
				font-size: 14px;
				line-height: 1.7;
			}
			.message_photo figure img {
				max-width: 100%;
			}
		}