/**
 * 共通スタイル（フロントエンド用）
 * ヘッダー・フッター・基本レイアウト
 */

/* リセット */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {line-height: 1.6; color: #333; background: #f5f5f5; }
img { max-width: 100%; height: auto; }
a { color: #0066cc; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ========================================
   店舗ヘッダー画像
======================================== */
.shop-header-image {
	width: 100%;
	max-height: 300px;
	overflow: hidden;
}

.shop-header-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	object-position: center;
}

/* ========================================
   ヘッダー
======================================== */
.site-header {
	background: #2c3e50;
	color: #fff;
	margin-bottom: 2em;
	padding: 1em 0;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1em;
	display: flex;
	align-items: center;
	gap: 1em;
}

/* ロゴ */
.site-header .shop-logo {
	width: 160px;
	height: 80px;
	object-fit: contain;
	border-radius: 8px;
	background: #fff;
	padding: 5px;
}

.site-header .shop-logo-placeholder {
	width: 80px;
	height: 80px;
	background: #fff;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* 店舗情報 */
.site-header .shop-info {
	flex: 1;
}

.site-header .shop-name {
	font-size: 24px;
	margin-bottom: 5px;
	color: #fff;
	text-align: left;
}

.site-header .shop-address {
	font-size: 13px;
	color: #ecf0f1;
	line-height: 1.5;
}

/* ========================================
   フッター
======================================== */
.site-footer {
	background: #34495e;
	color: #ecf0f1;
	margin-top: 40px;
	padding: 30px 0 0;
}

.site-footer .footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px 30px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.site-footer .footer-section h3 {
	font-size: 16px;
	margin-bottom: 15px;
	color: #fff;
	border-bottom: 2px solid #0066cc;
	padding-bottom: 8px;
}

.site-footer .footer-section p {
	font-size: 13px;
	line-height: 1.6;
	margin-bottom: 10px;
}

.site-footer .footer-links,
.site-footer .footer-business-info {
	list-style: none;
	padding: 0;
}

.site-footer .footer-links li,
.site-footer .footer-business-info li {
	margin-bottom: 8px;
	font-size: 13px;
}

.site-footer .footer-links a {
	color: #fff;
	text-decoration: underline;
}
.site-footer .footer-links a:hover {
	text-decoration: none;
}

.site-footer .footer-bottom {
	background: #2c3e50;
	padding: 15px 0;
	text-align: center;
	font-size: 12px;
	color: #95a5a6;
}

.site-footer .footer-bottom a {
	color: #fff;
}

/* ========================================
   レスポンシブ
======================================== */
@media screen and (max-width: 600px) {
	.site-header .header-container {
		flex-direction: column;
	}
	.site-header .shop-name{
		font-size: 1em;
	}
}
