/* ===================== リセット・基本 ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  background: #f7f5f0;
  color: #333;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

/* ===================== ヘッダー ===================== */
header {
  background: #1a2f4a;
  color: #fff;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.header-logo h1 {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

.header-logo p {
  font-size: 0.8rem;
  color: #c8c4b0;
  margin-top: 2px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

nav a {
  font-size: 0.9rem;
  color: #e0ddd0;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

nav a:hover { border-color: #e07b2a; }

/* ===================== ヒーロー ===================== */
.hero {
  position: relative;
  overflow: hidden;
  max-height: 420px;
}

.hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  filter: brightness(0.55);
}

.hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 24px;
}

.hero-text h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}

.hero-text p {
  font-size: 1rem;
  color: #e8f0d8;
  text-shadow: 0 1px 3px rgba(0,0,0,.6);
}

/* ===================== セクション共通 ===================== */
section {
  max-width: 860px;
  margin: 0 auto;
  padding: 52px 24px;
}

section + section {
  border-top: 1px solid #ddd8cc;
}

.section-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #1a2f4a;
  border-left: 5px solid #e07b2a;
  padding-left: 12px;
  margin-bottom: 28px;
}

/* ===================== 店舗情報 ===================== */
.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}

.info-table th {
  width: 130px;
  color: #666;
  font-weight: normal;
  white-space: nowrap;
}

.info-table tr {
  border-bottom: 1px solid #e8e4da;
}

/* ===================== 店舗情報レイアウト ===================== */
.about-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.about-img {
  width: 340px;
  flex-shrink: 0;
  border-radius: 6px;
  object-fit: cover;
}

/* ===================== 商品 ===================== */
.product-block {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 48px;
}

.product-block.reverse {
  flex-direction: row-reverse;
}

.product-photos {
  flex: 1;
  min-width: 0;
}

.product-photos > img:first-child {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  max-height: 280px;
}

.product-sub-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.product-sub-photos img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
}

.product-desc {
  flex: 1;
  padding-top: 8px;
}

.product-desc h3 {
  font-size: 1.2rem;
  color: #1a2f4a;
  border-left: 4px solid #e07b2a;
  padding-left: 10px;
  margin-bottom: 12px;
}

.product-desc p {
  font-size: 0.95rem;
  color: #555;
}

/* ===================== 配達サービス ===================== */
.delivery-box {
  display: flex;
  gap: 32px;
  align-items: center;
}

.delivery-text {
  flex: 1;
}

.delivery-text h3 {
  font-size: 1.2rem;
  color: #1a2f4a;
  border-left: 4px solid #e07b2a;
  padding-left: 10px;
  margin-bottom: 12px;
}

.delivery-text p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 8px;
}

.delivery-tel a {
  font-size: 1.4rem;
  font-weight: bold;
  color: #e07b2a;
}

.delivery-photo-placeholder {
  flex: 1;
  background: #e8e4da;
  border: 2px dashed #bbb;
  border-radius: 6px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 600px) {
  .delivery-box { flex-direction: column; }
  .delivery-photo-placeholder { width: 100%; }
}

/* ===================== お知らせ ===================== */
#notice-list {
  list-style: none;
}

#notice-list li {
  background: #fff;
  border-left: 4px solid #e07b2a;
  padding: 14px 18px;
  margin-bottom: 14px;
  border-radius: 0 4px 4px 0;
}

.notice-date {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 4px;
}

.notice-title {
  font-weight: bold;
  margin-bottom: 4px;
}

.notice-content {
  font-size: 0.9rem;
  color: #555;
}

/* ===================== フッター ===================== */
footer {
  background: #1a2f4a;
  color: #c8c4b0;
  text-align: center;
  padding: 24px;
  font-size: 0.8rem;
  margin-top: 40px;
}

/* ===================== スマホ対応 ===================== */
@media (max-width: 600px) {
  .hero img { height: 260px; }
  .hero-text h2 { font-size: 1.3rem; }
  nav ul { gap: 16px; }
  .info-table th { width: 90px; }
  .about-inner { flex-direction: column; }
  .about-img { width: 100%; }
  .product-block,
  .product-block.reverse { flex-direction: column; }
}
