/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: 'Noto sans Japanese', 'M PLUS 1p', 'Helvetica Neue', 'Arial', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', 'Meiryo', 'sans-serif';
  line-height: 1.6;
  background: linear-gradient(to bottom, #eff6ff, #ffffff);
  min-height: 100vh;
}

.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 h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}

.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;
}


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

/* ファーストビュー */
.hero-section {
  background: linear-gradient(to right, #2563eb, #1e40af);
  color: white;
  padding: 3rem 0;
}

.hero-content {
  text-align: center;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #dbeafe;
}

.contact-info {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.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%;
}

.phone-link {
  color : #000000;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  transition: color 0.3s;
}

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

.hours {
    font-size: 0.875rem;
    opacity: 0.8;
}


.hours-badge {
  color: #000000;
 padding-left: 6%;
margin : 0 auto;
  font-size: 0.9rem;
  display: inline-block;
}
.hours-badge > span{
 font-weight: 600;
}

.map-container {
  background: white;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

/* セクション共通 */
.section-title {
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  color: #1f2937;
}

/* 所在地セクション */
.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;
}

.location-content {
  padding: 1.5rem;
}

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

.address {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
}
.address > span {
  font-size: 0.9rem;
    font-weight: 400;
}

.landmark {
   padding-left: 6%;
  color: #000000;
  margin-top: 0.5rem;
}

.landmark-info {
  background: #eff6ff;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #1e40af;
}

/* アクセスセクション */
.access-section {
  padding: 1rem 0;
  background: #f9fafb;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

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

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

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

.card-content {
  padding: 1.5rem;
}

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

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

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

.route-tertiary {
  border-left-color: #f59e0b;
}

.route-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  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: #3b82f6;
  color: white;
}

.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;
}

.route-description {
  font-size: 0.875rem;
  color: #6b7280;
}

.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;
}

/* バスセクション */
.bus-section {
  padding: 1rem 0;
}

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

.bus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.bus-routes h4,
.bus-schedule h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.route-list {
  list-style: none;
}

.route-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.route-badge {
  background: #e5e7eb;
  color: #374151;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.schedule-info {
  background: #fef3c7;
  padding: 0.75rem;
  border-radius: 0.5rem;
}

.schedule-info p {
  font-size: 0.875rem;
  color: #92400e;
  margin-bottom: 0.5rem;
}

.bus-cta {
  margin-top: 1.5rem;
  text-align: center;
}

/* ボタン */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.875rem;
}

.btn-primary {
  background: #d97706;
  color: white;
}

.btn-primary:hover {
  background: #b45309;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.btn-outline:hover {
  background: white;
  color: #2563eb;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
  margin: 0.5rem;
}

/* お問い合わせセクション */
.contact-section {
  padding: 3rem 0;
  background: #2563eb;
  color: white;
  text-align: center;
}

.contact-content {
  max-width: 32rem;
  margin: 0 auto;
}

.contact-main {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.phone-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.phone-main {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
  transition: color 0.3s;
}

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

.contact-hours {
  color: #dbeafe;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

/* フッター */
.footer {
  background: #1f2937;
  color: white;
  padding: 2rem 0;
}

.footer-content {
  text-align: center;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.footer-address,
.footer-phone {
  color: #d1d5db;
  margin-bottom: 0.5rem;
}

.footer-phone {
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  margin-top: 1rem;
}

.copyright {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.icon {
  font-size: 0.9rem;
}
.Free-trial-section {
    background-color: #ffffff;
}
.Free-trial {
    width: 100%;
    max-width: 450px;
    padding: 4% 2% 0 2%;
    margin: 0 auto 0 auto;
    position: relative;
    text-align: center
}
.free-trial-small-top {
    font-size: clamp(6px, 5vw, 24px);
    color: var(--color-text-dark-navy);
    margin: 0;
    padding-bottom: 0.5%;
}
.hero-buttons {
    
    align-items: center;
    /* ラッパー自身がコンテンツの幅に合わせるようにする */
    /* 必要に応じて、このラッパー全体の margin や position を調整して配置 */
    margin-top: 0px;
    /* 例: 上に吹き出しが出るスペースを確保するため */
    margin-left: 0px;
    /* 例: 全体的な位置調整 */
}
.phone-number {
    color: inherit;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.phone-number>a {
    color: inherit;
    text-decoration: none;

}
.btn {
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 3rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    /* transform追加 */
    font-weight: 700;
}

.btn-primary {
       -webkit-text-stroke: 1px #0000aa; /* 縁取りの太さと色 */
      font-weight: 900;
font-family: 'M PLUS Rounded 1c';
    background-color: #ff8c00;
    color: #fff;
    border: 1px solid transparent;
  
    font-weight: 900;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* シャドウ追加 */
}

.btn-primary:hover {
    background-color: #F7A8B8;
    transform: translateY(-2px);
    /* ホバーで少し浮き上がる */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn-lg {
    text-align: left;
    padding: 4% 10% ;
    /* ボタンを大きく */
    font-size: 2rem;
}
.free-trial-small-bottom {
    font-size: clamp(6px, 5vw, 24px);
    color: #0A1E3F;
    margin: 0;
    padding-top: 0.5%;
}

.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-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;
}


/* レスポンシブデザイン */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.4rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

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

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

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

  .contact-buttons {
    flex-direction: column;
  }

  .btn-large {
    width: 100%;
    margin: 0.25rem 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }

  .hero-section {
    padding: 2rem 0;
  }

  .access-grid {
    gap: 1rem;
  }

  .card-content {
    padding: 1rem;
  }
}
