@charset "UTF-8";
/* 黒色太字16 */
span.text-b-black-16 {
    font-weight: bold;
    color: #000000;
    font-size: 16px;
}

/* 赤色太字*/
span.text-b-red {
    font-weight: bold;
    color: #ff0000;
}
.ease-flex-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ease-flex-item {
  flex: 0 0 auto;
}

.ease-flex-item img {
  width: 400px;
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 600px) {
  .ease-flex-wrap {
    flex-direction: column;
    gap: 10px;
  }
}

.episode-scroll {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.episode-card {
  flex: 0 0 auto;
  width: 220px;
  scroll-snap-align: start;
  text-align: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  padding: 8px;
}

.episode-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 4px;
}

.episode-card p {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
  color: #333;
}

.episode-card a {
  text-decoration: none;
  color: inherit;
}

/* 全体コンテナ */
.premium-rules {
    max-width: 800px;
    margin: 20px auto;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    color: #444;
}

/* 上部バナー */
.top-info {
    background: #f0f4f8;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 6px solid #1a73e8;
}

.info-tag {
    background: #1a73e8;
    color: #fff;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

/* ルールカード */
.rule-card {
    display: flex;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.card-num {
    background: #f1f3f4;
    color: #5f6368;
    font-size: 1.5em;
    font-weight: bold;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.1em;
    color: #202124;
    border: none; /* SIRIUS2のデフォルト見出し装飾をリセット */
}

/* 箇条書き */
.check-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 5px;
    color: #d93025; /* 少し警告気味の赤 */
    font-weight: bold;
}

.check-list li::before {
    content: '×';
    position: absolute;
    left: 5px;
    font-weight: bold;
}

/* 強調カード */
.highlight-card {
    border: 2px solid #1a73e8;
}

/* 理由ボックス */
.reason-box {
    background: #fff9c4;
    padding: 25px;
    border-radius: 12px;
    margin-top: 40px;
    text-align: center;
}

.reason-title {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #bc5100;
}

.low-price-reason {
    font-size: 0.85em;
    margin-top: 15px;
    border-top: 1px dashed #e69138;
    padding-top: 10px;
}