@charset "UTF-8";

/* ==========================================================================
   Quote Form Panel Component CSS
   統合型見積もりフォーム（Navy Theme — Round 4 Final Polish）
   ========================================================================== */

/* --- Section-scoped Color Tokens --- */
.c-quote-form {
  --qf-navy: #2b4e6a;
  --qf-navy-dark: #1e3a52;
  --qf-navy-light: rgba(43, 78, 106, 0.07);
  --qf-navy-mid: rgba(43, 78, 106, 0.12);
  --qf-navy-border: rgba(43, 78, 106, 0.18);
  --qf-navy-focus: rgba(43, 78, 106, 0.15);
  --qf-navy-text: #1a3347;
  --qf-card-bg: #ffffff;
  --qf-card-shadow: 0 4px 24px rgba(43, 78, 106, 0.06);
  --qf-card-shadow-hover: 0 8px 32px rgba(43, 78, 106, 0.1);
}

/* ==========================================================================
   § Container & Layout
   ========================================================================== */

.c-quote-form {
  padding: clamp(56px, 8vw, 100px) 0;
  background: var(--c-surface-2, #f3f1ec);
  font-family: var(--ff-sans);
  color: var(--c-text-main, #141618);
}

.c-quote-form__container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 var(--s-4, 16px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 960px) {
  .c-quote-form__container {
    grid-template-columns: 1fr 340px;
    align-items: start;
    gap: 48px;
  }
}

/* ==========================================================================
   § Section Header (KICKER + H2 + Lead)
   ========================================================================== */

.c-qf-header {
  text-align: center;
  margin-bottom: var(--s-8, 56px);
  grid-column: 1 / -1;
}

.c-qf-header__kicker {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--qf-navy);
  background: var(--qf-navy-light);
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: var(--s-4, 16px);
  text-transform: uppercase;
}

.c-qf-header__title {
  font-family: var(--ff-serif, serif);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--c-ink, #141311);
  margin-bottom: var(--s-4, 16px);
  line-height: 1.4;
}

.c-qf-header__lead {
  font-size: 0.95rem;
  color: var(--c-muted, #5e5a54);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

/* ==========================================================================
   § Main Column (Left)
   ========================================================================== */

.c-quote-form__main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ==========================================================================
   § Group Wrapper (Composite Service)
   ========================================================================== */

.c-qf-group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.c-qf-group__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--qf-navy);
  background: var(--qf-navy-mid);
  padding: 10px 18px;
  border-radius: var(--r-sm, 10px);
  border-left: 4px solid var(--qf-navy);
}

.c-qf-group__label i {
  font-size: 0.85rem;
}

/* ==========================================================================
   § Service Card
   ========================================================================== */

.c-qf-service {
  background: var(--qf-card-bg);
  border-radius: var(--r-md, 14px);
  padding: 32px;
  box-shadow: var(--qf-card-shadow);
  border: 1px solid var(--c-border, #e7e2d8);
  transition:
    transform 0.25s var(--ease-smooth, ease),
    box-shadow 0.25s ease;
}

.c-qf-service:hover {
  transform: translateY(-2px);
  box-shadow: var(--qf-card-shadow-hover);
}

/* --- Card Header --- */
.c-qf-service__header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--c-border, #e7e2d8);
}

.c-qf-service__name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.c-qf-service__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--qf-navy-light);
  color: var(--qf-navy);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.c-qf-service__name {
  font-family: var(--ff-serif, serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-ink, #141311);
}

/* Price display — BIG and prominent */
.c-qf-service__price-block {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding-left: 44px; /* icon(34) + gap(10) */
}

.c-qf-service__main-price {
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--qf-navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.c-qf-service__main-price small {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--c-muted, #5e5a54);
  letter-spacing: 0;
}

.c-qf-service__sub-price {
  font-size: 0.85rem;
  color: var(--c-muted, #5e5a54);
  display: flex;
  align-items: center;
  gap: 4px;
}

.c-qf-service__sub-price::before {
  content: "|";
  color: var(--c-border, #e7e2d8);
  margin-right: 2px;
}

.c-qf-service__fee-note {
  font-size: 0.8rem;
  color: #a67c00;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  width: 100%;
  padding-left: 44px;
}

.c-qf-service__fee-note i {
  font-size: 0.72rem;
}

/* ==========================================================================
   § Pricing Examples (concrete use-case examples)
   ========================================================================== */

.c-qf-examples {
  margin: 20px 0 24px;
  padding: 16px 18px;
  background: var(--qf-navy-light);
  border-radius: 8px;
  border-left: 3px solid var(--qf-navy-border);
}

.c-qf-examples__title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--qf-navy);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Grid layout for aligned columns */
.c-qf-examples__list {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 6px 14px;
  align-items: baseline;
}

.c-qf-examples__item {
  display: contents; /* participate in parent grid */
}

.c-qf-examples__case {
  font-size: 0.84rem;
  color: var(--c-text-main, #141618);
  white-space: nowrap;
}

.c-qf-examples__arrow {
  color: var(--qf-navy-border);
  font-size: 0.72rem;
}

.c-qf-examples__result {
  font-size: 0.84rem;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.c-qf-examples__price {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--qf-navy-text);
  white-space: nowrap;
}

.c-qf-examples__detail {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--c-muted, #5e5a54);
  white-space: nowrap;
}

/* Separator between rows */
.c-qf-examples__item + .c-qf-examples__item .c-qf-examples__case,
.c-qf-examples__item + .c-qf-examples__item .c-qf-examples__arrow,
.c-qf-examples__item + .c-qf-examples__item .c-qf-examples__result {
  padding-top: 6px;
  border-top: 1px dashed rgba(43, 78, 106, 0.08);
}

/* ==========================================================================
   § Input Elements
   ========================================================================== */

.c-qf-input-group {
  margin-bottom: 24px;
}

.c-qf-input-group:last-child {
  margin-bottom: 0;
}

.c-qf-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--c-text-main, #141618);
}

.c-qf-label i {
  color: var(--qf-navy);
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Shared input base */
.c-qf-input-text,
.c-qf-input-number,
.c-qf-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--c-border, #e7e2d8);
  border-radius: var(--r-sm, 10px);
  font-size: 1rem;
  font-family: inherit;
  background: #fdfdfc;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}

.c-qf-input-text:focus,
.c-qf-input-number:focus,
.c-qf-textarea:focus {
  border-color: var(--qf-navy);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px var(--qf-navy-focus);
}

.c-qf-textarea {
  min-height: 80px;
  line-height: 1.7;
  resize: vertical;
}

/* --- Stepper (Quantity +/- Control) --- */
.c-qf-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--c-border, #e7e2d8);
  border-radius: var(--r-sm, 10px);
  overflow: hidden;
  background: #fdfdfc;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  max-width: 180px;
}

.c-qf-stepper:focus-within {
  border-color: var(--qf-navy);
  box-shadow: 0 0 0 3px var(--qf-navy-focus);
}

.c-qf-stepper__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--qf-navy);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s;
  flex-shrink: 0;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.c-qf-stepper__btn:hover {
  background: var(--qf-navy-light);
}

.c-qf-stepper__btn:active {
  background: var(--qf-navy-mid);
}

.c-qf-stepper__input {
  width: 52px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--c-border, #e7e2d8);
  border-right: 1px solid var(--c-border, #e7e2d8);
  font-size: 1.1rem;
  font-weight: 700;
  font-family: inherit;
  padding: 8px 0;
  background: #fff;
  color: var(--c-ink, #141311);
  -moz-appearance: textfield;
  appearance: textfield;
}

.c-qf-stepper__input::-webkit-inner-spin-button,
.c-qf-stepper__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.c-qf-stepper__unit {
  font-size: 0.82rem;
  color: var(--c-muted, #5e5a54);
  padding: 0 10px 0 4px;
  white-space: nowrap;
}

/* Character counter */
.c-qf-charcount {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--c-muted, #5e5a54);
  margin-top: 8px;
}

.c-qf-charcount__number {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--qf-navy);
}

.c-qf-charcount__feedback {
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
}

.c-qf-charcount__feedback--base {
  background: rgba(26, 127, 55, 0.08);
  color: #1a7f37;
}

.c-qf-charcount__feedback--over {
  background: rgba(197, 160, 89, 0.12);
  color: #a67c00;
}

/* ==========================================================================
   § Option Items
   ========================================================================== */

.c-qf-options {
  display: grid;
  gap: 10px;
}

.c-qf-option-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--c-border, #e7e2d8);
  border-radius: var(--r-sm, 10px);
  cursor: pointer;
  background: #fdfdfc;
  transition: all 0.2s ease;
}

.c-qf-option-item:hover {
  background: #fff;
  border-color: var(--qf-navy-border);
}

.c-qf-option-item.is-checked,
.c-qf-option-item:has(input:checked) {
  background: var(--qf-navy-light);
  border-color: var(--qf-navy);
  border-left-width: 3px;
}

.c-qf-option-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--qf-navy);
  cursor: pointer;
  flex-shrink: 0;
}

.c-qf-option-name {
  flex-grow: 1;
  font-weight: 500;
  font-size: 0.9rem;
}

.c-qf-option-price {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--qf-navy);
  white-space: nowrap;
}

/* ==========================================================================
   § Sidebar (Right, Sticky) — Navy Dark Theme
   ========================================================================== */

.c-quote-form__sidebar {
  position: relative;
}

@media (min-width: 960px) {
  .c-quote-form__sidebar {
    position: sticky;
    top: 100px;
    z-index: 10;
  }
}

.c-qf-summary {
  background: linear-gradient(160deg, #2b4e6a 0%, #1e3a52 100%);
  color: #fff;
  border-radius: var(--r-md, 14px);
  padding: 28px;
  box-shadow: 0 12px 40px rgba(30, 58, 82, 0.25);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-qf-summary__header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 14px;
}

.c-qf-summary__title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0.85;
  text-transform: uppercase;
}

.c-qf-summary__breakdown {
  min-height: 24px;
}

.c-qf-summary__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 0;
  text-align: center;
}

.c-qf-summary__empty-icon {
  font-size: 1.4rem;
  opacity: 0.25;
}

.c-qf-summary__empty-text {
  font-size: 0.8rem;
  opacity: 0.4;
}

.c-qf-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.9rem;
  padding: 4px 0;
  opacity: 0.9;
}

.c-qf-summary__row--sub {
  font-size: 0.8rem;
  opacity: 0.6;
  padding-left: 12px;
}

.c-qf-summary__group-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.7;
  padding: 10px 0 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
}

.c-qf-summary__group-label:first-child {
  border-top: none;
  padding-top: 0;
}

.c-qf-summary__row--detail {
  font-size: 0.8rem;
  opacity: 0.75;
  padding: 2px 0 2px 8px;
}

.c-qf-summary__row--fee {
  color: rgba(255, 200, 100, 0.9);
}

.c-qf-summary__total {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.c-qf-summary__total-label {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.9;
}

.c-qf-summary__total-price {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.c-qf-summary__tax {
  text-align: right;
  font-size: 0.82rem;
  opacity: 0.6;
  margin-top: 2px;
}

.c-qf-summary__shipping-note {
  text-align: right;
  font-size: 0.75rem;
  color: rgba(255, 200, 100, 0.9);
  margin-top: 5px;
  line-height: 1.4;
}

/* ==========================================================================
   § CTA Button — Gold Gradient
   ========================================================================== */

.c-qf-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 16px 20px;
  border-radius: 50px;
  background: linear-gradient(135deg, #c5a059 0%, #aa853c 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(197, 160, 89, 0.35);
  text-decoration: none;
  letter-spacing: 0.03em;
}

.c-qf-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(197, 160, 89, 0.45);
  filter: brightness(1.08);
}

.c-qf-btn:active {
  transform: translateY(0);
}

.c-qf-btn:disabled {
  background: #999;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.c-qf-btn-note {
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.55;
  margin-top: 10px;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   § Contact Form (Always Visible)
   ========================================================================== */

.c-qf-form-area {
  margin-top: 28px;
  background: var(--qf-card-bg);
  border-radius: var(--r-md, 14px);
  padding: 32px;
  border: 1px solid var(--qf-navy-border);
  box-shadow: var(--qf-card-shadow);
}

.c-qf-form-area__title {
  font-family: var(--ff-serif, serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--qf-navy-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.c-qf-form-area__title i {
  color: var(--qf-navy);
  font-size: 0.9rem;
}

.c-qf-form-area__lead {
  font-size: 0.82rem;
  color: var(--c-muted, #5e5a54);
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--c-border, #e7e2d8);
}

.c-qf-form-grid {
  display: grid;
  gap: 20px;
}

.c-qf-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 599px) {
  .c-qf-form-row {
    grid-template-columns: 1fr;
  }
}

.c-qf-form-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.c-qf-form-submit {
  margin-top: 20px;
}

.c-qf-form-submit .c-qf-btn {
  background: linear-gradient(
    135deg,
    var(--qf-navy) 0%,
    var(--qf-navy-dark) 100%
  );
  box-shadow: 0 4px 16px rgba(43, 78, 106, 0.35);
}

.c-qf-form-submit .c-qf-btn:hover {
  box-shadow: 0 6px 24px rgba(43, 78, 106, 0.45);
}

/* Form Error Display */
.c-qf-form-error {
  margin-top: 16px;
  padding: 12px 16px;
  background: #fdf2f2;
  border: 1px solid #f8d7da;
  border-radius: 8px;
  color: #bf3628;
  font-size: 0.85rem;
}

.c-qf-form-error ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-qf-form-error li {
  margin-bottom: 4px;
}

.c-qf-form-thanks {
  text-align: center;
  padding: 40px 20px;
}

.c-qf-form-thanks__icon {
  font-size: 3rem;
  color: #1a7f37;
  margin-bottom: 16px;
}

.c-qf-form-thanks__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--qf-navy);
  margin-bottom: 12px;
}

.c-qf-form-thanks__text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* =========================================================
   SP Optimizations (Floating Bar & Modal)
   ========================================================= */
.c-qf-sp-bar {
  display: none;
}

@media (max-width: 959px) {
  /* Hide Sidebar by default on SP */
  .c-quote-form__sidebar {
    position: fixed;
    bottom: 70px; /* Above toolbar */
    left: 0;
    width: 100%;
    z-index: 9998;
    transform: translateY(120%);
    transition: transform 0.3s cubic-bezier(0.2, 0, 0.2, 1);
    max-height: calc(80vh - 70px);
    overflow-y: auto;
    padding: 0 16px; /* Horizontal padding for visual */
    pointer-events: none; /* Pass clicks when hidden (though translated away) */
  }

  /* Open State */
  .c-quote-form__sidebar.is-open {
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Backdrop effect */
  .c-quote-form__sidebar.is-open::before {
    content: "";
    position: fixed;
    top: -100vh;
    left: -16px;
    right: -16px;
    bottom: -70px;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    pointer-events: auto; /* Catch clicks */
    /* Note: Ideally closing via JS when clicking backdrop */
  }

  .c-qf-summary {
    border-radius: 16px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
    /* Inside summary content adjustments */
  }

  /* Floating Bar */
  .c-qf-sp-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: var(--qf-navy-dark);
    padding: 0 20px;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    color: #fff;
  }

  .c-qf-sp-bar__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .c-qf-sp-bar__label {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-bottom: 2px;
  }
  .c-qf-sp-bar__label i {
    margin-right: 4px;
  }

  .c-qf-sp-bar__price {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .c-qf-sp-bar__toggle {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
  }
  .c-qf-sp-bar__toggle:active {
    background: rgba(255, 255, 255, 0.2);
  }

  /* Touch Optimizations for form elements */
  .c-qf-stepper__btn {
    width: 50px;
    height: 50px;
  }
  .c-qf-option-item {
    padding: 14px 16px;
  }
  .c-qf-option-checkbox {
    width: 20px;
    height: 20px;
  }
}
.c-qf-form-error {
  background: rgba(198, 68, 68, 0.08);
  border: 1px solid rgba(198, 68, 68, 0.2);
  border-radius: var(--r-sm, 10px);
  padding: 14px 18px;
  color: #a03030;
  font-size: 0.85rem;
}

.c-qf-form-error ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.c-qf-form-error li i {
  margin-right: 6px;
  color: #c44;
}

/* Thanks Message */
.c-qf-form-thanks {
  text-align: center;
  padding: 48px 24px;
}

.c-qf-form-thanks__icon {
  font-size: 3rem;
  color: #1a7f37;
  margin-bottom: 16px;
  display: block;
}

.c-qf-form-thanks__title {
  font-family: var(--ff-serif, serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--qf-navy-text);
  margin-bottom: 12px;
}

.c-qf-form-thanks__text {
  font-size: 0.9rem;
  color: var(--c-muted, #5e5a54);
  line-height: 1.7;
}

/* Honeypot (must be invisible) */
.honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

/* ==========================================================================
   § Mobile Responsive
   ========================================================================== */

@media (max-width: 959px) {
  .c-quote-form__sidebar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0;
  }

  .c-qf-summary {
    border-radius: 16px 16px 0 0;
    padding: 14px 20px;
    padding-bottom: max(14px, env(safe-area-inset-bottom));
    box-shadow: 0 -4px 24px rgba(30, 58, 82, 0.2);
    gap: 8px;
  }

  .c-qf-summary__breakdown,
  .c-qf-summary__header {
    display: none;
  }

  .c-qf-summary__total {
    border-top: none;
    padding-top: 0;
  }

  .c-qf-summary__total-price {
    font-size: 1.5rem;
  }

  .c-qf-summary__tax {
    display: none;
  }

  .c-qf-summary .c-qf-btn {
    margin-top: 0;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .c-qf-summary .c-qf-btn-note {
    display: none;
  }

  .c-quote-form__main {
    padding-bottom: 130px;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .c-qf-service {
    padding: 22px 18px;
  }

  .c-qf-header__title {
    font-size: 1.3rem;
  }

  .c-qf-service__price-block {
    padding-left: 0;
  }

  .c-qf-service__fee-note {
    padding-left: 0;
  }

  .c-qf-service__main-price {
    font-size: 1.5rem;
  }
}
