@charset "UTF-8";

/* 全体設定 */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333333;
  background-color: #f9fbf8;
  line-height: 1.6;
}

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

/* ヘッダー */
.site-header {
  background-color: #ffffff;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo-img {
  height: 36px;
  width: auto;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: #2e7d32;
}

.header-btn {
  background-color: #ff9800;
  color: #ffffff;
  padding: 8px 18px;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
}

/* メインビジュアル */
.hero {
  background-color: #e8f5e9;
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  color: #1b5e20;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1rem;
  color: #444444;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
}

.btn-orange {
  background-color: #ff9800;
  color: #ffffff;
}

/* セクション共通 */
.container {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  color: #2e7d32;
  font-size: 1.5rem;
  margin-bottom: 25px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #81c784;
  margin: 8px auto 0;
  border-radius: 2px;
}

.section-lead {
  text-align: center;
  margin-top: -15px;
  margin-bottom: 30px;
  color: #666666;
  font-size: 0.95rem;
}

/* 強みリスト */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  background-color: #ffffff;
  margin-bottom: 12px;
  padding: 15px 20px;
  border-left: 5px solid #4caf50;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

/* サービスカード */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #c8e6c9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-body h3 {
  color: #2e7d32;
  margin-top: 0;
  margin-bottom: 10px;
}

/* ギャラリーセクション */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 15px;
}

.gallery-item {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.caption {
  display: block;
  padding: 10px;
  font-size: 0.85rem;
  color: #555555;
  background-color: #ffffff;
}

/* お問い合わせ */
.contact-box {
  background-color: #e8f5e9;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  border: 2px dashed #81c784;
}

.tel-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1b5e20;
  margin: 10px 0;
}

.time-info {
  font-size: 0.9rem;
  color: #555555;
}

/* 事業所番号情報カード */
.office-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 15px;
  margin-top: 25px;
}

.office-card {
  background-color: #ffffff;
  border: 1px solid #c8e6c9;
  border-radius: 8px;
  padding: 15px;
  font-size: 0.85rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.office-card h3 {
  font-size: 0.95rem;
  color: #2e7d32;
  margin-top: 0;
  margin-bottom: 10px;
  border-bottom: 1px solid #e8f5e9;
  padding-bottom: 6px;
}

.office-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.office-card li {
  margin-bottom: 6px;
  color: #555555;
  line-height: 1.4;
}

.office-card li:last-child {
  margin-bottom: 0;
}

.office-card span {
  font-weight: bold;
  color: #333333;
  margin-right: 4px;
}

/* フッター */
.site-footer {
  background-color: #2e7d32;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
}