@charset "UTF-8";
/* ==========================================
   リセット＆基本設定
========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  background-color: #fff;
  padding-bottom: 100px; /* 固定CTAの高さ分（緊急性バナー追加で高さ増加） */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ==========================================
   カラー変数定義
========================================== */
:root {
  --primary-color: #027f41;
  --primary-light: #e8f5e9;
  --primary-dark: #015c30;
  --accent-color: #4caf50;
  --text-color: #333;
  --text-light: #666;
  --border-color: #e0e0e0;
  --bg-gray: #f5f5f5;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   共通クラス
========================================== */
.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 16px;
  color: var(--text-color);
}

.section-lead {
  font-size: 14px;
  text-align: center;
  color: var(--text-light);
  margin-bottom: 32px;
}

.text-green {
  color: var(--primary-color);
  font-weight: 700;
}

.highlight {
  background: linear-gradient(transparent 60%, #fff9c4 60%);
  font-weight: 700;
}

.sp-only {
  display: inline;
}

/* ==========================================
   ヘッダー
========================================== */
.header {
  background-color: #fff;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 12px 20px;
  overflow: hidden;
}
.header-logo span {
  display: block;
  width: 130px;
}
.header-logo ul {
  position: absolute;
  right: 0;
  width: 130px;
  background: #027f40;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.header-logo ul li {
  width: 50%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-logo ul li:last-child {
  background: #ff9800;
}
.header-logo ul span {
  color: #fff;
  font-size: 32px;
  width: auto;
}

/* ECCロゴ */
.logo-ecc {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 12px;
  background: linear-gradient(135deg, #0066cc, #0052a3);
  border-radius: 6px;
}

.logo-ecc-text {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 1px;
}

.logo-ecc-sub {
  font-size: 9px;
  color: #fff;
  line-height: 1;
  margin-top: 2px;
}

.logo-school {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
}

/* ==========================================
   ファーストビュー
========================================== */
.hero {
  background: linear-gradient(180deg, var(--primary-light) 0%, #fff 100%);
  padding: 40px 0 60px;
}

.hero-content {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* ECCブランドバッジ */
.ecc-badge {
  display: inline-block;
  background: linear-gradient(135deg, #0066cc, #0052a3);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}

.ecc-badge-label {
  font-size: 12px;
  font-weight: 700;
  display: block;
  letter-spacing: 1px;
}

.ecc-badge-text {
  font-size: 10px;
  margin-top: 2px;
  opacity: 0.9;
}

.hero-title {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-color);
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 15px;
}

.hero-image {
  margin: 15px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* 緊急性訴求バナー */
.urgency-banner {
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: #fff;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(238, 90, 111, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
.urgency-icon {
  width: 100px;
}

.urgency-text {
  flex: 1;
  text-align: center;
  line-height: 1.5;
  font-size: 20px;
}

.urgency-text strong {
  font-size: 20px;
  display: block;
  margin-bottom: 4px;
}

.urgency-number {
  font-size: 30px;
  font-weight: 700;
  color: #fff9c4;
}

.hero-note {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 16px;
  color: var(--text-light);
  font-weight: 600;
}

.note-item {
  display: inline-block;
}

/* 電話でのお問い合わせ */
.phone-contact {
  margin-top: 32px;
  padding: 20px;
  background-color: #fff;
  border: 2px dashed var(--primary-color);
  border-radius: 12px;
}

.phone-label {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.phone-number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.phone-number:hover {
  color: var(--primary-dark);
}

.phone-hours {
  font-size: 12px;
  color: var(--text-light);
}

/* ==========================================
   ボタン
========================================== */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  min-height: 44px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.btn-large {
  width: 100%;
  max-width: 400px;
  padding: 18px 32px;
  font-size: 17px;
}

.btn-submit {
  margin-top: 24px;
}

/* ==========================================
   保護者の悩み共感セクション
========================================== */
.worries {
  background-color: var(--bg-gray);
}

.worry-cards {
  display: grid;
  gap: 16px;
}

.worry-card {
  background-color: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
}

.worry-icon {
  width: 40px;
}

.worry-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--text-color);
}

/* ==========================================
   解決メッセージセクション
========================================== */
.solution {
  background-color: #fff;
}

.solution-content {
  margin-top: 32px;
}

.solution-image {
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
}

.solution-text {
  text-align: left;
}

.solution-description {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.solution-list {
  background-color: var(--primary-light);
  padding: 24px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.solution-list li {
  font-size: 15px;
  line-height: 1.8;
  padding-left: revert-layer;
  position: relative;
  margin-bottom: 12px;
  display: flex;
  gap: 1rem;
  font-weight: 600;
}

.solution-list li:last-child {
  margin-bottom: 0;
}

.solution-list li::before {
  content: "";
  background: url(img/good.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: revert;
  display: block;
  width: 30px;
  height: 30px;
}

.solution-emphasis {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  padding: 20px;
  background-color: var(--bg-gray);
  border-radius: 12px;
}

/* ==========================================
   実績セクション
========================================== */
.results {
  background-color: var(--primary-light);
}

.result-cards {
  display: grid;
  gap: 20px;
  margin-bottom: 24px;
}

.result-card {
  background-color: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.result-grade {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
  text-align: center;
}

.result-subject {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
  text-align: center;
}

.result-scores {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.score-before {
  font-size: 20px;
  font-weight: 700;
  color: #e53935;
}

.score-arrow {
  font-size: 20px;
  color: var(--text-light);
}

.score-after {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

.result-comment {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
  text-align: center;
}

.results-note {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
}

/* ==========================================
   保護者の声セクション
========================================== */
.testimonials {
  background-color: #fff;
}

.testimonial-cards {
  display: grid;
  gap: 20px;
}

.testimonial-card {
  background-color: var(--bg-gray);
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-avatar img {
  width: 70px;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 4px;
}

.testimonial-grade {
  font-size: 12px;
  color: var(--text-light);
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-color);
  position: relative;
  padding-left: 12px;
  border-left: 3px solid var(--primary-color);
}

/* ==========================================
   ECCの強みセクション
========================================== */
.ecc-strength {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  position: relative;
  overflow: hidden;
}

.ecc-strength::before {
  content: "ECC";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  font-weight: 700;
  color: rgba(0, 102, 204, 0.05);
  z-index: 0;
}

.ecc-strength .container {
  position: relative;
  z-index: 1;
}

.ecc-features {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.ecc-feature-card {
  background-color: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid #0066cc;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ecc-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.ecc-feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.ecc-feature-title {
  font-size: 18px;
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 12px;
  line-height: 1.4;
}

.ecc-feature-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-color);
}

/* ECC品質バッジ（講師紹介セクション用） */
.ecc-quality-badge {
  margin: 24px 0;
  padding: 16px;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-radius: 8px;
  border-left: 4px solid #0066cc;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ecc-quality-icon {
  width: 32px;
  height: 32px;
  background-color: #0066cc;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.ecc-quality-text {
  flex: 1;
  font-size: 14px;
  font-weight: 700;
  color: #0066cc;
  line-height: 1.5;
}

/* ==========================================
   点数アップまでの指導ステップ
========================================== */
.steps {
  background-color: #fff;
}

.step-items {
  display: grid;
  gap: 24px;
}

.step-item {
  background-color: var(--bg-gray);
  padding: 24px;
  border-radius: 12px;
  position: relative;
}

.step-number {
  display: block;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-align: center;
}

.step-content {
  margin-bottom: 12px;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-color);
}

.step-tag {
  display: inline-block;
  background-color: var(--accent-color);
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
}

.step-description {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
}

.step-icon {
  width: 60px;
  margin: 0 auto;
}

/* ==========================================
   学年別サポート
========================================== */
.grades {
  background-color: var(--bg-gray);
}

.grade-cards {
  display: grid;
  gap: 20px;
}

.grade-card {
  background-color: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.grade-header {
  margin-bottom: 12px;
}

.grade-label {
  display: block;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  text-align: center;
}

.grade-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-color);
}

.grade-list {
  margin-bottom: 16px;
}

.grade-list li {
  font-size: 14px;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.grade-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 10px;
}

.grade-note {
  font-size: 13px;
  color: var(--primary-color);
  font-weight: 700;
  text-align: right;
}

/* ==========================================
   講師・教室紹介
========================================== */
.instructor {
  background-color: #fff;
}

.instructor-content {
  margin-top: 32px;
}

.instructor-image {
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
}

.instructor-text {
  text-align: left;
}

.instructor-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
  color: var(--primary-color);
  text-align: center;
}

.instructor-description {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.instructor-features {
  display: grid;
  gap: 16px;
}

.instructor-features li {
  background-color: var(--primary-light);
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.instructor-features strong {
  display: block;
  font-size: 15px;
  color: var(--primary-color);
  margin-bottom: 4px;
}

/* ==========================================
   無料体験授業の流れ
========================================== */
.flow {
  background-color: var(--bg-gray);
}

.flow-items {
  display: grid;
  gap: 0;
}

.flow-item {
  background-color: #fff;
  padding: 24px;
  border-radius: 12px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.flow-step {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

.flow-content {
  flex: 1;
}

.flow-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-color);
}

.flow-description {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
}

.flow-arrow {
  text-align: center;
  font-size: 24px;
  color: var(--primary-color);
  padding: 8px 0;
}

.flow-note {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 700;
}

.flow-note p {
  margin-bottom: 4px;
}

/* 体験授業の詳細 */
.flow-detail {
  margin-top: 16px;
  padding: 16px;
  background-color: #fff;
  border-radius: 8px;
  border: 2px solid var(--primary-light);
}

.flow-detail-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.flow-detail-list {
  list-style: none;
}

.flow-detail-list li {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-color);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.flow-detail-list li:last-child {
  margin-bottom: 0;
}

.flow-detail-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

/* 安心ポイントボックス */
.assurance-box {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, var(--primary-light), #c8e6c9);
  border-radius: 12px;
  border: 2px solid var(--primary-color);
}

.assurance-title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.assurance-items {
  display: grid;
  gap: 12px;
}

.assurance-item {
  background-color: #fff;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.assurance-icon {
  width: 28px;
  height: 28px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.assurance-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-color);
}

/* ==========================================
   他塾との比較セクション
========================================== */
.comparison {
  background-color: var(--bg-gray);
}

.comparison-table {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 2px solid var(--border-color);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-header {
  background-color: var(--primary-light);
}

.comparison-cell {
  padding: 16px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.comparison-label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.comparison-item {
  font-size: 13px;
  font-weight: 700;
  background-color: var(--bg-gray);
  color: var(--text-color);
}

.comparison-ours {
  background-color: #e8f5e9;
  border-left: 3px solid var(--primary-color);
  border-right: 3px solid var(--primary-color);
}

.comparison-good {
  font-size: 28px;
  color: var(--primary-color);
  font-weight: 700;
}

.comparison-bad {
  font-size: 28px;
  color: #9e9e9e;
}

.comparison-cell p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-color);
}

/* ==========================================
   よくある質問
========================================== */
.faq {
  background-color: #fff;
}

.faq-items {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 2px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background-color: #fff;
  border: none;
  padding: 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-color);
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: var(--primary-light);
}

.faq-question[aria-expanded=true] {
  background-color: var(--primary-light);
}

.faq-q-text {
  flex: 1;
  line-height: 1.6;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 24px;
  color: var(--primary-color);
  font-weight: 400;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded=true] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 20px 20px 20px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
}

/* 開いた状態 */
.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ==========================================
   クロージング＆申込フォーム
========================================== */
.closing {
  background: linear-gradient(180deg, var(--primary-light) 0%, #fff 100%);
  padding: 60px 0 80px;
}

.closing-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-color);
}

.closing-text {
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
  color: var(--text-light);
  margin-bottom: 24px;
}

/* 緊急性の再訴求 */
.closing-urgency {
  background: linear-gradient(135deg, #fff9c4, #ffeb3b);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 32px;
  text-align: center;
  box-shadow: var(--shadow);
}

.closing-urgency-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-color);
}

.closing-urgency-text strong {
  font-size: 20px;
  color: #e53935;
}

.contact-form {
  background-color: #fff;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-hover);
}

.form-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  color: var(--primary-color);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-color);
}

.required {
  display: inline-block;
  background-color: #e53935;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
}

.optional {
  display: inline-block;
  background-color: #9e9e9e;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-light);
  text-align: center;
  margin-top: 16px;
}

/* ==========================================
   フッター
========================================== */
.footer {
  background-color: var(--primary-dark);
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.footer-content {
  max-width: 480px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

/* フッターのECCロゴ */
.footer-ecc {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 16px;
  background: linear-gradient(135deg, #0066cc, #0052a3);
  border-radius: 6px;
}

.footer-ecc-text {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 1px;
}

.footer-ecc-sub {
  font-size: 10px;
  color: #fff;
  line-height: 1;
  margin-top: 2px;
}

.footer-school {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.footer-brand {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-address,
.footer-hours {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 24px;
}

/* ==========================================
   固定CTAボタン
========================================== */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  padding: 8px 20px 12px;
  z-index: 99;
}

.fixed-cta-urgency {
  font-size: 12px;
  font-weight: 700;
  color: #e53935;
  text-align: center;
  margin-bottom: 8px;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
.btn-fixed {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  display: block;
}

/* ==========================================
   レスポンシブ調整（タブレット以上）
========================================== */
@media (min-width: 481px) {
  body {
    font-size: 18px;
  }
  .hero-title {
    font-size: 31px;
  }
  .section-title {
    font-size: 28px;
  }
  .closing-title {
    font-size: 30px;
  }
  .sp-only {
    display: none;
  }
}
/* ==========================================
   アクセシビリティ
========================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
/* フォーカス表示 */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.logo-icon {
  background: #fff;
  padding: 15px;
  width: 200px;
}

.school {
  margin-top: 2rem;
}
.school h2 {
  line-height: 1.5;
}
.school ul {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.school ul li {
  padding: 6px 0;
  width: calc(50% - 0.5rem);
  border: 1px solid #ccc;
  font-size: 85%;
}

a.shiryo {
  display: block;
  margin-top: 1rem;
  text-align: center;
  font-size: 90%;
}

.koshi {
  margin-top: 2rem;
}
.koshi h3 {
  color: var(--primary-color);
  text-align: center;
}
.koshi img {
  max-width: 270px;
  margin: 1rem auto;
  border-radius: 50%;
  background: #e8f5e9;
  padding: 1rem;
}
.koshi h4 {
  text-align: center;
}
.koshi p {
  margin-top: 1rem;
}/*# sourceMappingURL=style.css.map */