/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { background: #FDF8F0; font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif; color: #3A2A20; }

/* ===== Section Wrapper ===== */
.sl-wrap { width: 100%; max-width: 1200px; margin: 0 auto; }

/* ===== Section Images ===== */
.sl-section-img { width: 100%; display: block; height: auto; }

/* ===== CTA Area ===== */
.sl-cta-area {
  background: #FFFFFF;
  padding: 36px 20px 40px;
  text-align: center;
}
.sl-cta-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #8B6A55;
  margin-bottom: 14px;
  font-family: 'Hiragino Mincho ProN', 'Yu Mincho', serif;
}
.sl-cta-btn {
  display: inline-block;
  padding: 18px 56px;
  background: linear-gradient(135deg, #D94F2B 0%, #F07A30 100%);
  color: #FFFFFF;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.08em;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(217,79,43,0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
  border: none;
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
}
.sl-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(217,79,43,0.42);
}
.sl-cta-sub {
  margin-top: 12px;
  font-size: 12px;
  color: #A08070;
  letter-spacing: 0.06em;
}

/* ===== Coupon Code Copy Button ===== */
.sl-coupon-area {
  background: #FDF8F0;
  padding: 28px 20px 32px;
  text-align: center;
}
.sl-coupon-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 44px;
  background: linear-gradient(135deg, #F07A30 0%, #D94F2B 100%);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.07em;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(240,122,48,0.38);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
}
.sl-coupon-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240,122,48,0.45);
}
.sl-coupon-icon { font-size: 18px; }
.sl-coupon-toast {
  display: none;
  margin-top: 12px;
  font-size: 13px;
  color: #C9A84C;
  font-weight: bold;
  letter-spacing: 0.06em;
}
.sl-coupon-toast.show { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

/* ===== FAQ Section ===== */
.sl-faq-area {
  background: #FFFFFF;
  padding: 52px 20px 60px;
  max-width: 800px;
  margin: 0 auto;
}
.sl-faq-title {
  text-align: center;
  font-size: 22px;
  font-family: 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #3A2A20;
  margin-bottom: 36px;
  position: relative;
}
.sl-faq-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #C9A84C, #F07A30);
  margin: 12px auto 0;
  border-radius: 2px;
}
.sl-faq-item {
  border-bottom: 1px solid #E8DDD5;
  overflow: hidden;
}
.sl-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 16px 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: bold;
  color: #3A2A20;
  letter-spacing: 0.05em;
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
  transition: color 0.15s;
}
.sl-faq-q:hover { color: #C9A84C; }
.sl-faq-q-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.sl-faq-q-label::before {
  content: 'Q';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A84C, #E8C87A);
  color: #3A2A20;
  font-size: 13px;
  font-weight: bold;
  flex-shrink: 0;
}
.sl-faq-icon {
  font-size: 20px;
  color: #C9A84C;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  font-style: normal;
}
.sl-faq-item.open .sl-faq-icon { transform: rotate(45deg); }
.sl-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 14px;
  color: #6B4F3F;
  line-height: 1.85;
  letter-spacing: 0.04em;
  padding: 0 16px 0 36px;
}
.sl-faq-item.open .sl-faq-a {
  max-height: 300px;
  padding: 4px 16px 20px 36px;
}

/* ===== Divider ===== */
.sl-divider {
  width: 100%;
  height: 32px;
  background: #FDF8F0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .sl-cta-btn { font-size: 16px; padding: 16px 36px; }
  .sl-coupon-btn { font-size: 14px; padding: 14px 28px; }
  .sl-faq-title { font-size: 18px; }
  .sl-faq-q { font-size: 14px; }
}