/*
Theme Name: Pronoia
Theme URI: https://pronoia.jp
Author: Yellow Frontier
Description: WordPress theme for the Pronoia English school site.
Version: 1.0.1
Requires at least: 6.4
Requires PHP: 8.2
Text Domain: pronoia
*/

:root {
  --background: #ffffff;
  --background-gray: #fafafa;
  --background-yellow: #fffef0;
  --background-dark: #0c1b5e;
  --foreground: #0c1b5e;
  --text-gray: #4a5568;
  --text-light: #555555;
  --primary-yellow: #f9f60a;
  --primary-yellow-hover: #e6e309;
  --primary-yellow-light: #fdfb88;
  --primary-navy: #0c1b5e;
  --primary-navy-hover: #0a1548;
  --shadow: rgba(12, 27, 94, 0.08);
  --shadow-medium: rgba(12, 27, 94, 0.12);
  --shadow-hover: rgba(12, 27, 94, 0.15);
  --yellow-shadow: rgba(12, 27, 94, 0.2);
  --yellow-shadow-hover: rgba(12, 27, 94, 0.3);
}

@keyframes heroSlide {
  0% { opacity: 0; transform: scale(1.05); }
  5% { opacity: 1; }
  30% { opacity: 1; transform: scale(1); }
  40% { opacity: 0; transform: scale(1.02); }
  100% { opacity: 0; transform: scale(1.02); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 30px) scale(1.05); }
  66% { transform: translate(25px, -25px) scale(0.9); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, 20px) rotate(180deg); }
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  color: var(--foreground);
  background: var(--background);
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
}

.site-header {
  width: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px var(--shadow);
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.site-logo:hover {
  color: var(--primary-yellow);
}

.site-nav__list {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  list-style: none;
}

.site-nav a {
  color: var(--foreground);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.site-nav a:hover {
  color: var(--primary-yellow);
}

.site-header__cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-hover) 100%);
  color: var(--foreground);
  box-shadow: 0 4px 12px rgba(243, 218, 45, 0.35);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header__cta:hover,
.button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(243, 218, 45, 0.5);
}

.site-nav .site-header__cta {
  margin-left: 0;
}

.hero {
  width: 100%;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
  color: var(--foreground);
}

.hero--compact {
  min-height: 360px;
  background-size: cover;
  background-position: center;
}

.hero--compact::before,
.hero--home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 248, 224, 0.72), rgba(255, 233, 170, 0.35));
  z-index: 1;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: heroSlide 18s infinite;
}

.hero__content {
  max-width: 1200px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero__content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.hero__content p {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  opacity: 0.95;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hero__description {
  max-width: 920px;
  font-size: 1.1rem !important;
  opacity: 0.9;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

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

.container--narrow {
  max-width: 840px;
}

.container--form {
  max-width: 760px;
}

.section,
.point-section,
.course-section {
  width: 100%;
  padding: 5rem 2rem;
}

.point-section {
  background-color: #fafafa;
}

.section--muted {
  background-color: #fafafa;
}

.section-title,
.section__kicker {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 4rem;
  color: var(--foreground);
}

.points-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.point-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.point-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.point-card--right .point-card__image {
  order: 2;
}

.point-card__image {
  min-height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #febac4;
  position: relative;
  display: flex;
  align-items: flex-start;
}

.point-card__label {
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-hover) 100%);
  color: var(--foreground);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0 0 20px 0;
  box-shadow: 0 4px 12px var(--yellow-shadow);
  letter-spacing: 0.05em;
}

.point-card__content {
  padding: 3rem;
}

.point-card__content h3 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.point-card__content h4 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.point-card__content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
  letter-spacing: 0.02em;
}

.course-section {
  background: linear-gradient(135deg, #fff9e6, #fffef8, #fff9e6, #ffffff, #fffef8);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  position: relative;
  overflow: hidden;
}

.course-section::before,
.course-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.course-section::before {
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(243, 218, 45, 0.12) 0%, rgba(249, 232, 113, 0.05) 40%, transparent 70%);
  animation: float1 20s ease-in-out infinite;
}

.course-section::after {
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 232, 113, 0.1) 0%, rgba(243, 218, 45, 0.04) 40%, transparent 70%);
  animation: float2 18s ease-in-out infinite;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.floating-circle--1 {
  top: 20%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(243, 218, 45, 0.15) 0%, transparent 70%);
  animation: float3 25s ease-in-out infinite;
}

.floating-circle--2 {
  top: 60%;
  right: 8%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(249, 232, 113, 0.12) 0%, transparent 70%);
  animation: float1 22s ease-in-out infinite reverse;
}

.floating-circle--3 {
  bottom: 10%;
  left: 50%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(243, 218, 45, 0.1) 0%, transparent 70%);
  animation: float2 28s ease-in-out infinite;
}

.course-section .container {
  position: relative;
  z-index: 1;
}

.course-summary-card {
  background: linear-gradient(135deg, #fffef8 0%, #ffffff 100%);
  border: 3px solid var(--primary-yellow);
  border-radius: 20px;
  padding: 3.5rem;
  text-align: center;
  box-shadow: 0 10px 30px var(--yellow-shadow), 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-summary-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--yellow-shadow-hover), 0 6px 16px rgba(0, 0, 0, 0.08);
}

.course-summary-card h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
}

.course-summary-card p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #555;
  margin: 0 auto 2.5rem;
  max-width: 800px;
  letter-spacing: 0.02em;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.post-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.post-card {
  display: block;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: inherit;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-medium);
}

.post-card__image {
  position: relative;
  width: 100%;
  padding-top: 65%;
  overflow: hidden;
  background: var(--background-gray);
  display: block;
}

.post-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-card:hover .post-card__image img {
  transform: scale(1.05);
}

.post-card__body {
  padding: 1.25rem;
}

.post-card time {
  display: block;
  font-size: 0.75rem;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

.post-card h2 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card p {
  margin-top: 0.75rem;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.tag-list,
.tag-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.tag-list a,
.tag-filter a {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  background: var(--background-yellow);
  color: var(--foreground);
  border: 1px solid rgba(249, 246, 10, 0.3);
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.tag-filter {
  margin: 0 0 2rem;
}

.post-count {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.course-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.course-card,
.feature-card,
.blog-cta,
.thanks-box {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px var(--shadow);
}

.course-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
}

.course-card img,
.feature-card img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.course-card > div,
.feature-card {
  padding: 2rem;
}

.course-card__target,
.course-card__price {
  color: var(--primary-navy);
  font-weight: 800;
}

.qa-section {
  width: 100%;
  padding: 5rem 2rem;
  background-color: white;
}

.qa-container {
  max-width: 900px;
  margin: 0 auto;
}

.qa-section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--foreground);
}

.qa-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.qa-item {
  background-color: white;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.qa-item:hover {
  border-color: var(--primary-yellow-light);
  box-shadow: 0 4px 12px var(--shadow-medium);
}

.qa-question {
  width: 100%;
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, #fffef8 0%, #ffffff 100%);
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--foreground);
  text-align: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.02em;
  list-style: none;
}

.qa-question::-webkit-details-marker {
  display: none;
}

.qa-question:hover {
  background: linear-gradient(135deg, #fffacd 0%, #fffef8 100%);
}

.qa-icon {
  min-width: 30px;
  text-align: center;
  color: var(--primary-yellow);
  transition: transform 0.3s ease;
}

.qa-icon::before {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
}

.qa-item[open] .qa-icon::before {
  content: "−";
}

.qa-question:hover .qa-icon {
  transform: scale(1.1);
}

.qa-answer {
  padding: 2rem;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--foreground);
  background-color: #fafafa;
  animation: slideDown 0.3s ease;
  letter-spacing: 0.02em;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.single-post__eyecatch img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.single-post__header {
  padding: 4rem 0 2rem;
}

.single-post__header h1 {
  color: var(--foreground);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0.75rem 0 1rem;
}

.entry-content {
  color: var(--foreground);
  font-size: 1.05rem;
  line-height: 1.9;
}

.entry-content h2 {
  margin-top: 2.4em;
  font-size: 1.9rem;
}

.entry-content h3 {
  margin-top: 2em;
}

.entry-content a {
  color: var(--primary-navy);
  text-decoration: underline;
}

.blog-cta,
.thanks-box {
  margin: 3.5rem 0;
  padding: 3rem;
  text-align: center;
}

.back-link {
  margin-bottom: 4rem;
}

.speech-bubble {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  margin: 1.75rem 0;
}

.speech-bubble__image {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
}

.speech-bubble__body {
  padding: 1.2rem;
  background: var(--background-yellow);
  border-radius: 16px;
}

.speech-bubble__name {
  font-weight: 700;
}

.pronoia-form {
  display: grid;
  gap: 0;
  max-width: 700px;
  margin: 2rem auto 0;
  padding: 3.5rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pronoia-form label {
  display: block;
  margin-bottom: 2rem;
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.pronoia-form label span {
  color: #d93025;
  font-size: 0.875rem;
  margin-left: 0.5rem;
}

.pronoia-form input,
.pronoia-form select,
.pronoia-form textarea {
  width: 100%;
  margin-top: 0.625rem;
  padding: 1rem 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background-color: white;
  color: var(--foreground);
  font-size: 1rem;
  font: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pronoia-form input:focus,
.pronoia-form select:focus,
.pronoia-form textarea:focus {
  outline: none;
  border-color: var(--primary-yellow);
  box-shadow: 0 0 0 4px rgba(243, 218, 45, 0.15), 0 2px 8px rgba(243, 218, 45, 0.1);
  transform: translateY(-1px);
}

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

.pronoia-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("assets/images/icons/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 20px 20px;
  padding-right: 3rem;
}

.form-message {
  padding: 1rem;
  border-radius: 12px;
  font-weight: 700;
}

.page-hero {
  width: 100%;
  margin-top: 70px;
  padding: 5rem 2rem 3rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--primary-yellow);
  color: var(--foreground);
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 248, 224, 0.72), rgba(255, 233, 170, 0.35));
  z-index: 0;
}

.page-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-hero__content {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.page-hero__kicker {
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--foreground);
  margin-bottom: 1rem;
  opacity: 0.8;
}

.page-hero h1 {
  font-size: 3.1rem;
  font-weight: 800;
  color: var(--foreground);
}

.about-page {
  min-height: 100vh;
}

.about-director-section {
  padding: 5rem 2rem;
  background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--foreground);
  position: relative;
  padding-bottom: 1rem;
}

.about-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-hover) 100%);
  border-radius: 2px;
}

.about-director-card {
  background: #ffffff;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.about-director-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.06);
}

.about-director-image-wrap {
  width: 100%;
}

.about-director-image {
  width: 100%;
  aspect-ratio: 7 / 8;
  background-size: cover;
  background-position: top center;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 8px 32px rgba(253, 216, 53, 0.3);
  overflow: hidden;
}

.about-director-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
  z-index: -1;
}

.about-director-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.about-director-name {
  font-size: 2rem;
  font-weight: 800;
  color: var(--foreground);
  margin: 0;
  letter-spacing: 0.02em;
}

.about-director-role {
  font-size: 1rem;
  color: var(--text-gray);
  margin: 0;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  background-color: #fafafa;
  border-radius: 8px;
  display: inline-block;
  width: fit-content;
}

.about-director-profile {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1rem;
}

.about-profile-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0 0 1rem;
  padding-left: 1rem;
  border-left: 4px solid var(--primary-yellow);
}

.about-profile-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-profile-list li {
  font-size: 1rem;
  color: var(--text-gray);
  padding: 0.5rem 1.25rem;
  background-color: #fafafa;
  border-radius: 8px;
  display: inline-block;
  width: fit-content;
}

.about-message-box {
  background-color: #fafafa;
  padding: 1.5rem;
  border-radius: 8px;
}

.about-message {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-gray);
  margin: 0;
}

.course-page {
  min-height: 100vh;
}

.course-detail-section {
  padding: 5rem 2rem 6rem;
  background-color: white;
}

.course-detail-link {
  display: block;
  color: inherit;
}

.course-detail-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-bottom: 6rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.course-detail-item:hover {
  transform: scale(1.03);
}

.course-detail-item--reverse {
  direction: rtl;
}

.course-detail-item--reverse > * {
  direction: ltr;
}

.course-detail-number {
  font-size: 8rem;
  font-weight: 900;
  color: rgba(249, 246, 10, 0.3);
  line-height: 1;
  margin-bottom: -2rem;
  letter-spacing: -0.05em;
}

.course-detail-text h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.course-detail-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin: 0 0 2rem;
  letter-spacing: 0.02em;
}

.course-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary-yellow);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-detail-item:hover .course-detail-button {
  background-color: var(--primary-yellow-hover);
  transform: scale(1.1);
}

.course-detail-image {
  width: 100%;
  padding-top: 65%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.course-cta-section {
  width: 100%;
  padding: 8rem 2rem;
  background-color: #f8f8f8;
  position: relative;
  overflow: hidden;
}

.course-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.course-cta-subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: #666;
  margin: 0 0 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.course-cta-message {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--foreground);
  margin: 0 0 2rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.course-cta-container h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0 0 3rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.course-cta-button {
  display: inline-block;
  padding: 1.75rem 5rem;
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-hover) 100%);
  color: var(--foreground);
  border: none;
  border-radius: 60px;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 40px var(--yellow-shadow);
  letter-spacing: 0.08em;
  position: relative;
  overflow: hidden;
}

.course-cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.course-cta-button:hover::before {
  left: 100%;
}

.course-cta-button:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 16px 50px var(--yellow-shadow-hover);
}

.form-message--success {
  background: #e9f8f2;
}

.form-message--error {
  background: #fff0ed;
}

.legal-list {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-top: 1px solid rgba(12, 27, 94, 0.12);
}

.legal-list dt,
.legal-list dd {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(12, 27, 94, 0.12);
}

.legal-list dt {
  font-weight: 700;
}

.lp-page {
  background: #fff;
}

.lp-fullscreen a,
.lp-fullscreen img {
  display: block;
  width: 100%;
}

.site-footer {
  width: 100%;
  padding: 3.5rem 2rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  border-top: 1px solid rgba(12, 27, 94, 0.1);
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.site-footer__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.site-footer__brand {
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.site-footer__logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.site-footer__contact,
.site-footer__contact a {
  color: var(--text-gray);
  font-weight: 600;
}

.site-footer__contact p {
  margin-bottom: 0.4rem;
}

.site-footer__nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  flex: 1;
  flex-wrap: wrap;
}

.site-footer__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  list-style: none;
}

.site-footer__list a {
  position: relative;
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 600;
  padding-bottom: 0.2rem;
}

.site-footer__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: var(--primary-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.site-footer__list a:hover::after {
  transform: scaleX(1);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
}

.site-footer__legal a {
  color: #7c839a;
  font-size: 0.85rem;
}

.site-footer__divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.site-footer__copy {
  text-align: center;
  color: var(--text-gray);
  font-size: 0.85rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .site-header__inner {
    padding: 0 0.75rem;
  }

  .site-logo {
    font-size: 0.9rem;
  }

  .site-nav__list {
    gap: 0.5rem;
  }

  .site-nav a {
    font-size: 0.65rem;
  }

  .site-header__cta {
    padding: 0.4rem 0.75rem;
    font-size: 0.6rem;
    white-space: nowrap;
  }

  .hero {
    margin-top: 0;
  }

  .page-hero {
    margin-top: 60px;
    padding: 4rem 2rem 2rem;
  }

  .page-hero h1 {
    font-size: 2.4rem;
  }

  .about-director-section {
    padding: 4rem 1.5rem;
  }

  .about-section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .about-director-card {
    padding: 2rem;
    grid-template-columns: 1fr;
  }

  .about-director-name {
    font-size: 1.75rem;
  }

  .about-message {
    font-size: 1rem;
  }

  .hero__content h1 {
    font-size: 2rem;
  }

  .hero__content p {
    font-size: 1rem;
  }

  .hero__description {
    font-size: 0.9rem !important;
  }

  .section,
  .point-section,
  .course-section {
    padding: 4rem 1.5rem;
  }

  .section-title,
  .section__kicker,
  .qa-section-title {
    font-size: 2rem;
  }

  .qa-question {
    font-size: 0.9rem;
    padding: 1.25rem;
  }

  .qa-answer {
    font-size: 0.85rem;
    padding: 1.25rem;
  }

  .point-card,
  .course-card,
  .form-grid,
  .legal-list {
    grid-template-columns: 1fr;
  }

  .point-card--right .point-card__image {
    order: 0;
  }

  .point-card__content {
    padding: 2rem;
  }

  .point-card__content h3 {
    font-size: 1.5rem;
  }

  .point-card__content h4 {
    font-size: 1.25rem;
  }

  .course-summary-card {
    padding: 2rem;
  }

  .course-summary-card h3 {
    font-size: 1.5rem;
  }

  .course-summary-card p {
    font-size: 0.9rem;
  }

  .course-detail-section {
    padding: 5rem 2rem;
  }

  .course-detail-item {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
  }

  .course-detail-item--reverse {
    direction: ltr;
  }

  .course-detail-number {
    font-size: 5rem;
    margin-bottom: -1rem;
  }

  .course-detail-text h2 {
    font-size: 1.5rem;
  }

  .course-detail-text p {
    font-size: 0.95rem;
  }

  .course-detail-image {
    padding-top: 70%;
  }

  .course-cta-section {
    padding: 5rem 2rem;
  }

  .course-cta-subtitle {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .course-cta-message {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .course-cta-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .course-cta-button {
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
    width: 100%;
    max-width: 350px;
  }

  .floating-circle,
  .course-section::before,
  .course-section::after {
    opacity: 0.5;
  }

  .post-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 3rem 1.5rem 1.5rem;
  }

  .site-footer__main {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__nav-wrap {
    width: 100%;
    justify-content: space-between;
  }

  .site-footer__list,
  .site-footer__legal {
    flex-direction: column;
  }

  .pronoia-form {
    padding: 2rem 1.5rem;
  }
}
