@charset "UTF-8";
/* このファイルはトップページ（index.html）専用のスタイル。
   header/footer/base等の全ページ共通パーツは common.scss 側。 */
/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 110px 0 70px;
  overflow: hidden;
  text-align: center;
}

.hero-logo {
  max-width: 460px;
  width: 80%;
  margin: 0 auto 8px;
  font-size: 0;
}

.eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: #8a8073;
  margin-bottom: 20px;
}

.hero-lead {
  font-size: 16px;
  color: #8a8073;
  max-width: 80%;
  margin: 0 auto 36px;
}

.hero-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px 34px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 13px;
  color: #8a8073;
}
.hero-meta b {
  color: #2c2620;
  font-weight: 700;
}

/* 稜線モチーフ（ロゴの山のシルエットを踏襲した signature divider） */
.ridge {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  margin: 56px auto 0;
}
.ridge path {
  fill: none;
  stroke: url(#ridgeGrad);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ridge .ridge-wave {
  will-change: d;
}

@media (prefers-reduced-motion: reduce) {
  .ridge .ridge-wave {
    will-change: auto;
  }
}
/* ==========================================================================
   About
   ========================================================================== */
#about {
  border-top: 1px solid #e7ddc9;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
}
@media (max-width: 820px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-text p {
  color: #8a8073;
  font-size: 15px;
}
.about-text p strong {
  color: #2c2620;
}

.about-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.about-list li {
  background: #ffffff;
  border: 1px solid #e7ddc9;
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 14px;
  color: #8a8073;
  -webkit-box-shadow: 0 4px 14px rgba(44, 38, 32, 0.04);
          box-shadow: 0 4px 14px rgba(44, 38, 32, 0.04);
}
.about-list li b {
  display: block;
  color: #2c2620;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 13px;
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}

/* ==========================================================================
   History (timeline)
   ========================================================================== */
#history {
  background: #f5efe4;
}

.timeline {
  position: relative;
  padding-left: 32px;
  border-left: 2px solid #e7ddc9;
  display: grid;
  gap: 52px;
}

.tl-item {
  position: relative;
}
.tl-item:nth-child(1) .tl-dot {
  border-color: #6fb3a0;
}
.tl-item:nth-child(1) .tl-date {
  color: #6fb3a0;
}
.tl-item:nth-child(2) .tl-dot {
  border-color: #e8917a;
}
.tl-item:nth-child(2) .tl-date {
  color: #e8917a;
}
.tl-item:nth-child(3) .tl-dot {
  border-color: #dfb15a;
}
.tl-item:nth-child(3) .tl-date {
  color: #dfb15a;
}

.tl-dot {
  position: absolute;
  left: -40px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #6fb3a0;
}

.tl-date {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.tl-title {
  font-family: "Yomogi", "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 21px;
  margin: 0 0 10px;
}

.tl-body {
  color: #8a8073;
  font-size: 14.5px;
  max-width: 640px;
}

.tl-note {
  margin: 40px 0 0;
  padding: 18px 22px;
  background: #ffffff;
  border: 1px solid #e7ddc9;
  border-radius: 14px;
  color: #8a8073;
  font-size: 14px;
  max-width: 640px;
}

/* ==========================================================================
   Officers
   ========================================================================== */
#officers {
  border-top: 1px solid #e7ddc9;
}

.officer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) {
  .officer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .officer-grid {
    grid-template-columns: 1fr;
  }
}

.officer {
  background: #ffffff;
  border: 1px solid #e7ddc9;
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  -webkit-box-shadow: 0 4px 14px rgba(44, 38, 32, 0.04);
          box-shadow: 0 4px 14px rgba(44, 38, 32, 0.04);
}
.officer .role {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 12px;
  color: #e8917a;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.officer .count {
  font-family: "Yomogi", "Zen Maru Gothic", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #2c2620;
}

/* ==========================================================================
   Join
   ========================================================================== */
#join {
  background: #f5efe4;
  border-top: 1px solid #e7ddc9;
  border-bottom: 1px solid #e7ddc9;
}

.join-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.join-inner h2 {
  max-width: 520px;
}

.join-copy {
  color: #8a8073;
  font-size: 14.5px;
  max-width: 460px;
}

.btn {
  display: inline-block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: #fff;
  background: linear-gradient(100deg, #6fb3a0, #e8917a 55%, #dfb15a);
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  -webkit-box-shadow: 0 6px 16px rgba(232, 145, 122, 0.28);
          box-shadow: 0 6px 16px rgba(232, 145, 122, 0.28);
}/*# sourceMappingURL=index.css.map */