/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 29 2026 | 01:48:09 */
/* ── ベース ── */
.dorm-wrap {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── セクション見出し ── */
.dorm-section {
  margin-bottom: 60px;
}
.dorm-section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  background: #5c8da8;
  padding: 10px 20px;
  border-radius: 4px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dorm-section-title .dorm-icon {
  font-size: 1.2rem;
}

/* ── リードテキスト ── */
.dorm-lead {
  background: #f0f6fb;
  border-left: 4px solid #5c8da8;
  padding: 20px 24px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 0;
}

/* ── サブ見出し ── */
.dorm-sub-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #5c8da8;
  border-bottom: 2px solid #b8d4e8;
  padding-bottom: 6px;
  margin: 28px 0 14px;
}

/* ── 目標カード（心得） ── */
.dorm-goal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}
.dorm-goal-card {
  background: #eaf2f8;
  border: 1px solid #9abfd8;
  border-radius: 8px;
  padding: 16px 18px;
  font-weight: 700;
  color: #2a5570;
  text-align: center;
  font-size: 0.95rem;
}

/* ── マナーリスト ── */
.dorm-manner-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}
.dorm-manner-list li {
  background: #fff;
  border: 1px solid #b8d4e8;
  border-radius: 6px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}
.dorm-manner-list li::before {
  content: '✓';
  color: #5c8da8;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── 日課表タブ ── */
.dorm-tab-wrap {
  margin-bottom: 28px;
}
.dorm-tab-btns {
  display: flex;
  gap: 4px;
  margin-bottom: 0;
}
.dorm-tab-btn {
  padding: 9px 20px;
  border: 2px solid #5c8da8;
  border-bottom: none;
  background: #fff;
  color: #5c8da8;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  transition: background .2s, color .2s;
  font-family: inherit;
}
.dorm-tab-btn.active,
.dorm-tab-btn:hover {
  background: #5c8da8;
  color: #fff;
}
.dorm-tab-panels {
  border: 2px solid #5c8da8;
  border-radius: 0 6px 6px 6px;
  overflow: hidden;
}
.dorm-tab-panel {
  display: none;
}
.dorm-tab-panel.active {
  display: block;
}
.dorm-schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.dorm-schedule-table th {
  background: #5c8da8;
  color: #fff;
  padding: 10px 16px;
  text-align: left;
  width: 120px;
  font-size: 0.85rem;
  white-space: nowrap;
}
.dorm-schedule-table td {
  padding: 9px 16px;
  border-bottom: 1px solid #d0e4f0;
  vertical-align: top;
}
.dorm-schedule-table tr:last-child td {
  border-bottom: none;
}
.dorm-schedule-table tr:nth-child(even) td {
  background: #f4f8fc;
}
.dorm-time {
  font-weight: 700;
  color: #2a5570;
  font-size: 0.92rem;
  white-space: nowrap;
}
.dorm-schedule-table .section-label {
  background: #cce0f0;
  font-weight: 700;
  color: #2a5570;
  font-size: 0.82rem;
  text-align: center;
  letter-spacing: .05em;
}

/* ── チェックリスト（持参品） ── */
.dorm-checklist-group {
  margin-bottom: 20px;
}
.dorm-checklist-group-title {
  font-weight: 700;
  font-size: 0.95rem;
  background: #cce0f0;
  color: #2a5570;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.dorm-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 6px;
}
.dorm-checklist li {
  padding: 7px 12px;
  background: #fff;
  border: 1px solid #cce0f0;
  border-radius: 4px;
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.dorm-checklist li::before {
  content: '□';
  color: #5c8da8;
  font-size: 1rem;
  line-height: 1.4;
  flex-shrink: 0;
}

/* ── 注意事項ボックス ── */
.dorm-note {
  background: #fffbea;
  border: 1px solid #f0d060;
  border-left: 4px solid #e0a800;
  border-radius: 0 6px 6px 0;
  padding: 12px 16px;
  font-size: 0.88rem;
  margin-top: 10px;
  color: #5a4a00;
}
.dorm-note p { margin: 4px 0; }

/* ── 施設グリッド ── */
.dorm-facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}
.dorm-facility-card {
  background: #fff;
  border: 1px solid #b8d4e8;
  border-top: 4px solid #5c8da8;
  border-radius: 0 0 8px 8px;
  padding: 16px;
  font-size: 0.88rem;
  text-align: center;
}
.dorm-facility-card .dorm-fac-icon {
  font-size: 1.8rem;
  margin-bottom: 6px;
  display: block;
}
.dorm-facility-card strong {
  display: block;
  font-weight: 700;
  color: #2a5570;
  margin-bottom: 4px;
  font-size: 0.92rem;
}

/* ── 行事タイムライン ── */
.dorm-events {
  position: relative;
  padding-left: 32px;
  margin-bottom: 20px;
}
.dorm-events::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #b8d4e8;
  border-radius: 2px;
}
.dorm-event-item {
  position: relative;
  margin-bottom: 20px;
}
.dorm-event-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: #5c8da8;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #5c8da8;
}
.dorm-event-month {
  font-size: 0.78rem;
  font-weight: 700;
  color: #5c8da8;
  background: #eaf2f8;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 4px;
}
.dorm-event-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
}
.dorm-event-desc {
  font-size: 0.88rem;
  color: #555;
}

/* ── 食事・生活カード ── */
.dorm-life-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .dorm-life-grid { grid-template-columns: 1fr; }
}
.dorm-life-card {
  background: #f0f6fb;
  border: 1px solid #b8d4e8;
  border-radius: 8px;
  padding: 18px;
}
.dorm-life-card-title {
  font-weight: 700;
  color: #2a5570;
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── 連携リスト ── */
.dorm-renkei-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dorm-renkei-list li {
  background: #fff;
  border: 1px solid #b8d4e8;
  border-radius: 6px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
}
.dorm-renkei-num {
  background: #5c8da8;
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ── レスポンシブ ── */
@media (max-width: 600px) {
  .dorm-tab-btn { padding: 8px 12px; font-size: 0.82rem; }
  .dorm-section-title { font-size: 1.1rem; }
  .dorm-goal-grid { grid-template-columns: 1fr; }
}



