/*
Theme Name: mobailefirst-theme
Author: あなたの名前
Version: 1.0
*/

/* === 稽古スケジュールセクション === */
/*
Theme Name: mobailefirst-theme
Author: あなたの名前
Version: 1.0
*/

.schedule-page {
font-family: 'Kaisei HarunoUmi', 'Kiwi Maru', 'Yomogi', 'Noto Sans JP', serif;
  background: #fcf9f4;
  padding: 1.5rem;
  max-width: 720px;
  margin: auto;
}

.section-title-area {
text-align: center;
  margin-bottom: 2rem;
}

.schedule-title {
font-size: 1.8rem;
  font-weight: bold;
  color: #b71c1c;
}

.schedule-caption {
font-size: 0.95rem;
  color: #555;
}

.subheading {
font-size: 1.2rem;
  color: #b71c1c;
  text-align: center;
  margin: 2rem 0 1rem;
}

/* === カレンダー・週報セクション === */
.calendar-container {
margin-bottom: 2rem;
}

/* === カレンダー表示 最終調整 === */
.calendar-embed {
position: relative;
  padding-bottom: 0;
  height: auto;
  overflow: visible;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
}

.calendar-embed iframe {
width: 100%;
  max-width: 1000px;
  height: 500px;
  border: none;
  display: block;
  margin: 0 auto;
}

.weekly-summary {
background: #fff;
  border-left: 6px solid #c62828;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  margin-top: 2rem;
}

.weekly-summary h3 {
font-size: 1.1rem;
  color: #b71c1c;
  margin-bottom: 0.5em;
}

.weekly-summary ul {
list-style: none;
  padding: 0;
  margin: 0;
}

.weekly-summary li {
font-size: 0.95rem;
  line-height: 1.5;
}

.section-footer-note {
text-align: center;
  font-size: 0.9rem;
  color: #444;
  margin-top: 2rem;
}

.section-footer-note a {
color: #b71c1c;
  font-weight: bold;
}

/* === 出欠登録：下部固定バー === */
.attend-fixed-bar {
position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #b71c1c;
  display: flex;
  justify-content: space-around;
  padding: 0.5rem 0;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.2);
}

.attend-fixed-bar a {
color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: bold;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  background: #d32f2f;
  transition: background 0.3s;
}

.attend-fixed-bar a:hover {
background: #f44336;
}

/* === 出欠登録：カード型デザイン === */
/* 半透明カード型・追従型 出欠ボタンバー */
.attend-fixed-card {
position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 999;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  max-width: 480px;
  margin: auto;
  font-family: 'Noto Sans JP', sans-serif;
}

.attend-fixed-card .attend-title {
font-size: 0.95rem;
  font-weight: bold;
  color: #b71c1c;
  text-align: center;
}

.attend-fixed-card .attend-buttons {
display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.attend-fixed-card .attend-btn {
border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.2s;
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  margin: 0.2rem 0rem;
}

.attend-btn.mon {
background: #e53935;
}

.attend-btn.tue {
background: #fb8c00;
}

.attend-btn.thu {
background: #fdd835; color: #333;
}

.attend-btn.free {
background: #43a047;
}

.attend-btn.etc {
background: #1e88e5;
}

.attend-fixed-card .attend-btn:hover {
opacity: 0.8;
}

.attend-login-card .attend-btn {
font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
  margin-top: 0.6rem;
  border-radius: 6px;
  background-color: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.3);
  color: #5d4037;
  font-weight: 600;
  cursor: pointer;
}

}
/* 出欠カードとログインカードに共通適用するスタイル */
.attend-fixed-card {
margin: 2rem auto;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 0.6rem 0.8rem;
  text-align: center;
  font-size: 0.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.4s ease-out forwards;
  transition: all 0.3s ease;
}

.attend-fixed-card .attend-title {
font-size: 0.85rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.attend-fixed-card .attend-btn {
font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid #ccc;
  color: #333;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.attend-fixed-card .attend-btn:hover {
background-color: rgba(255, 255, 255, 0.8);
}

/* 曜日ボタン共通：柔らかく透明なベース */
.attend-fixed-card .attend-btn {
font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.1);
  background-color: rgba(255, 255, 255, 0.6);
  color: #333;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* 曜日ごとの色（淡く背景として使う） */
.attend-btn.mon {
background-color: rgba(255, 205, 210, 0.6); /* 薄い赤系 */
}

.attend-btn.tue {
background-color: rgba(187, 222, 251, 0.6); /* 薄い青系 */
}

.attend-btn.thu {
background-color: rgba(200, 230, 201, 0.6); /* 薄い緑系 */
}

.attend-btn.free {
background-color: rgba(255, 245, 157, 0.6); /* 薄い黄系 */
}

.attend-btn.etc {
background-color: rgba(225, 190, 231, 0.6); /* 薄い紫系 */
}

/* ホバー時に少し濃く */
.attend-fixed-card .attend-btn:hover {
opacity: 0.9;
  filter: brightness(1.05);
}

/* モバイルズーム対策：フォーム入力要素のフォントサイズを16pxに */
.attend-login-card input[type="password"],
.attend-login-card .attend-btn {
font-size: 16px;
}

/* === 出欠登録：ログインカード === */
/* === 出欠登録カードサイズ調整 === */
.attend-login-card {
margin: 2rem auto;
  max-width: 320px; /* 🔽さらに小さく */
  background: rgba(255, 255, 255, 0.38); /* 🔍強い透明感 */
  backdrop-filter: blur(6px); /* 💡ガラス風効果（対応ブラウザのみ） */
  -webkit-backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 0.6rem 0.8rem;
  text-align: center;
  font-size: 0.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.4s ease-out forwards;
  transition: all 0.3s ease;
}

.attend-login-card .attend-title {
font-size: 0.85rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.attend-login-card input[type="password"] {
padding: 0.3rem;
  font-size: 0.8rem;
  margin-top: 0.4rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 140px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
}

/* === アコーディオンボタン === */
.accordion-toggle {
display: inline-block;
  background-color: #ffffff;
  color: #b71c1c;
  border: 2px solid #b71c1c;
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  margin: 1rem auto;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  max-width: 320px;
}

.accordion-toggle:hover {
background-color: #b71c1c;
  color: #fff;
}

/* === 共通見出しスタイル === */
/* 共通フォント設定 */
h1, h2 {
font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* h1：メイン見出し（白背景・赤文字） */
h1 {
font-size: 2.2rem;
  background-color: rgba(255, 255, 255, 0.75);
  color: #b71c1c;
  letter-spacing: 1px;
}

/* h2：セクション見出し（薄赤背景・濃赤文字） */
h2 {
font-size: 1.6rem;
  background-color: rgba(255, 235, 238, 0.85);
  color: #c62828;
  border-left: 6px solid #ef5350;
  padding-left: 1.2rem;
  text-align: left;
}

.manual-notice h2 {
font-size: 1.2rem;
  background: #fdecea;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  display: inline-block;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

/* === 注意書き・マニュアルセクション === */
.manual-notice {
background: rgba(255, 255, 255, 0.85);
  border-left: 6px solid #b71c1c;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.notice-list li {
margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #333;
}

.notice-list {
list-style: none;
  padding-left: 0;
}

/* === アニメーション定義 === */
/* アニメーション */
@keyframes fadeInUp {
to {
    opacity: 1;
    transform: translateY(0);
}


