
/* ------------------------------------
   全体
--------------------------------Feb,8,26 */

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  color: #333;
  background: #f5f5f5;
  margin: 0;
  padding: 0;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
}

/* ------------------------------------
   色テーマ（赤系）
------------------------------------ */
:root {
  --main-color: #b40000;
  --accent-color: #e60023;
  --light-bg: #fff5f5;
  --border-color: #d9d9d9;
}

/* ------------------------------------
   ヘッダー
------------------------------------ */
.site-header {
  background: #ffffff;
  border-bottom: 4px solid var(--main-color);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 55px;
}

/* ナビゲーション */
.main-nav ul {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--main-color);
  font-weight: bold;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--accent-color);
}

/* ------------------------------------
   HERO（メインビジュアル）
------------------------------------ */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* HERO テキスト（2段） */
.header-text {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.05em;
  background: rgba(0, 0, 0, 0.35);
  padding: 12px 24px;
  border-radius: 6px;
}

.intro ul {
  padding-left: 20px;
}
 
/* ------------------------------------
   見出し
------------------------------------ */
h1 {
  font-size: 1.9rem;
  color: var(--main-color);
}

h2 {
  font-size: 1.6rem;
  border-left: 6px solid var(--main-color);
  padding-left: 10px;
  margin-top: 20px;
}

h3 {
  font-size: 1.3rem;
  margin-top: 10px;
  color: var(--main-color);
}

/* ------------------------------------
   商品セクション（EC風）
------------------------------------ */
.product {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  padding: 20px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.product_image img {
  width: 260px;
  border-radius: 4px;
}

.product_detail {
  flex: 1;
}

.product_price-main {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--accent-color);
}

.product_price-sub {
  margin-left: 10px;
  color: #555;
}

.product_price-note {
  display: block;
  font-size: 1rem;
  color: #555;
}

/* ------------------------------------
   注文ブロック
------------------------------------ */
.order_block {
  background: #fff;
  border-left: 6px solid var(--main-color);
  padding: 18px 20px;
  margin: 20px 0;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.order_block a {
  color: var(--accent-color);
  font-weight: bold;
}

/* ------------------------------------
   散布ブロック
------------------------------------ */
.sanpu_block {
  background: #fff;
  border-left: 6px solid var(--main-color);
  padding: 18px 20px;
  margin: 20px 0;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.sanpu_block a {
  color: var(--accent-color);
  font-weight: bold;
}


/* ------------------------------------
   散布画像
------------------------------------ */
.sanpu {
  position: relative;
  width: 100%;
  margin: 10px 0;
}

.sanpu img {
  width: 100%;
  height: auto;
  display: block;
}

.sanpu-caption {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  background: rgba(0,0,0,0.45);
  padding: 10px 20px;
  border-radius: 6px;
  text-shadow: 0 0 6px rgba(0,0,0,0.7);
}

/* ------------------------------------
   販売者情報
------------------------------------ */
.shop-info {
  background: #fff;
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
}

/* ------------------------------------
   休業日
------------------------------------ */

/* ------------------------------------
.holiday_list {
  list-style: none;
  padding: 0;
}

.holiday_list li {
  margin: 8px 0;
  padding: 8px;
  background: #fff0f0;
  border-left: 4px solid var(--main-color);
}
------------------------------------ */


.holiday {
  background: #fff;
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
}


/* ------------------------------------
   フッター
------------------------------------ */
.site-footer {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  background: var(--main-color);
  color: #fff;
}

/* ------------------------------------
   汎用ボタン
------------------------------------ */
.btn {
  display: inline-block;
  padding: 10px 18px;
  background: var(--main-color);
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

.btn:hover {
  background: var(--accent-color);
}

/* ------------------------------------
   テーブル
------------------------------------ */
.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.table th,
.table td {
  border: 1px solid var(--border-color);
  padding: 10px;
}

.table th {
  background: var(--light-bg);
  color: var(--main-color);
}

/* ------------------------------------
   お問い合わせフォーム
------------------------------------ */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
}

.form-group textarea {
  height: 140px;
}

/* ------------------------------------
   カードレイアウト
------------------------------------ */
.card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.card img {
  width: 100%;
  border-radius: 4px;
}

/* ------------------------------------
   📱 スマホ最適化（レスポンシブ）
------------------------------------ */
@media (max-width: 900px) {
  .card-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav ul {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
  }

  .product {
    flex-direction: column;
    text-align: center;
  }

  .product__image img {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }

  .header-text {
    font-size: 1.8rem;
    padding: 10px 18px;
  }

  .card-list {
    grid-template-columns: 1fr;
  }

  main {
    padding: 15px;
  }
}

@media (max-width: 480px) {

  h1 {
    font-size: 1.6rem;
  }

  .product__price-main {
    font-size: 1.8rem;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 6px;
  }

  .header-text {
    font-size: 1.6rem;
  }
}

