@charset "UTF-8";

/* =========================================================
   すず乃木造園 ご提案用サンプル
   配色は2案（浅葱／枯草）。body[data-theme] で切り替える。
   ========================================================= */

:root {
  color-scheme: only light;

  --paper: #f6f3ec;
  --paper-deep: #ece7db;
  --card: #fffdf8;
  --ink: #1e1e1c;
  --ink-soft: #4a4741;
  --line: #d8d1c2;

  /* 浅葱（初期） */
  --accent: #3e7d78;
  --accent-deep: #2c5c58;
  --accent-pale: #e2eeec;
}

body[data-theme="karekusa"] {
  --accent: #8a6620;
  --accent-deep: #6a4d14;
  --accent-pale: #f0e8d3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Noto Sans JP",
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  padding-bottom: 84px;
}

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

a {
  color: var(--accent-deep);
}

h1,
h2,
h3 {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  line-height: 1.6;
  margin: 0;
}

.section__inner {
  width: min(1080px, 100% - 40px);
  margin-inline: auto;
}

section {
  padding: 72px 0;
}

.section__eyebrow {
  margin: 0 0 8px;
  color: var(--accent-deep);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.section__title {
  font-size: 30px;
  margin-bottom: 20px;
}

.section__title--center {
  text-align: center;
}

.section__lead {
  margin: 0 0 32px;
  color: var(--ink-soft);
}

.note-inline {
  margin: 28px 0 0;
  padding: 12px 16px;
  background: var(--paper-deep);
  border-left: 4px solid var(--line);
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

/* ---------- 提案専用の注記 ---------- */

.proposal-note {
  background: var(--ink);
  color: #f2efe8;
  padding: 10px 20px;
}

.proposal-note__line {
  width: min(1080px, 100%);
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.7;
}

.proposal-note__line--sub {
  margin-top: 6px;
  color: #cfcabd;
}

.proposal-note a {
  color: #f2efe8;
}

/* ---------- ヘッダー ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.header__bar {
  width: min(1080px, 100% - 40px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
}

.header__brand {
  text-decoration: none;
  color: inherit;
  display: grid;
  margin-right: auto;
}

.header__name {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 700;
}

.header__place {
  font-size: 14px;
  color: var(--ink-soft);
}

.header__contact {
  text-align: right;
}

.header__tel {
  text-decoration: none;
  color: var(--ink);
  display: grid;
}

.header__tel-label {
  font-size: 14px;
  color: var(--ink-soft);
}

.header__tel-number {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.header__tel-note {
  margin: 2px 0 0;
  font-size: 14px;
  color: var(--ink-soft);
}

.header__menu-button {
  display: none;
}

.nav {
  border-top: 1px solid var(--line);
}

.nav__inner {
  width: min(1080px, 100% - 40px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 28px;
}

.nav__list a {
  display: block;
  padding: 8px 0;
  color: var(--ink);
  text-decoration: none;
  font-size: 17px;
}

.nav__list a:hover {
  color: var(--accent-deep);
}

/* ---------- 配色切り替え ---------- */

.palette {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.palette__label {
  font-size: 14px;
  color: var(--ink-soft);
}

.palette__button {
  font: inherit;
  font-size: 15px;
  padding: 4px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--ink);
  cursor: pointer;
}

.palette__button.is-current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ---------- 第一画面 ---------- */

.hero {
  position: relative;
  padding: 0;
  display: grid;
}

.hero__image {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: 440px;
  max-height: 620px;
  object-fit: cover;
}

.hero__veil {
  grid-area: 1 / 1;
  background: linear-gradient(
    100deg,
    rgba(12, 18, 16, 0.9) 0%,
    rgba(12, 18, 16, 0.78) 42%,
    rgba(12, 18, 16, 0.34) 100%
  );
}

.hero__body {
  grid-area: 1 / 1;
  align-self: center;
  width: min(1080px, 100% - 40px);
  margin-inline: auto;
  color: #fff;
  padding: 48px 0;
}

.hero__eyebrow {
  margin: 0 0 10px;
  font-size: 17px;
  letter-spacing: 0.1em;
}

.hero__title {
  font-size: 44px;
  margin-bottom: 18px;
}

.hero__title span {
  display: inline-block;
}

.hero__lead {
  margin: 0 0 28px;
  font-size: 19px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero__note {
  margin: 12px 0 0;
  font-size: 15px;
}

/* ---------- ボタン ---------- */

.button {
  display: inline-grid;
  gap: 2px;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 3px 0 var(--accent-deep);
}

.button__small {
  font-size: 15px;
}

.button__big {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.button--large .button__big {
  font-size: 36px;
}

/* ---------- こんなときに ---------- */

.koe {
  background: var(--accent-pale);
}

.koe__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
  display: grid;
  gap: 12px;
}

.koe__list li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px 20px 16px 52px;
  position: relative;
}

.koe__list li::before {
  content: "／";
  position: absolute;
  left: 20px;
  color: var(--accent);
  font-weight: 700;
}

.koe__note {
  max-width: 720px;
  margin: 20px auto 0;
  text-align: center;
  color: var(--ink-soft);
}

/* ---------- できること ---------- */

.shigoto__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.shigoto__card {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: 4px;
  padding: 24px;
}

.shigoto__card-title {
  font-size: 22px;
  margin-bottom: 12px;
}

.shigoto__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.shigoto__list li {
  padding: 6px 0 6px 20px;
  border-bottom: 1px dotted var(--line);
  position: relative;
}

.shigoto__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ---------- 一年の庭しごと ---------- */

.calendar {
  background: var(--paper-deep);
}

.cal {
  display: grid;
  gap: 24px;
}

.cal__months {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 6px;
}

.cal__month {
  width: 100%;
  font: inherit;
  font-size: 17px;
  padding: 12px 0;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  border-radius: 4px;
  cursor: pointer;
}

.cal__month:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
}

.cal__month.is-current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 700;
}

.cal__panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px;
  min-height: 240px;
}

.cal__card {
  display: none;
}

.cal__card.is-shown {
  display: block;
}

.cal__season {
  margin: 0 0 6px;
  color: var(--accent-deep);
  font-size: 16px;
  font-weight: 700;
}

.cal__work {
  font-size: 26px;
  margin-bottom: 12px;
}

.cal__text {
  margin: 0 0 20px;
  color: var(--ink-soft);
}

.cal__when {
  display: inline-block;
  margin: 0;
  padding: 8px 20px;
  background: var(--accent-pale);
  border-radius: 999px;
  font-weight: 700;
  color: var(--accent-deep);
}

/* ---------- 料金の目安 ---------- */

.ryokin__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
}

.ryokin__card {
  background: var(--card);
  border: 2px solid var(--accent);
  border-radius: 6px;
  padding: 28px 24px;
  text-align: center;
}

.ryokin__label {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--ink-soft);
}

.ryokin__price {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 700;
}

.ryokin__num {
  font-size: 44px;
  line-height: 1.2;
}

.ryokin__extra {
  margin: 20px 0 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.ryokin__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
}

.ryokin__row:last-child {
  border-bottom: none;
}

.ryokin__row dt {
  margin: 0;
}

.ryokin__row dd {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  white-space: nowrap;
}

.ryokin__row .ryokin__num {
  font-size: 30px;
}

.ryokin__tax {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.ryokin__free {
  margin: 4px 0 0;
  font-weight: 700;
  font-size: 20px;
  color: var(--accent-deep);
}

/* ---------- 仕事の様子 ---------- */

.yosu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.yosu__frame {
  margin: 0;
}

.yosu__box {
  aspect-ratio: 4 / 3;
  background: repeating-linear-gradient(
    -45deg,
    var(--paper-deep),
    var(--paper-deep) 12px,
    var(--card) 12px,
    var(--card) 24px
  );
  border: 1px dashed var(--line);
  border-radius: 4px;
  display: grid;
  place-items: center;
}

.yosu__box-label {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 20px;
  font-size: 16px;
  color: var(--ink-soft);
}

.yosu__frame figcaption {
  margin-top: 10px;
  font-size: 16px;
  color: var(--ink-soft);
}

/* ---------- すず乃木造園について ---------- */

.about__quote {
  margin: 0 0 32px;
  padding: 24px 28px;
  background: var(--accent-pale);
  border-left: 5px solid var(--accent);
  border-radius: 0 6px 6px 0;
}

.about__quote p {
  margin: 0;
}

.about__table {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.about__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--line);
}

.about__row:last-child {
  border-bottom: none;
}

.about__row dt {
  margin: 0;
  padding: 16px 24px;
  background: var(--paper-deep);
  font-weight: 700;
}

.about__row dd {
  margin: 0;
  padding: 16px 24px;
}

/* ---------- お伺いする地域 ---------- */

.area {
  background: var(--accent-pale);
}

.area__main {
  margin: 0 0 12px;
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  font-weight: 700;
}

.area__text {
  margin: 0;
  color: var(--ink-soft);
}

.area__map {
  margin: 28px 0 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--card);
  line-height: 0;
}

.area__map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

.area__map-link {
  margin: 12px 0 0;
}

/* ---------- お問い合わせ ---------- */

.contact {
  background: var(--ink);
  color: #f2efe8;
  text-align: center;
}

.contact .section__title {
  color: #fff;
}

.contact__text {
  margin: 0 0 28px;
  color: #d9d4c8;
}

.contact__note {
  margin: 18px 0 0;
  font-size: 16px;
  color: #cfcabd;
}

/* ---------- フッター ---------- */

.footer {
  background: var(--paper-deep);
  padding: 40px 0 48px;
  font-size: 16px;
}

.footer__totop {
  margin: 0 0 24px;
}

.footer__brand {
  margin: 0 0 6px;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 700;
}

.footer__line,
.footer__copy {
  margin: 0 0 6px;
}

.footer__copy {
  color: var(--ink-soft);
  font-size: 14px;
}

.footer__note {
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

/* ---------- スマホ固定の電話ボタン ---------- */

.tel-fixed {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  gap: 0;
  padding: 10px 0 12px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.18);
}

.tel-fixed__small {
  font-size: 14px;
}

.tel-fixed__big {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

/* =========================================================
   タブレット以下
   ========================================================= */

@media (max-width: 900px) {
  .shigoto__grid,
  .yosu__grid {
    grid-template-columns: 1fr;
  }

  .cal__months {
    grid-template-columns: repeat(6, 1fr);
  }

  .about__row {
    grid-template-columns: 1fr;
  }

  .about__row dt {
    padding-bottom: 8px;
  }

  .about__row dd {
    padding-top: 8px;
  }
}

/* =========================================================
   スマートフォン
   ========================================================= */

@media (max-width: 720px) {
  body {
    padding-bottom: 78px;
  }

  section {
    padding: 48px 0;
  }

  .section__title {
    font-size: 25px;
  }

  .header__contact {
    display: none;
  }

  .header__menu-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: inherit;
    font-size: 15px;
    padding: 8px 14px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--ink);
    cursor: pointer;
  }

  .header__menu-bars {
    width: 18px;
    height: 12px;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    position: relative;
  }

  .header__menu-bars::after {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    border-top: 2px solid var(--ink);
  }

  .header__name {
    font-size: 21px;
  }

  .nav__inner {
    display: block;
  }

  .nav__list {
    display: none;
  }

  .nav.is-open .nav__list {
    display: block;
  }

  .nav__list li {
    border-bottom: 1px solid var(--line);
  }

  .nav__list a {
    padding: 14px 0;
  }

  .palette {
    justify-content: center;
    padding: 8px 0;
  }

  .hero {
    min-height: 0;
  }

  .hero__image {
    min-height: 420px;
  }

  .hero__title {
    font-size: 25px;
  }

  .hero__lead {
    font-size: 17px;
    line-height: 1.8;
  }

  .hero__body {
    padding: 36px 0;
  }

  .proposal-note {
    padding: 10px 16px;
  }

  .proposal-note__line {
    font-size: 13px;
    line-height: 1.6;
  }

  .button {
    padding: 12px 22px;
  }

  .button__big,
  .button--large .button__big {
    font-size: 28px;
  }

  .cal__months {
    grid-template-columns: repeat(4, 1fr);
  }

  .cal__panel {
    padding: 24px 20px;
  }

  .cal__work {
    font-size: 22px;
  }

  .ryokin__grid {
    grid-template-columns: 1fr;
  }

  .ryokin__num {
    font-size: 38px;
  }

  .ryokin__row {
    padding: 14px 18px;
  }

  .ryokin__row .ryokin__num {
    font-size: 26px;
  }

  .area__main {
    font-size: 32px;
  }

  .area__map iframe {
    height: 300px;
  }
}

/* =========================================================
   パソコン幅では、下部固定の電話ボタンは出さない
   （ヘッダーに常時、大きな電話番号があるため）
   ========================================================= */

@media (min-width: 721px) {
  .tel-fixed {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}
