/* Custom CSS Variables (derived from Tailwind config and provided CSS) */
:root {
  --color-blue-primary: #2563eb;
  --color-blue-dark: #1e40af;
  --color-blue-light-bg: #eff6ff;
  --color-blue-text-light: #dbeafe;
  --color-orange-primary: #ff8c00;
  --color-pink-hover: #f7a8b8;
  --color-gray-text: #6b7280;
  --color-dark-navy: #0a1e3f;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-500: #6b7280;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  --color-green-50: #f0fdf4;
  --color-green-800: #166534;
  --color-yellow-50: #fefce8;
  --color-yellow-500: #eab308;
  --color-yellow-800: #92400e;
}

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

body {
  max-width: 100%;
  font-family: 'Noto sans Japanese', 'M PLUS 1p', 'Helvetica Neue', 'Arial', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', 'Meiryo', 'sans-serif';
  line-height: 1.6;
  color: #333;
  min-height: 100vh;
  font-size: 16px;
  display: flex;
  flex-direction: column;
}

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


.header {
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #e5e7eb;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}
.logo-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-icon {
  background: #2563eb;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-text p {
  font-size: 0.875rem;
  color: #6b7280;
}

.nav-menu {
  display: none; /* Hidden by default for mobile (controlled by JS for hamburger) */
  flex-direction: column;
  position: absolute;
  top: 4rem; /* Header height */
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  gap: 0;
}

.nav-menu.active {
  display: flex;
}

.nav-menu .nav-link {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.nav-menu .nav-link:last-child {
  border-bottom: none;
}
.mobile-menu-btn {
  display: flex; /* Visible by default for mobile */
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 1.5rem;
  height: 2px;
  background: #374151;
  transition: all 0.3s;
}

/* Hero Section */
.hero-section {
  width: 100%;
  padding: 3rem 0;
  /* py-12 */
  background: linear-gradient(to right, #2563eb, #1e40af);
  color: white;
}

.hero-title {
  font-size: 1.5rem;
  /* text-3xl */
  font-weight: 700;
  /* font-bold */
  margin-bottom: 1rem;
}

.hero-subtitle {
  margin: 0 auto;
  max-width: 900px;
  font-size: 0.85rem;
  /* text-base */
  line-height: 1.625;
  /* leading-relaxed */
  color: var(--color-blue-text-light);
}

.map-container {
  background: white;
  border-radius: 0.5rem;
  /* rounded-lg */
  padding: 0.5rem;
  /* p-2 */
  margin-top: 2rem;
  /* mt-8 */
}

.map-wrapper {
  aspect-ratio: 16 / 9;
  width: 100%;
}

iframe {
  border-radius: 0.375rem;
  /* rounded-md */
}

/* Section Common Styles */
.section-padding {
  width: 100%;
  padding: 1rem 0;
  /* py-12 */
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 2rem;
  /* mb-8 */
}

.section-title {
  font-size: 1.5rem;
  /* text-2xl */
  font-weight: 700;
  /* font-bold */
  letter-spacing: -0.025em;
  /* tracking-tighter */
  color: var(--color-gray-800);
  margin-bottom: 1rem;
}
.section-title > strong {
  font-weight: 800;
  color: red;
}
.section-subtitle {
  text-align: left;
  max-width: 900px;
  color: var(--color-gray-700);
  /* text-muted-foreground */
}

/* Grid Layouts */
.grid-3-col {
  display: grid;
  gap: 1.5rem;
  /* gap-6 */
  margin: 0 auto;
}

.grid-2-col {
  display: grid;
  gap: 1.5rem;
  /* gap-6 */
}

.grid-4-col {
  display: grid;
  gap: 1.5rem;
  /* gap-6 */
  margin: 0 auto;
}

.grid-2-col-contact {
  display: grid;
  gap: 1.5rem;
  /* gap-6 */
  max-width: 32rem;
  /* max-w-2xl */
  margin: 0 auto;
}

.grid-2-col-bus {
  display: grid;
  gap: 1.5rem;
  /* gap-6 */
}

/* Card Styles */
.card {
  background: white;
  border-radius: 0.5rem;
  /* rounded-lg */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  /* shadow-md */
  border: 1px solid var(--color-gray-200);
  overflow: hidden;
  transition: box-shadow 0.3s ease-in-out;
    text-align: left;
}

.card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  /* hover:shadow-lg */
}

.card-header {
  padding: 1rem; /* p-4 */
  border-bottom: 1px solid var(--color-gray-200);
  display: flex;
  gap: 0.5rem; /* gap-2 */
  align-items: center;
}


.card-header-access {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.card-header-access h3 {
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-content {
  padding: 0.5rem;
}
.card-content-access {
  padding: 1.5rem;
}

.card-icon {
  border-radius: 9999px;
  /* rounded-full */
  background-color: #eff6ff;
  /* bg-blue-50 */
  padding: 0.5rem;
  /* p-2 */
}

.card-title {
  font-size: 1.125rem;
  /* text-lg */
  font-weight: 700;
  /* font-bold */
  color: var(--color-gray-800);
}
.card-title > strong {
  color :red;
}
.card-description {
  color: var(--color-gray-600);
}

/* Reason Cards */
.reason-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align items to the start (left) on mobile */
  padding: 1rem;
  /* p-4 */
  border-top: 4px solid #3b82f6;
  /* border-blue-500 */
}

/* Course Cards */
.course-card {
  margin-bottom: 1rem;
  /* mb-12 */
  padding: 1rem;
  /* p-4 */
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--color-gray-200);
}

.course-title {
  font-size: 1.25rem;
  /* text-xl */
  font-weight: 700;
  /* font-bold */
  margin-bottom: 1rem;
  /* mb-4 */
  text-align: center;
  color: #1d4ed8;
  /* text-blue-700 */
}

.course-image {
  margin: 0 auto 1rem;
  /* mx-auto mb-4 */
  border-radius: 0.375rem;
  /* rounded-md */
  object-fit: cover;
  width: 100%;
}

.course-subtitle-h4 {
  font-size: 1.125rem;
  /* text-lg */
  font-weight: 600;
  /* font-semibold */
  margin-bottom: 0.5rem;
  /* mb-2 */
  color: var(--color-gray-800);
}

.course-text {
  color: var(--color-gray-700);
  /* text-muted-foreground */
  font-size: 0.875rem;
  /* text-sm */
  margin-bottom: 0.5rem;
}

.list-disc-inside {
  list-style: disc;
  list-style-position: inside;
  color: var(--color-gray-700);
  /* text-muted-foreground */
  font-size: 0.875rem;
  /* text-sm */
  line-height: 1.5;
}

.list-disc-inside li {
  margin-bottom: 0.25rem;
}

.price-table {
  width: 100%;
  margin-bottom: 1rem;
  /* mb-4 */
  border: 1px solid var(--color-gray-200);
  font-size: 0.875rem;
  /* text-sm */
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  border: 1px solid var(--color-gray-200);
  padding: 0.5rem 0.75rem;
  /* px-3 py-2 */
  text-align: left;
}

.price-table thead th {
  background-color: var(--color-gray-100);
  font-weight: 700;
  /* font-bold */
  color: var(--color-gray-700);
}

.note-text {
  font-size: 0.75rem;
  /* text-xs */
  color: var(--color-gray-700);
  /* text-muted-foreground */
}

/* Admission Cards */
.admission-card {
  padding: 1rem;
  align-items: center;
  /* p-4 */
}

.card-title-small {
  font-size: 1.125rem;
  /* text-lg */
  font-weight: 700;
  /* font-bold */
  color: var(--color-gray-800);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.admission-price {
  font-size: 1.5rem;
  /* text-2xl */
  font-weight: 700;
  /* font-bold */
  color: #2563eb;
  /* text-blue-600 */
}

.admission-price-unit {
  font-size: 1rem;
  /* text-base */
  color: var(--color-gray-600);
}

/* FAQ Accordion */
.accordion-container {
  width: 100%;
  max-width: 48rem;
  /* max-w-3xl */
  margin: 0 auto;
  border: 1px solid var(--color-gray-200);
  border-radius: 0.5rem;
  /* rounded-lg */
  background: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  /* shadow-md */
}

.accordion-item {
  border-bottom: 1px solid var(--color-gray-200);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-trigger {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  /* px-4 py-3 */
  font-size: 1rem;
  /* text-base */
  font-weight: 500;
  /* font-medium */
  color: var(--color-gray-800);
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.accordion-trigger:hover {
  background-color: #f9fafb;
  /* hover:bg-gray-50 */
}

.accordion-trigger::marker {
  content: "";
  /* Remove default marker */
}

.accordion-trigger::before {
  content: "\25B6";
  /* Right-pointing triangle */
  display: inline-block;
  margin-right: 0.5rem;
  transition: transform 0.2s ease-in-out;
}

.accordion-item[open]>.accordion-trigger::before {
  transform: rotate(90deg);
  /* Rotate to down-pointing */
}

.accordion-content {
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  /* px-4 pb-3, adjusted for icon */
  color: var(--color-gray-700);
  font-size: 0.875rem;
  /* text-sm */
}

/* Free Trial Section (CTA) */
.free-trial-section {
  width: 100%;
  padding: 3rem 0;
  /* py-12 */
  background-color: white;
}

.free-trial-content {
  max-width: 28rem;
  /* max-w-md */
  margin: 0 auto;
}

.free-trial-title {
  font-size: 1.5rem;
  /* text-2xl */
  font-weight: 700;
  /* font-bold */
  color: var(--color-gray-800);
  margin-bottom: 0.5rem;
  /* mb-2 */
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 2rem;
  /* px-8 py-4 */
  border-radius: 9999px;
  /* rounded-full */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  /* shadow-lg */
  transition: all 0.3s ease;
  /* transition-all duration-300 */
  text-decoration: none;
  font-weight: 800;
  /* font-extrabold */
}

.btn-primary {
  background-color: var(--color-orange-primary);
  border: 2px solid var(--color-orange-primary);
  color: white;
  font-size: 1.5rem;
  /* text-2xl */
  /* For -webkit-text-stroke effect */
  text-shadow:
    1px 1px 0 #0000aa,
    -1px -1px 0 #0000aa,
    1px -1px 0 #0000aa,
    -1px 1px 0 #0000aa;
}

.btn-primary:hover {
  background-color: var(--color-pink-hover);
  border-color: var(--color-pink-hover);
  transform: translateY(-0.125rem);
  /* hover:-translate-y-0.5 */
}

.free-trial-small-bottom {
  font-size: 0.875rem;
  /* text-sm */
  color: var(--color-dark-navy);
  margin-top: 1rem;
  /* mt-4 */
}


.card-title-white {
  font-weight: 600;
  /* font-semibold */
  font-size: 1.125rem;
  /* text-lg */
  margin-bottom: 0.25rem;
  /* mb-1 */
}

.card-text-white {
  font-size: 0.875rem;
  /* text-sm */
  margin-bottom: 0.25rem;
}

.card-text-white-opacity {
  font-size: 0.75rem;
  /* text-xs */
  margin-top: 0.5rem;
  /* mt-2 */
  opacity: 0.8;
  /* opacity-80 */
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  /* rounded-lg */
  padding: 1rem;
  /* p-4 */
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  /* shadow-md */
}

.contact-card i {
  font-size: 2rem;
  /* h-8 w-8 */
  margin: 0 auto 0.75rem;
  /* mx-auto mb-3 */
  display: block;
  color: white;
}
.cta-section {
    padding: 3% 0;
    background: #2563eb;
    color: white;
}
.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-content>p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 2%;
    text-align: center;
}

.contact-card i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.contact-card h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}


.hours {
  font-size: 1.125rem;
    opacity: 0.8;
    font-weight: 600;
     color: #000000;
 
}
.hours-badge {
  color: #000000;
 padding-left: 6%;
margin : 0 auto;
  font-size: 1.125rem;
  display: inline-block;
}
.hours-badge > span{
 font-weight: 600;
}
.access-section {
  background: #f9fafb;
  width: 100%;
  padding: 1rem 0;
}
.location-content {
  padding: 1.5rem;
}

.address-info {
  display: flex;
  align-items: flex-start;
  gap: 1%;
  margin-bottom: 1rem;
}

.address-text {
  font-size: 1rem;
  /* text-base */
  font-weight: 600;
  /* font-semibold */
  color: var(--color-gray-800);
}

.address {
  font-size: 1.125rem;
  font-weight: 600;
    color : #000000;
}
.address > span {
  font-size: 0.9rem;
    font-weight: 500;
}
.phone-link {
  color : #000000;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 600;
  transition: color 0.3s;
}

.phone-link:hover {
  color: #dbeafe;
}

.contact-item {
  padding-left: 6%;
  display: flex;
  align-items: center;
  gap: 1%;
}
.contact-item02 {
  padding-left: 6%;
  display: flex;
  align-items:flex-start;
  gap: 1%;
}
.landmark-text {
  font-size: 0.875rem;
  /* text-sm */
  color: var(--color-gray-600);
  margin-top: 0.25rem;
  /* mt-1 */
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  /* gap-2 */
  margin-bottom: 0.5rem;
  /* mb-2 */
  color: var(--color-gray-700);
  font-size: 0.875rem;
  /* text-sm */
}

.contact-detail-item i {
  font-size: 1rem;
  /* h-4 w-4 */
}

.hover-underline:hover {
  text-decoration: underline;
}


.access-card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom:1.5rem;
}

.access-detail-card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
}

.route-item {
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 4px solid;
}

.route-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.route-primary {
  border-left-color: #3b82f6;
}

.route-secondary {
  border-left-color: #10b981;
}

.route-tertiary {
  border-left-color: var(--color-yellow-500);
}

.route-title {
  font-size: 1rem;
  /* text-base */
  font-weight: 600;
  /* font-semibold */
  margin-bottom: 0.25rem;
  /* mb-1 */
  color: var(--color-gray-800);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.badge-primary {
  background-color: #3b82f6;
}

.badge-secondary {
  background: #6b7280;
  color: white;
}
.route-steps {
  list-style: decimal;
  list-style-position: inside;
  font-size: 0.875rem;

}

.route-steps li {
  margin-bottom: 0.25rem;
}

.badge-tertiary {
  background-color: var(--color-yellow-500);
}

.list-decimal-inside {
  list-style: decimal;
  list-style-position: inside;
  font-size: 0.875rem;
  /* text-sm */
  color: var(--color-gray-600);
  line-height: 1.5;
}

.list-decimal-inside li {
  margin-bottom: 0.25rem;
}

.route-description {
  font-size: 0.875rem;
  /* text-sm */
  color: var(--color-gray-600);
}

.parking-info {
  background: #f0fdf4;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #166534;
}

.parking-info p {
  margin-bottom: 0.5rem;
}
.parking-bike {
  background: #eff6ff;
  color: #1e40af;
}

.parking-green {
  background-color: var(--color-green-50);
  color: var(--color-green-800);
}

.parking-blue {
  background-color: var(--color-blue-light-bg);
  color: var(--color-blue-dark);
}

/* Bus Section */
.bus-card {
  margin: 0 auto;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
}

.bus-info-title {
  font-size: 1.125rem;
  /* text-lg */
  font-weight: 600;
  /* font-semibold */
  margin-bottom: 0.75rem;
  /* mb-3 */
  color: var(--color-gray-800);
}

.route-list {
  list-style: none;
  line-height: 1.5;
}

.route-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  /* gap-2 */
  font-size: 0.875rem;
  /* text-sm */
  color: var(--color-gray-700);
  margin-bottom: 0.5rem;
  /* space-y-2 */
}

.route-list li i {
  font-size: 1rem;
  /* h-4 w-4 */
  flex-shrink: 0;
  margin-top: 0.25rem;
  /* mt-1 */
  color: #2563eb;
  /* text-blue-600 */
}

.route-badge {
  background-color: var(--color-gray-200);
  color: var(--color-gray-700);
  padding: 0.25rem 0.5rem;
  /* px-2 py-1 */
  border-radius: 0.25rem;
  /* rounded-md */
  font-size: 0.75rem;
  /* text-xs */
  font-weight: 500;
  /* font-medium */
  margin-right: 0.25rem;
  /* mr-1 */
}

.schedule-info {
  padding: 0.75rem;
  /* p-3 */
  border-radius: 0.375rem;
  /* rounded-md */
  font-size: 0.875rem;
  /* text-sm */
}

.schedule-yellow {
  background-color: var(--color-yellow-50);
  color: var(--color-yellow-800);
}

.schedule-info i {
  font-size: 1rem;
  /* h-4 w-4 */
  margin-right: 0.25rem;
  /* mr-1 */
}

/* Footer */
.footer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  /* gap-2 */
  padding: 1.5rem 1rem;
  /* py-6 px-4 */
  width: 100%;
  flex-shrink: 0;
  align-items: center;
  border-top: 1px solid var(--color-gray-200);

}

.copyright {
  font-size: 0.75rem;
  /* text-xs */
}

.footer-links {
  display: flex;
  gap: 1rem;
  /* gap-4 */
  margin-top: 0.5rem;
  /* mt-2 */
}

.footer-links a {
  font-size: 0.75rem;
  /* text-xs */
  color: var(--color-gray-300);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  /* underline-offset-4 */
}

/* Icons */
.icon-blue {
  color: #2563eb;
  /* text-blue-600 */
  font-size: 1.25rem;
  /* h-5 w-5 */
}

.icon-white {
  color: white;
  font-size: 2rem;
  /* h-8 w-8 */
}

.icon-small {
  font-size: 1rem;
  /* h-4 w-4 */
}
.list-check {
    list-style: none;
    /* デフォルトのリストスタイルを削除 */
    padding-left: 0;
    margin-top:0;
}

.list-check li {
    position: relative;
    padding-left: 1.8rem;
    /* チェックアイコン分のスペース */
    margin-bottom: 0.5rem;
    font-size: clamp(6px, 4.2vw, 22px);
    color: var(--color-text-dark-navy);
}

.list-check li::before {
    content: '\f00c';
    /* Font Awesomeのチェックアイコン */
    font-family: 'Font Awesome 5 Free';
    font-weight: 800;
    position: absolute;
    left: 0;
    color: var(--color-text-blue);
    /* チェックアイコンの色 */
}
/* Responsive Adjustments */

.schedule-container {
  display: flex; /* 子要素を横並びにする */
  gap: 20px;
  flex-wrap: wrap; /* 画面幅が狭い時に折り返す */
}

.day-column {
  flex: 1; /* 親要素の幅に合わせて伸縮 */
  min-width: 200px;
  background-color: #f7f7f7;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
}

.day-column h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 15px;
}

.time-list {
  list-style-type: none; /* デフォルトのリストマーカーを消す */
  padding: 0;
}

.time-list li {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 10px;
  transition: transform 0.2s; /* ホバー時のアニメーション */
}

.time-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}




.free-trial-small-top {
    font-size: clamp(6px, 5vw, 24px);
    color: var(--color-text-dark-navy);
    margin: 0;
    padding-bottom: 0.5%;
}
.free-trial-small-top > strong{
  color:red;
}
.free-trial-small-bottom {
    font-size: clamp(6px, 5vw, 24px);
    color: var(--color-text-dark-navy);
    margin: 0;
    padding-top: 0.5%;
}

.free-trial-flow-container {

    /* 左右のパディングを0に変更 */
    font-size: 1.5rem;
}



.free-trial-flow-section {
    background-color: var(--color-bg-lighter);
    /* 明るい背景 */
    overflow: hidden;
    margin: 0 auto;
    /* 泡がはみ出さないように */
    padding: 0;
    position: relative;
    /* z-indexを有効にするために必要 */
    z-index: 1;

}

.Free-trial {
    width: 100%;
    max-width: 450px;
    padding: 4% 2% 0 2%;
    margin: 0 auto 0 auto;
    position: relative;
    text-align: center
}

.free-trial-flow-subtitle {
    margin: 0;
    font-size: clamp(6px, 4.6vw, 26px);
    padding: 0 3% 2% 3%;
}


.free-trial-space {
    position: relative;
    background-color: var(--color-bg-lighter);
    /* 明るい背景 */
    margin-top: 0;
    padding-top: 2.5rem;
    padding-bottom: 15px;
    text-align: center;
    position: relative;
    /* z-indexを有効にするために必要 */
    z-index: 1;
}

.free-trial-description {
    margin-top: 0;
    margin-bottom: 3%;
    padding: 0 3%;
    font-size: clamp(6px, 4.2vw, 22px);
}

.location-section {
  padding: 3rem 0;
}
.location-card {
  max-width: 32rem;
  margin: 0 auto;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}



@media (min-width: 768px) {

  .desktop-nav {
    display: flex;
    /* Visible on desktop */
    flex-direction: row;
    gap: 1.5rem;
    /* sm:gap-6 */
    position: static;
    background: none;
    box-shadow: none;
    padding: 0;
    margin-left: auto;
  }

  .desktop-nav .nav-link {
    padding: 0;
    border-bottom: none;
    font-size: 0.875rem;
    /* text-sm */
  }

  .hero-section {
    padding: 6rem 0;
    /* md:py-24 */
  }

  .hero-title {
    font-size: 2.25rem;
    /* md:text-5xl */
  }

  .hero-subtitle {
    font-size: 1.125rem;
    /* md:text-lg */
  }

  .section-padding {
    padding: 6rem 0;
    /* md:py-24 */
  }

  .section-title {
    font-size: 2rem;
    /* md:text-4xl */
  }

  .section-subtitle {
    font-size: 1rem;
    /* md:text-base */
  }

  .grid-3-col {
    grid-template-columns: repeat(3, 1fr);
    /* lg:grid-cols-3 */
  }

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

  .course-card {
    padding: 1.5rem;
    /* md:p-6 */
  }

  .course-title {
    font-size: 1.5rem;
    /* md:text-2xl */
  }

  .admission-card {
    padding: 1.5rem;
    /* md:p-6 */
  }

  .admission-price {
    font-size: 1.875rem;
    /* md:text-3xl */
  }

  .accordion-trigger {
    padding: 1rem 1.5rem;
    /* md:px-6 md:py-4 */
    font-size: 1.125rem;
    /* md:text-lg */
  }

  .accordion-content {
    padding: 1rem 1.5rem 1rem 2.5rem;
    /* md:px-6 md:pb-4 */
    font-size: 1rem;
    /* md:text-base */
  }

  .free-trial-title {
    font-size: 1.875rem;
    /* md:text-3xl */
  }

  .free-trial-small-top,
  .free-trial-small-bottom {
    font-size: 1rem;
    /* md:text-base */
  }

  .btn-primary {
    font-size: 1.875rem;
    /* md:text-3xl */
  }

  
  .contact-card {
    padding: 1.5rem;
    /* md:p-6 */
  }

  .bus-card .card-content {
    padding: 1.5rem;
    /* md:p-6 */
  }

  .footer {
    flex-direction: row;
    padding: 1.5rem 1.5rem;
    /* py-6 px-6 */
  }

  .footer-links {
    margin-top: 0;
    margin-left: auto;
    /* sm:ml-auto */
  }
}