@charset "UTF-8";
/*-------------------------------------------
Color
-------------------------------------------*/
:root {
  --ink: #fff;
  --ink-light: #cacac8;
  --ink-faint: #a9a9a3;
  --paper: #0c0c0c;
  --paper-warm: #ede9e0;
  --accent: #2d5a3d;
  --accent-light: #e8f0eb;
  --rule: #d4cfc4;
  --warn: #b85c00;
  --accent-red: rgb(212, 6, 6);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #140000;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  position: relative;
  min-height: 100vh;
}

h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  letter-spacing: 0.07em;
  text-align: center;
  display: inline-block;
  position: relative;
  margin-top: 40px;
  margin-left: -50px;
  text-align: left;
}

h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #a40101;
  position: absolute;
  top: 110%;
  left: 0;
}

h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  line-height: 1.5;
}

h4 {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 10px 0 10px 10px;
}

@media (max-width: 6000px) {
  h2 {
    font-size: 28px;
    margin-left: 0;
    line-height: 1.2;
  }
}
/* ── スマホ固定合計バー ── */
.mobile-total-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 10px 20px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  transition: opacity 0.25s, transform 0.25s;
}

.mobile-total-bar.hidden {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.mobile-total-bar .mb-label {
  font-size: 11px;
  color: #888;
  font-family: "DM Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-total-bar .mb-amount {
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  color: #fff;
  line-height: 1;
}

.mobile-total-bar .mb-tax {
  font-size: 10px;
  color: #666;
  margin-top: 2px;
}

@media (max-width: 740px) {
  .mobile-total-bar {
    display: flex;
  }
}
/* ── layout ── */
.wrapper {
  max-width: 940px;
  margin: 0 auto;
  padding: 60px 32px 100px;
}

@media (max-width: 740px) {
  .wrapper {
    padding: 20px 16px 60px;
  }
}
.cols {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

@media (max-width: 740px) {
  .cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
/* ── header ── */
.site-header {
  padding-top: 28px;
  margin-bottom: 52px;
}

@media (max-width: 740px) {
  .site-header {
    margin-bottom: 32px;
    padding-top: 20px;
  }
}
.mono-label {
  font-family: "DM Mono", monospace;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 8px;
}

.site-header h1 {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 600;
  line-height: 1.2;
}

.site-header .sub {
  margin-top: 10px;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.5;
  margin-top: 32px;
}

/* ── section ── */
.section {
  margin-bottom: 40px;
}

.section-title {
  font-family: "DM Mono", monospace;
  font-size: 20px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink-faint);
  color: #ffffff;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 2px solid #a40101;
  margin-bottom: 18px;
}

/* ── form rows ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
  margin-bottom: 10px;
}

.form-row label {
  font-size: 15px;
  line-height: 1.5;
  padding-top: 2px;
}

.form-row label small {
  display: block;
  font-size: 14px;
  color: #ffffff;
  margin-top: 2px;
  margin-left: 8px;
}

.lp-notification {
  font-size: 14px;
}

/* ── number input ── */
.qty-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
}

.qty-wrap input[type=number] {
  width: 64px;
  padding: 5px 8px;
  border: 1px solid var(--rule);
  background: #fff;
  font-family: "DM Mono", monospace;
  font-size: 14px;
  color: var(--ink);
  color: #393938;
  text-align: right;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.15s;
}

.qty-wrap input[type=number]:focus {
  border-color: var(--accent);
}

.qty-wrap .unit {
  font-size: 13px;
  color: var(--ink-faint);
}

/* ── radio group ── */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.radio-opt {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.radio-opt input[type=radio] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--rule);
  border-radius: 50%;
  background: #fff;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: border-color 0.12s;
}

.radio-opt input[type=radio]:checked {
  border-color: var(--accent);
}

.radio-opt input[type=radio]:checked::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.radio-opt .r-label {
  font-size: 15px;
  line-height: 1.5;
}

.radio-opt .r-label small {
  display: block;
  font-size: 14px;
  color: #ffffff;
  margin-top: 1px;
}

/* ── subheading ── */
.sub-heading {
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
}

.setup-sub {
  font-size: 14px;
  margin-bottom: 12px;
  margin-left: 1em;
}

/* ── toggle ── */
.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--paper-warm);
  gap: 8px;
}

.toggle-row label {
  font-size: 13px;
  line-height: 1.4;
}

.toggle-row label small {
  display: block;
  font-size: 13px;
  color: var(--ink-faint);
  color: #ffffff;
  margin-top: 1px;
  margin-left: 8px;
}

.toggle-row input[type=checkbox] {
  appearance: none;
  width: 34px;
  height: 18px;
  border-radius: 9px;
  background: #817f7b;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s;
}

.toggle-row input[type=checkbox]:checked {
  background: var(--accent);
}

.toggle-row input[type=checkbox]::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.15s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.toggle-row input[type=checkbox]:checked::after {
  left: 18px;
}

/* ── separate estimate ── */
.sep-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--paper-warm);
  gap: 12px;
}

.sep-name {
  font-size: 15px;
  flex: 1;
}

.sep-name small {
  display: block;
  font-size: 13px;
  color: var(--ink-faint);
  color: #ffffff;
  margin-top: 2px;
  margin-left: 8px;
}

.sep-radios {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.sep-radio {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 12px;
  color: var(--ink-light);
}

.sep-radio input[type=radio] {
  appearance: none;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--rule);
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: border-color 0.12s;
}

.sep-radio input[type=radio]:checked {
  border-color: var(--accent);
}

.sep-radio input[type=radio]:checked::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── annotation ── */
.annotation {
  font-size: 11px;
  color: var(--ink-faint);
  margin-top: 6px;
  line-height: 1.6;
  padding-left: 2px;
}

.annotation::before {
  content: "※ ";
}

/* ── note box ── */
.note-box {
  background: var(--accent-light);
  background-color: #858383;
  border-left: 3px solid #a40101;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
  border-radius: 0 3px 3px 0;
  margin-top: 20px;
}

.note-box strong {
  color: var(--ink);
  font-weight: 500;
}

.maintenance-list,
.maintenance-exclusion-list {
  margin-left: 36px;
}

/* ── estimate panel ── */
.panel-wrap {
  position: sticky;
  top: 32px;
}

@media (max-width: 740px) {
  .panel-wrap {
    position: static;
  }
}
.estimate-panel {
  background: var(--ink);
  color: var(--paper);
  padding: 28px 24px 24px;
  border-radius: 4px;
}

.panel-label {
  font-family: "DM Mono", monospace;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 18px;
}

.estimate-rows {
  margin-bottom: 4px;
}

.est-empty {
  font-size: 15px;
  color: #444;
  padding: 8px 0 12px;
  font-style: italic;
}

.est-line {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #484848;
  padding: 4px 0;
  line-height: 1.4;
  gap: 8px;
}

.est-line .name {
  flex: 1;
}

.est-line .amt {
  font-family: "DM Mono", monospace;
  white-space: nowrap;
}

.divider {
  border: none;
  border-top: 1px solid #2a2a2a;
  margin: 14px 0;
}

.total-lbl {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.total-amount {
  font-family: "Shippori Mincho", serif;
  font-size: 28px;
  color: #484848;
  line-height: 1;
  text-align: right;
}

.total-tax {
  font-size: 14px;
  color: #444;
  margin-top: 5px;
}

.total-block {
  margin-bottom: 8px;
}

.sep-notice {
  display: none;
  background: #111;
  border-left: 2px solid var(--warn);
  padding: 8px 10px;
  font-size: 11px;
  color: #888;
  border-radius: 0 2px 2px 0;
  margin-top: 10px;
  line-height: 1.7;
}

.sep-notice.visible {
  display: block;
}

.sep-notice-title {
  color: #b85c00;
  font-weight: 500;
  margin-bottom: 2px;
}

.payment-schedule {
  background: #f8eed1;
  border-radius: 3px;
  padding: 12px 14px;
  margin: 16px 0;
  font-size: 14px;
  color: #555;
}

.sched-title {
  font-family: "DM Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 8px;
}

.sched-row {
  display: flex;
  justify-content: space-between;
  padding: 2px 0;
}

.sched-row .s-val {
  font-family: "DM Mono", monospace;
  color: #777;
}

.btn-pdf {
  width: 100%;
  padding: 11px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.06em;
  transition: opacity 0.15s;
}

.btn-pdf:hover {
  opacity: 0.85;
}

.btn-reset {
  width: 100%;
  margin-top: 7px;
  padding: 8px;
  background: transparent;
  color: #444;
  border: 1px solid #2a2a2a;
  border-radius: 3px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}

.btn-reset:hover {
  color: #bbb;
  border-color: #555;
}

/* ── print ── */
@media print {
  .mobile-total-bar {
    display: none !important;
  }
  body {
    background: #fff;
  }
  .wrapper {
    padding: 16px;
  }
  .cols {
    grid-template-columns: 1fr 280px;
    gap: 20px;
  }
  .panel-wrap {
    position: static;
  }
  .btn-pdf,
  .btn-reset {
    display: none;
  }
  .site-header {
    margin-bottom: 24px;
  }
  @page {
    margin: 10mm;
  }
}
.cta-box {
  display: flex;
  justify-content: space-between;
  justify-content: space-around;
  gap: 20px;
  margin: 48px 0 60px 0;
}

.cta-box__item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lower-cta-box {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .cta-box {
    margin: 48px 0 50px 0;
  }
  .lower-cta-box {
    flex-direction: column;
    margin-bottom: 80px;
  }
  .cta-meeting {
    margin-top: 30px;
  }
}
.calc-estimate-btn-box .btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 260px;
  height: 120px;
  line-height: 1.6;
  font-size: 22px;
  border-radius: 4px;
  margin-top: 20px;
}
.calc-estimate-btn-box .btn-cta:hover {
  transform: translateY(3px);
  transition: all 0.4s;
}
.calc-estimate-btn-box .btn-cta i {
  font-size: 32px;
}

@media screen and (max-width: 768px) {
  .btn-cta {
    width: 310px;
    height: 100px;
    font-size: 22px;
  }
  .btn-cta i {
    font-size: 30px;
  }
}
.btn-contact {
  background-color: #d37228;
}

.btn-estimate {
  border: 3px solid #d37228;
  background-color: #fff;
  color: #d37228;
}

.btn-estimate,
.btn-meeting {
  background-color: #ffffff;
  border: 5px solid #d37228;
  color: #d37228;
}/*# sourceMappingURL=calc-estimate-style.css.map */