/* ===========================================================
   伐採の金子 - mobile-first stylesheet
   =========================================================== */

:root {
  --c-bg:        #f6f3ec;
  --c-bg-alt:    #efeae0;
  --c-card:      #ffffff;
  --c-text:      #2b2b2b;
  --c-muted:     #6e6a62;
  --c-line:      #e3ddd0;
  --c-primary:   #2d4a3e;   /* 深い森林グリーン */
  --c-primary-d: #1f3329;
  --c-accent:    #8a6f4a;   /* 木の茶 */
  --c-line-grn:  #06C755;   /* LINEブランドグリーン */
  --c-ig:        #c9407a;
  --c-jmty:      #4aa14a;

  --r-md: 10px;
  --r-lg: 14px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.08);

  --maxw: 480px;            /* モバイル基準の最大幅 */
}

*,*::before,*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Hiragino Sans",
               "Yu Gothic", "Meiryo", sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 88px; /* sticky CTA分の余白 */
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; padding: 0; margin: 0; }

main {
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--c-bg);
  overflow: hidden;
}

/* -----------------------------------------------------------
   Header
----------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  max-width: var(--maxw);
  margin: 0 auto;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Noto Serif JP", serif;
}
.brand-mark {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--c-primary);
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
}
.brand-name {
  display: flex; flex-direction: column;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.05;
}
.brand-name small {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--c-muted);
  font-weight: 500;
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--c-text);
}
.nav a {
  padding: 4px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s;
}
.nav a:hover { border-bottom-color: var(--c-primary); }

/* -----------------------------------------------------------
   Hero
----------------------------------------------------------- */
.hero {
  position: relative;
  height: 78vh;
  min-height: 520px;
  max-height: 720px;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20,30,25,0.10) 0%,
    rgba(20,30,25,0.25) 45%,
    rgba(20,30,25,0.78) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 22px 36px;
  color: #fff;
}
.hero-tag {
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  margin: 0 0 8px;
  opacity: 0.92;
}
.hero-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.35;
  margin: 0 0 12px;
  letter-spacing: 0.05em;
}
.hero-sub {
  font-size: 13px;
  margin: 0 0 22px;
  opacity: 0.92;
  line-height: 1.7;
}
.hero-cta { width: 100%; }
.hero-note {
  margin: 12px 0 0;
  font-size: 11px;
  text-align: center;
  opacity: 0.88;
}
.hero-note strong { color: #f7d57a; font-weight: 700; }

/* -----------------------------------------------------------
   Buttons
----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: transform .12s, box-shadow .2s, opacity .2s;
  box-shadow: var(--shadow-md);
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: translateY(1px); }
.btn-block { display: flex; width: 100%; }
.btn-xl    { padding: 17px 20px; font-size: 16px; width: 100%; }

.btn-line {
  background: var(--c-line-grn);
  color: #fff;
}
.btn-line:hover { opacity: 0.93; }

.line-ico {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: #fff;
  color: var(--c-line-grn);
  border-radius: 50%;
  font-weight: 800;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  overflow: hidden;
  flex-shrink: 0;
}
.line-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* -----------------------------------------------------------
   Section base
----------------------------------------------------------- */
.section {
  padding: 56px 22px 56px;
}
.section-alt {
  background: var(--c-bg-alt);
}
.section-head {
  text-align: center;
  margin-bottom: 32px;
}
.kicker {
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--c-accent);
  margin: 0 0 8px;
  font-weight: 700;
}
.section-head h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: 0.05em;
}
.section-head h2::after {
  content: "";
  display: block;
  width: 32px; height: 2px;
  background: var(--c-primary);
  margin: 14px auto 0;
}
.lead {
  font-size: 13px;
  color: var(--c-muted);
  margin: 0;
  line-height: 1.85;
}

/* -----------------------------------------------------------
   Services
----------------------------------------------------------- */
.service {
  background: var(--c-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.service:last-child { margin-bottom: 0; }

.service-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d8d3c8;
}
.service-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.service-num {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--c-primary);
  color: #fff;
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 50%;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.service-body {
  padding: 22px 20px 24px;
}
.service-body h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 19px;
  margin: 0 0 12px;
  color: var(--c-primary);
  letter-spacing: 0.04em;
}
.service-body p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.95;
  color: var(--c-text);
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag-list li {
  background: var(--c-bg-alt);
  color: var(--c-primary);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
}

/* -----------------------------------------------------------
   Pricing
----------------------------------------------------------- */
.price-card {
  background: var(--c-card);
  border-radius: var(--r-lg);
  padding: 18px 18px 14px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}
.price-card h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  margin: 0 0 10px;
  color: var(--c-primary);
  border-bottom: 1px solid var(--c-line);
  padding-bottom: 8px;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.price-table th,
.price-table td {
  padding: 10px 0;
  text-align: left;
  border-bottom: 1px dashed var(--c-line);
}
.price-table tr:last-child th,
.price-table tr:last-child td {
  border-bottom: none;
}
.price-table th {
  font-weight: 500;
  color: var(--c-text);
  width: 56%;
}
.price-table td {
  text-align: right;
  font-weight: 700;
  color: var(--c-primary-d);
  white-space: nowrap;
}
.price-note {
  font-size: 11.5px;
  color: var(--c-muted);
  line-height: 1.8;
  margin: 14px 4px 22px;
}

/* "準備中" badge & card-note */
.soon-badge {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 9px;
  border-radius: 999px;
  background: var(--c-bg-alt);
  color: var(--c-primary-d);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  font-weight: 700;
  vertical-align: 2px;
  font-family: "Noto Sans JP", sans-serif;
  border: 1px solid var(--c-line);
}
.card-note {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1.85;
}
.price-card-soon {
  background: repeating-linear-gradient(
    45deg,
    var(--c-card),
    var(--c-card) 10px,
    var(--c-bg-alt) 10px,
    var(--c-bg-alt) 11px
  );
}
.price-card-soon h3 {
  border-bottom-color: var(--c-line);
}

/* -----------------------------------------------------------
   About
----------------------------------------------------------- */
.about {
  background: var(--c-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.about-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #d8d3c8;
}
.about-body {
  padding: 22px 20px 26px;
}
.about-name {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--c-primary);
  margin: 0 0 16px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.about-name small {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-muted);
  font-weight: 500;
}
.about-body p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.95;
}
.about-points {
  margin-top: 18px;
  border-top: 1px solid var(--c-line);
  padding-top: 14px;
}
.about-points li {
  display: flex;
  gap: 8px;
  font-size: 13.5px;
  padding: 6px 0;
  color: var(--c-text);
}
.about-points li span {
  color: var(--c-primary);
  font-weight: 700;
}

/* -----------------------------------------------------------
   Gallery
----------------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
}

/* -----------------------------------------------------------
   Area map
----------------------------------------------------------- */
.map-wrap {
  background: var(--c-card);
  border-radius: var(--r-lg);
  padding: 22px 18px 22px;
  box-shadow: var(--shadow-sm);
}
.hokkaido-svg {
  width: 100%;
  height: auto;
  display: block;
  max-width: 420px;
  margin: 0 auto 6px;
}
/* All region paths get a thin, constant-width stroke regardless of zoom */
.hokkaido-svg path {
  vector-effect: non-scaling-stroke;
  stroke-linejoin: round;
}
.map-bg path {
  fill: var(--c-bg-alt);
  stroke: #b9ad94;
  stroke-width: 0.6;
}
.map-fg path {
  fill: var(--c-primary);
  stroke: var(--c-primary-d);
  stroke-width: 1;
}
.map-spots {
  fill: #ffffff;
  stroke: none;
}
.map-labels {
  font-family: "Noto Serif JP", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 30px;
  fill: #fff;
  text-anchor: middle;
  letter-spacing: 0.05em;
  /* dark halo so labels are readable on both green and beige */
  paint-order: stroke fill;
  stroke: var(--c-primary-d);
  stroke-width: 5;
  stroke-linejoin: round;
}
.map-annot {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  fill: #6e6a62;
  text-anchor: middle;
}
.map-annot line {
  stroke: #b9ad94;
  stroke-width: 1;
  stroke-dasharray: 3 3;
  fill: none;
}
.map-credit {
  margin: 8px 0 0;
  font-size: 10.5px;
  text-align: right;
  color: var(--c-muted);
  letter-spacing: 0.02em;
}
.map-credit a {
  color: inherit;
  border-bottom: 1px solid var(--c-line);
}
.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin: 18px 4px 12px;
  padding: 14px 4px 0;
  border-top: 1px dashed var(--c-line);
}
.area-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text);
}
.area-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--c-primary);
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(45,74,62,0.15);
}
.area-note {
  margin: 8px 4px 0;
  font-size: 11.5px;
  color: var(--c-muted);
  line-height: 1.85;
  word-break: keep-all;
  text-wrap: pretty;
}

/* -----------------------------------------------------------
   SNS
----------------------------------------------------------- */
.sns-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sns-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--c-card);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .12s, box-shadow .2s;
}
.sns-card:active { transform: translateY(1px); }
.sns-ico {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.sns-ig .sns-ico {
  background: #fff;
  padding: 0;
  overflow: hidden;
}
.sns-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.sns-jmty .sns-ico {
  background: #fff;
  width: 64px;
  height: 42px;
  border-radius: 8px;
  padding: 6px 8px;
  border: 1px solid var(--c-line);
  overflow: hidden;
}
.sns-body { flex: 1; display: flex; flex-direction: column; }
.sns-title { font-weight: 700; font-size: 15px; }
.sns-sub   { font-size: 11.5px; color: var(--c-muted); margin-top: 2px; }
.sns-arrow { color: var(--c-muted); font-size: 16px; }

/* -----------------------------------------------------------
   Contact CTA
----------------------------------------------------------- */
.section-cta {
  background:
    linear-gradient(180deg, rgba(45,74,62,0.94), rgba(31,51,41,0.96)),
    url("S__154042401.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
}
.section-cta .kicker { color: #c8d8c5; }
.section-cta h2 { color: #fff; }
.section-cta h2::after { background: #c8d8c5; }
.section-cta .lead { color: #e3e9da; }

.contact-points {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: #e3e9da;
}
.contact-points li {
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.contact-points li:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.contact-points strong {
  color: #f7d57a;
  font-size: 15px;
}

/* -----------------------------------------------------------
   Footer
----------------------------------------------------------- */
.site-footer {
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--c-primary-d);
  color: #d6d2c4;
  text-align: center;
  padding: 28px 16px 36px;
}
.foot-brand {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #fff;
}
.foot-name { margin: 0 0 18px; font-size: 12.5px; opacity: 0.85; }
.foot-copy { margin: 0; font-size: 10.5px; letter-spacing: 0.18em; opacity: 0.55; }

/* -----------------------------------------------------------
   Sticky LINE button (always visible)
----------------------------------------------------------- */
.sticky-line {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  z-index: 50;
  width: calc(100% - 28px);
  max-width: 440px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: var(--c-line-grn);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(6,199,85,0.35), 0 2px 4px rgba(0,0,0,0.12);
  -webkit-tap-highlight-color: transparent;
  transition: transform .12s, box-shadow .2s;
}
.sticky-line:active {
  transform: translateX(-50%) translateY(1px);
}
.sticky-line .line-ico {
  width: 36px; height: 36px;
  font-size: 16px;
}
.sticky-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.sticky-text strong {
  font-size: 15px;
  font-weight: 700;
}
.sticky-text small {
  font-size: 10.5px;
  opacity: 0.9;
  margin-top: 2px;
  letter-spacing: 0.04em;
}

/* -----------------------------------------------------------
   Wider screens (preview / desktop) — keep mobile layout centered
----------------------------------------------------------- */
@media (min-width: 600px) {
  body { background: #ddd6c8; }
  main, .site-header, .site-footer {
    box-shadow: 0 0 32px rgba(0,0,0,0.08);
  }
}
