/* POSシステム — 公開サイト 基本スタイル。納品先ごとにここを上書き／差し替えする想定。 */

:root {
	--champ-bg: #f2f7fc;
	--champ-fg: #2b2b2b;
	--champ-accent: #5b9bd5; /* イメージカラー（ライトブルー） */
	--champ-line: #d8e3f0;
	--champ-radius: 10px;
}

* { box-sizing: border-box; }

body {
	margin: 0;
	color: var(--champ-fg);
	background: var(--champ-bg);
	font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
	line-height: 1.7;
}

a { color: var(--champ-accent); }

.container {
	max-width: 1080px;
	margin: 0 auto;
	padding: 32px 20px;
}

/* ===== ヘッダー ===== */
.site-header {
	background: #fff;
	border-bottom: 1px solid var(--champ-line);
}
.site-header__inner {
	max-width: 1080px;
	margin: 0 auto;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.site-brand { text-decoration: none; color: var(--champ-fg); }
.site-brand__logo { max-height: 48px; width: auto; display: block; }
.site-brand__name { font-size: 1.3rem; font-weight: 700; letter-spacing: .04em; }
.site-nav__list { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
.site-nav__list a { text-decoration: none; }

/* ===== 商品グリッド ===== */
.page-title {
	font-size: 1.6rem;
	border-left: 4px solid var(--champ-accent);
	padding-left: 12px;
	margin-bottom: 24px;
}
.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 24px;
}
.product-card { background: #fff; border: 1px solid var(--champ-line); border-radius: var(--champ-radius); overflow: hidden; }
.product-card__link { display: block; text-decoration: none; color: inherit; }
.product-card__thumb { position: relative; aspect-ratio: 4 / 3; background: #e8eef5; }
.product-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-card__noimg { width: 100%; height: 100%; }
.product-card__title { font-size: 1rem; margin: 12px 14px 4px; }
.product-card__price { margin: 0 14px 14px; font-weight: 700; color: var(--champ-accent); }

/* ===== 在庫バッジ ===== */
.champ-stock {
	position: absolute;
	top: 8px; left: 8px;
	padding: 3px 10px;
	border-radius: 999px;
	font-size: .75rem;
	font-weight: 700;
	color: #fff;
}
.champ-stock--in  { background: #3a8a4f; }
.champ-stock--low { background: #d08a1d; }
.champ-stock--out { background: #9aa0a6; }

/* ===== 商品詳細 ===== */
.product-single {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: start;
}
.product-single__media { position: relative; }
.product-single__media img { width: 100%; height: auto; border-radius: var(--champ-radius); }
.product-single__title { font-size: 1.8rem; margin: 0 0 12px; }
.product-single__price { font-size: 1.3rem; font-weight: 700; color: var(--champ-accent); }
.product-single__cats a { font-size: .85rem; }
.product-single__back { margin-top: 24px; }

/* ===== 価格表 ===== */
.pricelist__cat { font-size: 1.2rem; margin-top: 32px; }
.pricelist { width: 100%; border-collapse: collapse; background: #fff; }
.pricelist th, .pricelist td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--champ-line); }
.pricelist th { background: #eaf1f8; }

/* ===== フッター ===== */
.site-footer { background: #1f3247; color: #eee; margin-top: 48px; }
.site-footer__inner { max-width: 1080px; margin: 0 auto; padding: 32px 20px; }
.site-footer__name { font-size: 1.1rem; font-weight: 700; }
.site-footer__info, .site-footer__sns { list-style: none; padding: 0; margin: 8px 0; }
.site-footer__sns { display: flex; gap: 16px; }
.site-footer a { color: var(--champ-accent); }
.site-footer__copy { margin-top: 16px; font-size: .8rem; color: #aaa; }

/* ===== レスポンシブ ===== */
@media (max-width: 720px) {
	.product-single { grid-template-columns: 1fr; }
	.site-header__inner { flex-direction: column; gap: 12px; }
}

/* ===== ボタン ===== */
.btn { display: inline-block; text-decoration: none; padding: 12px 26px; border-radius: 999px; font-weight: 700; font-size: .95rem; transition: opacity .15s, background .15s; }
.btn--primary { background: var(--champ-accent); color: #fff; }
.btn--primary:hover { opacity: .9; }
.btn--ghost { border: 1px solid var(--champ-accent); color: var(--champ-accent); background: transparent; }
.btn--ghost:hover { background: var(--champ-accent); color: #fff; }

/* ===== ヒーロー ===== */
.hero {
	background: linear-gradient(180deg, #1f3247 0%, #2c4a66 100%);
	color: #fff;
	text-align: center;
}
.hero__inner { max-width: 760px; margin: 0 auto; padding: 80px 20px 72px; }
.hero__logo { max-height: 96px; width: auto; margin-bottom: 20px; }
.hero__name { font-size: 2.4rem; letter-spacing: .08em; margin: 0 0 14px; font-weight: 700; }
.hero__catch { font-size: 1.05rem; color: #e8e1d2; margin: 0 0 30px; }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__cta .btn--ghost { border-color: var(--champ-accent); color: var(--champ-accent); }
.hero__hours { margin-top: 26px; font-size: .9rem; color: #c9c1b0; }

/* ===== ホームの各セクション ===== */
.home-sec { padding: 8px 0 16px; }
.home-sec--alt { background: #fff; border-top: 1px solid var(--champ-line); border-bottom: 1px solid var(--champ-line); }
.home-sec__title { font-size: 1.5rem; text-align: center; margin: 36px 0 28px; position: relative; }
.home-sec__title::after { content: ""; display: block; width: 48px; height: 3px; background: var(--champ-accent); margin: 12px auto 0; border-radius: 2px; }
.home-sec__more { text-align: center; margin-top: 32px; }

/* product-card のタイトルが h3 でも崩れないように */
.product-card h3.product-card__title { font-size: 1rem; margin: 12px 14px 4px; }

/* ===== カテゴリ案内 ===== */
.cat-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.cat-list a { display: flex; justify-content: space-between; align-items: center; background: var(--champ-bg); border: 1px solid var(--champ-line); border-radius: var(--champ-radius); padding: 16px 18px; text-decoration: none; color: var(--champ-fg); transition: border-color .15s; }
.cat-list a:hover { border-color: var(--champ-accent); }
.cat-list__name { font-weight: 700; }
.cat-list__count { font-size: .8rem; color: #8a8275; }

/* ===== 営業案内・アクセス ===== */
.access { max-width: 680px; margin: 0 auto; }
.access__list { display: grid; grid-template-columns: 120px 1fr; gap: 12px 20px; margin: 0; }
.access__list dt { font-weight: 700; color: #6f685c; }
.access__list dd { margin: 0; }
.access__map { margin-left: 12px; font-size: .85rem; }
.access__sns { margin-top: 24px; display: flex; align-items: center; gap: 16px; }
.access__sns span { font-weight: 700; color: #6f685c; }

/* ===== 写真メニューページ ===== */
.menu-jump { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 28px; }
.menu-jump a { font-size: .85rem; text-decoration: none; border: 1px solid var(--champ-line); border-radius: 999px; padding: 6px 14px; color: var(--champ-fg); }
.menu-jump a:hover { border-color: var(--champ-accent); color: var(--champ-accent); }
.menu-cat { margin-bottom: 44px; scroll-margin-top: 20px; }
.menu-cat__title { font-size: 1.3rem; border-left: 4px solid var(--champ-accent); padding-left: 12px; margin-bottom: 20px; }
.menu-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.menu-item { display: flex; gap: 14px; background: #fff; border: 1px solid var(--champ-line); border-radius: var(--champ-radius); overflow: hidden; }
.menu-item__thumb { position: relative; flex: 0 0 110px; background: #e8eef5; }
.menu-item__thumb img { width: 110px; height: 100%; object-fit: cover; display: block; }
.menu-item__thumb .product-card__noimg { width: 110px; height: 100%; min-height: 110px; }
.menu-item__body { flex: 1; padding: 14px 14px 14px 0; min-width: 0; }
.menu-item__title { font-size: 1.05rem; margin: 0 0 6px; }
.menu-item__title a { text-decoration: none; color: inherit; }
.menu-item__desc { font-size: .85rem; color: #6f685c; margin: 0 0 8px; }
.menu-item__price { font-weight: 700; color: var(--champ-accent); margin: 0; }

@media (max-width: 720px) {
	.hero__name { font-size: 1.8rem; }
	.access__list { grid-template-columns: 90px 1fr; }
}
