@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

body {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  color: #333;
  background-color: #fff;
}

/* ヘッダー */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fffbe6;
  padding: 10px 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.site-header .logo {
  font-weight: bold;
  color: #333;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

nav .btn {
  background: #FFD600;
  color: #333;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: bold;
}

/* ヒーロー */
.hero {
  background: linear-gradient(to right, #5BC0EB, #89e0f0);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.btn-primary {
  background: #FFD600;
  color: #333;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}

/* サービス */
.services {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-item {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* 事例 */
.works {
  background: #fffbe6;
  text-align: center;
  padding: 60px 20px;
}

/* CTA */
.cta {
  text-align: center;
  background: #5BC0EB;
  color: #fff;
  padding: 60px 20px;
}

/* フッター */
footer {
  text-align: center;
  padding: 20px;
  background: #333;
  color: #fff;
  font-size: 0.9rem;
}

footer a {
  color: #FFD600;
  margin: 0 5px;
  text-decoration: none;
}

/* 追記 */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.btn-line {
  background: #06C755;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn-line:hover {
  background: #04a045;
}

.work-example ul {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 700px;
  margin: 20px auto;
}

.work-example li {
  background: #fff;
  border-left: 5px solid #5BC0EB;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 4px;
}

.note {
  font-size: 0.9rem;
  color: #555;
  margin-top: 10px;
}

.page-header {
  background: #fffbe6;
  text-align: center;
  padding: 60px 20px;
}

.page-header h1 {
  margin-bottom: 10px;
}

.link {
  color: #5BC0EB;
  font-weight: bold;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

.service-item h2 a {
  color: inherit;
  text-decoration: none;
}
.service-item h2 a:hover {
  text-decoration: underline;
}

.service-detail {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  line-height: 1.8;
}

.format-box {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 10px;
  margin: 15px 0 30px;
  font-family: 'Courier New', monospace;
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 40px;
}

.price-table th, .price-table td {
  border: 1px solid #ccc;
  padding: 12px;
  text-align: left;
}

.price-table th {
  background: #fffbe6;
}

ul, ol {
  margin-left: 20px;
}

ol li {
  margin-bottom: 8px;
}

.faq dt {
  font-weight: bold;
  margin-top: 15px;
  color: #333;
}
.faq dd {
  margin: 5px 0 15px 10px;
  color: #555;
}
.cta-box {
  background: #fffbe6;
  text-align: center;
  padding: 40px 20px;
  margin-top: 40px;
  border-radius: 12px;
}
.cta-box h3 {
  margin-bottom: 10px;
}

.note-box {
  background: #f8f8f8;
  border-left: 5px solid #FFD600;
  padding: 15px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #555;
}
.price-table td strong {
  color: #333;
}

ol {
  margin-left: 20px;
}
ol li {
  margin-bottom: 12px;
}
.btn.active {
  background: #FFD600;
  color: #333;
}

.profile {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 15px 20px;
  margin: 20px 0;
}
.profile ul {
  margin: 10px 0 0 20px;
}
.profile li {
  margin-bottom: 6px;
}
.highlight {
  background: linear-gradient(transparent 60%, #fff799 60%);
}

.voice-list {
  margin-top: 20px;
  display: grid;
  gap: 15px;
}
.voice-item {
  background: #f8f8f8;
  border-left: 5px solid #5BC0EB;
  padding: 15px;
  border-radius: 6px;
}
.voice-text {
  font-style: italic;
  color: #333;
}
.effect-list ul {
  list-style: disc;
  margin-left: 20px;
  line-height: 1.8;
}

/* =============================
   ハンバーガーメニュー設定
   ============================= */

/* ボタン（3本線） */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: 0.3s;
}

/* スマホ時：メニュー非表示 */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background: #fffbe6;
    display: none;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #eee;
  }

  .nav-menu a {
    display: block;
    padding: 12px;
  }

  /* メニューが開いた時の表示 */
  .nav-menu.open {
    display: flex;
  }

  /* 開閉時アニメーション */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}


.blog-list {
  display: grid;
  gap: 20px;
}

.blog-item {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  transition: 0.2s;
}

.blog-item:hover {
  background: #fffbe6;
}

.blog-item h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.blog-date {
  font-size: 0.9rem;
  color: #777;
}

