/* =========================
   ミャクミャク グリーティングデイ LP
========================= */

.myaku-greeting-lp {
  --mg-red: #e6002d;
  --mg-blue: #0071bc;
  --mg-navy: #10213f;
  --mg-yellow: #fff4c7;
  --mg-pink: #fff1f4;
  --mg-light-blue: #eef8ff;
  --mg-gray: #f6f7f9;
  --mg-text: #202020;
  --mg-border: #e6e6e6;

  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  color: var(--mg-text);
  line-height: 1.8;
  background: #fff;
}

.myaku-greeting-lp * {
  box-sizing: border-box;
}

.myaku-greeting-lp img {
  max-width: 100%;
  height: auto;
  display: block;
}

.mg-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.mg-section {
  padding: 72px 0;
}

.mg-bg-light {
  background: var(--mg-gray);
}

.mg-section-heading {
  text-align: center;
  margin-bottom: 36px;
}

.mg-section-heading p {
  color: var(--mg-red);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 6px;
}

.mg-section-heading h2 {
  font-size: 34px;
  line-height: 1.4;
  margin: 0;
  color: var(--mg-navy);
}

.mg-label {
  display: inline-block;
  background: var(--mg-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 16px;
}

.mg-note {
  font-size: 14px;
  color: #666;
  margin-top: 12px;
}

.mg-center-text {
  text-align: center;
  margin-bottom: 28px;
}

.mg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--mg-red);
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 15px 34px;
  box-shadow: 0 8px 18px rgba(230, 0, 45, 0.25);
  transition: 0.2s ease;
}

.mg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(230, 0, 45, 0.3);
}

.mg-btn-large {
  font-size: 18px;
  padding: 18px 46px;
}


/* =========================
   Hero
========================= */

.mg-hero {
  background:
    radial-gradient(circle at 10% 20%, rgba(230, 0, 45, 0.16), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(0, 113, 188, 0.16), transparent 28%),
    linear-gradient(135deg, #fff 0%, #eef8ff 55%, #fff1f4 100%);
  padding: 80px 0;
  overflow: hidden;
}

.mg-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.mg-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.12;
  color: var(--mg-navy);
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}

.mg-hero-sub {
  display: inline-block;
  background: var(--mg-red);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 12px;
  margin: 0 0 24px;
}

.mg-hero-lead {
  font-size: 17px;
  margin: 0 0 24px;
}

.mg-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.mg-hero-badges span {
  background: #fff;
  border: 2px solid var(--mg-blue);
  color: var(--mg-blue);
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}

.mg-hero-info {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.mg-hero-info div {
  background: #fff;
  border-left: 6px solid var(--mg-red);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.mg-info-title {
  display: block;
  color: var(--mg-red);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}

.mg-hero-info strong {
  display: block;
  font-size: 18px;
  color: var(--mg-navy);
}

.mg-hero-image {
  position: relative;
}

.mg-hero-image::before {
  content: "";
  position: absolute;
  inset: -18px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(230, 0, 45, 0.12),
    rgba(230, 0, 45, 0.12) 10px,
    rgba(0, 113, 188, 0.12) 10px,
    rgba(0, 113, 188, 0.12) 20px
  );
  border-radius: 32px;
  z-index: 0;
}

.mg-hero-image img {
  position: relative;
  z-index: 1;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}


/* =========================
   Overview
========================= */

.mg-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.mg-overview-card {
  background: #fff;
  border: 1px solid var(--mg-border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.mg-overview-card span {
  display: block;
  color: var(--mg-blue);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.mg-overview-card strong {
  font-size: 18px;
  color: var(--mg-navy);
}

.mg-time-box {
  background: var(--mg-light-blue);
  border: 2px solid rgba(0, 113, 188, 0.16);
  border-radius: 22px;
  padding: 28px;
}

.mg-time-box h3 {
  font-size: 24px;
  color: var(--mg-navy);
  margin: 0 0 16px;
}

.mg-time-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mg-time-list div {
  background: #fff;
  color: var(--mg-blue);
  font-weight: 700;
  text-align: center;
  border-radius: 14px;
  padding: 16px;
}


/* =========================
   Step
========================= */

.mg-step-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mg-step-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  border-top: 5px solid var(--mg-blue);
}

.mg-step-card span {
  display: inline-block;
  background: var(--mg-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.mg-step-card h3 {
  color: var(--mg-navy);
  font-size: 22px;
  margin: 0 0 10px;
}

.mg-step-card p {
  margin: 0;
}


/* =========================
   Alert
========================= */

.mg-alert-box {
  background: var(--mg-yellow);
  border: 3px solid #ffd65a;
  border-radius: 24px;
  padding: 34px;
}

.mg-alert-box h2 {
  color: var(--mg-navy);
  font-size: 30px;
  margin: 0 0 20px;
  text-align: center;
}

.mg-alert-box ul {
  margin: 0;
  padding-left: 1.4em;
}

.mg-alert-box li {
  margin-bottom: 8px;
  font-weight: 600;
}


/* =========================
   Plan
========================= */

.mg-plan-section {
  background: linear-gradient(180deg, #fff 0%, #fff7f9 100%);
}

.mg-plan-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.mg-plan-image img {
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.mg-plan-content {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.mg-plan-content h3 {
  font-size: 32px;
  line-height: 1.4;
  color: var(--mg-navy);
  margin: 0 0 8px;
}

.mg-price {
  color: var(--mg-red);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
}

.mg-plan-content h4 {
  color: var(--mg-navy);
  font-size: 20px;
  margin: 24px 0 12px;
}

.mg-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mg-check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
}

.mg-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--mg-red);
  font-weight: 700;
}

.mg-check-list small {
  color: #666;
}

.mg-benefit-box {
  background: var(--mg-light-blue);
  border-radius: 18px;
  padding: 20px;
  margin-top: 20px;
}

.mg-benefit-box h4 {
  margin-top: 0;
}

.mg-benefit-box ul {
  margin: 0;
  padding-left: 1.4em;
}

.mg-benefit-box p {
  margin: 10px 0 0;
  font-size: 14px;
}

.mg-allergy {
  border-top: 1px solid var(--mg-border);
  margin-top: 22px;
  padding-top: 18px;
}

.mg-allergy strong {
  color: var(--mg-red);
}

.mg-allergy p {
  margin: 4px 0 0;
}

.mg-note-box {
  background: #fff;
  border: 1px solid var(--mg-border);
  border-radius: 18px;
  padding: 20px 24px;
  margin-top: 24px;
}

.mg-note-box p {
  margin: 4px 0;
  font-size: 14px;
  color: #555;
}


/* =========================
   Drink
========================= */

.mg-drink-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mg-drink-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  min-height: 140px;
  border: 1px solid var(--mg-border);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.mg-drink-card h3 {
  color: var(--mg-navy);
  font-size: 18px;
  margin: 0 0 8px;
}

.mg-drink-card p {
  font-size: 14px;
  margin: 4px 0;
  color: #555;
}

.mg-drink-card span {
  display: inline-block;
  background: var(--mg-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.mg-featured {
  border: 2px solid var(--mg-red);
}


/* =========================
   Photo
========================= */

.mg-photo-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  background: var(--mg-pink);
  border-radius: 28px;
  padding: 36px;
}

.mg-photo-text h2 {
  color: var(--mg-navy);
  font-size: 34px;
  line-height: 1.4;
  margin: 0 0 16px;
}

.mg-photo-image img {
  border-radius: 22px;
}


/* =========================
   Guide
========================= */

.mg-guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.mg-guide-card {
  background: #fff;
  border: 1px solid var(--mg-border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.mg-guide-card h3 {
  color: var(--mg-navy);
  font-size: 24px;
  margin: 0 0 14px;
}

.mg-guide-card p {
  margin: 0 0 12px;
}


/* =========================
   Terms
========================= */

.mg-terms-box {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid var(--mg-border);
}

.mg-terms-box ul {
  margin: 0;
  padding-left: 1.4em;
}

.mg-terms-box li {
  margin-bottom: 10px;
}


/* =========================
   Payment / Entry
========================= */

.mg-payment-alert {
  background: #fff0f2;
  border: 3px solid rgba(230, 0, 45, 0.28);
  border-radius: 24px;
  padding: 34px;
}

.mg-payment-alert h2 {
  color: var(--mg-red);
  font-size: 30px;
  margin: 0 0 18px;
}

.mg-payment-alert p {
  margin: 0 0 12px;
}

.mg-entry {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(135deg, var(--mg-blue), var(--mg-red));
  color: #fff;
  text-align: center;
  padding: 76px 0;
}

.mg-entry .mg-label {
  background: #fff;
  color: var(--mg-red);
}

.mg-entry h2 {
  font-size: 38px;
  margin: 0 0 16px;
}

.mg-entry p {
  max-width: 760px;
  margin: 0 auto 12px;
}

.mg-entry-note {
  font-size: 14px;
}

.mg-entry-period {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 18px;
  max-width: 680px;
  margin: 26px auto;
  padding: 18px;
}

.mg-entry-period span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.mg-entry-period strong {
  font-size: 20px;
}

.mg-entry .mg-btn {
  background: #fff;
  color: var(--mg-red) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}


/* =========================
   Responsive
========================= */

@media screen and (max-width: 900px) {
  .mg-hero-inner,
  .mg-plan-wrap,
  .mg-photo-box {
    grid-template-columns: 1fr;
  }

  .mg-overview-grid,
  .mg-step-flow {
    grid-template-columns: 1fr;
  }

  .mg-time-list {
    grid-template-columns: 1fr;
  }

  .mg-drink-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mg-guide-grid {
    grid-template-columns: 1fr;
  }

  .mg-hero-image {
    order: -1;
  }
}

@media screen and (max-width: 600px) {
  .mg-inner {
    padding: 0 16px;
  }

  .mg-section {
    padding: 52px 0;
  }

  .mg-hero {
    padding: 48px 0;
  }

  .mg-hero h1 {
    font-size: 42px;
  }

  .mg-hero-sub {
    font-size: 19px;
  }

  .mg-hero-lead {
    font-size: 15px;
  }

  .mg-section-heading h2,
  .mg-photo-text h2,
  .mg-payment-alert h2,
  .mg-alert-box h2 {
    font-size: 26px;
  }

  .mg-plan-content h3 {
    font-size: 26px;
  }

  .mg-drink-grid {
    grid-template-columns: 1fr;
  }

  .mg-alert-box,
  .mg-payment-alert,
  .mg-photo-box,
  .mg-plan-content {
    padding: 24px;
  }

  .mg-entry h2 {
    font-size: 30px;
  }

  .mg-entry-period strong {
    font-size: 16px;
  }

  .mg-btn {
    width: 100%;
    padding: 16px 20px;
  }
}
.mg-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
  }
  
  .mg-feature-card {
    background: #f8fbff;
    border: 1px solid #dbe9f6;
    border-radius: 16px;
    padding: 18px 16px;
    text-align: center;
  }
  
  .mg-feature-card span {
    display: inline-block;
    background: var(--mg-red);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
  }
  
  .mg-feature-card p {
    margin: 0;
    color: var(--mg-navy);
    font-weight: 700;
    line-height: 1.6;
  }
  
  @media screen and (max-width: 600px) {
    .mg-feature-grid {
      grid-template-columns: 1fr;
    }
  }

/* =========================
   PC表示調整：ファーストビュー
========================= */

@media screen and (min-width: 901px) {

  .mg-hero {
    padding: 88px 0 72px;
  }

  .mg-hero-inner {
    max-width: 1200px;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 26px;
    align-items: center;
  }

  .mg-hero h1 {
    font-size: 56px;
    line-height: 1.28;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
  }

  .mg-hero-sub {
    font-size: 22px;
    padding: 9px 22px;
    margin-bottom: 22px;
  }

  .mg-hero-lead {
    font-size: 15px;
    line-height: 2;
    max-width: 560px;
  }

  .mg-hero-info {
    max-width: 560px;
  }

  .mg-hero-image {
    max-width: 540px;
    margin-left: auto;
    margin-right: 0;
  }

  .mg-hero-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
}


/* =========================
   PC表示調整：特別プラン
========================= */

@media screen and (min-width: 901px) {

  .mg-plan-section {
    padding-top: 76px;
    padding-bottom: 84px;
  }

  .mg-plan-wrap {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: stretch;
  }

  .mg-plan-image {
    height: 100%;
  }

  .mg-plan-image img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
  }

  .mg-plan-content {
    height: 100%;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px 32px;
  }

  .mg-plan-content h3 {
    font-size: 30px;
    line-height: 1.5;
  }

  .mg-price {
    font-size: 22px;
    margin-bottom: 22px;
  }

  .mg-feature-grid {
    gap: 14px;
  }

  .mg-feature-card {
    min-height: 106px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .mg-benefit-box {
    margin-top: 18px;
  }
}


/* =========================
   PC幅が広い時の見え方をさらに安定
========================= */

@media screen and (min-width: 1200px) {

  .mg-hero-inner {
    gap: 34px;
  }

  .mg-hero h1 {
    font-size: 60px;
  }

  .mg-hero-image {
    max-width: 560px;
  }
}
/* =========================
   スマホ表示調整：ファーストビュー中央寄せ＋CTA強調
========================= */

@media screen and (max-width: 900px) {

    .mg-hero {
      padding: 28px 0 52px;
    }
  
    .mg-hero-inner {
      gap: 28px;
    }
  
    .mg-hero-text {
      text-align: center;
    }
  
    .mg-hero h1 {
      font-size: 38px;
      line-height: 1.35;
      letter-spacing: 0.04em;
      margin-bottom: 18px;
    }
  
    .mg-hero-sub {
      font-size: 20px;
      padding: 10px 22px;
      margin-left: auto;
      margin-right: auto;
    }
  
    .mg-hero-lead {
      text-align: left;
      font-size: 15px;
      line-height: 2;
      margin-left: auto;
      margin-right: auto;
    }
  
    .mg-hero-badges {
      justify-content: center;
    }
  
    .mg-hero-info {
      text-align: left;
    }
  
    .mg-hero .mg-btn {
      display: flex;
      width: min(100%, 340px);
      margin: 28px auto 0;
      padding: 18px 24px;
      font-size: 18px;
      border-radius: 999px;
      box-shadow: 0 12px 26px rgba(230, 0, 45, 0.34);
    }
  
    .mg-hero .mg-btn::after {
      content: "〉";
      margin-left: 10px;
      font-size: 20px;
      line-height: 1;
    }
  }
  
  @media screen and (max-width: 600px) {
  
    .mg-hero h1 {
      font-size: 36px;
    }
  
    .mg-hero-sub {
      font-size: 19px;
    }
  
    .mg-hero .mg-btn {
      width: 88%;
      max-width: 360px;
      font-size: 18px;
      padding: 18px 20px;
    }
  }

/* =========================
   座席に関する大切なご案内
========================= */

.mg-seat-guide-section {
  background: linear-gradient(180deg, #fff 0%, #f3f9ff 100%);
}

.mg-seat-guide-lead {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
  font-size: 16px;
  line-height: 2;
  color: var(--mg-navy);
}

.mg-seat-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.mg-seat-guide-card {
  background: #fff;
  border: 1px solid #dce9f6;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.mg-seat-guide-img {
  background: #f8fbff;
  padding: 12px;
}

.mg-seat-guide-img img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

.mg-seat-guide-text {
  padding: 22px 22px 26px;
}

.mg-seat-guide-text span {
  display: inline-block;
  background: var(--mg-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.mg-seat-guide-text h3 {
  color: var(--mg-navy);
  font-size: 21px;
  line-height: 1.5;
  margin: 0 0 10px;
}

.mg-seat-guide-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}

.mg-seat-guide-text strong {
  color: var(--mg-red);
  font-weight: 700;
}


/* PCで画像をしっかり見せる */
@media screen and (min-width: 901px) {
  .mg-seat-guide-card {
    display: flex;
    flex-direction: column;
  }

  .mg-seat-guide-img img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
}


/* スマホ表示 */
@media screen and (max-width: 900px) {
  .mg-seat-guide-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mg-seat-guide-lead {
    text-align: left;
    font-size: 15px;
  }

  .mg-seat-guide-card {
    border-radius: 22px;
  }

  .mg-seat-guide-img {
    padding: 10px;
  }

  .mg-seat-guide-text {
    padding: 20px;
  }

  .mg-seat-guide-text h3 {
    font-size: 20px;
  }
}

@media screen and (max-width: 600px) {
  .mg-seat-guide-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .mg-seat-guide-text p {
    font-size: 14px;
  }
}
/* =========================
   画像差し替え対応：main-visual / lunch-plate
   1920×1369 全体表示
========================= */

.mg-hero-image img {
  width: 100%;
  aspect-ratio: 1920 / 1369;
  object-fit: contain !important;
  object-position: center;
  background: #ffffff;
}

.mg-plan-image {
  height: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mg-plan-image img {
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 1920 / 1369;
  object-fit: contain !important;
  object-position: center;
  background: #ffffff;
}

@media screen and (min-width: 901px) {
  .mg-hero-image {
    max-width: 560px;
  }

  .mg-plan-wrap {
    align-items: center !important;
  }

  .mg-plan-content {
    min-height: auto !important;
  }

  .mg-plan-image img {
    max-height: 560px;
  }
}

@media screen and (max-width: 900px) {
  .mg-hero-image img,
  .mg-plan-image img {
    aspect-ratio: 1920 / 1369;
    object-fit: contain !important;
  }
}
/* =========================
   限定グッズ表示
========================= */

.mg-limited-goods {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--mg-border);
}

.mg-limited-goods h4 {
  color: var(--mg-navy);
  font-size: 20px;
  margin: 0 0 14px;
}

.mg-limited-goods-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #f8fbff;
  border: 1px solid #dbe9f6;
  border-radius: 18px;
  padding: 16px;
}

.mg-limited-goods-image {
  flex: 0 0 140px;
}

.mg-limited-goods-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  background: #fff;
}

.mg-limited-goods-text {
  flex: 1;
}

.mg-limited-goods-text h5 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--mg-navy);
}

.mg-limited-goods-text p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.8;
}

.mg-limited-goods-note {
  font-size: 12px;
  color: #666;
  margin-bottom: 0;
}

@media screen and (max-width: 600px) {
  .mg-limited-goods-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .mg-limited-goods-image {
    flex: none;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }

  .mg-limited-goods-text {
    width: 100%;
  }
}
/* =========================
   特別プラン：PCでもスマホに近い縦並びに調整
========================= */

@media screen and (min-width: 901px) {

  .mg-plan-section {
    padding-top: 72px !important;
    padding-bottom: 84px !important;
  }

  .mg-plan-image {
    width: 100% !important;
    max-width: 620px !important;
    height: auto !important;
    margin: 0 auto !important;
  }

  .mg-plan-image img {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: contain !important;
    border-radius: 20px !important;
  }

  .mg-plan-content {
    width: 100% !important;
    max-width: 620px !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 auto !important;
    padding: 34px 32px !important;
  }

  .mg-feature-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .mg-limited-goods-card {
    align-items: center !important;
  }
}
/* =========================
   特別プラン：イベント内容画像つきカード
========================= */

.mg-plan-wrap-single {
  display: block !important;
  max-width: 980px !important;
  margin: 0 auto !important;
}

.mg-plan-wrap-single .mg-plan-content {
  max-width: 980px !important;
  width: 100% !important;
  margin: 0 auto !important;
}

.mg-event-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 18px 0 24px;
}

.mg-event-detail-card {
  background: #f8fbff;
  border: 1px solid #dbe9f6;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.mg-event-detail-img {
  background: #fff;
  padding: 12px;
}

.mg-event-detail-img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  display: block;
  background: #fff;
}

.mg-event-detail-img-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mg-event-detail-img-double img {
  aspect-ratio: 3 / 4;
  object-fit: contain;
}

.mg-event-detail-body {
  padding: 18px 18px 20px;
  text-align: center;
}

.mg-event-detail-body span {
  display: inline-block;
  background: var(--mg-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.mg-event-detail-body h5 {
  color: var(--mg-navy);
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 10px;
}

.mg-event-detail-body p {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  text-align: left;
}

@media screen and (min-width: 901px) {
  .mg-plan-wrap-single .mg-plan-content {
    padding: 42px !important;
  }
}

@media screen and (max-width: 900px) {
  .mg-event-detail-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mg-event-detail-body {
    text-align: center;
  }

  .mg-event-detail-body p {
    text-align: left;
  }
}

@media screen and (max-width: 600px) {
  .mg-plan-wrap-single .mg-plan-content {
    padding: 24px !important;
  }

  .mg-event-detail-img {
    padding: 10px;
  }

  .mg-event-detail-body {
    padding: 16px;
  }

  .mg-event-detail-body h5 {
    font-size: 17px;
  }

  .mg-event-detail-body p {
    font-size: 13px;
  }
}
/* =========================
   特別プラン：PC中央配置の最終上書き
========================= */

@media screen and (min-width: 901px) {

  .mg-plan-section .mg-inner {
    max-width: 1100px !important;
    margin: 0 auto !important;
  }

  .mg-plan-wrap,
  .mg-plan-wrap-single {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    gap: 0 !important;
  }

  .mg-plan-wrap > .mg-plan-content,
  .mg-plan-wrap-single > .mg-plan-content,
  .mg-plan-content {
    width: 100% !important;
    max-width: 760px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .mg-event-detail-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
/* =========================
   対象回セクション：左揃え＋見やすさ調整
========================= */

.mg-time-box {
  text-align: left !important;
}

.mg-time-list div {
  text-align: left !important;
  padding: 22px 28px !important;
  line-height: 1.9 !important;
}

.mg-time-list div br {
  display: block;
}

.mg-time-box .mg-note {
  text-align: left !important;
  line-height: 2 !important;
}