/* ===== リセット & ベーススタイル ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* カラーパレット - シンプル&クリーン */
  --primary-color: #333333;
  --text-color: #333333;
  --text-light: #666666;
  --border-color: #e0e0e0;
  --bg-white: #ffffff;
  --bg-light: #f8f8f8;
  --accent-color: #000000;

  /* フォント */
  --font-en: 'Raleway', sans-serif;
  --font-ja: 'Noto Sans JP', sans-serif;

  /* スペーシング */
  --section-padding: 100px;
  --container-width: 1000px;

  /* トランジション */
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ja);
  color: var(--text-color);
  line-height: 1.8;
  background-color: var(--bg-white);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 30px;
}

/* ===== ナビゲーション ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand a {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  font-family: var(--font-en);
  color: var(--text-color);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: var(--transition);
}

.nav-link:hover {
  opacity: 0.6;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--text-color);
  transition: var(--transition);
}

/* ===== ヒーローセクション ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
}

.hero-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--text-color);
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-light);
  line-height: 2;
  font-weight: 400;
}

/* ===== セクション共通スタイル ===== */
.section {
  padding: var(--section-padding) 0;
}

.section-title {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 80px;
  letter-spacing: 2px;
  color: var(--text-color);
}

/* ===== Aboutセクション ===== */
.about {
  background-color: var(--bg-light);
}

.about-content {
  max-width: 700px;
  margin: 0 auto;
}

.lead-text {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 40px;
  color: var(--text-color);
}

.about-content p {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 30px;
  color: var(--text-light);
}

/* ===== Servicesセクション ===== */
.services {
  background-color: var(--bg-white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  max-width: 800px;
  margin: 0 auto;
}

.service-item {
  position: relative;
  padding-left: 80px;
}

.service-number {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 1px;
}

.service-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--text-color);
}

.service-description {
  font-size: 15px;
  line-height: 2;
  color: var(--text-light);
}

/* ===== Newsセクション ===== */
.news {
  background-color: var(--bg-light);
}

.news-list {
  max-width: 800px;
  margin: 0 auto;
}

.news-item {
  padding: 30px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.news-date {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--text-light);
  display: block;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.news-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
}

/* ===== 強みセクション ===== */
.strengths {
  background-color: var(--bg-white);
}

.strengths-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  max-width: 800px;
  margin: 0 auto;
}

.strength-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--text-color);
}

.strength-description {
  font-size: 14px;
  line-height: 2;
  color: var(--text-light);
}

/* ===== Contactセクション ===== */
.contact {
  background-color: var(--bg-light);
}

.contact-lead {
  text-align: center;
  font-size: 15px;
  line-height: 2;
  margin-bottom: 60px;
  color: var(--text-light);
}

.contact-button-wrapper {
  text-align: center;
}

.btn-contact {
  display: inline-block;
  padding: 18px 60px;
  background-color: var(--accent-color);
  color: var(--bg-white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  font-family: var(--font-ja);
}

.btn-contact:hover {
  opacity: 0.8;
}

/* ===== フッター ===== */
.footer {
  padding: 60px 0;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-color);
}

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

.footer-company {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-color);
  letter-spacing: 0.5px;
}

.footer-copy {
  font-family: var(--font-en);
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

/* ===== レスポンシブデザイン ===== */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  .container {
    padding: 0 20px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 61px;
    flex-direction: column;
    background: var(--bg-white);
    width: 100%;
    padding: 30px 20px;
    gap: 20px;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .hero-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 50px;
  }

  .services-grid {
    gap: 40px;
  }

  .service-item {
    padding-left: 0;
    padding-top: 40px;
  }

  .service-number {
    top: 0;
    left: 0;
  }

  .service-title {
    font-size: 20px;
  }

  .service-description {
    font-size: 14px;
  }

  .strengths-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .strength-title {
    font-size: 16px;
  }

  .strength-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 20px;
  }
}
