.mh-calendar2026 {
  --mh-red: #b6232a;
  --mh-blue: #b6232a;
  --mh-bg: #fff5f5;
  --mh-radius: 16px;
  --mh-shadow: 0 6px 16px rgba(0,0,0,0.08);
  color: #333;
  line-height: 1.8;
  max-width: 1000px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem 3rem;
  box-sizing: border-box;
}
.mh-calendar2026 * { box-sizing: border-box; }

.mh-cal-hero {
  margin: 0 -1.5rem 2.5rem;
}
.mh-cal-hero picture,
.mh-cal-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.mh-cal-lead {
  text-align: center;
  margin-bottom: 2.5rem;
}
.mh-cal-lead h1 {
  font-size: clamp(2.2rem, 5vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: var(--mh-red);
}
.mh-cal-lead .mh-cal-sub {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--mh-blue);
  margin-bottom: 1rem;
}
.mh-cal-lead p {
  font-size: 1.6rem;
}

/* セクション共通 */
.mh-cal-section {
  background: #fff;
  border-radius: var(--mh-radius);
  box-shadow: var(--mh-shadow);
  padding: 1.8rem 1.5rem;
  margin-bottom: 2rem;
}
.mh-cal-section h2 {
  color: #b6232a;/*文字色*/
  padding: 0.5em 0;/*上下の余白*/
  border-top: solid 3px #b6232a;/*上線*/
  border-bottom: solid 3px #b6232a;/*下線*/
  font-size: 2.0rem;
  font-weight: 900;
  margin-bottom:5%;
}

/* 概要 */
.mh-cal-summary dl {
  display: grid;
  grid-template-columns: minmax(80px, 120px) 1fr;
  gap: 0.6rem 1rem;
  font-size: 1.7rem;
}
.mh-cal-summary dt {
  font-weight: 700;
  color: var(--mh-blue);
}
.mh-cal-summary dd {
  margin: 0;
}

/* カレンダーのポイント */
.mh-cal-points-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.mh-cal-point {
  background: var(--mh-bg);
  border-radius: 12px;
  padding: 1rem;
}
.mh-cal-point h3 {
  font-size: 1.9rem;
  font-weight: 900;
  margin-bottom: 0.4rem;
  color: var(--mh-blue);
}
.mh-cal-point p {
  font-size: 1.6rem;
}

/* もらい方 */
.mh-cal-howto-grid {
  display: grid;
  gap: 1rem;
}
.mh-cal-howto-card {
  background: var(--mh-bg);
  border-radius: 12px;
  padding: 1rem;
}
.mh-cal-howto-card h3 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--mh-blue);
}
.mh-cal-howto-steps {
  list-style: decimal;
  padding-left: 1.2rem;
  margin: 0.3rem 0 0;
  font-size: 1.6rem;
}

/* 注意事項 */
.mh-cal-note-list {
  margin: 0.2rem 0 0;
  padding-left: 1.1rem;
  font-size: 1.7rem;
}
.mh-cal-note-list li {
  margin-bottom: 0.2rem;
}

/* CTAリンク */
.mh-cal-links-text {
  font-size: 1.7rem;
  margin-bottom: 2.5rem;
}
.mh-cal-link-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.mh-cal-btn {
  flex: 1 1 180px;
  text-align: center;
  text-decoration: none;
  font-size: 1.7rem;
  font-weight: 700;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 2px solid var(--mh-red);
  color: #fff;
  background: var(--mh-red);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.mh-cal-btn--outline {
  background: #fff;
  color: var(--mh-red);
}
.mh-cal-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

/* FAQ */
.mh-cal-faq-list {
  display: grid;
  gap: 0.8rem;
  font-size: 1.7rem;
}
.mh-cal-faq-q {
  font-weight: 700;
  color: var(--mh-blue);
  margin-bottom:4%;
}
.mh-cal-faq-a {
  margin-top: 0.1rem;
}

/* レスポンシブ */
@media (min-width: 768px) {
  .mh-calendar2026 {
    padding: 0 0 4rem;
  }
  .mh-cal-hero {
    margin: 0 0 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--mh-shadow);
  }
  .mh-cal-summary dl {
    font-size: 1.8rem;
  }
  .mh-cal-points-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .mh-cal-howto-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.more-btn-qa {
  display:block;
  margin:5% auto 7%;
  background-color:#b6232a;
  padding:3%;
  color:#fff;
  border-radius:50px;
  width:65%;
  text-align:center!important;
}