@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;600;800&family=Noto+Sans+JP:wght@400;700&display=swap');
:root {
  --shoto-tokiwa: #2B6245;
  --shoto-ruri: #1A3A8F;
  --shoto-gold: #C9A84C;
  --shoto-gold-light: #F0D080;
  --shoto-bg-main: #ffffff;
  --shoto-bg-mid: #f0f0f0;
  --shoto-text-dark: #0a3d3b;
}
.shoto-banner {
  position: relative;
  width: 100%;
  background: linear-gradient(120deg, var(--shoto-bg-main) 0%, var(--shoto-bg-mid) 50%, var(--shoto-bg-main) 100%);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  overflow: hidden;
}
.shoto-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--shoto-gold) 20%, var(--shoto-gold-light) 50%, var(--shoto-gold) 80%, transparent 100%);
}
.shoto-banner--hidden { display: none; }
.shoto-banner__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 980px;
  padding: 0 80px;
}
.shoto-banner__image { flex-shrink: 0; width: 100px; height: 100px; }
.shoto-banner__image img { width: 100%; height: 100%; object-fit: contain; }
.shoto-banner__content { display: flex; align-items: center; gap: 16px; flex: 1; flex-wrap: wrap; }
.shoto-banner__label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--shoto-tokiwa);
  background: var(--shoto-gold);
  padding: 3px 8px;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  margin: 0;
}
.shoto-banner__text {
  font-family: 'Shippori Mincho', serif;
  color: var(--shoto-text-dark);
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
  white-space: nowrap;
}
.shoto-banner__title { font-size: 22px; font-weight: 800; color: var(--shoto-tokiwa); letter-spacing: 0.05em; }
.shoto-banner__subtitle { font-size: 18px; color: var(--shoto-ruri); margin-left: 4px; }
.shoto-banner__button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--shoto-tokiwa);
  background: linear-gradient(135deg, var(--shoto-gold-light), var(--shoto-gold));
  border: none;
  border-radius: 3px;
  padding: 12px 28px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
}
.shoto-banner__button:hover { transform: translateY(-1px); color: var(--shoto-tokiwa); text-decoration: none; }
.shoto-banner__close { display: none; }
@media (max-width: 767px) {
  .shoto-banner__inner { flex-wrap: wrap; justify-content: center; gap: 8px; padding: 0 16px; }
  .shoto-banner__image { width: 60px; height: 60px; }
  .shoto-banner__content { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .shoto-banner__text { white-space: normal; text-align: center; font-size: 14px; }
  .shoto-banner__title { font-size: 16px; }
  .shoto-banner__button { font-size: 14px; padding: 10px 20px; }
}
