@charset "UTF-8";

body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN","Noto Sans JP",sans-serif;
  line-height: 1.8;
  color: #333;
}
section {
  padding: 60px 20px;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}
.hero {
  background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url("hero.jpg") center/cover no-repeat;
  text-align: center;
  padding: 100px 20px;
}
.hero h1 {
  font-size: 34px;
  margin-bottom: 20px;
}
.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}
.cta a {
  display: inline-block;
  background: #4caf50;
  color: #fff;
  padding: 15px 32px;
  border-radius: 30px;
  text-decoration: none;
  margin: 5px;
  font-size: 16px;
}
.cta a.secondary {
  background: #777;
}
.problem ul {
  list-style: none;
  padding: 0;
}
.problem li::before {
  content: "✓ ";
  color: #4caf50;
  font-weight: bold;
}
.features {
  background: #f5f8f5;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 30px;
}
.feature {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
}
.feature h3 {
  margin-top: 0;
}
.flow {
  background: #fafafa;
  border-radius: 8px;
  padding: 30px;
}
.voice {
  background: #f9f9f9;
}
.profile {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
}
.profile img {
  width: 100%;
  border-radius: 8px;
}
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
}
footer a {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 768px) {
  .hero h1 { font-size: 26px; }
  .profile { grid-template-columns: 1fr; }
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ロゴ */
.logo a {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}
.logo span {
  font-weight: normal;
  font-size: 14px;
  margin-left: 4px;
}

/* ナビ */
.global-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.global-nav li {
  margin-left: 25px;
}
.global-nav a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
}
.global-nav a:hover {
  color: #4caf50;
}

/* 予約CTA */
.nav-cta a {
  background: #4caf50;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: bold;
}
.nav-cta a:hover {
  opacity: 0.85;
}

/* ハンバーガー */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
  margin: 5px 0;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .global-nav {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: #fff;
    transition: 0.3s;
  }
  .global-nav.open {
    right: 0;
  }
  .global-nav ul {
    flex-direction: column;
    padding: 30px;
  }
  .global-nav li {
    margin: 20px 0;
  }
  .menu-toggle {
    display: block;
  }
}


.site-footer {
  background: #2f2f2f;
  color: #fff;
  padding: 60px 20px 30px;
  font-size: 14px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-block h3 {
  font-size: 16px;
  margin-bottom: 15px;
  border-bottom: 1px solid #555;
  padding-bottom: 8px;
}

.footer-block p {
  line-height: 1.7;
}

.footer-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-block li {
  margin-bottom: 10px;
}

.footer-block a {
  color: #fff;
  text-decoration: none;
}

.footer-block a:hover {
  text-decoration: underline;
}

/* 下部 */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #555;
  padding-top: 20px;
  font-size: 13px;
}

/* スマホ */
@media (max-width: 768px) {
  .site-footer {
    text-align: center;
  }
}

