:root {
  --primary: #008D97;
  --secondary: #00CC99;
  --accent: #F98938;
  --text: #222229;
  --bg: #EDF7F8;
  --card: #FFFFFF;
  --soft: #EDF7F8;
}

body {
  font-family: sans-serif;
  margin: 0;
  background: var(--bg);
}

/* ===== タイトル（ロゴのみ） ===== */
.title {
  text-align: center;
  margin-top: 40px;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.brand {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 🔥 ロゴを大きく */
.logo {
  width: 140px;   /* ← 好きに調整OK（120〜180pxくらいが良い） */
  height: auto;
  object-fit: contain;
}

.subtitle {
  font-size: 18px;
  color: #666;
  margin-top: 4px;
}
/* ============================ */

.nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 20px;
}

.nav button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}

.nav button:hover {
  background: var(--secondary);
}

.calendar-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 10px;
}

.day {
  background: var(--card);
  border-radius: 12px;
  padding: 8px;
  min-height: 140px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* 今日 */
.day.today {
  border: 2px solid var(--primary);
}

/* 土日 */
.day.sun {
  background: #ffe5e5;
}

.day.sat {
  background: #e5edff;
}

/* 祝日 */
.day.holiday {
  background: var(--soft) !important;
}

/* 日付 */
.day-number {
  font-weight: bold;
}

/* ラベル */
.holiday-label {
  font-size: 10px;
  color: var(--primary);
}

/* イベントカード */
.event {
  background: var(--soft);
  border-radius: 8px;
  padding: 6px;
  margin-top: 6px;
  font-size: 12px;
  transition: 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
}

.event:hover {
  transform: translateY(-2px);
}

/* ===== 緑ラインを消す（見切れなし） ===== */
.event img {
  width: 100%;
  border-radius: 6px;
  display: block;
  padding-left: 8px;
  background: var(--soft);
  box-sizing: border-box;
}
/* ================================ */

.event a {
  text-decoration: none;
  color: var(--text);
  font-weight: bold;
}

.event-author a {
  color: var(--primary);
}

.more {
  color: var(--primary);
  font-size: 12px;
}
