body {
  background-color: #fffdf7;
  color: #444;
  font-family: 'Hiragino Maru Gothic ProN', 'Yu Gothic UI', sans-serif;
  line-height: 1.8;
  margin: 40px;
}

h1 {
  color: #ff8364;
  font-size: 2.2em;
  border-bottom: 3px solid #ffbda9;
  padding-bottom: 10px;
}

h2 {
  color: #70c1b3;
  margin-top: 30px;
}

a {
  color: #ff8364;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
  color: #f95f50;
}

ul {
  list-style: none;
  padding: 0;
}

li::before {
  content: "● ";
  color: #70c1b3;
}

footer {
  margin-top: 40px;
  font-size: 0.9em;
  color: #999;
  text-align: center;
} 
header {
    background-image: url('header-image.png');
    background-size: cover;  /* 画像をヘッダーにフィットさせる */
    background-position: center;  /* 画像の中心を表示 */
    width: 100%;
    height: 650px;  /* 必要に応じて高さを設定 */
}

@media (max-width: 768px) {
    header {
        background-size: cover;
        height: 300px;
    }
}
body {
  font-family: Arial, sans-serif;
  font-size: 18px; /* デフォルトの文字サイズ */
}

/* スマホの場合（画面幅が600px以下） */
@media screen and (max-width: 600px) {
  body {
    font-size: 16px; /* スマホ用の文字サイズ */
  }
}

/* タブレットやPCの場合（画面幅が601px以上） */
@media screen and (min-width: 601px) {
  body {
    font-size: 20px; /* タブレットやPC用の文字サイズ */
  }
}
p {
  line-height: 1.8;
  margin-bottom: 1em;
}

/* チャットの全体枠 */
.chat {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

/* 右側のチャット（反転） */
.chat.right {
  flex-direction: row-reverse;
}

/* アイコン画像 */
.icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

/* 吹き出し本体 */
.bubble {
  position: relative;
  background: #f0f0f0;
  padding: 10px 15px;
  border-radius: 10px;
  margin: 0 10px;
  max-width: 70%;
  line-height: 1.4;
  font-size: 16px;
}

/* 左向き三角 */
.chat.left .bubble::before {
  content: "";
  position: absolute;
  top: 15px;
  left: -10px;
  border: 10px solid transparent;
  border-right-color: #f0f0f0;
}

/* 右側用の色 */
.chat.right .bubble {
  background: #e0f7ff;
}

/* 右向き三角 */
.chat.right .bubble::before {
  content: "";
  position: absolute;
  top: 15px;
  right: -10px;
  border: 10px solid transparent;
  border-left-color: #e0f7ff;
}
.calendar-table td {
  background: #fff;
  /* color はここでは消しておくか、より弱くする */
}

.calendar-table td.sunday {
  color: #ff6b6b !important;
  font-weight: bold;
}

.calendar-table td.saturday {
  color: #1e90ff !important;
  font-weight: bold;
}