@charset "UTF-8";
/* Reset CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

/* General Styles */
body {
  background-color: #fff;
}

.container {
  max-width: 500px;
  margin: 0 auto;
  background-color: #fff;
  overflow-x: hidden;
}

/* Header */
header {
  background-color: #fff;
  padding-top: 20px;
  padding-bottom: 15px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  header {
    max-width: 500px;
    margin: 0 auto;
    background-color: #fff;
    overflow-x: hidden;
  }
}

/* Main Visual */
.main-visual {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .main-visual {
    max-width: 500px;
    margin: 0 auto;
    background-color: #fff;
    overflow-x: hidden;
  }
}
.main-visual .mv-image {
  display: block;
  width: 100%;
}
.main-visual .mv-image.sp {
  display: none;
}
.main-visual .mv-image.pc {
  display: block;
  height: 636px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .main-visual .mv-image.sp {
    display: block;
  }
  .main-visual .mv-image.pc {
    display: none;
  }
}
.main-visual .cta-area {
  position: absolute;
  bottom: 35px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.cta-area {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -80px;
  z-index: 5;
}
.cta-area .cv-copy {
  width: 80%;
  margin-bottom: 20px;
}
.cta-area .cv-button {
  width: 70%;
  cursor: pointer;
}

/* Limited Offer */
.limited-offer {
  position: relative;
}
.limited-offer > img {
  display: block;
  width: 100%;
}
.limited-offer .cta-area {
  position: absolute;
  bottom: 72px;
}

/* Worries & Recommendation */
.worries-recommendation {
  position: relative;
}

.worries-wrapper {
  position: relative;
  z-index: 2;
}
.worries-wrapper .worries-img {
  display: block;
  width: 100%;
  margin-bottom: -50px;
}

.recommendation-wrapper {
  position: relative;
  z-index: 1;
}
.recommendation-wrapper .recommendation-img {
  display: block;
  width: 100%;
}

/* Merry Lesson */
.merry-lesson {
  margin-top: -50px;
}
.merry-lesson img {
  display: block;
  width: 100%;
}

/* Merits */
.merits {
  background-color: #fff;
  padding: 40px 16px;
  text-align: center;
}
.merits img {
  display: block;
  margin: 0 auto;
}

/* Teacher */
.teacher {
  margin-top: 30px;
}
.teacher img {
  display: block;
  width: 100%;
}

/* Voice (Slider) */
.voice {
  background-color: #6DA39A;
  padding: 50px 0;
  text-align: center;
  position: relative;
}

.voice-title {
  display: block;
  margin: 0 auto 20px auto;
  width: 50%; /* 適宜調整 */
}

/* Splide Slider Styles for Voice Section */
.voice .splide {
  box-sizing: border-box;
}
.voice .splide__slide {
  text-align: center;
}
.voice .splide__slide img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  border-radius: 8px;
}
.voice .splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10;
  width: 40px;
  height: 40px;
}
.voice .splide__arrow--prev {
  left: 50%;
  margin-left: -180px;
  background-image: url("img/prev.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.voice .splide__arrow--next {
  right: 50%;
  margin-right: -180px;
  background-image: url("img/next.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.voice .splide__pagination {
  bottom: -25px;
}
.voice .splide__pagination__page {
  background: #fff;
  opacity: 0.5;
  width: 8px;
  height: 8px;
  margin: 0 5px;
  border-radius: 50%;
  transition: opacity 0.3s ease, background-color 0.3s ease;
  border: none;
}
.voice .splide__pagination__page.is-active {
  background: #333;
  opacity: 1;
}

/* Flow */
.flow {
  background-color: #fff;
  padding: 40px 16px;
  text-align: center;
}
.flow img {
  display: block;
  margin: 0 auto;
}

.cta-area-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}
.cta-area-bottom .cv-copy {
  width: 80%;
  margin-bottom: 10px;
}
.cta-area-bottom .cv-button {
  width: 70%;
  cursor: pointer;
}

/* Course */
.course {
  background-color: #fff;
  padding: 50px 16px;
  text-align: center;
}

.course-title {
  display: block;
  margin: 0 auto 30px auto;
  width: 30%;
}

.course-item {
  display: block;
  margin: 0 auto 40px auto;
  width: 90%;
}
.course-item:last-child {
  margin-bottom: 0;
}

/* FAQ (Accordion) */
.faq {
  background-color: #fff;
  padding: 50px 16px;
}

.faq-title {
  display: block;
  margin: 0 auto 50px auto;
  text-align: center;
  width: 40%;
}

.accordion-item {
  border-top: 1px solid #BEBEBE;
}
.accordion-item:last-child {
  border-bottom: 1px solid #BEBEBE;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
}
.accordion-header p {
  margin: 0 12px;
  flex-grow: 1;
  color: #6DA39A;
  line-height: 1.6;
}
.accordion-header .accordion-arrow {
  width: 12px;
  height: auto;
  margin-right: 12px;
  transition: transform 0.3s ease;
}
.accordion-header .accordion-arrow.open {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 12px 32px 12px;
  display: none;
}
.accordion-content p {
  line-height: 1.6;
}

/* Form Section */
.form-section {
  background-color: #F5F5F5;
  padding: 50px 16px;
  margin-top: 30px;
}
.form-section .form-title {
  display: block;
  margin: 0 auto 30px;
  width: 80%;
}
.form-section form .form-group {
  margin-bottom: 24px;
}
.form-section form .date-time-group {
  display: flex;
  gap: 16px;
}
.form-section form .date-time-group .select-wrapper {
  flex: 1;
}
.form-section form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}
.form-section form label .required {
  color: #D66F38;
  font-size: 12px;
}
.form-section form label .optional {
  color: #999;
  font-size: 12px;
}
.form-section form input[type=text],
.form-section form input[type=email],
.form-section form input[type=tel],
.form-section form select {
  width: 100%;
  padding: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}
.form-section form .select-wrapper {
  position: relative;
}
.form-section form .select-wrapper select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 30px;
}
.form-section form .select-wrapper .select-arrow {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 12px;
  height: auto;
  pointer-events: none;
}
.form-section form .checkbox-group {
  text-align: center;
  margin-top: 40px;
}
.form-section form .checkbox-label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-weight: normal;
}
.form-section form .checkbox-label input[type=checkbox] {
  display: none;
}
.form-section form .checkbox-label .checkmark {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  margin-right: 10px;
  transition: background-color 0.2s, border-color 0.2s;
}
.form-section form .checkbox-label input[type=checkbox]:checked + .checkmark {
  background-color: #6DA39A;
  border-color: #6DA39A;
}
.form-section form .checkbox-label input[type=checkbox]:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.form-section form .checkbox-label a {
  color: #6DA39A;
  text-decoration: underline;
}
.form-section form .checkbox-label a:hover {
  text-decoration: none;
}
.form-section form .form-submit {
  text-align: center;
  margin-top: 30px;
}
.form-section form .form-submit input[type=image] {
  width: 80%;
  max-width: 300px;
  transition: opacity 0.3s;
}
.form-section form .form-submit input[type=image]:hover {
  opacity: 0.8;
}
.form-section .error-message {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  text-align: center;
}

/* エラーメッセージのスタイル */
.error-message {
  background-color: #ffe6e6;
  border: 1px solid #ff4444;
  border-radius: 6px;
  padding: 15px;
  margin: 20px 0;
  color: #cc0000;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.error-message::before {
  content: "⚠ ";
  font-weight: bold;
}

.form-group {
  margin-bottom: 20px;
  /* チェックボックスのスタイル */
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  padding-left: 10px;
  font-size: 14px;
}
.form-group label .required {
  color: #D66F38;
  font-size: 12px;
}
.form-group label .optional {
  color: #999;
  font-size: 12px;
}
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group select {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  position: relative;
  padding-right: 40px;
}
.form-group.checkbox-group {
  margin-bottom: 30px;
}
.form-group.checkbox-group .checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.6;
  padding: 0;
  margin: 0;
}
.form-group.checkbox-group .checkbox-label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 0;
  height: 0;
}
.form-group.checkbox-group .checkbox-label .checkmark {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border: 2px solid #6DA39A;
  border-radius: 3px;
  margin-right: 10px;
  margin-top: 2px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.form-group.checkbox-group .checkbox-label .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-group.checkbox-group .checkbox-label input[type=checkbox]:checked ~ .checkmark {
  background-color: #6DA39A;
}
.form-group.checkbox-group .checkbox-label input[type=checkbox]:checked ~ .checkmark::after {
  display: block;
}
.form-group.checkbox-group .checkbox-label input[type=checkbox]:focus ~ .checkmark {
  box-shadow: 0 0 0 2px rgba(109, 163, 154, 0.3);
}
.form-group.checkbox-group .checkbox-label a {
  color: #6DA39A;
  text-decoration: underline;
}
.form-group.checkbox-group .checkbox-label a:hover {
  color: #5a8a7d;
}
.form-group.checkbox-group .checkbox-label .required {
  color: #D66F38;
  font-size: 12px;
  margin-left: 4px;
}

/* カスタムセレクトボックスのラッパー */
.select-wrapper {
  position: relative;
  display: block; /* or inline-block depending on layout needs */
}
.select-wrapper .select-arrow {
  position: absolute;
  top: 50%;
  right: 15px; /* 右からの位置 */
  transform: translateY(-50%);
  width: 12px; /* FAQの矢印と同じサイズに */
  height: auto;
  pointer-events: none; /* 画像がクリックイベントを妨げないように */
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}
.form-submit input[type=image] {
  width: 70%;
  max-width: 300px;
  cursor: pointer;
}

/* 画像の表示に関する共通スタイル */
section img, .cta-area img, .cta-area-bottom img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* 各セクションごとの画像幅調整（必要に応じて） */
.main-visual .mv-image,
.limited-offer > img,
.worries-wrapper .worries-img,
.recommendation-wrapper .recommendation-img,
.merry-lesson img,
.teacher img,
.flow > img {
  width: 100%;
}

.merits img,
.course .course-item {
  width: auto;
  max-width: 100%;
}

/* タイトルSVG画像の中央寄せと幅 */
.voice-title,
.course-title,
.faq-title {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* CTAボタンの調整 */
.cta-area .cv-button, .cta-area-bottom .cv-button, .form-submit input[type=image] {
  max-width: 300px;
}

/* Confirmation Section (confirm.php) */
.confirmation-section {
  background-color: #F5F5F5;
  padding: 50px 16px;
  margin: 20px auto;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.confirmation-section h1 {
  text-align: center;
  color: #6DA39A;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #6DA39A;
}

.confirmation-details {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 6px;
  margin-bottom: 30px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}
.confirmation-details p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}
.confirmation-details p:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.confirmation-details p strong {
  display: inline-block;
  width: 120px;
  color: #6DA39A;
  font-weight: bold;
  margin-right: 10px;
}
@media (max-width: 480px) {
  .confirmation-details p strong {
    width: 100px;
    font-size: 13px;
  }
}

/* ボタンエリアの中央寄せ */
.confirmation-section {
  /* ボタンエリアのコンテナ */
}
.confirmation-section .button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.submit-button, .back-button {
  padding-block: 15px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin: 0 10px;
  transition: all 0.3s ease;
  min-width: 120px;
}
@media (max-width: 480px) {
  .submit-button, .back-button {
    display: block;
    margin: 10px 0;
  }
}

.submit-button {
  background-color: #6DA39A;
  color: #fff;
}
.submit-button:hover {
  background-color: #5a8a7d;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(109, 163, 154, 0.3);
}

.back-button {
  background-color: #fff;
  color: #6DA39A;
  border: 2px solid #6DA39A;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.back-button:hover {
  background-color: #6DA39A;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(109, 163, 154, 0.3);
}

/* Completion Section (complete.php) */
.completion-section {
  background-color: #F5F5F5;
  padding: 50px 16px;
  margin: 20px auto;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.completion-section h1 {
  color: #6DA39A;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  position: relative;
}
.completion-section h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #6DA39A;
  margin: 15px auto 0;
}
.completion-section p {
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}
.completion-section p:last-of-type {
  margin-bottom: 40px;
}
.completion-section .button {
  display: inline-block;
  padding: 15px 40px;
  background-color: #6DA39A;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(109, 163, 154, 0.2);
}
.completion-section .button:hover {
  background-color: #5a8a7d;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(109, 163, 154, 0.4);
}

/* 共通のコンテナスタイル調整 */
.confirmation-section .container, .completion-section .container {
  max-width: 500px;
  margin: 0 auto;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .confirmation-section, .completion-section {
    margin: 10px;
    padding: 30px 16px;
  }
  .confirmation-section h1, .completion-section h1 {
    font-size: 22px;
  }
  .confirmation-details {
    padding: 20px 15px;
  }
  .confirmation-details p strong {
    width: 90px;
    font-size: 12px;
  }
  .completion-section h1 {
    font-size: 24px;
  }
  .completion-section p {
    font-size: 14px;
  }
  .completion-section .button {
    padding: 12px 30px;
    font-size: 14px;
  }
}
/* 決済案内文のスタイル */
.payment-notice {
  background-color: #e8f4f1;
  border: 1px solid #6DA39A;
  border-radius: 6px;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
}
.payment-notice p {
  color: #2d5a4f;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* ボタンエリアの中央寄せ */
.confirmation-section {
  /* ボタンエリアのコンテナ */
}
.confirmation-section .button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

/* 日付重複エラーメッセージのスタイル */
.date-error-message {
  background-color: #ffe6e6;
  border: 1px solid #ff4444;
  border-radius: 6px;
  padding: 15px;
  margin: 15px 0;
  color: #cc0000;
  line-height: 1.6;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  display: none;
}
.date-error-message::before {
  content: "⚠ ";
  font-weight: bold;
}

/* 個人情報保護方針エラーメッセージのスタイル */
.privacy-error-message {
  background-color: #ffe6e6;
  border: 1px solid #ff4444;
  border-radius: 6px;
  padding: 15px;
  margin: 15px 0;
  color: #cc0000;
  line-height: 1.6;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  display: none;
}
.privacy-error-message::before {
  content: "⚠ ";
  font-weight: bold;
}

/* Legal Pages (個人情報保護方針・利用規約) */
.legal-page {
  max-width: 800px;
  margin: 40px auto;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.legal-page h1 {
  color: #6DA39A;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.legal-page h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #6DA39A;
  margin: 20px auto 0;
}
.legal-page .legal-content {
  line-height: 1.8;
  color: #333;
}
.legal-page .legal-content h2 {
  color: #6DA39A;
  font-size: 20px;
  font-weight: bold;
  margin: 40px 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8f4f1;
}
.legal-page .legal-content p {
  margin-bottom: 16px;
  font-size: 15px;
}
.legal-page .legal-content ul, .legal-page .legal-content ol {
  margin: 16px 0;
  padding-left: 24px;
}
.legal-page .legal-content ul li, .legal-page .legal-content ol li {
  margin-bottom: 8px;
  font-size: 15px;
}
.legal-page .legal-content ol {
  counter-reset: item;
}
.legal-page .legal-content ol > li {
  display: block;
  margin-bottom: 16px;
  position: relative;
  padding-left: 0;
}
.legal-page .legal-content ol > li::before {
  content: counter(item) ".";
  counter-increment: item;
  font-weight: bold;
  color: #6DA39A;
  margin-right: 8px;
}
.legal-page .legal-content .info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background-color: #f9f9f9;
  border-radius: 6px;
  overflow: hidden;
}
.legal-page .legal-content .info-table th, .legal-page .legal-content .info-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
  font-size: 15px;
}
.legal-page .legal-content .info-table th {
  background-color: #6DA39A;
  color: #fff;
  font-weight: bold;
  width: 30%;
}
.legal-page .legal-content .info-table td {
  background-color: #fff;
}
.legal-page .legal-content .info-table tr:last-child th, .legal-page .legal-content .info-table tr:last-child td {
  border-bottom: none;
}
.legal-page .legal-content .contact-info {
  background-color: #f8fffe;
  border: 1px solid #6DA39A;
  border-radius: 6px;
  padding: 20px;
  margin: 20px 0;
}
.legal-page .legal-content .contact-info p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}
.legal-page .legal-content .update-date {
  text-align: right;
  font-size: 13px;
  color: #666;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}
.legal-page .back-link {
  text-align: center;
  margin-top: 40px;
}
.legal-page .back-link .button {
  display: inline-block;
  padding: 15px 40px;
  background-color: #6DA39A;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(109, 163, 154, 0.2);
}
.legal-page .back-link .button:hover {
  background-color: #5a8a7d;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(109, 163, 154, 0.4);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .legal-page {
    margin: 20px 10px;
    padding: 30px 16px;
  }
  .legal-page h1 {
    font-size: 24px;
  }
  .legal-page .legal-content h2 {
    font-size: 18px;
    margin: 30px 0 15px 0;
  }
  .legal-page .legal-content p, .legal-page .legal-content li {
    font-size: 14px;
  }
  .legal-page .legal-content .info-table th, .legal-page .legal-content .info-table td {
    padding: 10px 12px;
    font-size: 14px;
  }
  .legal-page .legal-content .info-table th {
    width: 35%;
  }
  .legal-page .legal-content .contact-info p {
    font-size: 14px;
  }
  .legal-page .back-link .button {
    padding: 12px 30px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .legal-page .info-table th, .legal-page .info-table td {
    display: block;
    width: 100%;
    padding: 8px 12px;
  }
  .legal-page .info-table th {
    background-color: #6DA39A;
    color: #fff;
    border-bottom: none;
  }
  .legal-page .info-table td {
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 16px;
  }
}
/* Site Footer */
.site-footer {
  background-color: #2d5a4f;
  color: #fff;
  padding: 30px 0;
  margin-top: 60px;
}
.site-footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.site-footer .footer-content .footer-links {
  margin-bottom: 20px;
}
.site-footer .footer-content .footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 20px;
  font-size: 14px;
  transition: color 0.3s ease;
}
.site-footer .footer-content .footer-links a:hover {
  color: #a8d5c8;
  text-decoration: underline;
}
.site-footer .footer-content .footer-info p {
  margin: 0;
  font-size: 12px;
  color: #a8d5c8;
}

@media (max-width: 480px) {
  .site-footer {
    padding: 20px 0;
    margin-top: 40px;
  }
  .site-footer .footer-content .footer-links {
    margin-bottom: 15px;
  }
  .site-footer .footer-content .footer-links a {
    display: block;
    margin: 10px 0;
    font-size: 13px;
  }
  .site-footer .footer-content .footer-info p {
    font-size: 11px;
  }
}

/*# sourceMappingURL=style.css.map */
