/* ==========================================
   リセット & 基本設定
========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.7;
  color: #333;
  background: linear-gradient(to bottom, #FFFFFF 0%, #F5F2E8 100%);
  letter-spacing: 0.05em;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: #E5006E;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

strong {
  font-weight: bold;
}

/* ==========================================
   ヘッダー
========================================== */
header {
  background: white;
  padding: 16px 0;
  text-align: center;
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

header a {
  display: block;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  text-decoration: none;
}

header a img {
  width: 100%;
  vertical-align: bottom;
}

/* ==========================================
   ファーストビュー
========================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #F9DBE8 0%, #FFFAC6 100%);
}

.hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  max-width: 800px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
}

.hero__subtitle {
  font-size: 1rem;
  color: #E5006E;
  font-weight: bold;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.hero__subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, #E5006E, #6BC7F1);
}

.hero__title {
  font-size: 2.5rem;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 24px;
  color: #333;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.hero__title__highlight {
  font-size: 3.5rem;
  color: #E5006E;
  display: inline-block;
  position: relative;
  padding: 0 16px;
  background: linear-gradient(transparent 60%, rgba(229, 0, 110, 0.15) 60%);
}

.hero__text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #555;
}

/* ==========================================
   CTAエリア（2カラム）
========================================== */
.cta-dual {
  padding: 80px 0;
  background: linear-gradient(to bottom, #F5F2E8 0%, #FFFFFF 100%);
  position: relative;
}

.cta-dual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(229, 0, 110, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(107, 199, 241, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.cta-dual__title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 48px;
  color: #333;
  font-weight: bold;
  position: relative;
  padding-bottom: 16px;
}

.cta-dual__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #E5006E, #6BC7F1);
}

.cta-dual__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.cta-dual__card {
  background: white;
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-dual__card__title {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 24px;
  color: #333;
  position: relative;
}

.cta-dual__card--tokyo .cta-dual__card__title {
  color: #E5006E;
}

.cta-dual__card--osaka .cta-dual__card__title {
  color: #6BC7F1;
}

.cta-dual__card__date {
  font-size: 1.125rem;
  margin-bottom: 32px;
  color: #555;
  font-weight: 500;
}

.cta-dual__card__btn {
  display: inline-block;
  padding: 16px 64px;
  background: #E5006E;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.125rem;
  box-shadow: 0 4px 12px rgba(229, 0, 110, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-dual__card__btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.cta-dual__card__btn:hover::before {
  width: 300px;
  height: 300px;
}

.cta-dual__card__btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(229, 0, 110, 0.4);
  opacity: 1;
}

/* ==========================================
   セクションタイトル
========================================== */
.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 48px;
  color: #333;
  font-weight: bold;
  position: relative;
  padding-bottom: 16px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #E5006E, #6BC7F1);
}

/* ==========================================
   リードエリア
========================================== */
.lead {
  padding: 80px 0;
  background: white;
  position: relative;
}

.lead::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 242, 63, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(249, 219, 232, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.lead__content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.lead__text {
  font-size: 1.125rem;
  line-height: 1.9;
  margin-bottom: 40px;
  color: #333;
}

.highlight {
  background: linear-gradient(transparent 60%, rgba(229, 0, 110, 0.2) 60%);
  font-weight: bold;
  padding: 0 4px;
}

.lead__point {
  background: linear-gradient(135deg, #F9DBE8 0%, #FFFAC6 100%);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-top: 4px solid #E5006E;
  text-align: center;
}

.lead__point__title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #E5006E;
  margin-bottom: 16px;
}

.lead__point__text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #333;
}

/* ==========================================
   開催概要
========================================== */
.overview {
  padding: 80px 0;
  background: linear-gradient(to bottom, #F5F2E8 0%, #E5E5E6 100%);
  position: relative;
}

.overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.overview__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.overview__card {
  background: white;
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.overview__card__title {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 32px;
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 2px solid #F9DBE8;
}

.overview__card--tokyo .overview__card__title {
  color: #E5006E;
}

.overview__card--osaka .overview__card__title {
  color: #6BC7F1;
}

.overview__card__details {
  margin-bottom: 32px;
}

.overview__card__details dt {
  font-weight: bold;
  color: #E5006E;
  margin-bottom: 8px;
  font-size: 1rem;
}

.overview__card__details dd {
  margin-bottom: 24px;
  line-height: 1.8;
  color: #333;
}

.overview__card__details dd a {
  color: #E5006E;
  text-decoration: underline;
}

.overview__card__btn {
  display: block;
  width: 100%;
  padding: 16px 32px;
  background: #E5006E;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.125rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(229, 0, 110, 0.3);
  transition: all 0.3s ease;
}

.overview__card__btn:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(229, 0, 110, 0.4);
  opacity: 1;
}

/* 検定スケジュール */
.schedule {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 48px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

.schedule__title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 32px;
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 2px solid #F5F2E8;
}

.schedule__details {
  margin-bottom: 24px;
}

.schedule__details dt {
  font-weight: bold;
  color: #E5006E;
  margin-bottom: 8px;
  font-size: 1rem;
}

.schedule__details dd {
  margin-bottom: 24px;
  line-height: 1.8;
  color: #333;
  padding-left: 16px;
}

.schedule__note {
  font-size: 0.875rem;
  color: #666;
  margin-top: 8px;
  display: block;
}

.schedule__notice {
  text-align: center;
  font-weight: bold;
  color: #E5006E;
  font-size: 1rem;
  padding: 12px 16px;
  background: transparent;
  border: 2px solid #E5006E;
  border-radius: 4px;
  margin-top: 8px;
}

/* ==========================================
   試験概要（テーブル）
========================================== */
.exam-details {
  padding: 80px 0;
  background: white;
}

.table-wrapper {
  overflow-x: auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.exam-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-size: 0.9375rem;
}

.exam-table th,
.exam-table td {
  padding: 20px 16px;
  border: 1px solid #E5E5E6;
  text-align: left;
  vertical-align: top;
}

.exam-table th {
  background: #F5F2E8;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
}

.exam-table__head--grade2 {
  background: #EA82A4 !important;
  text-align: center;
  font-size: 1.125rem;
  color: white !important;
}

.exam-table__head--grade1 {
  background: #EB4B8C !important;
  text-align: center;
  font-size: 1.125rem;
  color: white !important;
}

.exam-table td.two {
  background: rgba(234, 130, 164, 0.1);
}

.exam-table td.one {
  background: rgba(235, 75, 140, 0.1);
}

.exam-table td.tac {
  text-align: center;
  background: white;
}

.exam-table .price-highlight {
  font-weight: bold;
  color: #E5006E;
  font-size: 1.125rem;
}

.exam-table ul {
  list-style: none;
  padding-left: 0;
}

.exam-table ul li {
  margin-bottom: 8px;
  padding-left: 1.2em;
  position: relative;
}

.exam-table ul li::before {
  content: '・';
  position: absolute;
  left: 0;
}

.exam-table ul.note {
  font-size: 0.875rem;
  color: #666;
  margin-top: 12px;
}

.exam-table ul.note li::before {
  content: '※';
}

.exam-table .link-text {
  font-weight: bold;
  text-decoration: underline;
}

/* ==========================================
   日本化粧品検定とは
========================================== */
.about {
  padding: 80px 0;
  background: linear-gradient(to bottom, #F5F2E8 0%, #FFFFFF 100%);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(235, 75, 140, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(234, 130, 164, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.about__content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about__text {
  font-size: 1.0625rem;
  line-height: 1.9;
  margin-bottom: 24px;
  color: #333;
}

.about__table-wrapper {
  margin-top: 48px;
  overflow-x: auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

.about__table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.about__table th,
.about__table td {
  padding: 24px 32px;
  border: 1px solid #E5E5E6;
  text-align: left;
  vertical-align: middle;
}

.about__table th {
  font-weight: bold;
  font-size: 1.25rem;
  color: white;
  width: 150px;
  text-align: center;
}

.about__table__head--grade1 {
  background: #EB4B8C;
}

.about__table__head--grade2 {
  background: #EA82A4;
}

.about__table td {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #333;
}

/* ==========================================
   受験の流れ（アコーディオン）
========================================== */
.flow {
  padding: 80px 0;
  background: linear-gradient(to bottom, #F5F2E8 0%, #FFFFFF 100%);
}

.flow__notice {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 48px;
  padding: 20px;
  background: rgba(255, 242, 63, 0.1);
  border-left: 4px solid #FFF23F;
  border-radius: 4px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.stepList {
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
}

.stepList__item {
  background: white;
  margin-bottom: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.stepList__item__header {
  display: flex;
  align-items: center;
  padding: 24px 32px;
  cursor: pointer;
  background: linear-gradient(to right, #F9DBE8 0%, #F5F2E8 100%);
  transition: background 0.3s ease;
}

.stepList__item__header:hover {
  background: linear-gradient(to right, #f5c5d9 0%, #efe9dd 100%);
}

.stepList__item__step {
  font-size: 0.875rem;
  font-weight: bold;
  color: #E5006E;
  margin-right: 16px;
  flex-shrink: 0;
}

.stepList__item__step .num {
  font-size: 1.5rem;
  margin-left: 4px;
}

.stepList__item__title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  padding: 4px 12px;
  background: #E5006E;
  color: white;
  border-radius: 12px;
  font-weight: normal;
}

.accordionBtn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 16px;
  flex-shrink: 0;
  position: relative;
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.accordionBtn .plus {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.accordionBtn .plus::before,
.accordionBtn .plus::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #E5006E;
  transition: all 0.3s ease;
}

.accordionBtn .plus::before {
  width: 20px;
  height: 2px;
}

.accordionBtn .plus::after {
  width: 2px;
  height: 20px;
}

.stepList__item.active .accordionBtn {
  transform: rotate(45deg);
}

.accordionContent {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.stepList__item.active .accordionContent {
  max-height: 5000px;
}

.accordionContent__inner {
  padding: 32px;
  background: white;
}

.accordionContent__inner .txt {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 24px;
}

.accordionContent__inner .note {
  list-style: none;
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 24px;
}

.accordionContent__inner .note li {
  margin-bottom: 8px;
  padding-left: 1.2em;
  position: relative;
}

.accordionContent__inner .note li::before {
  content: '※';
  position: absolute;
  left: 0;
  color: #E5006E;
}

.mb40 {
  margin-bottom: 40px;
}

.mb10 {
  margin-bottom: 10px;
}

.tal {
  text-align: left;
}

.tac {
  text-align: center;
}

/* フローボックス（Step1） */
.flowBoxes {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.flowBoxes__box {
  text-align: center;
  padding: 20px;
  background: #F5F2E8;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.flowBoxes__box img {
  margin-bottom: 12px;
}

.flowBoxes__box p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #333;
}

/* ナンバーボックス（Step3） */
.numBoxes {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.numBoxes__box {
  text-align: center;
  padding: 24px 16px;
  background: #F5F2E8;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.numBoxes__box p {
  font-weight: bold;
  margin-bottom: 16px;
  color: #333;
}

.numBoxes__box img {
  margin-bottom: 16px;
}

.numBoxes__box ul {
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.6;
  list-style-position: inside;
  padding-left: 0;
}

.numBoxes__box ul li {
  margin-bottom: 6px;
}

/* ボタンリンク（Step4） */
.btnLink {
  margin-top: 24px;
}

.btnLink__inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #6BC7F1;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(107, 199, 241, 0.3);
  transition: all 0.3s ease;
}

.btnLink__inner:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(107, 199, 241, 0.4);
  opacity: 1;
}

.btnLink__inner__arrow {
  flex-shrink: 0;
}

.ttlC {
  font-size: 1.125rem;
  font-weight: bold;
  color: #333;
  margin-top: 24px;
}

/* ==========================================
   結び
========================================== */
.closing {
  padding: 80px 0;
  background: linear-gradient(135deg, #F9DBE8 0%, #FFFAC6 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(229, 0, 110, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(107, 199, 241, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.closing__title {
  font-size: 2rem;
  font-weight: bold;
  color: #E5006E;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.closing__text {
  font-size: 1.125rem;
  line-height: 1.9;
  color: #333;
  position: relative;
  z-index: 1;
}

/* ==========================================
   フッター
========================================== */
footer {
  background: #fff;
  color: #000;
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
}

.footer-logo {
  display: block;
  margin: 0 auto 16px;
  max-width: 300px;
}

.footer-link {
  background-color: #E5006E;
  border: 1px solid #E5006E;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: bold;
}

.footer-link:hover {
  background: transparent;
  color: #E5006E;
  opacity: 1;
}

/* ==========================================
   レスポンシブ対応
========================================== */
@media screen and (max-width: 992px) {
  .hero__title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .cta-dual__title {
    font-size: 1.75rem;
  }

  .overview__wrapper {
    grid-template-columns: 1fr;
  }

  .cta-dual__wrapper {
    grid-template-columns: 1fr;
  }

  .flowBoxes {
    grid-template-columns: repeat(2, 1fr);
  }

  .numBoxes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 16px;
  }

  .hero {
    min-height: 400px;
  }

  .hero__content {
    padding: 40px 20px;
  }

  .hero__title {
    font-size: 1.75rem;
  }

  .hero__title__highlight {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 32px;
  }

  .cta-dual {
    padding: 60px 0;
  }

  .cta-dual__title {
    font-size: 1.5rem;
    margin-bottom: 32px;
  }

  .cta-dual__card {
    padding: 32px 24px;
  }

  .cta-dual__card__title {
    font-size: 1.5rem;
  }

  .cta-dual__card__btn {
    padding: 14px 48px;
    font-size: 1rem;
  }

  .lead,
  .overview,
  .exam-details,
  .about,
  .flow,
  .closing {
    padding: 60px 0;
  }

  .lead__text {
    font-size: 1rem;
  }

  .lead__point {
    padding: 24px 20px;
  }

  .lead__point__title {
    font-size: 1.25rem;
  }

  .overview__card {
    padding: 32px 24px;
  }

  .overview__card__title {
    font-size: 1.5rem;
  }

  .schedule {
    padding: 32px 24px;
  }

  .schedule__title {
    font-size: 1.25rem;
  }

  .table-wrapper {
    font-size: 0.875rem;
  }

  .exam-table th,
  .exam-table td {
    padding: 12px 8px;
  }

  .about__text {
    font-size: 1rem;
  }

  .about__table th,
  .about__table td {
    padding: 16px 12px;
    font-size: 0.9375rem;
  }

  .about__table th {
    font-size: 1.125rem;
    width: 100px;
  }

  .stepList__item__header {
    padding: 20px 16px;
  }

  .stepList__item__title {
    font-size: 1.125rem;
  }

  .accordionContent__inner {
    padding: 24px 16px;
  }

  .flowBoxes {
    grid-template-columns: 1fr;
  }

  .numBoxes {
    grid-template-columns: repeat(2, 1fr);
  }

  .closing__title {
    font-size: 1.5rem;
  }

  .closing__text {
    font-size: 1rem;
  }

  footer {
    padding: 40px 0 30px;
  }
}

@media screen and (max-width: 480px) {
  .hero__content {
    padding: 30px 16px;
  }

  .hero__title {
    font-size: 1.5rem;
  }

  .hero__title__highlight {
    font-size: 2rem;
    padding: 0 8px;
  }

  .hero__subtitle {
    font-size: 0.875rem;
  }

  .cta-dual__card__btn {
    padding: 12px 40px;
  }

  .overview__card__btn {
    font-size: 1rem;
    padding: 14px 24px;
  }
}
