@charset "UTF-8";
/* リセットとベーススタイル */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Noto Sans JP", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #333333;
  background-color: #ffffff;
  line-height: 1.5;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ユーティリティクラス */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

.text-primary {
  color: #0066cc;
}

/* 共通コンポーネント */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: all 0.3s;
  cursor: pointer;
}
.button.button-primary {
  background-color: #0066cc;
  color: white;
  border: none;
}
.button.button-primary:hover {
  background-color: #004d99;
}
.button.button-outline {
  background-color: transparent;
  color: #0066cc;
  border: 1px solid #0066cc;
}
.button.button-outline:hover {
  background-color: rgba(0, 102, 204, 0.05);
}

/* ページコンテナ */
.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ヘッダー */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e0e0e0;
}
.header .header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.header .logo {
  display: flex;
  align-items: center;
}
.header .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
}
@media (min-width: 768px) {
  .header .logo-text {
    font-size: 1.75rem;
  }
}
.header .desktop-nav, .header .mobile-menu-button, .header .mobile-nav {
  display: none;
}

/* ヒーローセクション */
.hero {
  padding: 8rem 0;
  background-color: #ffffff;
}
.hero .hero-content {
  max-width: 54rem;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 768px) {
  .hero .hero-content {
    text-align: left;
    padding: 0 1rem;
  }
}
.hero .hero-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #333333;
}
@media (min-width: 768px) {
  .hero .hero-title {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .hero .hero-title {
    font-size: 3rem;
  }
}
.hero .hero-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgb(89.25, 89.25, 89.25);
}
@media (min-width: 768px) {
  .hero .hero-description {
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .hero .hero-description {
    font-size: 1.5rem;
  }
}
.hero .hero-buttons {
  display: none;
}

/* セクション共通 */
.section {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}
.section .section-content {
  max-width: 48rem;
  margin: 0 auto;
}
.section .section-title {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}
.section .section-title .section-title-inner {
  border-bottom: 4px solid #ff6600;
  padding-bottom: 0.5rem;
}
.section.section-white {
  background-color: #ffffff;
}
.section.section-gray {
  background-color: #f5f5f5;
}

/* 会社概要 */
.company-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .company-info {
    grid-template-columns: 1fr 1fr;
  }
}
.company-info .company-info-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.company-info .company-info-item {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e0e0e0;
}
.company-info .company-info-label {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: rgb(89.25, 89.25, 89.25);
}
.company-info .company-info-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333333;
}

/* 事業内容 */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
}
.services-grid .service-card {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 0.375rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem;
}
.services-grid .service-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.services-grid .service-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(0, 102, 204, 0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.services-grid .service-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #0066cc;
}
.services-grid .service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333333;
  align-self: center;
  flex: 1;
}
.services-grid .service-description {
  color: rgb(89.25, 89.25, 89.25);
  width: 100%;
  margin-top: 0.5rem;
}

/* お問い合わせ */
.contact-intro {
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 2rem;
  color: rgb(89.25, 89.25, 89.25);
}

.contact-container {
  background-color: #f5f5f5;
  padding: 1.5rem;
  border-radius: 0.375rem;
  text-align: center;
}
@media (min-width: 768px) {
  .contact-container {
    padding: 2rem;
  }
}

.contact-info {
  margin-bottom: 1.5rem;
}

.contact-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333333;
}

.contact-address {
  color: rgb(89.25, 89.25, 89.25);
  line-height: 1.7;
}

.contact-button .mail-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  stroke: currentColor;
}

/* フッター */
.footer {
  background-color: #1a1a1a;
  color: white;
  padding: 3rem 0;
  margin-top: auto;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

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

.footer-logo {
  margin-bottom: 1rem;
  color: white;
  font-size: 1.5rem;
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links, .footer-links-group, .footer-links-title, .footer-links-list {
  display: none;
}

/*# sourceMappingURL=styles.css.map */
