	/* 画像コンテナのスタイル */
	.image-container {
		display: flex;
		justify-content: center; /* 中央揃え */
		gap: 15px; /* 画像の間隔 */
		flex-wrap: wrap; /* 画面幅が狭い場合は折り返す */
	}

	/* 画像のスタイル（縦を削らず、丸みを帯びたデザインに） */
	.zoomable-img {
		width: auto; /* 幅を自動調整 */
		height: auto; /* 縦を削らない */
		border-radius: 20px; /* 角を丸く */
		transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* なめらかな拡大 */
	}

	/* ホバー時の拡大と影 */
	.zoomable-img:hover {
		transform: scale(1.1); /* 拡大率を抑える */
		box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2); /* 影を追加 */
	}
	.subsection_head{
		font-size: 20px;
		font-weight: bold;
		margin: 32px 0 14px;
		padding: 10px 14px;

		border-left: 5px solid #f32922;
		color: #222;
	}

	.option_head{
		font-size: 18px;
		margin-top: 0;
		padding: 0.6em 0.8em;
		margin-bottom: 1em;
		background: #222;
		color: #fff;
		box-shadow: -4px 4px 15px rgba(127,127,127,0.2);
		border-left: 6px solid #f32922;
	}
	.subsection_head{
		font-size: 17px;
		margin: 1.8em 0 0.8em;
		padding-left: 0.7em;
		border-left: 4px solid #f32922;
		line-height: 1.5;
	}


	#rental_housyoku .rental_intro_head{
		font-size: 20px;
		margin: 0 0 1em;
		padding: 0.75em 1em;
		background: #222;
		color: #fff;
		border-left: 6px solid #f32922;
		box-shadow: -4px 4px 15px rgba(127,127,127,0.2);
		line-height: 1.5;
		font-weight: bold;
		clear: both;
	}

	#rental_housyoku .rental_sub_head{
		font-size: 17px;
		margin: 1.8em 0 0.8em;
		padding-left: 0.7em;
		border-left: 4px solid #f32922;
		line-height: 1.5;
		font-weight: bold;
		clear: both;
	}	