/* Home Template（店舗紹介ページ）*/

.home-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

/* 店舗ヘッダー */
.shop-header {
	text-align: center;
	margin-bottom: 40px;
	padding-bottom: 30px;
	border-bottom: 2px solid #ddd;
}

.shop-logo-large {
	margin-bottom: 20px;
}

.shop-logo-large img {
	max-width: 400px;
	height: auto;
}

.shop-title {
	font-size: 32px;
	font-weight: bold;
	color: #333;
	margin: 0;
}

/* 2カラムレイアウト */
.main-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

@media (max-width: 767px) {
	.main-layout {
		grid-template-columns: 1fr;
	}
}

/* セクション共通 */
section,
.info-section,
.map-section,
.links-section,
.legal-section,
.photo-section {
	margin-bottom: 30px;
	padding: 20px;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
}

section h2,
.info-section h2,
.map-section h2,
.links-section h2,
.legal-section h2 {
	font-size: 20px;
	font-weight: bold;
	margin: 0 0 15px 0;
	padding-bottom: 10px;
	border-bottom: 2px solid #eee;
	color: #333;
}

/* 写真セクション（見出しなし） */
.photo-section {
	padding: 0;
	background: none;
	border: none;
	margin-bottom: 20px;
}

/* 情報リスト */
.info-list,
.legal-list {
	margin: 0;
	padding: 0;
}

.info-list dt,
.legal-list dt {
	font-weight: bold;
	color: #666;
	margin-top: 10px;
	margin-bottom: 5px;
}

.info-list dt:first-child,
.legal-list dt:first-child {
	margin-top: 0;
}

.info-list dd,
.legal-list dd {
	margin: 0 0 10px 0;
	color: #333;
	line-height: 1.6;
}

.info-list dd a,
.legal-list dd a {
	color: #0066cc;
	text-decoration: none;
}

.info-list dd a:hover,
.legal-list dd a:hover {
	text-decoration: underline;
}

/* Google Maps */
.map-container {
	margin-top: 10px;
	border-radius: 8px;
	overflow: hidden;
}

.map-container iframe {
	display: block;
	width: 100%;
}

/* SNSリンク */
.sns-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
}

.link-btn {
	display: inline-block;
	padding: 10px 20px;
	background-color: #0066cc;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	font-size: 14px;
	transition: background-color 0.3s;
}

.link-btn:hover {
	background-color: #0052a3;
}

/* 写真ギャラリー */
.photo-large {
	width: 100%;
	height: auto;
	border-radius: 8px;
	margin-top: 10px;
}

.photo-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 10px;
	margin-top: 10px;
}

.photo-thumb {
	width: 100%;
	height: auto;
	border-radius: 5px;
	object-fit: cover;
}
