/* =====================
   スライドショー
   ===================== */

/* スライドショー全体 */
.slideshow {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

/* 各スライド */
.slide {
  display: none;
  width: 100%;
  height: 100%;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ドット */
.slide-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccccee;
  cursor: pointer;
  transition: background 0.2s;
}

.dot.active {
  background: #000096;
}

/* =====================
   メインコンテンツ
   ===================== */

.main-inner {
  width: 800px;
  margin: 0 auto;
  background: #fff;
}

.sections {
  padding: 40px 20px;
}

.section-item {
  border-bottom: 1px solid #eeeeee;
  padding: 28px 0;
}

.section-item:last-child {
  border-bottom: none;
}

.section-title {
  font-size: 18px;
  font-weight: 700;
  color: #000096;
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 4px solid #000096;
}

.news-date {
  font-size: 12px;
  color: #999;
  margin-bottom: 6px;
}

.section-text {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

.shop-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.section-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: #000096;
  text-decoration: none;
  border-bottom: 1px solid #000096;
  padding-bottom: 1px;
}

.section-link:hover {
  opacity: 0.7;
}