.vc-cal {
  --accent: #ec4899;
  --accent-ink: #db2777;
  --accent-weak: #fce7f3;
  --accent-soft: #fdf2f8;
  --surface: #ffffff;
  --surface-2: #f7fafc;
  --surface-3: #edf2f7;
  --border: #edf2f7;
  --border-strong: #e2e8f0;
  --ink: #1a202c;
  --ink-2: #2d3748;
  --muted: #4a5568;
  --faint: #718096;
  --sat: #2563eb;
  --sun: #dc2626;
  --r-md: 14px;
  --shadow-lg: 0 22px 56px rgba(26, 32, 44, 0.2);
  --sans: 'Inter', 'Noto Sans JP', system-ui, -apple-system, sans-serif;
  --serif: 'Inter', 'Noto Sans JP', system-ui, sans-serif;
  --pad: 18px;
  width: 432px;
  max-width: 100%;
  margin: 0 auto;
  font-family: var(--sans);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
.vc-cal * {
  box-sizing: border-box;
}
.vc-cal .hero {
  padding: 24px var(--pad);
  color: var(--ink);
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.vc-cal .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--accent);
}
.vc-cal .hero-kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
}
.vc-cal .hero-title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.18;
  margin-top: 16px;
  letter-spacing: -0.01em;
}
.vc-cal .hero-sub {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.8;
  max-width: 27ch;
  letter-spacing: 0.02em;
}
.vc-cal .control {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 11px var(--pad);
}
.vc-cal .mrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.vc-cal .mnav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.vc-cal .mnav a {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 0;
  background: transparent;
  color: var(--ink-2);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.13s;
}
.vc-cal .mnav a:hover {
  background: var(--surface-3);
}
.vc-cal .mnav a svg {
  width: 16px;
  height: 16px;
}
.vc-cal .mtitle {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  min-width: 96px;
  text-align: center;
}
.vc-cal .mtitle .yr {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--faint);
  display: block;
}
.vc-cal .chips {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 13px var(--pad) 3px;
  margin: 0 calc(-1 * var(--pad));
  scrollbar-width: none;
}
.vc-cal .chips::-webkit-scrollbar {
  display: none;
}
.vc-cal .chip {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--faint);
  background: transparent;
  border: 0;
  padding: 4px 0;
  cursor: pointer;
  transition: color 0.14s;
  white-space: nowrap;
}
.vc-cal .chip .cdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0.4;
  transition: all 0.14s;
}
.vc-cal .chip[data-on=true] {
  color: var(--ink);
}
.vc-cal .chip[data-on=true] .cdot {
  opacity: 1;
}
.vc-cal .body {
  padding: 14px var(--pad) 8px;
}
.vc-cal .section {
  padding: 8px 0 6px;
}
.vc-cal .slabel {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink);
  text-transform: uppercase;
  margin: 6px 0 13px;
}
.vc-cal .slabel .jp {
  letter-spacing: 0.04em;
}
.vc-cal .slabel .count {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--faint);
  letter-spacing: 0.06em;
}
.vc-cal .slabel .ln {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.vc-cal .season {
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.vc-cal .season.dry {
  --sea: #b07a2a;
}
.vc-cal .season.wet {
  --sea: #3a6a9c;
}
.vc-cal .season-top {
  display: flex;
  align-items: center;
  gap: 13px;
}
.vc-cal .season-ic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  color: var(--sea);
  display: grid;
  place-items: center;
  flex: none;
}
.vc-cal .season-ic svg {
  width: 21px;
  height: 21px;
}
.vc-cal .season-tt {
  flex: 1;
  min-width: 0;
}
.vc-cal .season-tt .sname {
  font-size: 17px;
  font-weight: 700;
  font-family: var(--serif);
  color: var(--ink);
}
.vc-cal .season-tt .smeta {
  display: flex;
  gap: 14px;
  margin-top: 4px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.vc-cal .season-tt .smeta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.vc-cal .season-tt .smeta svg {
  width: 12px;
  height: 12px;
  color: var(--sea);
}
.vc-cal .season-desc {
  font-size: 12px;
  line-height: 1.85;
  margin-top: 13px;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}
.vc-cal .mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 18px;
}
.vc-cal .mini .mh {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--faint);
  text-transform: uppercase;
}
.vc-cal .mini .mh .ic {
  width: 20px;
  height: 20px;
  color: var(--accent);
  display: grid;
  place-items: center;
  flex: none;
}
.vc-cal .mini .mh .ic svg {
  width: 15px;
  height: 15px;
}
.vc-cal .mini ul {
  margin: 11px 0 0;
  padding: 0;
  list-style: none;
}
.vc-cal .mini li {
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.4;
  padding: 7px 0;
  border-top: 1px solid var(--border);
}
.vc-cal .mini li:first-child {
  border-top: 0;
}
.vc-cal .dow-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}
.vc-cal .dow {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  padding: 4px 0;
}
.vc-cal .dow[data-d="6"] {
  color: var(--sat);
}
.vc-cal .dow[data-d="0"] {
  color: var(--sun);
}
.vc-cal .grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.vc-cal .cell {
  aspect-ratio: 1/1.12;
  border-radius: 9px;
  padding: 6px 4px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: background 0.12s;
  text-align: center;
  font-family: inherit;
}
.vc-cal .cell:hover {
  background: var(--surface-2);
}
.vc-cal .cell:disabled {
  cursor: default;
}
.vc-cal .cell:disabled:hover {
  background: transparent;
}
.vc-cal .cell .dnum {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.vc-cal .cell[data-d="6"] .dnum {
  color: var(--sat);
}
.vc-cal .cell[data-d="0"] .dnum {
  color: var(--sun);
}
.vc-cal .cell.today .dnum {
  color: #fff;
  background: var(--accent);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.vc-cal .cell.major .dnum {
  font-weight: 800;
  color: var(--accent-ink);
}
.vc-cal .cell .dots {
  display: flex;
  gap: 3px;
  margin-top: auto;
  min-height: 5px;
}
.vc-cal .cell .cdot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.vc-cal .grid-hint {
  font-size: 10px;
  color: var(--faint);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.06em;
}
.vc-cal .timeline {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.vc-cal .tl-day {
  display: flex;
  gap: 12px;
}
.vc-cal .tl-date {
  flex: none;
  width: 50px;
  text-align: center;
  padding-top: 3px;
}
.vc-cal .tl-date .dn {
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  font-family: var(--serif);
}
.vc-cal .tl-date .dw {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--muted);
  margin-top: 3px;
}
.vc-cal .tl-date[data-d="6"] .dn, .vc-cal .tl-date[data-d="6"] .dw {
  color: var(--sat);
}
.vc-cal .tl-date[data-d="0"] .dn, .vc-cal .tl-date[data-d="0"] .dw {
  color: var(--sun);
}
.vc-cal .tl-date.today .dn {
  background: var(--accent);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.vc-cal .tl-rows {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding-bottom: 4px;
}
.vc-cal .ev {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0 14px;
  border: 0;
  border-bottom: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  width: 100%;
  transition: opacity 0.12s;
}
.vc-cal .tl-rows .ev:last-child {
  border-bottom: 0;
}
.vc-cal .ev:hover {
  opacity: 0.62;
}
.vc-cal .ev .eb {
  flex: 1;
  min-width: 0;
}
.vc-cal .ev .eb .etop {
  display: flex;
  align-items: center;
  gap: 9px;
}
.vc-cal .ev .eb .ecat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.vc-cal .ev .eb .ecat .edot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex: none;
}
.vc-cal .ev .eb .emaj {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-ink);
  border: 1px solid var(--accent);
  border-radius: 99px;
  padding: 1px 8px;
}
.vc-cal .ev .eb .et {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 8px;
}
.vc-cal .ev .eb .ed {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vc-cal .ev .eb .eplace {
  font-size: 10.5px;
  color: var(--ink-2);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.vc-cal .ev .eb .eplace svg {
  width: 12px;
  height: 12px;
  color: var(--faint);
}
.vc-cal .tl-empty {
  text-align: center;
  color: var(--faint);
  font-size: 12.5px;
  font-weight: 600;
  padding: 26px 0;
}
.vc-cal .consult {
  background: var(--ink);
  border-radius: var(--r-md);
  padding: 22px var(--pad);
  color: #f3eee6;
  margin-top: 10px;
}
.vc-cal .consult h3 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vc-cal .consult h3 svg {
  width: 17px;
  height: 17px;
  color: var(--accent);
}
.vc-cal .consult p {
  margin: 0 0 16px;
  font-size: 11.5px;
  line-height: 1.75;
  opacity: 0.72;
  letter-spacing: 0.01em;
}
.vc-cal .consult-btn {
  width: 100%;
  height: 46px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.14s;
  text-decoration: none;
}
.vc-cal .consult-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.vc-cal .consult-btn svg {
  width: 16px;
  height: 16px;
}
.vc-cal .footer {
  padding: 20px var(--pad) 26px;
  text-align: center;
  color: var(--faint);
  font-size: 10.5px;
  line-height: 1.7;
}
.vc-cal .footer .logo {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 6px;
}

.vc-cal .sheet-mask {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(28, 22, 18, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s;
}

.vc-cal .sheet-mask[data-show=true] {
  opacity: 1;
  pointer-events: auto;
}

.vc-cal .dsheet {
  position: fixed;
  left: 50%;
  bottom: 0;
  width: 432px;
  max-width: 100%;
  transform: translateX(-50%) translateY(102%);
  z-index: 1051;
  background: #fff;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -18px 44px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  max-height: 82vh;
  display: flex;
  flex-direction: column;
}

.vc-cal .dsheet[data-show=true] {
  transform: translateX(-50%) translateY(0);
}

.vc-cal .dsheet .grab {
  width: 42px;
  height: 5px;
  border-radius: 99px;
  background: #e2e8f0;
  margin: 9px auto 2px;
  flex: none;
}

.vc-cal .dsheet-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 99px;
  background: #f7fafc;
  color: #4a5568;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.vc-cal .dsheet-close:hover {
  background: #edf2f7;
  color: #ec4899;
}

.vc-cal .dsheet-close:focus-visible {
  outline: 2px solid #ec4899;
  outline-offset: 2px;
}

.vc-cal .dsheet-close svg {
  width: 20px;
  height: 20px;
}

.vc-cal .dsheet-head {
  padding: 8px 44px 12px 18px;
  border-bottom: 1px solid #edf2f7;
}

.vc-cal .dsheet-date {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.vc-cal .dsheet-date .dw {
  font-size: 12px;
  font-weight: 700;
  color: #4a5568;
}

.vc-cal .dsheet-date .dw.sat {
  color: #2563eb;
}

.vc-cal .dsheet-date .dw.sun {
  color: #dc2626;
}

.vc-cal .dsheet-season {
  font-size: 11.5px;
  color: #4a5568;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.vc-cal .dsheet-season svg {
  width: 13px;
  height: 13px;
  color: #ec4899;
}

.vc-cal .dsheet-body {
  overflow-y: auto;
  padding: 14px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.vc-cal .d-ev {
  border: 1px solid #edf2f7;
  border-left-width: 4px;
  border-radius: 14px;
  padding: 13px 14px;
}

.vc-cal a.d-ev {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.15s, border-color 0.15s;
}

.vc-cal a.d-ev:hover {
  color: inherit;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e0;
}

.vc-cal a.d-ev:hover .dt {
  color: #db2777;
}

.vc-cal .d-ev .dtop {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.vc-cal .d-ev .dcat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 99px;
}

.vc-cal .d-ev .dcat svg {
  width: 12px;
  height: 12px;
}

.vc-cal .d-ev .dmaj {
  font-size: 9.5px;
  font-weight: 800;
  color: #fff;
  background: #ec4899;
  border-radius: 99px;
  padding: 3px 9px;
}

.vc-cal .d-ev .dt {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.vc-cal .d-ev .dd {
  font-size: 12.5px;
  line-height: 1.7;
  color: #2d3748;
  margin-top: 7px;
}

.vc-cal .d-ev .dplace {
  font-size: 11.5px;
  color: #db2777;
  font-weight: 700;
  margin-top: 9px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.vc-cal .d-ev .dplace svg {
  width: 13px;
  height: 13px;
}

.vc-cal .d-ev .drange {
  font-size: 11px;
  color: #4a5568;
  font-weight: 600;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.vc-cal .d-ev .drange svg {
  width: 12px;
  height: 12px;
}

.vc-cal .d-empty {
  text-align: center;
  color: #718096;
  font-size: 12.5px;
  padding: 22px 0;
}
