/* ==========================================================================
   バッジ装飾 (追加分)
   ========================================================================== */

/* 完全予約制バッジ（赤系） */
.badge-required {
  display: inline-block;
  background-color: #e53e3e;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0.02em;
}

/* 予約不要バッジ（緑系） */
.badge-free {
  display: inline-block;
  background-color: #38a169;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0.02em;
}
.info-note {
    font-size: 0.88rem;
    /*color: #666666;*/
    margin-bottom: 15px;
    background-color: #faf7f2;
    padding: 12px 15px;
    border-radius: 6px;
    border-left: 3px solid #a37d4c;
    line-height: 1.6;
}


/* ==========================================================================
   店舗情報カード（全体＆レスポンシブ）
   ========================================================================== */

/* 2列カードグリッド */
.info-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

/* カード共通 */
.info-card {
  background-color: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

/* カードタイトル */
.info-card .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2d3748;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e2e8f0;
}

/* 営業時間リスト (dl / dt / dd) */
.time-list {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 12px;
  column-gap: 16px;
  align-items: center;
  margin: 0 0 20px 0;
}

.time-list dt {
  font-weight: 700;
  color: #4a5568;
  white-space: nowrap;
}

.time-list dd {
  margin: 0;
  color: #2d3748;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

/* 補足注記 & 定休日 */
.info-note {
  font-size: 0.875rem;
  color: #718096;
  margin-bottom: 16px;
  line-height: 1.5;
}

.info-note p {
  margin: 4px 0;
}

.closed-days {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed #e2e8f0;
  font-size: 0.95rem;
  color: #2d3748;
}

.closed-days p {
  margin: 0;
}

/* 愛犬同伴規約リスト & 注意書き */
.rule-list {
  padding-left: 20px;
  margin: 0 0 20px 0;
  color: #4a5568;
  line-height: 1.6;
}

.rule-list li {
  margin-bottom: 10px;
}

.rule-list a {
  color: #3182ce;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.rule-list a:hover {
  color: #2b6cb0;
  text-decoration: underline;
}

.dog-management-notice {
  background-color: #fff5f5;
  border-left: 4px solid #e53e3e;
  padding: 16px;
  border-radius: 0 6px 6px 0;
  margin-top: auto;
}

.dog-management-notice .notice-title {
  font-weight: 700;
  color: #c53030;
  margin: 0 0 8px 0;
  font-size: 0.95rem;
}

.dog-management-notice p {
  margin: 0;
  font-size: 0.875rem;
  color: #742a2a;
  line-height: 1.6;
}

/* モバイル対応 (768px以下) */
@media (max-width: 768px) {
  .info-card-grid {
    grid-template-columns: 1fr;
  }
  
  .time-list {
    grid-template-columns: 1fr;
    row-gap: 4px;
  }
  
  .time-list dd {
    margin-bottom: 12px;
  }
}
/**information**/
.shop-info-section {
    padding: 100px 0;
    background-color: #faf7f2;
}
.container{
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-title{
	font-size:1.5rem;
	margin-bottom:30px;
	text-align: center;
}

        /* Fair Section */
        .fair-section {
            padding: 70px 0;
            background: linear-gradient(to bottom, #f5efe6, var(--bg-cream));
        }

        .fair-card {
            background: #fff;
            border: 2px solid var(--accent-light);
            border-radius: 12px;
            padding: 40px 30px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.05);
        }

        .fair-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .fair-tag {
            color: var(--accent-color);
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.1em;
            display: block;
            margin-bottom: 5px;
        }

        .fair-title {
            font-size: 1.8rem;
            color: var(--primary-color);
        }

        .fair-schedule {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }

        .schedule-item {
            flex: 1 1 200px;
            background: var(--bg-cream);
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--border-color);
        }

        .schedule-item .month {
            font-size: 0.9rem;
            color: var(--accent-color);
            font-weight: 600;
        }

        .schedule-item .item-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 5px 0;
        }

        .schedule-item .date {
            font-size: 0.95rem;
            color: var(--text-muted);
        }

	/* フェア写真の表示スタイル */
	.schedule-img {
	    width: 100%;
	    height: 140px; /* 画像の高さを統一 */
	    margin: 12px 0;
	    overflow: hidden;
	    border-radius: 6px;
	}

	.schedule-img img {
	    width: auto;
	    height: 100%;
	    object-fit: cover; /* 枠いっぱいに綺麗に収める */
	    display: block;
	    margin: 0 auto;
	}

	.fair-present {
	    background: #fcf8f2;
	    border: 1px dashed var(--accent-color);
	    padding: 20px 25px;
	    border-radius: 8px;
	    margin-top: 25px;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    gap: 20px;
	}

	/* ポン酢画像の調整 */
	.fair-present-img {
	    flex: 0 0 50px; /* 画像の幅 */
	    height: 100px;   /* 画像の高さ */
	    border-radius: 6px;
	    overflow: hidden;
	}

	.fair-present-img img {
	    width: auto;
	    height: 100%;
	    object-fit: cover;
	    display: block;
	}

	.fair-present-text {
	    text-align: left;
	}

	.fair-present-text h4 {
	    color: var(--accent-color);
	    font-size: 1.1rem;
	    margin-bottom: 5px;
	}


	/* スマホ表示（画面幅が狭いとき）のレイアウト調整 */
	@media (max-width: 600px) {
	    .fair-present {
	        flex-direction: column;
	        text-align: center;
	    }
	    .fair-present-text {
	        text-align: center;
	    }
	}

        .fair-present h4 {
            color: var(--accent-color);
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
