/* inline-style-1 */
:root {
  --red: #e50012;
  --black: #080808;
  --ink: #071120;
  --white: #fff;
  --gray: #f5f5f5;
  --line: #e6e6e6;
  --muted: #667085;
  --shadow: 0 18px 45px rgba(0, 0, 0, .10);
  --radius: 28px;
  --max: 1200px
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", Meiryo, sans-serif;
  color: var(--ink);
  background: #f3f3f3;
  line-height: 1.7
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: auto
}

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

.header-main {
  height: 88px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 20px
}

.logo-img {
  width: 118px;
  height: auto;
  display: block;
  object-fit: contain
}

.site-title {
  font-weight: 900;
  font-size: 16px;
  line-height: 1.35
}

.site-title small {
  display: block;
  color: #6b7280;
  font-size: 11px;
  font-weight: 700;
  margin-top: 4px
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap
}

.tel {
  font-size: 25px;
  color: var(--red);
  font-weight: 900;
  letter-spacing: .02em
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 13px 21px;
  font-weight: 900;
  font-size: 14px;
  border: 2px solid transparent;
  transition: .2s;
  cursor: pointer
}

.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 22px rgba(229, 0, 18, .24)
}

.btn-black {
  background: #000;
  color: #fff
}

.btn-white {
  background: #fff;
  color: #000;
  border-color: #111
}

.btn-outline-red {
  background: #fff;
  color: var(--red);
  border-color: var(--red)
}

.btn:hover {
  transform: translateY(-1px)
}

.navbar {
  height: 46px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
  background: #fff
}

.navbar a {
  width: 150px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  border-left: 1px solid var(--line)
}

.navbar a:last-child {
  border-right: 1px solid var(--line)
}

.hero {
  padding: 34px 0 26px;
  background: linear-gradient(180deg, #f4f4f4, #fff)
}

.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  min-height: 510px
}

.hero-copy {
  padding: 48px 38px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.eyebrow {
  font-size: 13px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: .03em;
  margin-bottom: 12px
}

h1 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
  margin: 0 0 22px;
  font-weight: 950;
  letter-spacing: -.04em
}

h1 .red {
  color: var(--red)
}

.no-orphan {
  white-space: nowrap
}

.lead {
  font-size: 17px;
  font-weight: 700;
  color: #202938;
  margin: 0 0 24px
}

.hero-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0 26px
}

.point-pill {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 900
}

.point-pill b {
  color: var(--red);
  margin-right: 6px
}

.hero-visual {
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  background: #fff
}

.hero-badge {
  position: absolute;
  right: 28px;
  bottom: 28px;
  background: #000;
  color: #fff;
  border-radius: 18px;
  padding: 14px 18px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22)
}

.section {
  padding: 72px 0
}

.white-section {
  background: #fff
}

.gray-section {
  background: #f4f4f4
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.16;
  margin: 0;
  font-weight: 950;
  letter-spacing: -.03em
}

.section-lead {
  color: #475467;
  font-weight: 700;
  max-width: 760px;
  margin: 14px 0 0
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .05)
}

.info-card h3 {
  font-size: 22px;
  margin: 12px 0 8px;
  font-weight: 950
}

.info-card p {
  margin: 0;
  color: #56616f;
  font-weight: 650
}

.num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-weight: 950
}

.lineup-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow)
}

.lineup-panel img {
  border-radius: 20px;
  margin: auto;
  background: #fff
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 26px
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease
}

.product-card:hover, .product-card:focus {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .10);
  border-color: rgba(224, 0, 18, .45);
  outline: none
}

.product-card:focus-visible {
  outline: 3px solid rgba(224, 0, 18, .22);
  outline-offset: 4px
}

.product-img {
  position: relative;
  height: 190px;
  background: #fff;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line)
}

.product-quantity-badge {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 12px;
  display: flex;
  width: 74px;
  height: 74px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 6px 16px rgba(224, 0, 18, .24);
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.25;
  text-align: center
}

.product-img img {
  max-height: 100%;
  object-fit: contain
}

.product-body {
  padding: 22px
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px
}

.tag {
  font-size: 11px;
  font-weight: 900;
  padding: 6px 9px;
  border-radius: 999px;
  background: #111;
  color: #fff
}

.tag-red {
  background: var(--red)
}

.product-body h3 {
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 8px;
  font-weight: 950
}

.product-body p {
  margin: 0;
  color: #56616f;
  font-size: 13px;
  font-weight: 650;
  min-height: 66px
}

.price {
  font-size: 24px;
  font-weight: 950;
  color: var(--red);
  margin-top: 14px
}

.note {
  font-size: 12px;
  color: #697586;
  margin-top: 6px
}

.calc-wrap {
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 24px;
  align-items: start
}

.calc-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow)
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
}

label {
  display: block;
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 8px
}

input, select, textarea {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 14px;
  padding: 14px;
  background: #fff;
  font-size: 15px;
  font-weight: 700
}

textarea {
  min-height: 120px;
  resize: vertical
}

.result {
  background: #080808;
  color: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 112px
}

.result h3 {
  font-size: 25px;
  margin: 0 0 14px;
  font-weight: 950
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16)
}

.row strong {
  text-align: right
}

.total-label {
  font-size: 13px;
  color: #cbd5e1;
  margin-top: 18px
}

.total {
  font-size: 40px;
  font-weight: 950;
  color: #fff;
  letter-spacing: -.04em
}

.alert {
  background: #fff4f4;
  border: 1px solid #ffd1d1;
  color: #7f1d1d;
  border-radius: 16px;
  padding: 13px 15px;
  font-size: 13px;
  font-weight: 800;
  margin-top: 16px
}

.result .alert {
  background: rgba(229, 0, 18, .20);
  border-color: rgba(255, 255, 255, .20);
  color: #fff
}

.quote-area {
  margin-top: 30px
}

.quote-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 20px
}

.quote-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  font-weight: 900;
  color: #667085
}

.quote-step.active {
  background: #000;
  color: #fff;
  border-color: #000
}

.quote-step.done {
  border-color: var(--red);
  color: var(--red)
}

.quote-panel {
  display: none
}

.quote-panel.active {
  display: block
}

.required {
  color: var(--red)
}

.confirm-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow)
}

.confirm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 18px
}

.confirm-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  align-items: start;
  border-bottom: 1px solid #e9e9e9;
  padding: 12px 0
}

.confirm-item span {
  display: block;
  font-size: 12px;
  color: #697586;
  font-weight: 950
}

.confirm-item strong {
  font-size: 15px;
  line-height: 1.6;
  word-break: break-word
}

.confirm-item.wide {
  grid-column: 1/-1
}

.complete {
  display: none;
  background: #fff;
  border: 2px solid var(--red);
  border-radius: 24px;
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow)
}

.complete.show {
  display: block
}

.sticker-img {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 16px;
  box-shadow: var(--shadow)
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
  overflow: hidden;
  border-radius: 18px
}

th, td {
  padding: 10px;
  border-right: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  text-align: center;
  background: #fff
}

th {
  background: #000;
  color: #fff;
  font-weight: 950
}

tr td:first-child {
  font-weight: 950;
  color: var(--red)
}

.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px
}

.flow-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  text-align: center
}

.flow-item .num {
  margin: 0 auto 12px
}

.flow-item strong {
  font-weight: 950
}

.flow-item p {
  font-size: 12px;
  color: #697586;
  margin: 8px 0 0;
  font-weight: 700
}

.footer {
  background: #111827;
  color: #fff;
  padding: 60px 0 24px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  padding-bottom: 34px
}

.footer-logo-box {
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  width: 154px;
  margin-bottom: 18px
}

.footer-logo-box img {
  width: 126px;
  height: auto;
  object-fit: contain
}

.footer h4 {
  font-size: 15px;
  margin: 0 0 14px;
  font-weight: 950
}

.footer p, .footer li {
  color: #e5e7eb;
  font-size: 13px;
  font-weight: 650
}

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

.footer li {
  margin: 6px 0
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  color: #9ca3af;
  font-size: 12px
}

.floating {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 90;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .20);
  padding: 8px;
  display: flex;
  gap: 8px
}

.floating .btn {
  border-radius: 999px;
  padding: 13px 20px
}

.toplink {
  position: fixed;
  right: 316px;
  bottom: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(229, 0, 18, .3)
}

@media (max-width:1000px) {
  .toplink {
    right: 20px;
    bottom: 96px
  }

  .header-main {
    grid-template-columns: 150px 1fr;
    height: auto;
    padding: 14px 0
  }

  .header-actions {
    grid-column: 1/-1;
    justify-content: space-between
  }

  .tel {
    font-size: 20px
  }

  .hero-card, .calc-wrap, .grid-2 {
    grid-template-columns: 1fr
  }

  .product-grid, .grid-3 {
    grid-template-columns: repeat(2, 1fr)
  }

  .flow, .quote-steps {
    grid-template-columns: repeat(3, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .result {
    position: static
  }

  .color-modal {
    padding: 118px 16px 16px
  }

  .color-modal-panel {
    max-height: calc(100vh - 134px)
  }
}

@media (max-width:680px) {
  .navbar {
    display: none
  }

  .header-main {
    grid-template-columns: 1fr
  }

  .site-title {
    display: none
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
  }

  .tel {
    grid-column: 1/-1;
    text-align: center
  }

  .hero {
    padding-top: 18px
  }

  .hero-copy {
    padding: 32px 22px
  }

  .hero-points, .form-grid, .product-grid, .grid-3, .flow, .footer-grid, .quote-steps, .confirm-grid {
    grid-template-columns: 1fr
  }

  .section-head {
    display: block
  }

  .color-modal {
    padding: 156px 12px 12px
  }

  .color-modal-panel {
    width: min(760px, calc(100vw - 24px));
    max-height: calc(100vh - 170px);
    padding: 20px
  }

  .floating {
    left: 14px;
    right: 14px;
    justify-content: center
  }

  .toplink {
    right: 18px;
    bottom: 92px
  }

  .footer-bottom {
    display: block
  }

  .section {
    padding: 54px 0
  }
}

/* image numbers apply only to replaceable page images. Logo is fixed and not numbered. */
html {
  scroll-padding-top: 140px
}

.numbered-image {
  position: relative;
  display: block
}

.numbered-image>img {
  display: block;
  width: 100%
}

.numbered-image::after {
  content: attr(data-img-no);
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 5;
  background: rgba(0, 0, 0, .62);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .04em;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .22)
}

.hero-visual.numbered-image::after {
  left: 28px;
  top: 28px
}

.product-img.numbered-image::after {
  left: 10px;
  top: 10px
}

.sticker-img.numbered-image::after, .lineup-panel.numbered-image::after {
  left: 18px;
  top: 18px
}

/* v8 fixes: self-contained logo/images, confirmation view, fixed buttons */
.logo-img {
  width: 132px;
  max-width: 132px;
  height: auto;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.header-main>a:first-child {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
}

.footer-logo-box {
  background: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  width: 172px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-box img {
  width: 140px;
  max-width: 140px;
  height: auto;
  display: block;
}

.confirm-grid {
  display: block;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 12px 18px;
}

.confirm-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  align-items: start;
  border-bottom: 1px solid #e9e9e9;
  padding: 13px 0;
}

.confirm-item:last-child {
  border-bottom: none;
}

.confirm-item span {
  font-size: 13px;
  color: #697586;
  font-weight: 950;
}

.confirm-item strong {
  font-size: 15px;
  line-height: 1.65;
  word-break: break-word;
  white-space: pre-wrap;
}

.toplink {
  right: 24px;
  bottom: 104px;
  z-index: 95;
}

.floating {
  right: 20px;
  bottom: 22px;
  z-index: 94;
}

[id] {
  scroll-margin-top: 150px;
}

.quote-area {
  scroll-margin-top: 150px;
}

@media (max-width:680px) {
  .logo-img {
    width: 116px;
    max-width: 116px
  }

  .header-main>a:first-child {
    justify-content: center
  }

  .confirm-item {
    grid-template-columns: 1fr;
    gap: 4px
  }

  .toplink {
    right: 18px;
    bottom: 98px
  }

  .floating {
    z-index: 94
  }
}


.tax-pair {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-weight: 900
}

.tax-pair small, .tax-sub {
  display: block;
  color: #667085;
  font-size: 11px;
  font-weight: 800;
  margin-top: 2px
}

.result .tax-sub {
  color: #ffd7d7
}

.shipping-policy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.shipping-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow)
}

.shipping-card h3 {
  font-size: 22px;
  margin: 10px 0 8px;
  font-weight: 950
}

.shipping-card p {
  color: #475467;
  font-weight: 700;
  margin: 0
}

.shipping-card .tag {
  display: inline-flex;
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 950
}

.shipping-card.best .tag {
  background: var(--red)
}

@media(max-width:900px) {
  .shipping-policy {
    grid-template-columns: 1fr
  }
}

.shipping-table-wrap {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px
}

.shipping-table-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
  overflow: hidden
}

.shipping-table-card h3 {
  font-size: 24px;
  margin: 0 0 8px;
  font-weight: 950;
  color: #111
}

.shipping-table-card p {
  margin: 0 0 16px;
  color: #475467;
  font-weight: 700
}

.shipping-table-scroll {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid var(--line)
}

.shipping-price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
  background: #fff;
  font-size: 14px
}

.shipping-price-table th, .shipping-price-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px 10px;
  text-align: left;
  vertical-align: top
}

.shipping-price-table th {
  background: #111;
  color: #fff;
  font-weight: 950;
  white-space: nowrap
}

.shipping-price-table td:nth-child(3), .shipping-price-table td:nth-child(4), .shipping-price-table th:nth-child(3), .shipping-price-table th:nth-child(4) {
  text-align: right;
  white-space: nowrap
}

.shipping-price-table tr:last-child td {
  border-bottom: none
}

.shipping-price-table .separate {
  font-weight: 950;
  color: var(--red)
}

@media(max-width:900px) {
  .shipping-price-table {
    font-size: 13px;
    min-width: 680px
  }

  .shipping-table-card {
    padding: 18px
  }
}


/* v23: 固定ヘッダー対応のアンカー位置調整 */
:root {
  --anchor-offset: 168px
}

html {
  scroll-padding-top: var(--anchor-offset)
}

body {
  scroll-padding-top: var(--anchor-offset)
}

section[id], div[id].quote-area, .anchor-target {
  scroll-margin-top: var(--anchor-offset)
}

.quote-area {
  padding-top: 8px
}

.contact-intro {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px 24px;
  margin: 0 0 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .06)
}

.contact-intro h3 {
  font-size: 26px;
  margin: 0 0 8px;
  font-weight: 950
}

.contact-intro p {
  margin: 0;
  color: #53606f;
  font-weight: 700;
  line-height: 1.8
}

.privacy-box {
  grid-column: 1/-1;
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 16px
}

.privacy-box label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0;
  line-height: 1.7
}

.privacy-box input {
  width: auto;
  margin-top: 4px
}

.inline-help {
  font-size: 12px;
  color: #697586;
  font-weight: 700;
  margin-top: 6px;
  line-height: 1.7
}

@media (max-width:780px) {
  :root {
    --anchor-offset: 190px
  }

  .confirm-grid {
    grid-template-columns: 1fr
  }

  .confirm-item {
    grid-template-columns: 1fr
  }

  .calc-wrap {
    grid-template-columns: 1fr
  }

  .form-grid {
    grid-template-columns: 1fr
  }

  .quote-steps {
    grid-template-columns: 1fr
  }
}


/* v24 inquiry form / anchor usability fixes */
.result {
  position: static !important;
  top: auto !important
}

#contactForm {
  margin-top: 54px;
  scroll-margin-top: calc(var(--anchor-offset) + 24px)
}

.contact-intro {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  margin: 0 0 22px !important
}

.contact-hero {
  background: linear-gradient(135deg, #070707 0%, #161616 58%, #e50012 160%);
  color: #fff;
  border-radius: 30px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .18);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
  align-items: stretch
}

.contact-hero-copy {
  padding: 34px 38px
}

.contact-hero-copy h3 {
  font-size: 34px;
  line-height: 1.25;
  margin: 8px 0 14px;
  font-weight: 950;
  letter-spacing: -.03em
}

.contact-hero-copy p {
  color: #e5e7eb;
  line-height: 1.9;
  font-weight: 800;
  margin: 0
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #e50012;
  border-radius: 999px;
  padding: 7px 14px;
  font-weight: 950;
  font-size: 13px
}

.contact-badge::before {
  content: '✓';
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  background: #e50012;
  color: #fff;
  border-radius: 50%;
  font-size: 12px
}

.contact-hero-panel {
  background: rgba(255, 255, 255, .06);
  border-left: 1px solid rgba(255, 255, 255, .16);
  padding: 30px;
  display: grid;
  gap: 14px;
  align-content: center
}

.contact-mini {
  background: #fff;
  color: #111;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .14)
}

.contact-mini strong {
  display: block;
  font-size: 15px;
  font-weight: 950
}

.contact-mini span {
  display: block;
  color: #667085;
  font-size: 12px;
  font-weight: 800;
  margin-top: 4px;
  line-height: 1.55
}

.quote-steps {
  margin-top: 18px
}

.quote-step {
  position: relative;
  padding: 18px 18px 18px 48px
}

.quote-step::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #e5e7eb
}

.quote-step.active::before {
  background: #e50012;
  box-shadow: 0 0 0 4px rgba(229, 0, 18, .18)
}

.quote-step.done::before {
  background: #e50012
}

.quote-form-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
  align-items: start
}

.quote-sidebar {
  background: #070707;
  color: #fff;
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .18);
  position: sticky;
  top: 120px
}

.quote-sidebar h4 {
  font-size: 20px;
  margin: 0 0 12px
}

.quote-sidebar p {
  color: #d1d5db;
  font-weight: 750;
  line-height: 1.8;
  margin: 0 0 18px
}

.quote-side-list {
  display: grid;
  gap: 10px
}

.quote-side-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 12px
}

.quote-side-num {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #e50012;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 950;
  flex: none
}

.quote-side-item strong {
  display: block;
  font-size: 13px
}

.quote-side-item span {
  display: block;
  color: #d1d5db;
  font-size: 12px;
  line-height: 1.6;
  margin-top: 2px
}

.quote-main-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow)
}

.quote-main-card h3 {
  font-size: 30px;
  margin: 0 0 6px;
  font-weight: 950;
  letter-spacing: -.03em
}

.quote-main-card .lead {
  font-size: 15px;
  color: #53606f;
  font-weight: 800;
  line-height: 1.8;
  margin: 0 0 22px
}

.form-section {
  border: 1px solid #ececec;
  border-radius: 22px;
  padding: 20px;
  margin: 0 0 18px;
  background: #fff
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 950;
  margin: 0 0 16px
}

.form-section-title::before {
  content: '';
  width: 8px;
  height: 24px;
  background: #e50012;
  border-radius: 999px
}

.form-grid .wide {
  grid-column: 1/-1
}

.form-help-card {
  background: #fff5f5;
  border: 1px solid #ffd0d0;
  color: #7f1d1d;
  border-radius: 18px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.7
}

.file-ui {
  border: 1px dashed #d1d5db;
  border-radius: 18px;
  padding: 16px;
  background: #fafafa
}

.privacy-box {
  background: #f8fafc !important;
  border: 1px solid #e5e7eb !important
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #eee
}

.form-actions .btn {
  min-width: 220px
}

input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(229, 0, 18, .16);
  border-color: #e50012
}

.floating {
  z-index: 90
}

.toplink {
  z-index: 91
}

@media (max-width:1000px) {
  .contact-hero, .quote-form-layout {
    grid-template-columns: 1fr
  }

  .quote-sidebar {
    position: static
  }

  .contact-hero-panel {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .16)
  }

  .contact-hero-copy {
    padding: 28px
  }
}

@media (max-width:680px) {
  #contactForm {
    margin-top: 36px
  }

  .contact-hero-copy h3 {
    font-size: 27px
  }

  .quote-main-card {
    padding: 22px
  }

  .form-section {
    padding: 16px
  }

  .form-actions .btn {
    width: 100%;
    min-width: 0
  }

  .contact-hero-panel {
    padding: 22px
  }
}


#inquiryForm {
  scroll-margin-top: calc(var(--anchor-offset) + 24px)
}

.inquiry-wrap {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 24px;
  align-items: start
}

.inquiry-side {
  background: linear-gradient(135deg, #050505, #2b0b0e);
  color: #fff;
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
  position: sticky;
  top: 150px
}

.inquiry-side h3 {
  font-size: 30px;
  line-height: 1.35;
  margin: 18px 0 12px;
  font-weight: 950
}

.inquiry-side p, .inquiry-side li {
  color: #f3f4f6;
  font-weight: 750;
  line-height: 1.85
}

.inquiry-side ul {
  margin: 18px 0 0;
  padding-left: 20px
}

.inquiry-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 16px 44px rgba(15, 23, 42, .08)
}

.complete-box.show, #inquiryComplete.show {
  display: block
}

.complete-box {
  display: none;
  margin-top: 18px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #14532d;
  border-radius: 18px;
  padding: 18px
}

@media (max-width:1000px) {
  .inquiry-wrap {
    grid-template-columns: 1fr
  }

  .inquiry-side {
    position: static
  }

  .inquiry-side h3 {
    font-size: 24px
  }
}


/* v27 mobile overflow and TOP button fix */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

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

img, video, svg, canvas {
  max-width: 100%;
  height: auto;
}

.container, .wrap, section, .section, .hero, .card, .quote-main-card, .contact-panel, .estimate-panel, .form-section {
  max-width: 100%;
}

/* 納期目安・Googleクチコミ導線 */
.leadtime-section{padding-top:36px;padding-bottom:36px}
.leadtime-box{padding:24px 28px;border:1px solid #ead8da;border-left:5px solid var(--red);border-radius:18px;background:#fff}
.leadtime-box h2{margin:4px 0 12px;font-size:28px}
.leadtime-box p{margin:8px 0;color:#333;line-height:1.85}
.leadtime-box a{color:var(--red);text-decoration:underline;text-underline-offset:3px}
.leadtime-box__note{color:#666!important;font-size:13px}
.review-section{padding-top:36px;padding-bottom:44px}
.review-invite{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:22px 26px;border:1px solid #ddd;border-radius:18px;background:#fff;box-shadow:0 12px 32px rgba(0,0,0,.05)}
.review-invite__copy h2{margin:0 0 8px;font-size:22px;line-height:1.4}
.review-invite__copy p{margin:0;color:#444;line-height:1.7}
.review-invite__button{display:inline-flex;align-items:center;justify-content:center;flex:none;min-height:48px;padding:12px 20px;border-radius:999px;background:var(--red);color:#fff;font-weight:900;text-decoration:none}
@media(max-width:720px){.leadtime-box{padding:20px}.leadtime-box h2{font-size:24px}.review-invite{display:block;padding:20px}.review-invite__copy h2{font-size:20px}.review-invite__button{width:100%;margin-top:16px}}

@media (max-width: 680px) {
  html, body {
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero, .quote-hero, .quote-main-card, .contact-panel, .estimate-panel, .form-section {
    width: 100%;
    max-width: 100%;
  }

  .hero-points, .form-grid, .contact-grid, .estimate-grid, .footer-grid, .quote-steps, .confirm-grid, .product-grid, .grid-3, .flow {
    grid-template-columns: 1fr !important;
  }

  .floating {
    left: 10px !important;
    right: 10px !important;
    bottom: 12px !important;
    width: auto !important;
    max-width: calc(100vw - 20px) !important;
    padding: 6px !important;
    gap: 5px !important;
    justify-content: center !important;
    overflow: hidden !important;
  }

  .floating .btn {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    padding: 10px 6px !important;
    font-size: 12px !important;
    white-space: nowrap !important;
  }

  .toplink {
    right: 12px !important;
    bottom: 78px !important;
    width: 44px !important;
    height: 44px !important;
    max-width: 44px !important;
    overflow: hidden !important;
  }

  table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
  }
}

/* v31: NO.03 image embedded directly, no click link */
/* v32: NO.04 upper image replaced with uploaded red megaphone photo */

#sticker .sticker-img img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
}

#sticker .sticker-img {
  overflow: hidden;
}

/* v50: product color modal */
.color-btn {
  margin-top: 14px;
  width: 100%;
  border: 1px solid rgba(224, 0, 18, .28);
  background: #fff5f5;
  color: var(--red);
  font-weight: 900;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 14px
}

.color-btn:hover, .color-btn:focus {
  background: var(--red);
  color: #fff;
  outline: none
}

.product-action-note {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #667085;
  text-align: center
}

.color-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 132px 20px 20px
}

.color-modal[hidden] {
  display: none
}

.color-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .62)
}

.color-modal-panel {
  position: relative;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
  width: min(760px, calc(100vw - 32px));
  max-height: calc(100vh - 152px);
  overflow: auto;
  padding: 24px
}

.color-modal-close {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  background: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer
}

.color-modal-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: start;
  margin-top: 14px
}

.color-modal-img {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center
}

.color-modal-img img {
  max-height: 210px;
  object-fit: contain
}

.color-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0
}

.color-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 7px 10px;
  background: #fff;
  font-size: 13px;
  font-weight: 800
}

.color-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35)
}

.color-modal-note {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 14px;
  padding: 12px 14px;
  color: #7c2d12;
  font-size: 14px;
  font-weight: 700
}

@media (max-width:680px) {
  .color-modal-panel {
    padding: 20px
  }

  .color-modal-grid {
    grid-template-columns: 1fr
  }

  .color-modal-img {
    min-height: 150px
  }
}


/* v51: color reference image gallery */
.color-modal-panel {
  width: min(920px, calc(100vw - 32px))
}

.color-modal-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px
}

.color-ref-img {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .05)
}

.color-ref-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: contain;
  background: #fff
}

.color-empty {
  border: 1px dashed #d0d5dd;
  border-radius: 14px;
  padding: 14px;
  color: #667085;
  font-size: 13px;
  font-weight: 700;
  background: #f9fafb
}

.color-spec-box {
  margin-top: 14px;
  border: 1px solid rgba(224, 0, 18, .18);
  background: #fff7f7;
  border-radius: 16px;
  padding: 14px;
  color: #1f2937;
  font-weight: 750;
  line-height: 1.7
}

@media(max-width:760px) {
  .color-modal-grid {
    grid-template-columns: 1fr
  }

  .color-modal-gallery {
    grid-template-columns: 1fr
  }

  .color-modal-img {
    min-height: 140px
  }

  .color-modal-img img {
    max-height: 170px
  }
}


/* v65 price list section */
.price-list-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end
}

.price-list-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow)
}

.price-product-buttons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 22px
}

.price-product-btn {
  border: 2px solid #111;
  background: #fff;
  color: #111;
  border-radius: 14px;
  padding: 12px 10px;
  font-weight: 950;
  font-size: 13px;
  cursor: pointer;
  transition: .18s;
  text-align: center;
  line-height: 1.35
}

.price-product-btn:hover, .price-product-btn.active {
  background: #111;
  color: #fff;
  transform: translateY(-1px)
}

.price-list-select-wrap {
  display: none;
  margin: 16px 0 18px
}

.price-table-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-end;
  margin: 6px 0 14px;
  flex-wrap: wrap
}

.price-table-title h3 {
  font-size: 26px;
  line-height: 1.2;
  margin: 0;
  font-weight: 950
}

.price-table-title p {
  margin: 0;
  color: #667085;
  font-weight: 800;
  font-size: 13px
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff
}

.price-table-wrap table {
  min-width: 760px;
  border-radius: 0
}

.price-table-wrap th {
  white-space: nowrap
}

.price-table-wrap td {
  font-weight: 850
}

.price-table-wrap td.price-cell {
  color: var(--red);
  font-size: 16px;
  font-weight: 950
}

.price-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px
}

.price-note-box {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 13px 14px;
  font-size: 12px;
  color: #475467;
  font-weight: 800
}

@media(max-width:1000px) {
  .price-product-buttons {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .price-notes {
    grid-template-columns: 1fr
  }
}

@media(max-width:680px) {
  .price-list-actions {
    justify-content: flex-start
  }

  .price-product-buttons {
    display: none
  }

  .price-list-select-wrap {
    display: block
  }

  .price-table-title h3 {
    font-size: 22px
  }

  .price-table-wrap table {
    min-width: 680px
  }
}

/* logo-fix-v19 */
.logo-img {
  width: 168px !important;
  max-width: none !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  display: block !important;
  overflow: visible !important;
}

.header-main>a:first-child {
  overflow: visible !important;
  align-items: center !important;
}

.header-main {
  grid-template-columns: auto 1fr auto !important;
  overflow: visible !important;
}

.footer-logo-box {
  width: 205px !important;
  min-height: 78px !important;
  overflow: visible !important;
  padding: 10px 16px !important;
}

.footer-logo-box img {
  width: 172px !important;
  max-width: none !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  display: block !important;
}

@media (max-width:680px) {
  .logo-img {
    width: 142px !important
  }

  .header-main {
    grid-template-columns: 1fr !important
  }

  .header-main>a:first-child {
    min-width: 160px !important;
    min-height: 64px !important;
    justify-content: center !important
  }

  .footer-logo-box img {
    width: 150px !important
  }
}

#inquiryForm {
  scroll-margin-top: calc(var(--anchor-offset) + 24px)
}

.inquiry-wrap {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 24px;
  align-items: start
}

.inquiry-side {
  background: linear-gradient(135deg, #050505, #2b0b0e);
  color: #fff;
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
  position: sticky;
  top: 150px
}

.inquiry-side h3 {
  font-size: 30px;
  line-height: 1.35;
  margin: 18px 0 12px;
  font-weight: 950
}

.inquiry-side p, .inquiry-side li {
  color: #f3f4f6;
  font-weight: 750;
  line-height: 1.85
}

.inquiry-side ul {
  margin: 18px 0 0;
  padding-left: 20px
}

.inquiry-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 16px 44px rgba(15, 23, 42, .08)
}

.complete-box.show, #inquiryComplete.show {
  display: block
}

.complete-box {
  display: none;
  margin-top: 18px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #14532d;
  border-radius: 18px;
  padding: 18px
}

@media (max-width:1000px) {
  .inquiry-wrap {
    grid-template-columns: 1fr
  }

  .inquiry-side {
    position: static
  }

  .inquiry-side h3 {
    font-size: 24px
  }
}

/* mobile-header-table-fix-v28 */
/* v28: fixed header, clickable phone number, mobile sticker-table scroll */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.header-top {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
}

body {
  padding-top: var(--fixed-header-height, 134px) !important;
}

.tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}

#sticker .calc-box {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

#sticker .calc-box table {
  min-width: 720px;
  width: 720px;
  max-width: none;
  display: table !important;
}

#sticker .calc-box th, #sticker .calc-box td {
  white-space: nowrap;
}

#sticker .calc-box::after {
  content: "左右にスクロールできます";
  display: none;
  margin-top: 8px;
  color: #667085;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width:680px) {
  .header-main {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 8px 0 !important;
    height: auto !important;
    text-align: center !important;
  }

  .header-main>a:first-child {
    justify-content: center !important;
    min-height: 48px !important;
  }

  .site-title {
    font-size: 12px !important;
    line-height: 1.35 !important;
  }

  .site-title small {
    font-size: 10px !important;
  }

  .header-actions {
    grid-column: 1/-1 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 6px !important;
    white-space: normal !important;
  }

  .header-actions .tel {
    width: 100% !important;
    font-size: 19px !important;
    line-height: 1.2 !important;
  }

  .header-actions .btn {
    padding: 8px 12px !important;
    font-size: 12px !important;
    border-radius: 10px !important;
  }

  .navbar {
    height: auto !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .navbar a {
    width: auto !important;
    min-width: 92px !important;
    padding: 9px 10px !important;
    font-size: 12px !important;
    white-space: nowrap !important;
  }

  #sticker .calc-box {
    padding: 14px !important;
    border-radius: 18px !important;
    overflow-x: auto !important;
  }

  #sticker .calc-box::after {
    display: block;
  }
}

/* storage-compare-v66 */
.storage-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 16px 44px rgba(15, 23, 42, .08)
}

.storage-image-wrap {
  background: linear-gradient(180deg, #fff, #fafafa);
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 18px;
  text-align: center
}

.storage-image-wrap img {
  display: block;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  height: auto
}

.storage-caption-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px
}

.storage-caption-item {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 14px 16px
}

.storage-caption-item strong {
  display: block;
  font-size: 16px;
  color: #111827;
  margin-bottom: 4px
}

.storage-caption-item span {
  display: block;
  font-size: 13px;
  line-height: 1.7;
  color: #475467;
  font-weight: 700
}

.storage-note {
  margin-top: 18px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  border-radius: 18px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.8
}

.storage-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px
}

@media (max-width:900px) {
  .storage-caption-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:640px) {
  .storage-card {
    padding: 18px
  }

  .storage-caption-grid {
    grid-template-columns: 1fr
  }

  .storage-image-wrap {
    padding: 10px
  }
}

/* externalized fixed inline styles */
.header-logo-link {
  display: flex;
  align-items: center
}

.action-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.action-row--compact {
  gap: 8px
}

.result-submit {
  width: 100%;
  margin-top: 18px
}

.estimate-handoff {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  padding: 16px;
  margin-top: 18px
}

.estimate-handoff-title {
  font-size: 15px;
  font-weight: 950;
  margin-bottom: 6px
}

.estimate-handoff p {
  margin: 0;
  color: #e5e7eb;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.7
}

.estimate-handoff-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px
}

.estimate-handoff-actions .btn {
  width: 100%;
  padding-left: 12px;
  padding-right: 12px
}

.confirm-title {
  font-size: 28px;
  margin: 0 0 18px
}

.confirm-lead {
  margin-bottom: 20px
}

.confirm-actions {
  margin-top: 24px
}

.complete-title {
  font-size: 30px;
  margin: 0 0 10px
}

.form-section--flush {
  margin: 0
}

.footer-subheading {
  margin-top: 20px
}

.footer-info-grid {
  margin-top: 28px
}

.color-dot-default {
  background: #e5e7eb
}

.color-dot-red {
  background: #dc2626
}

.color-dot-blue {
  background: #2563eb
}

.color-dot-light-blue {
  background: #38bdf8
}

.color-dot-yellow {
  background: #facc15
}

.color-dot-green {
  background: #16a34a
}

.color-dot-purple {
  background: #7e22ce
}

.color-dot-navy {
  background: #1e3a8a
}

.color-dot-blue-navy {
  background: #1e40af
}

.color-dot-white {
  background: #fff
}

.color-dot-black {
  background: #111827
}

.color-dot-wine {
  background: #7f1d1d
}

.color-dot-orange {
  background: #f97316
}

.color-dot-pink {
  background: #ec4899
}

/* Keep the fixed header on one row around tablet landscape widths. */
@media (min-width:901px) and (max-width:1180px) {
  .header-main {
    height: 88px !important;
    padding: 0 !important;
    grid-template-columns: 190px minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  .site-title {
    display: none
  }

  .header-actions {
    grid-column: 2 !important;
    justify-content: flex-end !important;
    gap: 6px !important;
    min-width: 0;
  }

  .header-actions .tel {
    font-size: 18px !important
  }

  .header-actions .btn {
    padding: 9px 12px !important;
    font-size: 12px !important;
    border-radius: 10px !important;
  }
}

.color-dot-gold {
  background: #d4af37
}

.color-dot-stock {
  background: #94a3b8
}

.color-dot-pending {
  background: #cbd5e1
}

.color-dot-made-to-order {
  background: #d6d3d1
}

/* 対応実績ページへの導線 */
.results-promo-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.results-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 26px;
  border: 1px solid #ffd2d4;
  border-radius: 18px;
  background: linear-gradient(90deg, #fff 0%, #fff7f7 100%);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .04);
}

.results-promo:hover {
  border-color: #e31b23;
}

.results-promo__copy {
  display: block;
}

.results-promo__label {
  display: block;
  color: #e31b23;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.results-promo__title {
  display: block;
  margin: 4px 0 5px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.45;
  text-wrap: balance;
}

.results-promo__text {
  display: block;
  color: #555f6c;
}

.results-promo__button {
  flex: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: #e31b23;
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
}

@media(max-width:700px) {
  .results-promo {
    align-items: flex-start;
    flex-direction: column;
  }

  .results-promo__title {
    font-size: 21px;
    line-height: 1.5;
  }

  .results-promo__title br {
    display: none;
  }

  .results-promo__button {
    width: 100%;
    text-align: center;
  }
}
