@charset "UTF-8";

.schedule-container {
  max-width: 100%;
  width: 500px;
  margin: 0 auto;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  box-sizing: border-box;
}

.schedule-select-wrapper {
  margin-bottom: 24px;
}

.schedule-main-label {
  display: block;
  font-weight: bold;
  margin-bottom: 12px;
  font-size: 16px;
  text-align: center;
  color: #1e293b;
}

select#term-select {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: bold;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background-color: #fff;
  box-sizing: border-box;
  color: #0f172a;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.schedule-card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.schedule-item {
  margin-bottom: 24px;
  border-bottom: 1px dashed #cbd5e1;
  padding-bottom: 20px;
}

.schedule-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.schedule-label {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 8px;
}

.schedule-value {
  font-size: 20px;
  font-weight: bold;
  color: #0f172a;
  letter-spacing: 0.5px;
}

.highlight {
  color: #e11d48;
  font-size: 24px;
}

/* --- 3ヶ月間の詳細ボックスレイアウト --- */
.period-box-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.period-box {
  display: flex;
  align-items: center;
  background-color: #f1f5f9;
  border-radius: 8px;
  padding: 12px 16px;
  text-align: left;
}

.period-badge {
  background-color: #475569;
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  margin-right: 16px;
}

.period-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-line {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #0f172a;
  font-weight: bold;
  line-height: 1;
}

.info-title {
  font-size: 11px;
  color: #64748b;
  border: 1px solid #cbd5e1;
  background-color: #ffffff;
  padding: 2px 6px;
  border-radius: 4px;
  margin-right: 10px;
  font-weight: normal;
  white-space: nowrap;
}