/* 九大進学ゼミオンライン校 夏期講座LP */
:root {
  --navy: #0b2f5b;
  --blue: #0874d1;
  --sky: #eaf6ff;
  --yellow: #ffd84d;
  --orange: #ff8a00;
  --red: #e83b3b;
  --text: #17324d;
  --muted: #5c6f82;
  --line: #d9e7f3;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(11, 47, 91, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.8;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  padding-left: 1.3em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner,
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-weight: 800;
  color: var(--navy);
}

.brand-sub {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.brand-main {
  font-size: clamp(20px, 2.4vw, 28px);
}

.header-tel {
  padding: 8px 16px;
  color: var(--white);
  font-weight: 900;
  background: var(--navy);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-image:
	  linear-gradient(
      90deg,
      rgba(0, 50, 100, 0.58) 0%,
      rgba(0, 50, 100, 0.42) 42%,
      rgba(0, 50, 100, 0.12) 72%,
      rgba(0, 50, 100, 0.02) 100%
    ),
	  url("https://www.sanaru-kyushu.co.jp/media/fv-online-summer.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}



.hero-inner {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  min-height: 560px;
  margin: 0 auto;
  padding: 92px 0;
  display: grid;
  place-content: center start;
}

.eyebrow,
.label {
  margin: 0 0 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.eyebrow {
  color: var(--yellow);
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 8vw, 86px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-shadow:
    0 4px 10px rgba(0, 0, 0, 0.55),
    0 10px 28px rgba(0, 0, 0, 0.35);
}

.hero-lead {
  max-width: 760px;
  margin: 28px 0 0;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(11, 47, 91, 0.2);
}

.btn-primary {
  color: var(--navy);
  background: var(--yellow);
}

.btn-outline {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .7);
}

.btn-tel {
  color: var(--white);
  background: var(--navy);
}

.page-nav {
  position: sticky;
  top: 74px;
  z-index: 90;
  display: flex;
  gap: 8px;
  padding: 12px max(16px, calc((100vw - 1120px) / 2));
  overflow-x: auto;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.page-nav a {
  flex: 0 0 auto;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  background: var(--sky);
  border-radius: 999px;
}

.section {
  padding: 88px 0;
}

.section-light {
  background: #f7fbff;
}

.section-blue {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.section-title {
  max-width: 820px;
  margin-bottom: 36px;
}

.label {
  color: var(--orange);
  font-size: 13px;
}

.section-blue .label {
  color: var(--yellow);
}

.section-title h2,
.two-column h2,
.cta h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.fit-grid,
.result-grid,
.course-grid,
.notice-grid,
.elementary-grid,
.three-points {
  display: grid;
  gap: 20px;
}

.fit-grid {
  grid-template-columns: repeat(4, 1fr);
}

.fit-card {
  min-height: 150px;
  padding: 26px 20px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  background: var(--white);
  border: 3px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
/* スマホ：見出し文字 */
@media (max-width: 600px) {
  .fit-card h3 {
    font-size: 1.4rem;
    line-height: 1.45;
    font-weight: 900;
  }
}

.support-box {
  margin-top: 28px;
  padding: 28px;
  color: var(--navy);
  background: linear-gradient(135deg, #fff7cf, #ffffff);
  border: 3px solid var(--yellow);
  border-radius: 28px;
}

.support-box h3 {
  margin-top: 0;
  font-size: 26px;
}

.three-points {
  grid-template-columns: repeat(3, 1fr);
}

.three-points article {
  padding: 32px;
  color: var(--text);
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.point-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--navy);
  font-weight: 900;
  background: var(--yellow);
  border-radius: 50%;
}

.result-grid {
  grid-template-columns: repeat(4, 1fr);
}

.result-card {
  padding: 26px;
  text-align: center;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.result-card span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.result-card strong {
  display: block;
  margin: 8px 0;
  color: var(--red);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 1000;
}

.result-card-dark {
  color: var(--white);
  background: var(--navy);
}

.result-card-dark span,
.result-card-dark strong {
  color: var(--yellow);
}

.two-column {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}

.image-placeholder {
  min-height: 280px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  text-align: center;
  color: var(--navy);
  border-radius: 28px;
}

.image-placeholder span {
  padding: 4px 10px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  background: var(--blue);
  border-radius: 999px;
}



.schedule-wrap {
  overflow-x: auto;
  padding-bottom: 8px;
}

.schedule-table {
  width: 100%;
  min-width: 980px;
  margin-bottom: 22px;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 18px;
  overflow: hidden;
}

.schedule-table th,
.schedule-table td {
  padding: 10px 8px;
  text-align: center;
  border: 1px solid var(--line);
  white-space: nowrap;
}

.schedule-table thead th {
  color: var(--white);
  background: var(--navy);
}

.schedule-table tbody th {
  color: var(--navy);
  background: var(--sky);
}

.schedule-table td {
  font-weight: 900;
}

.schedule-table .closed {
  color: var(--muted);
  background: #f1f5f9;
  font-size: 13px;
}

.course-grid {
  grid-template-columns: 1.2fr .9fr .9fr;
}

.course-card,
.program-card,
.notice-grid article {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.course-card {
  padding: 28px;
}

.course-card.featured {
  border-color: var(--orange);
}

.course-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.course-head span,
.course-head strong {
  padding: 4px 12px;
  font-weight: 900;
  border-radius: 999px;
}

.course-head span {
  color: var(--white);
  background: var(--blue);
}

.course-head strong {
  color: var(--navy);
  background: var(--yellow);
}

.course-card h3,
.program-card h3,
.notice-grid h3,
.flow-list h3 {
  margin-top: 0;
  color: var(--navy);
  line-height: 1.35;
}

.price {
  margin-top: 18px;
  padding-top: 5px;
  color: var(--red);
  font-size: 34px;
  font-weight: 1000;
  border-top: 1px solid var(--line);
}

.price small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
	margin-bottom: 10px;
}


/* PC用：小学生オンライン校 夏期講座を1カラム＋写真右配置 */
@media (min-width: 601px) {
  #elementary .elementary-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }
	

  #elementary .program-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: center;
    gap: 32px;
	    /* 追加：枠内の余白 */
    padding: 28px 32px;
    box-sizing: border-box;
  }
	
  /* HTML上は写真が先なので、PCでは本文を左・写真を右に並び替える */
  #elementary .program-body {
    order: 1;
  }

  #elementary .course-gallery {
    order: 2;
    justify-self: end;
    width: 100%;
    max-width: 380px;
    margin: 0;
    padding: 0;
  }

  #elementary .course-gallery__track {
    display: block;
    gap: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
	  scroll-snap-type: none;
  }

  #elementary .course-gallery__item {
    flex: 0 0 100%;
    border-radius: 0px;
    overflow: hidden;
	  display: none;
  }
	
	#elementary .course-gallery__item--pc-main {
    display: block;
  }

  #elementary .course-gallery__item img {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
  }
}

/* SP用：小学生オンライン校 余白 */
@media (max-width: 600px) {
  #elementary .program-card {
    padding: 22px 18px;
    box-sizing: border-box;
  }
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-list li {
  padding: 26px;
  color: var(--text);
  background: var(--white);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.flow-list span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 28px;
  font-weight: 1000;
}

.notice-grid {
  grid-template-columns: repeat(4, 1fr);
}

.notice-grid article {
  padding: 24px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--navy);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
}

.cta {
  padding: 72px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 216, 77, .35), transparent 24%),
    linear-gradient(135deg, #06396d, #0786dd);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer {
  padding: 28px 0;
  color: var(--white);
  background: #061f3c;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

@media (max-width: 980px) {
  .fit-grid,
  .result-grid,
  .three-points,
  .course-grid,
  .notice-grid,
  .flow-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-column,
  .elementary-grid,
  .cta-inner {
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 66px;
  }

  .header-tel {
    display: none;
  }

  .page-nav {
    top: 66px;
  }

	 .hero {
    background-image:
      linear-gradient(
        180deg,
        rgba(0, 50, 100, 0.62) 0%,
        rgba(0, 50, 100, 0.45) 45%,
        rgba(0, 50, 100, 0.18) 100%
      ),
		
		url("https://www.sanaru-kyushu.co.jp/media/fv-online-summer-sp.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }
	
  .hero-inner {
    min-height: 520px;
    padding: 70px 0;
  }

  .section {
    padding: 64px 0;
  }

  .fit-grid,
  .result-grid,
  .three-points,
  .course-grid,
  .notice-grid,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
  }
}

.fit-section {
  padding: 80px 20px;
  background: #f4f9ff;
}

.fit-section__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-label {
  margin: 0 0 8px;
  color: #1f76d2;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
}

.section-title {
  margin: 0 0 40px;
  color: #12335f;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.fit-card-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.fit-card {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(25, 82, 140, 0.12);
}

.fit-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dceeff;
}

.fit-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.fit-card:hover .fit-card__image img {
  transform: scale(1.06);
}

.fit-card__body {
  position: relative;
  padding: 24px 18px 26px;
  text-align: center;
}

.fit-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: -48px auto 14px;
  border-radius: 50%;
  background: #1f76d2;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(31, 118, 210, 0.28);
}

.fit-card__title {
  margin: 0;
  color: #12335f;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
}

/* タブレット */
@media (max-width: 960px) {
  .fit-card-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* スマホ */
@media (max-width: 600px) {
  .fit-section {
    padding: 56px 16px;
  }

  .section-title {
    margin-bottom: 28px;
    font-size: 25px;
  }

  .fit-card-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .fit-card {
    border-radius: 18px;
  }

  .fit-card__image {
    aspect-ratio: 16 / 9;
  }

  .fit-card__body {
    padding: 22px 16px 24px;
  }

  .fit-card__title {
    font-size: 17px;
  }
}

.schedule-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 12px;
  font-size: 18px;
  font-weight:500;
  line-height: 1.6;
  color: #333;
}

.schedule-legend span {
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .schedule-legend {
    font-size: 14px;
	  font-weight:600;
    gap: 4px 10px;
  }
}

.lesson-image-wrap {
  overflow: hidden;
  border-radius: 12px;
}

.lesson-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* 小学生イメージ画像のスマホスワイプ設定 */

@media (max-width: 600px) {
  .course-gallery {
    position: relative !important;
    z-index: 1;
    width: 100%;
    margin-top: 18px;
    margin-bottom: 24px;
    overflow: hidden;
    transform: none !important;
	  padding: 8px 12px 0;
  box-sizing: border-box;
  }

  .course-gallery__track {
    position: relative !important;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    margin-inline: 0;
    padding: 0 4px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    transform: none !important;
  }

  .course-gallery__item {
    position: relative !important;
    flex: 0 0 86%;
    border-radius: 0px;
    overflow: hidden;
    scroll-snap-align: start;
    transform: none !important;
  }

  .course-gallery__item img {
    position: static !important;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    z-index: auto;
  }
}

/* 共通の見出しブロック */
.section-title {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

/* 2カラム内の見出しは左寄せのまま */
.two-column h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.04em;
  text-align: left;
}

/* =========================
   オンライン校 超☆家族割
========================= */

.family-discount {
  background: linear-gradient(180deg, #fff8e6 0%, #fff 100%);
}

.family-discount__lead {
  max-width: 860px;
  margin: 0 auto 32px;
  padding: 18px 24px;
  background: #fff;
  border: 2px solid #ffd15c;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(255, 181, 39, 0.18);
}

.family-discount__lead p {
  margin: 0;
  font-weight: 700;
  line-height: 1.8;
  color: #4a3100;
  text-align: center;
}

.family-discount__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.family-discount-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 22px 24px;
  background: #fff;
  border: 2px solid #ffe0a3;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.family-discount-card--free {
  border-color: #ffba2f;
  box-shadow: 0 14px 34px rgba(255, 168, 0, 0.2);
}

.family-discount-card__head {
  margin-bottom: 16px;
}

.family-discount-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 5px 14px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: #f08a00;
  border-radius: 999px;
}

.family-discount-card h3 {
  margin: 0;
  color: #26334d;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.35;
}

.family-discount-card__target {
  margin: 0 0 14px;
  padding: 12px 14px;
  background: #f5f9ff;
  border-left: 5px solid #2f7de1;
  border-radius: 10px;
  color: #26334d;
  font-weight: 700;
  line-height: 1.6;
}

.family-discount-card__main {
  margin: 0 0 14px;
  color: #26334d;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.5;
}

.family-discount-card__main span {
  color: #e60012;
  font-size: 1.45em;
}

.family-discount-card__note {
  margin: 0 0 18px;
  color: #555;
  font-size: 0.86rem;
  line-height: 1.65;
}

.discount-price-list {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.discount-price-item {
  display: grid;
  grid-template-columns: 72px 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  background: #fff9ed;
  border-radius: 12px;
}

.discount-price-item__grade {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  background: #26334d;
  border-radius: 999px;
}

.discount-price-item__old {
  color: #777;
  font-size: 0.9rem;
  text-decoration: line-through;
  text-align: right;
  white-space: nowrap;
}

.discount-price-item__arrow {
  color: #f08a00;
  font-weight: 900;
}

.discount-price-item__new {
  color: #e60012;
  font-size: 1.05rem;
  font-weight: 900;
  white-space: nowrap;
}

.family-discount__caution {
  margin: 24px 0 0;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.7;
  text-align: center;
}

/* タブレット */
@media (max-width: 960px) {
  .family-discount__grid {
    grid-template-columns: 1fr;
  }

  .family-discount-card {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }
}

/* スマホ */
@media (max-width: 600px) {
  .family-discount__lead {
    margin-bottom: 24px;
    padding: 16px 14px;
    border-radius: 16px;
  }

  .family-discount__lead p {
    text-align: left;
    font-size: 0.95rem;
  }

  .family-discount__grid {
    gap: 18px;
  }

  .family-discount-card {
    padding: 22px 16px 20px;
    border-radius: 20px;
  }

  .family-discount-card__badge {
    font-size: 0.78rem;
  }

  .family-discount-card h3 {
    font-size: 1.28rem;
  }

  .family-discount-card__target {
    padding: 10px 12px;
    font-size: 0.94rem;
  }

  .family-discount-card__main {
    font-size: 1rem;
  }

  .family-discount-card__main span {
    font-size: 1.35em;
  }

  .discount-price-item {
    grid-template-columns: 64px 1fr auto 1fr;
    gap: 6px;
    padding: 8px;
  }

  .discount-price-item__grade {
    font-size: 0.76rem;
  }

  .discount-price-item__old {
    font-size: 0.78rem;
  }

  .discount-price-item__new {
    font-size: 0.9rem;
  }

  .family-discount__caution {
    text-align: left;
    font-size: 0.84rem;
  }
}

.family-discount-mini-banner {
  max-width: 1080px;
  margin: 20px auto 28px;
  padding: 0 20px;
}


/* =========================
   超★家族割 上部ジャンプバナー
========================= */

.family-discount-mini-banner a {
  display: block;
  padding: 14px 20px;
  color: #26334d;
	font-size: 1.25rem; /* 追加・変更 */
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  background: #fff3c4;
  border: 2px solid #f5a400;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(245, 164, 0, 0.18);
}

.family-discount-mini-banner span {
  display: inline-block;
  margin-left: 10px;
  padding: 5px 12px;
  color: #fff;
  font-size: 0.9em;
  background: #e60012;
  border-radius: 999px;
}

.family-discount-mini-banner span::after {
  content: " ▼";
  font-size: 0.8em;
}

#family-discount {
  scroll-margin-top: 90px;
}

@media (max-width: 600px) {
  .family-discount-mini-banner {
    margin: 18px auto 24px;
    padding: 0 16px;
  }

  .family-discount-mini-banner a {
    padding: 14px 12px;
	  font-size: 1.08rem; /* 追加・変更 */
    line-height: 1.6;
  }

  .family-discount-mini-banner span {
    display: table;
    margin: 8px auto 0;
  }
}