@charset "UTF-8";

/*!
foundation > base
------------------------------
*/
:root {
  /* Color Palette - Corporate Modern */
  --primary: #002b6b;
  --primary-light: #b0c6ff;
  --primary-container: #004098;
  --primary-fixed: #d9e2ff;
  --on-primary: #ffffff;
  
  --secondary: #5c5f60;
  --secondary-container: #e1e3e4;
  
  --accent: #e60012;
  --accent-hover: #cc0010;
  
  --success: #10b981;
  
  --background: #faf8ff;
  --surface: #ffffff;
  --surface-dim: #d9d9e1;
  --surface-container: #ededf5;
  --surface-container-low: #f3f3fb;
  --surface-container-highest: #e2e2ea;
  
  --on-surface: #1a1b21;
  --on-surface-variant: #434652;
  
  --outline: #737783;
  --outline-variant: #c3c6d4;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px 0px rgba(0, 64, 152, 0.04);
  --shadow-md: 0 8px 24px -4px rgba(0, 64, 152, 0.08), 0 2px 8px -2px rgba(0, 64, 152, 0.04);
  --shadow-lg: 0 20px 48px -8px rgba(0, 64, 152, 0.12), 0 8px 16px -4px rgba(0, 64, 152, 0.06);

  /* Typography */
  --font-headline: 'Noto Sans JP', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
  
  /* Roundness */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Spacing - 8px Grid system */
  --space-xs: 4px;
  --space-sm: 12px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --gutter: 20px;
  --container-max: 1200px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--on-surface);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/*!
utility > helper
------------------------------
*/
.u-df {
  display: flex !important;
}
.u-db {
  display: block !important;
}
.u-dib {
  display: inline-block !important;
}
.u-tac {
  text-align: center !important;
}
.u-hidden {
  display: none !important;
}
.u-sp-only {
  display: none !important;
}
@media (max-width: 767px) {
  .u-sp-only {
    display: block !important;
  }
}
.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Skip Link for Accessibility */
.c-skip-link {
  position: absolute;
  top: -9999px;
  left: 16px;
  z-index: 99999;
  padding: 12px 20px;
  background-color: var(--primary);
  color: var(--on-primary);
  font-weight: 700;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  transition: top 0.2s ease;
}
.c-skip-link:focus {
  top: 0;
  outline: 3px solid var(--primary-container);
  outline-offset: 2px;
}

/* Global Focus-Visible Ring */
:focus-visible {
  outline: 3px solid var(--primary-container);
  outline-offset: 2px;
}

.p-estimate-form__package-card:has(input:focus-visible),
.p-estimate-form__parts-card:has(input:focus-visible),
.p-estimate-form__option-card:has(input:focus-visible) {
  outline: 3px solid #004098 !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 4px rgba(0, 64, 152, 0.25) !important;
}

.p-estimate-form__package-radio:focus-visible + .p-estimate-form__package-inner,
.p-estimate-form__parts-checkbox:focus-visible + .p-estimate-form__parts-inner {
  border-color: #004098 !important;
  box-shadow: 0 0 0 3px rgba(0, 64, 152, 0.3) !important;
}

/* High Contrast Focus for Dark Containers */
.p-top-cta :focus,
.p-top-cta :focus-visible,
.l-footer :focus,
.l-footer :focus-visible,
.p-top-hero :focus,
.p-top-hero :focus-visible {
  outline: 3px solid var(--primary-container) !important;
  outline-offset: 3px !important;
}


/*!
component > breadcrumb
------------------------------
*/
.c-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 14px;
  color: var(--on-surface-variant);
}
.c-breadcrumb__link {
  transition: color var(--transition-fast);
}
@media (any-hover: hover) {
  .c-breadcrumb__link:hover {
    color: var(--primary-container);
  }
}
.c-breadcrumb__separator {
  font-size: 16px;
}
.c-breadcrumb__current {
  font-weight: 500;
  color: var(--on-surface);
}

/*!
component > lead
------------------------------
*/
.c-lead {
  font-size: 18px;
  color: var(--on-surface-variant);
  line-height: 1.6;
}
@media (max-width: 767px) {
  .c-lead {
    font-size: 16px;
  }
}

/*!
component > badge
------------------------------
*/
.c-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  background-color: var(--primary);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.c-badge--accent {
  background-color: var(--accent);
  padding: 0px 4px;
}
.c-badge--primary {
  background-color: var(--primary);
}
.c-badge--success {
  background-color: var(--success);
}
.c-badge--pill-success {
  background-color: #e2f5e8;
  color: #277e49;
  border-radius: var(--radius-full);
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 700;
}

/*!
component > button
------------------------------
*/
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
}
.c-btn:active {
  transform: scale(0.95);
}

.c-btn--header-contact {
  background-color: #f7f8fd;
  color: #0c3167;
  border: 1px solid #d0d5e5;
  font-size: 15px;
  font-weight: 700;
  border-radius: 0;
  height: 46px;
  padding: 0 24px;
}
@media (any-hover: hover) {
  .c-btn--header-contact:hover {
    background-color: #ffffff;
    border-color: #0c3167;
  }
}

.c-btn--header-estimate {
  background-color: #e60012;
  color: #ffffff;
  border: none;
  font-size: 15px;
  font-weight: 700;
  border-radius: 0;
  height: 46px;
  padding: 0 24px;
}
@media (any-hover: hover) {
  .c-btn--header-estimate:hover {
    background-color: #cc0010;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(230, 0, 18, 0.25);
  }
}

.c-btn--cta {
  background-color: var(--accent);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 24px;
  box-shadow: 0 4px 12px rgba(230, 0, 18, 0.2);
  border-radius: var(--radius-md);
}
@media (any-hover: hover) {
  .c-btn--cta:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(230, 0, 18, 0.3);
  }
}

.c-btn--cta-square {
  background-color: var(--accent);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 48px;
  box-shadow: 0 4px 12px rgba(230, 0, 18, 0.2);
  border-radius: 0;
}
@media (any-hover: hover) {
  .c-btn--cta-square:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(230, 0, 18, 0.3);
  }
}

.c-btn--cta:focus,
.c-btn--cta:focus-visible,
.c-btn--cta-square:focus,
.c-btn--cta-square:focus-visible,
.c-btn--hero-cta:focus,
.c-btn--hero-cta:focus-visible,
.c-btn--header-estimate:focus,
.c-btn--header-estimate:focus-visible {
  outline: 3px solid var(--primary-container) !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 4px #ffffff, 0 8px 24px rgba(0, 0, 0, 0.4) !important;
}

.c-btn--secondary {
  border: 1px solid var(--outline-variant);
  background-color: transparent;
  color: var(--primary-container);
  width: 100%;
}
@media (any-hover: hover) {
  .c-btn--secondary:hover {
    background-color: var(--surface-container-low);
    border-color: var(--primary-light);
  }
}

.c-btn__icon-right {
  margin-left: var(--space-xs);
  font-size: 18px;
}

/*!
component > table
------------------------------
*/
.c-table {
  width: 100%;
  border-collapse: collapse;
}
.c-table__row {
  border-bottom: 1px solid var(--outline-variant);
}
.c-table__row:last-child {
  border-bottom: none;
}
.c-table__header {
  padding: var(--space-sm) var(--space-md);
  font-weight: 700;
  color: var(--primary);
  font-size: 14px;
  background-color: var(--surface-container-low);
}
.c-table__header--left {
  text-align: left;
}
.c-table__header--right {
  text-align: right;
}
.c-table__cell {
  padding: var(--space-md);
  font-size: 15px;
  color: var(--on-surface);
}
.c-table__cell--right {
  text-align: right;
}
.c-table__cell--highlight {
  font-weight: 700;
  color: var(--primary);
  font-size: 18px;
}
.c-table__discount-tag {
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}

/*!
component > flow-list
------------------------------
*/
.c-flow-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.c-flow-list__item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.c-flow-list__step-num {
  width: 28px;
  height: 28px;
  background-color: var(--primary-container);
  color: #ffffff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.c-flow-list__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.c-flow-list__strong {
  font-weight: 700;
  font-size: 15px;
  color: var(--on-surface);
}
.c-flow-list__text {
  font-size: 13px;
  color: var(--on-surface-variant);
  line-height: 1.5;
}

/*!
component > form
------------------------------
*/

.c-form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.c-form-group--full {
  grid-column: 1 / -1;
}
.c-form-label {
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.c-form-label__sub {
  font-weight: 500;
  color: var(--on-surface-variant);
  font-size: 12px;
}
.c-form-control {
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  background-color: var(--surface);
  font-size: 15px;
  transition: border-color var(--transition-fast);
  width: 100%;
}
.c-form-control:focus {
  border-color: var(--primary);
}
.c-form-control--qty {
  max-width: 120px;
}
.c-form-group__input-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.c-form-group__unit {
  font-weight: 600;
  color: var(--on-surface);
}
.c-form-group__note {
  font-size: 12px;
  color: var(--on-surface-variant);
  margin-top: var(--space-xs);
}

.c-form-group__radio-wrap {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xs);
}
.c-form-group__radio-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
  color: #1f2937;
  font-weight: 500;
}
.c-form-group__radio-input {
  width: 18px;
  height: 18px;
  accent-color: #112a66;
  cursor: pointer;
}

@media (max-width: 767px) {
  .c-form-group__radio-wrap {
    gap: var(--space-sm);
  }
}

/*!
component > upload
------------------------------
*/
.c-upload-dropzone {
  border: 2px dashed var(--outline-variant);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  background-color: var(--surface-container-low);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-upload-dropzone.is-dragover {
  border-color: var(--primary);
  background-color: var(--primary-fixed);
}
@media (any-hover: hover) {
  .c-upload-dropzone:hover {
    border-color: var(--primary);
    background-color: var(--primary-fixed);
  }
}
.c-upload-dropzone.is-has-file {
  border-style: solid;
  border-color: var(--primary);
  background-color: var(--surface-container);
}
.c-upload-dropzone__default {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-upload-dropzone__icon {
  font-size: 40px;
  color: var(--outline);
}
.c-upload-dropzone__text {
  font-size: 14px;
  font-weight: 600;
  color: var(--on-surface);
  margin-top: var(--space-xs);
}
.c-upload-dropzone__sub {
  font-size: 12px;
  color: var(--on-surface-variant);
  margin-top: var(--space-xs);
}
.c-upload-file-info {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  background-color: var(--surface-container-high, #ffffff);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-sm, 6px);
  border: 1px solid var(--outline-variant);
  max-width: 100%;
}
.c-upload-file-info__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-upload-file-info__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  text-align: left;
}
.c-upload-file-info__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--on-surface);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 240px;
}
.c-upload-file-info__size {
  font-size: 12px;
  color: var(--on-surface-variant);
  flex-shrink: 0;
}
.c-upload-file-info__remove {
  background: none;
  border: none;
  font-size: 16px;
  line-height: 1;
  color: var(--on-surface-variant);
  cursor: pointer;
  padding: 4px 8px;
  margin-left: var(--space-xs);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast), color var(--transition-fast);
  flex-shrink: 0;
}
@media (any-hover: hover) {
  .c-upload-file-info__remove:hover {
    background-color: var(--error-container, #fee2e2);
    color: var(--error, #dc2626);
  }
}

/*!
component > price-box
------------------------------
*/
.c-price-box {
  background-color: var(--surface-container);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.c-price-box__title {
  font-size: 14px;
  color: var(--primary);
  font-weight: 700;
}
.c-price-box__unit-price {
  font-size: 14px;
  color: var(--on-surface-variant);
}
.c-price-box__price-num {
  font-weight: 700;
  color: var(--primary);
}
.c-price-box__total {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
}
.c-price-box__tax-label {
  font-size: 14px;
  font-weight: 500;
}

/*!
component > orderflow
------------------------------
*/
.c-orderflow {
  padding: var(--space-xl) 0;
  background-color: var(--surface-container-low);
  text-align: center;
}
.c-orderflow__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.c-orderflow__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

/* Orderflow Item styles */
.c-orderflow__item {
  background-color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md) var(--space-md) var(--space-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  position: relative;
}
.c-orderflow__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background-color: var(--accent);
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--space-md);
}
.c-orderflow__item-title {
  font-family: var(--font-headline);
  font-size: 17px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  line-height: 1.4;
  text-align: center;
  border-left: none;
  padding-left: 0;
}
.c-orderflow__item-desc {
  font-size: 13px;
  color: var(--on-surface-variant);
  line-height: 1.6;
  margin-bottom: 0;
  text-align: center;
}
.c-orderflow__badge {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--success);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
@media (max-width: 767px) {
  .c-orderflow {
    padding: var(--space-lg) 0;
  }
  .c-orderflow__title {
    font-size: 22px;
  }
  .c-orderflow__item {
    width: 100%;
    max-width: 480px;
    margin-inline: auto;
  }
}

/*!
component > icon pseudo-elements
------------------------------
*/
.c-burger-btn::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-color: #0c3167;
  -webkit-mask-image: url("../img/icon-menu.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("../img/icon-menu.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.l-drawer__close::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-color: #1a1a24;
  -webkit-mask-image: url("../img/icon-close.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("../img/icon-close.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.p-top-packages__card-badge--eco::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("../img/icon-eco.svg") no-repeat center / contain;
  vertical-align: -2px;
}

.p-top-parts__icon::before,
.p-top-parts__card-icon::before,
.p-top-printing__title-icon::before,
.p-top-printing__card-icon::before {
  content: "";
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  margin-right: 0.3em;
  vertical-align: -0.15em;
  background: url("../img/icon-check.svg") no-repeat center / contain;
  -webkit-mask-image: url("../img/icon-check.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("../img/icon-check.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: var(--success, #10b981);
}

.p-top-faq__summary::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 8px;
  background: url("../img/icon-chevron-right.svg") no-repeat center / contain;
  transition: transform var(--transition-fast);
}
.p-top-faq__item.is-active .p-top-faq__summary::after {
  transform: rotate(90deg);
}

.c-breadcrumb__separator::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  background: url("../img/icon-chevron-right.svg") no-repeat center / contain;
}

.c-btn__icon-right::after {
  content: "";
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  margin-left: 0.3em;
  vertical-align: -0.15em;
  background-color: currentColor;
  -webkit-mask-image: url("../img/icon-arrow-forward.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("../img/icon-arrow-forward.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: transform 0.2s ease;
}

@media (any-hover: hover) {
  .c-btn:hover .c-btn__icon-right::after {
    transform: translateX(4px);
  }
}


.c-feature-card__icon--payments::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: url("../img/icon-payments.svg") no-repeat center / contain;
}

.c-feature-card__icon--groups::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: url("../img/icon-groups.svg") no-repeat center / contain;
}

.c-feature-card__icon--speed::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: url("../img/icon-speed.svg") no-repeat center / contain;
}

.c-upload-dropzone__icon::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: url("../img/icon-upload-file.svg") no-repeat center / contain;
}

.p-thanks-message__card-check-icon::before {
  content: "";
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: url("../img/icon-check-circle.svg") no-repeat center / contain;
}

.p-thanks-info__title::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.3em;
  vertical-align: -0.15em;
  background: url("../img/icon-info.svg") no-repeat center / contain;
}

/*!
layout > container
------------------------------
*/
.l-container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/*!
layout > grid
------------------------------
*/
.l-grid {
  display: grid;
  gap: var(--space-md);
}
.l-grid--col02 {
  grid-template-columns: repeat(2, 1fr);
}
.l-grid--col03 {
  grid-template-columns: repeat(3, 1fr);
}
.l-grid--col04 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 767px) {
  .l-grid {
    grid-template-columns: 1fr !important;
  }
}

/*!
layout > header
------------------------------
*/
.l-header {
  background-color: #f6f7fd;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #e5e8f3;
  opacity: 0;
}
.l-header__inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.l-header__logo-area {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.l-header__logo {
  font-family: var(--font-headline);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #0c3167;
}
.l-header__logo-link {
  color: #0c3167;
}
.l-header__right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}
.l-header__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}
.l-header__divider {
  width: 1px;
  height: 44px;
  background-color: #d0d5e5;
}
.l-header__contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}
.l-header__phone-row {
  margin-bottom: 1px;
}
.l-header__phone {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 800;
  color: #0c3167;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  pointer-events: none;
  cursor: default;
}
.l-header__hours-row {
  margin-bottom: 1px;
}
.l-header__hours {
  font-size: 11px;
  color: #5c6070;
  font-weight: 600;
}
.l-header__note {
  font-size: 10px;
  color: #5c6070;
  font-weight: 600;
}

/* Burger menu button */
.c-burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--primary);
}
.c-burger-btn span {
  font-size: 32px;
}

@media (max-width: 991px) {
  .l-header__inner {
    height: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .l-header__logo-area {
    width: 100%;
    justify-content: space-between;
  }
  .l-header__logo {
    order: 1;
    font-size: 26px;
    line-height: 1;
  }
  .c-burger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 2;
    padding: 6px;
  }
  .l-header__right,
  .l-header__divider {
    display: none;
  }
  .l-header__phone {
    pointer-events: auto;
    cursor: pointer;
  }
}

/*!
layout > drawer
------------------------------
*/
.l-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #ededf4;
  z-index: 200;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  transition: left var(--transition-normal), visibility 0.3s ease;
}
.l-drawer.is-open {
  left: 0;
  visibility: visible;
  transition: left var(--transition-normal), visibility 0s;
}
.l-drawer__header {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid #dcdce6;
  flex-shrink: 0;
}
.l-drawer__logo {
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #1a1a24;
}
.l-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-drawer__content {
  flex-grow: 1;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
}
.l-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.l-drawer__link {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a24;
  padding: 10px 0;
  border-bottom: 1px solid #dcdce6;
  text-decoration: none;
  transition: color var(--transition-fast);
}
@media (any-hover: hover) {
  .l-drawer__link:hover {
    color: #002b6b;
  }
}
.l-drawer__link--bordered {
  font-size: 14px;
  font-weight: 500;
  color: #33333d;
  padding: 8px 0;
}
.l-drawer__section {
  display: flex;
  flex-direction: column;
}
.l-drawer__nav-title {
  font-weight: 700;
  font-size: 15px;
  color: #1a1a24;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #dcdce6;
}
.l-drawer__subnav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 4px;
}
.l-drawer__sublink {
  font-size: 14px;
  color: #4a4a56;
  text-decoration: none;
  transition: color var(--transition-fast);
  padding: 4px 0;
}
.l-drawer__sublink::before {
  content: "・";
}
@media (any-hover: hover) {
  .l-drawer__sublink:hover {
    color: #002b6b;
  }
}
.l-drawer__contact {
  padding-top: 20px;
  margin-top: 10px;
  border-top: 1px solid #dcdce6;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.l-drawer__contact-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a24;
  margin-bottom: 4px;
}
.l-drawer__phone {
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 800;
  color: #0f2b5c;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-block;
  pointer-events: auto;
  cursor: pointer;
}
.l-drawer__hours {
  font-size: 12px;
  color: #33333d;
  line-height: 1.5;
}
.l-drawer__note {
  font-size: 11px;
  color: #555560;
  font-weight: 500;
  margin-top: 4px;
  line-height: 1.4;
}

/*!
layout > footer
------------------------------
*/
.l-footer {
  background-color: #ededf4;
  border-top: 1px solid #dcdce6;
  padding-top: 56px;
  padding-bottom: 0;
  margin-top: auto;
}
.l-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: 56px;
}
.l-footer__col {
  display: flex;
  flex-direction: column;
}
.l-footer__logo {
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #1a1a24;
  text-decoration: none;
  line-height: 1.2;
}
.l-footer__desc {
  font-size: 14px;
  color: #4a4a56;
  margin-top: 8px;
}
.l-footer__contact {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #dcdce6;
}
.l-footer__contact-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a24;
  margin-bottom: 8px;
}
.l-footer__phone {
  font-size: 24px;
  font-weight: 800;
  color: #0f2b5c;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-block;
  pointer-events: none;
  cursor: default;
}
.l-footer__hours {
  font-size: 12px;
  color: #33333d;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.5;
}
.l-footer__hours-text {
  margin: 0;
}
.l-footer__note {
  font-size: 11px;
  color: #555560;
  font-weight: 500;
  margin-top: 6px;
  line-height: 1.4;
}
.l-footer__nav-title {
  font-weight: 700;
  font-size: 15px;
  color: #1a1a24;
  margin-bottom: 16px;
}
.l-footer__nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.l-footer__nav-link {
  font-size: 14px;
  color: #4a4a56;
  text-decoration: none;
  transition: color var(--transition-fast);
}
.l-footer__nav-link::before {
  content: "・";
}
@media (any-hover: hover) {
  .l-footer__nav-link:hover {
    color: #002b6b;
  }
}
.l-footer__nav-link--bordered {
  display: block;
  font-size: 14px;
  color: #33333d;
  font-weight: 500;
  padding-bottom: 8px;
  border-bottom: 1px solid #dcdce6;
  width: 100%;
  max-width: 180px;
}
.l-footer__nav-link--bordered::before {
  content: none;
}
@media (any-hover: hover) {
  .l-footer__nav-link--bordered:hover {
    border-bottom-color: #002b6b;
  }
}
.l-footer__nav-link[target="_blank"]::after,
.l-drawer__link[target="_blank"]::after,
.c-btn--header-contact[target="_blank"]::after {
  content: "";
  display: inline-block;
  width: 0.85em;
  height: 0.85em;
  margin-left: 0.35em;
  vertical-align: -0.05em;
  background-color: currentColor;
  -webkit-mask-image: url("../img/icon-external-link.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("../img/icon-external-link.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.l-footer__bottom {
  background-color: #e4e4ed;
  border-top: 1px solid #dcdce6;
  padding: 20px var(--gutter);
  text-align: center;
  width: 100%;
}
.l-footer__copy {
  font-size: 13px;
  color: #33333d;
}

@media (max-width: 767px) {
  .l-footer {
    padding-top: 36px;
  }
  .l-footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 36px;
  }
  .l-footer__nav-link--bordered {
    max-width: 100%;
  }
  .l-footer__phone {
    pointer-events: auto;
    cursor: pointer;
  }
}

/*!
layout > breadcrumb-nav
------------------------------
*/
.l-breadcrumb-nav {
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
}

/*!
layout > package
------------------------------
*/
/* Hero / Detail */
.l-package-hero {
  padding: 48px 0;
}

.l-package-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.l-package-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.l-package-hero__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary, #002b6b);
  line-height: 1.3;
  margin-top: 12px;
  margin-bottom: 16px;
}

.l-package-hero__lead {
  font-size: 18px;
  font-weight: 700;
  color: var(--on-surface, #1a1b21);
  margin-bottom: 12px;
}

.l-package-hero__desc {
  font-size: 15px;
  color: var(--on-surface-variant, #434652);
  line-height: 1.7;
}

.l-package-detail__card {
  width: 100%;
  aspect-ratio: 1136 / 618;
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}

.l-package-detail__card-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.l-package-hero__action {
  grid-column: 1;
  grid-row: 2;
}

@media (max-width: 767px) {
  .l-package-hero {
    padding: 32px 0;
  }

  .l-package-hero__content {
    grid-column: auto;
    grid-row: auto;
  }

  .l-package-detail__card {
    grid-column: auto;
    grid-row: auto;
  }

  .l-package-hero__action {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .l-package-hero__title {
    font-size: 26px;
  }

  .l-package-hero__lead {
    font-size: 16px;
  }
}

/* Reasons */
.l-package-reasons {
  padding: 64px 0;
  background-color: #f3f5fa;
}

.l-package-reasons__inner {
  padding: 0;
}

.l-package-reasons__header {
  text-align: center;
  margin-bottom: 48px;
}

.l-package-reasons__title {
  color: #0e2954;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.l-package-reasons__subtitle {
  color: #556885;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.l-package-reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.l-package-reasons__card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 44px 28px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 20px rgba(14, 41, 84, 0.04);
}

.l-package-reasons__card-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #2e7d32;
  background-color: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e7d32;
  margin-bottom: 16px;
}

.l-package-reasons__card-icon {
  display: block;
  width: 22px;
  height: 22px;
}

.l-package-reasons__card-tag {
  color: #2e7d32;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.l-package-reasons__card-title {
  color: #0e2954;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}

.l-package-reasons__card-desc {
  color: #556885;
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 767px) {
  .l-package-reasons {
    padding: 40px 0;
  }

  .l-package-reasons__inner {
    padding: 0;
  }

  .l-package-reasons__header {
    margin-bottom: 32px;
  }

  .l-package-reasons__title {
    font-size: 22px;
  }

  .l-package-reasons__subtitle {
    font-size: 14px;
  }

  .l-package-reasons__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .l-package-reasons__card {
    padding: 32px 20px 28px;
  }
}

/* Specs */
.l-package-specs {
  padding: 64px 0 80px;
  background-color: #f3f5fa;
}

.l-package-specs__header {
  text-align: center;
  margin-bottom: 36px;
}

.l-package-specs__title {
  color: #0e2954;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.l-package-specs__subtitle {
  color: #556885;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.l-package-specs__main-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 36px 24px;
  box-shadow: 0 4px 20px rgba(14, 41, 84, 0.05);
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.l-package-specs__main-img-wrap {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.l-package-specs__main-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.l-package-specs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.l-package-specs__card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 24px 24px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 20px rgba(14, 41, 84, 0.05);
}

.l-package-specs__card-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #48a668;
  color: #388e3c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  margin: 0 auto 20px;
  align-self: center;
  flex-shrink: 0;
}

.l-package-specs__card-img-wrap {
  width: 100%;
  aspect-ratio: 644 / 482;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 24px;
  background-color: #f8fafc;
}

.l-package-specs__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.l-package-specs__card-title {
  color: #0e2954;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
  text-align: center;
}

.l-package-specs__card-desc {
  color: #556885;
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
  text-align: center;
}

@media (max-width: 767px) {
  .l-package-specs {
    padding: 40px 0;
  }

  .l-package-specs__header {
    margin-bottom: 24px;
  }

  .l-package-specs__title {
    font-size: 22px;
  }

  .l-package-specs__subtitle {
    font-size: 14px;
  }

  .l-package-specs__main-card {
    padding: 16px;
    margin-bottom: 20px;
    border-radius: 12px;
  }

  .l-package-specs__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .l-package-specs__card {
    padding: 20px 16px;
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    text-align: left;
  }

  .l-package-specs__card-num {
    order: 1;
    margin: 0 10px 14px 0;
    align-self: center;
  }

  .l-package-specs__card-title {
    order: 2;
    width: calc(100% - 42px);
    font-size: 17px;
    margin-bottom: 14px;
    text-align: left;
    align-self: center;
  }

  .l-package-specs__card-img-wrap {
    order: 3;
    width: 96px;
    margin-bottom: 0;
    margin-right: 14px;
    flex-shrink: 0;
    border-radius: 8px;
  }

  .l-package-specs__card-desc {
    order: 4;
    flex: 1 1 0;
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
  }
}

/* CTA */
.l-package-cta {
  background-color: #0f2357;
  padding: 80px 0;
}

.l-package-cta__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.l-package-cta__content {
  color: #ffffff;
}

.l-package-cta__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.l-package-cta__desc {
  font-size: 15px;
  line-height: 1.7;
  color: #8da4d0;
  margin-bottom: 36px;
}

.l-package-cta__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.l-package-cta__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.l-package-cta__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.l-package-cta__svg {
  width: 100%;
  height: 100%;
  display: block;
}

.l-package-cta__item-text {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
}

.l-package-cta__card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.l-package-cta__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #0f2357;
  line-height: 1.4;
  margin-bottom: 16px;
}

.l-package-cta__card-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #4a5568;
  margin-bottom: 32px;
}

.l-package-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 18px 24px;
  background-color: #e60012;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
  box-sizing: border-box;
}

@media (any-hover: hover) {
  .l-package-cta__btn:hover {
    background-color: #cc0010;
    transform: translateY(-2px);
  }
}

.l-package-cta__btn-text {
  color: #ffffff;
}

.l-package-cta__icon-right {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  margin-left: 0.3em;
  vertical-align: -0.15em;
  background-color: currentColor;
  -webkit-mask-image: url("../img/icon-arrow-forward.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("../img/icon-arrow-forward.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: transform 0.2s ease;
}

@media (any-hover: hover) {
  .l-package-cta__btn:hover .l-package-cta__icon-right {
    transform: translateX(4px);
  }
}

@media (max-width: 767px) {
  .l-package-cta {
    padding: 48px 0;
  }

  .l-package-cta__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .l-package-cta__title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .l-package-cta__desc {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .l-package-cta__list {
    gap: 14px;
  }

  .l-package-cta__item-text {
    font-size: 15px;
  }

  .l-package-cta__card {
    padding: 32px 20px;
    border-radius: 12px;
  }

  .l-package-cta__card-title {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .l-package-cta__card-desc {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .l-package-cta__btn {
    padding: 16px 16px;
    font-size: 15px;
  }
}

/*!
layout > parts
------------------------------
*/
.l-parts-hero {
  padding: 60px 0;
  background-color: #f8fafc;
}
.l-parts-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.l-parts-hero__title {
  font-size: 32px;
  font-weight: 700;
  color: #0c3167;
  margin-bottom: 20px;
  line-height: 1.3;
}
.l-parts-hero__desc {
  font-size: 15px;
  line-height: 1.8;
  color: #4a5568;
}
.l-parts-hero__card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  aspect-ratio: 1136 / 634;
  align-self: center;
}
.l-parts-hero__card-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.l-parts-list {
  padding: 80px 0;
  background-color: #ffffff;
}
.l-parts-list__header {
  text-align: center;
  margin-bottom: 48px;
}
.l-parts-list__title {
  font-size: 30px;
  font-weight: 700;
  color: #0c3167;
  position: relative;
  display: inline-block;
}
.l-parts-list__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--success);
  margin: 12px auto 0;
  border-radius: 2px;
}
.l-parts-list__card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.l-parts-list__card-img-wrap {
  width: 100%;
  aspect-ratio: 736 / 458;
  overflow: hidden;
  background-color: #f1f5f9;
}
.l-parts-list__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.l-parts-list__card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.l-parts-list__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0c3167;
  margin-bottom: 12px;
}
.l-parts-list__card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 20px;
  flex-grow: 1;
}
.l-parts-list__card-footer {
  border-top: 1px dashed #e2e8f0;
  padding-top: 16px;
  margin-top: auto;
}
.l-parts-list__card-footer-title {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 4px;
}
.l-parts-list__card-footer-text {
  font-size: 13px;
  color: #1e293b;
  margin-bottom: 12px;
}
.l-parts-list__card-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.l-parts-cta {
  background-color: #0c3167;
  padding: 80px 0;
}
.l-parts-cta__card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.l-parts-cta__title {
  font-size: 28px;
  font-weight: 700;
  color: #0c3167;
  margin-bottom: 16px;
}
.l-parts-cta__desc {
  font-size: 15px;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 32px;
}
.l-parts-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  background-color: #e60012;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
@media (any-hover: hover) {
  .l-parts-cta__btn:hover {
    background-color: #cc0010;
    transform: translateY(-2px);
  }
}
.l-parts-cta__btn-text {
  color: #ffffff;
}

.l-parts-cta__icon-right {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  margin-left: 0.3em;
  vertical-align: -0.15em;
  background-color: currentColor;
  -webkit-mask-image: url("../img/icon-arrow-forward.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("../img/icon-arrow-forward.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: transform 0.2s ease;
}

@media (any-hover: hover) {
  .l-parts-cta__btn:hover .l-parts-cta__icon-right {
    transform: translateX(4px);
  }
}


@media (max-width: 767px) {
  .l-parts-hero {
    padding: 40px 0;
  }
  .l-parts-hero__title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .l-parts-hero__desc {
    font-size: 14px;
  }
  .l-parts-list {
    padding: 48px 0;
  }
  .l-parts-list__header {
    margin-bottom: 32px;
  }
  .l-parts-list__title {
    font-size: 22px;
  }
  .l-parts-list__card-body {
    padding: 16px;
  }
  .l-parts-cta {
    padding: 48px 0;
  }
  .l-parts-cta__card {
    padding: 32px 20px;
  }
  .l-parts-cta__title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .l-parts-cta__desc {
    font-size: 13px;
    margin-bottom: 24px;
  }
  .l-parts-cta__btn {
    padding: 14px 20px;
    font-size: 15px;
    width: 100%;
  }
}

/*!
page > top > initial animation state
------------------------------
*/
.p-top-hero__title,
.p-top-hero__sub,
.p-top-hero__caption,
.p-top-hero__action,
.p-top-intro__card,
.p-top-applications__header,
.p-top-packages__header,
.p-top-parts__header,
.p-top-faq__header {
  opacity: 0;
}

/*!
page > top > hero
------------------------------
*/
.p-top-hero {
  position: relative;
  min-height: 520px;
  padding: 56px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #f0f2f5;
}
.p-top-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p-top-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.02) contrast(0.95);
  transform: scale(1.15);
  will-change: transform;
}
.p-top-hero__content {
  position: relative;
  z-index: 3;
  max-width: 520px;
  background-color: #ffffff;
  padding: 48px 48px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-top-hero__title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.35;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}
.p-top-hero__sub {
  font-size: 15px;
  line-height: 1.65;
  color: #555555;
  font-weight: 500;
}
.p-top-hero__caption {
  font-size: 15px;
  color: #222222;
  font-weight: 700;
  background: none;
  border-left: none;
  padding: 0;
}
.p-top-hero__action {
  margin-top: 8px;
}
.c-btn--hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e60012;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 0;
  border: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
@media (any-hover: hover) {
  .c-btn--hero-cta:hover {
    background-color: #cc0010;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(230, 0, 18, 0.25);
  }
}

@media (max-width: 767px) {
  .p-top-hero {
    min-height: auto;
    padding: 24px 0;
  }
  .p-top-hero__content {
    margin-inline: auto;
    padding: 28px 16px;
    gap: 16px;
  }
  .p-top-hero__title {
    font-size: 26px;
  }
  .p-top-hero__sub {
    font-size: 14px;
  }
  .p-top-hero__caption {
    font-size: 14px;
  }
  .c-btn--hero-cta {
    width: 100%;
  }
}

/*!
page > top > intro
------------------------------
*/
.p-top-intro {
  padding: var(--space-xl) 0;
  background-color: var(--surface);
}
.p-top-intro__card {
  text-align: center;
  max-width: 812px;
  margin-left: auto;
  margin-right: auto;
}
.p-top-intro__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-md);
}
@media (max-width: 767px) {
  .p-top-intro {
    padding: var(--space-lg) 0;
  }
  .p-top-intro__title {
    font-size: 22px;
  }
}

/*!
page > top > applications
------------------------------
*/
.p-top-applications {
  padding: var(--space-xl) 0;
  background-color: var(--surface-container-low);
}
.p-top-applications__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.p-top-applications__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.p-top-applications__card-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

/* Applications Card styles */
.p-top-applications__card {
  background-color: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--outline-variant);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-normal), border-color var(--transition-normal), background-color var(--transition-normal);
  overflow: hidden;
  position: relative;
  border-top: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.p-top-applications__card-img-wrap {
  width: 100%;
  aspect-ratio: 656 / 460;
  overflow: hidden;
  position: relative;
  background-color: var(--surface-container-low);
}
.p-top-applications__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-applications__badge-container {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 12;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.p-top-applications__card-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: var(--space-sm);
}
.p-top-applications__card-title {
  font-family: var(--font-headline);
  font-size: 20px;
  color: var(--primary);
  font-weight: 700;
  border-left: 4px solid #004098;
  padding-left: 10px;
  line-height: 1.35;
  margin-bottom: 0;
}
.p-top-applications__card-desc {
  font-size: 14px;
  color: var(--on-surface-variant);
  line-height: 1.6;
  margin-bottom: auto;
}
.p-top-applications__btn-area {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  position: relative;
  z-index: 1;
}
.p-top-applications__btn-area .c-btn--secondary {
  border-color: var(--primary);
  color: var(--primary);
  position: relative;
  z-index: 2;
}
@media (any-hover: hover) {
  .p-top-applications__btn-area .c-btn--secondary:hover {
    background-color: var(--primary-fixed);
    border-color: var(--primary-container);
  }
}
@media (max-width: 767px) {
  .p-top-applications {
    padding: var(--space-lg) 0;
  }
  .p-top-applications__title {
    font-size: 22px;
  }
  .p-top-applications__card-wrap {
    grid-template-columns: 1fr;
  }
  .p-top-applications__card {
    width: 100%;
    max-width: 480px;
    margin-inline: auto;
  }
}

/*!
page > top > packages
------------------------------
*/
.p-top-packages {
  padding: var(--space-xl) 0;
  background-color: var(--surface);
}
.p-top-packages__header {
  text-align: center;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
}
.p-top-packages__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-md);
}
.p-top-packages__card {
  background-color: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--outline-variant);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-normal), border-color var(--transition-normal), background-color var(--transition-normal);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
@media (any-hover: hover) {
  .p-top-packages__card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
  }
  .p-top-packages__card:hover .p-top-packages__card-img {
    transform: scale(1.03);
  }
  .p-top-packages__card:hover .c-btn--secondary {
    background-color: var(--primary-fixed);
    border-color: var(--primary-container);
    color: var(--primary-container);
  }
}
.p-top-packages__card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 12;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  background-color: var(--primary);
  border-radius: var(--radius-sm);
}
.p-top-packages__card-badge--eco {
  background-color: var(--success);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}
.p-top-packages__card-img-wrap {
  width: 100%;
  aspect-ratio: 670 / 417;
  overflow: hidden;
  position: relative;
  background-color: var(--surface-container-low);
}
.p-top-packages__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}
.p-top-packages__card-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: var(--space-sm);
}
.p-top-packages__card-title {
  font-family: var(--font-headline);
  font-size: 18px;
  color: #1a1a1a;
  font-weight: 700;
  border-left: 4px solid #004098;
  padding-left: 10px;
  line-height: 1.35;
}
.p-top-packages__card-desc {
  font-size: 14px;
  color: var(--on-surface-variant);
  line-height: 1.6;
  margin-bottom: auto;
}
.p-top-packages__card-body > .c-btn {
  margin-top: var(--space-sm);
}
@media (max-width: 767px) {
  .p-top-packages {
    padding: var(--space-lg) 0;
  }
  .p-top-packages__title {
    font-size: 22px;
  }
  .p-top-packages__card {
    width: 100%;
    max-width: 480px;
    margin-inline: auto;
  }
}

/*!
page > top > cta
------------------------------
*/
.p-top-cta {
  background-color: var(--primary-container);
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}
.p-top-cta__inner {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.p-top-cta__title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
.p-top-cta__desc {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: var(--space-sm);
}
@media (max-width: 767px) {
  .p-top-cta {
    padding: var(--space-lg) 0;
  }
  .p-top-cta__title {
    font-size: 22px;
    line-height: 1.3;
  }
  .p-top-cta__desc {
    font-size: 14px;
  }
}

/*!
page > top > parts
------------------------------
*/
.p-top-parts {
  padding: var(--space-xl) 0;
  background-color: var(--surface-container-low);
}
.p-top-parts__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.p-top-parts__title {
  font-size: 30px;
  font-weight: 700;
  color: #0c3167;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}
.p-top-parts__icon {
  color: #10b981;
  font-weight: 800;
  font-size: 36px;
}

.p-top-parts__card {
  display: block;
  background-color: #ffffff;
  border: 1px solid #e5e8f3;
  border-radius: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition-normal), border-color var(--transition-normal);
}
@media (any-hover: hover) {
  .p-top-parts__card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-color: #b0c6ff;
  }
}

.p-top-parts__card-img-wrap {
  width: 100%;
  aspect-ratio: 676 / 380;
  overflow: hidden;
  background-color: #f3f4f8;
}
.p-top-parts__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
@media (any-hover: hover) {
  .p-top-parts__card:hover .p-top-parts__card-img {
    transform: scale(1.03);
  }
}

.p-top-parts__card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-top-parts__card-title {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 700;
  color: #0c3167;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  border-left: none;
  padding-left: 0;
}
.p-top-parts__card-icon {
  color: #10b981;
  font-size: 20px;
  font-weight: 700;
}

.p-top-parts__card-desc {
  font-size: 14px;
  color: #555555;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 767px) {
  .p-top-parts {
    padding: var(--space-lg) 0;
  }
  .p-top-parts__title {
    font-size: 22px;
  }
  .p-top-parts__card {
    width: 100%;
    max-width: 480px;
    margin-inline: auto;
  }
  .p-top-parts__card-body {
    padding: 16px;
  }
}

/*!
page > top > printing
------------------------------
*/
.p-top-printing {
  padding: var(--space-xl) 0;
  background-color: var(--surface);
}
.p-top-printing__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.p-top-printing__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-md);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}
.p-top-printing__title-icon {
  color: var(--success);
  font-weight: 700;
  font-size: 36px;
}
.p-top-printing__card {
  background-color: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--outline-variant);
  box-shadow: var(--shadow-sm);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.p-top-printing__card-img-wrap {
  width: 100%;
  aspect-ratio: 636 / 396;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-sm);
  border: 1px solid var(--outline-variant);
  background-color: var(--surface-container-low);
}
.p-top-printing__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-printing__card-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.p-top-printing__card-title {
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--primary);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.p-top-printing__card-icon {
  color: var(--success);
  font-weight: 700;
  font-size: 20px;
}
.p-top-printing__card-desc {
  font-size: 14px;
  color: var(--on-surface-variant);
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-top-printing {
    padding: var(--space-lg) 0;
  }
  .p-top-printing__title {
    font-size: 22px;
  }
  .p-top-printing__title-icon {
    font-size: 28px;
  }
  .p-top-printing__card {
    width: 100%;
    max-width: 480px;
    margin-inline: auto;
  }
}

/*!
page > top > design
------------------------------
*/
.p-top-design {
  padding: var(--space-xl) 0;
  background-color: var(--surface-container-low);
}
.p-top-design__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.p-top-design__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-md);
}
.p-top-design__card {
  background-color: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--outline-variant);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-normal), border-color var(--transition-normal), background-color var(--transition-normal);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.p-top-design__card-img-wrap {
  width: 100%;
  aspect-ratio: 740 / 460;
  overflow: hidden;
  position: relative;
  background-color: var(--surface-container-low);
}
.p-top-design__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-design__card-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: var(--space-sm);
}
.p-top-design__card-title {
  font-family: var(--font-headline);
  font-size: 18px;
  color: #1a1a1a;
  font-weight: 700;
  border-left: 4px solid #004098;
  padding-left: 10px;
  line-height: 1.35;
}
.p-top-design__card-desc {
  font-size: 14px;
  color: var(--on-surface-variant);
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-top-design {
    padding: var(--space-lg) 0;
  }
  .p-top-design__title {
    font-size: 22px;
  }
  .p-top-design__card {
    width: 100%;
    max-width: 480px;
    margin-inline: auto;
  }
}

/*!
page > top > faq
------------------------------
*/
.p-top-faq {
  padding: var(--space-xl) 0;
  background-color: var(--surface);
}
.p-top-faq__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.p-top-faq__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.p-top-faq__list {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.p-top-faq__item {
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-md);
  background-color: var(--surface);
  overflow: hidden;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}
.p-top-faq__item.is-active {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.p-top-faq__summary {
  width: 100%;
  text-align: left;
  padding: var(--space-md);
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  font-size: 16px;
  background-color: transparent;
  border: none;
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
  border-radius: var(--radius-md);
}
@media (any-hover: hover) {
  .p-top-faq__summary:hover {
    background-color: color-mix(in srgb, var(--primary) 8%, transparent);
  }
}
.p-top-faq__summary:focus,
.p-top-faq__summary:focus-visible {
  outline: 3px solid #004098 !important;
  outline-offset: -3px !important;
  box-shadow: inset 0 0 0 2px #004098, 0 0 0 4px rgba(0, 64, 152, 0.35) !important;
  background-color: color-mix(in srgb, var(--primary) 6%, transparent);
}
.p-top-faq__item:has(.p-top-faq__summary:focus-visible) {
  border-color: #004098;
}
.p-top-faq__summary span {
  transition: transform var(--transition-fast);
  color: var(--primary);
}
.p-top-faq__item.is-active .p-top-faq__summary span {
  transform: rotate(180deg);
}

.p-top-faq__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}
.p-top-faq__text {
  padding: var(--space-sm) var(--space-md) var(--space-md) var(--space-md);
  font-size: 15px;
  color: var(--on-surface-variant);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .p-top-faq {
    padding: var(--space-lg) 0;
  }
  .p-top-faq__title {
    font-size: 22px;
  }
  .p-top-faq__summary {
    font-size: 15px;
    padding: var(--space-sm) var(--space-md);
  }
  .p-top-faq__text {
    font-size: 14px;
    padding: var(--space-sm) var(--space-md) var(--space-sm) var(--space-md);
  }
}

/*!
page > standard > hero
------------------------------
*/
.p-standard-hero {
  padding: 48px 0 64px 0;
  background-color: #fafbfe;
}
.p-standard-hero .l-grid {
  align-items: center;
  row-gap: 0;
}
.p-standard-hero__content {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.p-standard-hero__title {
  font-size: 44px;
  font-weight: 900;
  color: #0e1b38;
  letter-spacing: 0.04em;
  line-height: 1.25;
  margin-top: 16px;
  margin-bottom: 24px;
}
.p-standard-hero__lead {
  font-size: 17px;
  font-weight: 500;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 20px;
}
.p-standard-hero__desc {
  font-size: 15px;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 32px;
}
.p-standard-hero__action {
  grid-column: 1;
  grid-row: 2;
  margin-top: 0;
}
.p-standard-detail__card {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 100%;
  background-color: #f4f6fb;
  border-radius: 20px;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.p-standard-detail__card-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

@media (max-width: 767px) {
  .p-standard-hero {
    padding: 32px 0 48px 0;
  }
  .p-standard-hero .l-grid {
    display: flex;
    flex-direction: column;
    row-gap: 0;
  }
  .p-standard-hero__content {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
  }
  .p-standard-hero__title {
    font-size: 30px;
    margin-top: 12px;
    margin-bottom: 16px;
  }
  .p-standard-hero__lead {
    font-size: 15px;
    margin-bottom: 16px;
  }
  .p-standard-hero__desc {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .p-standard-detail__card {
    grid-column: auto;
    grid-row: auto;
    padding: 20px 16px;
    border-radius: 16px;
  }
  .p-standard-hero__action {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    margin-top: 24px;
    text-align: center;
  }
  .p-standard-hero__action .c-btn {
    width: 100%;
    justify-content: center;
  }
}

/*!
page > thanks > structure
------------------------------
*/
.p-thanks {
  padding: 60px 0 80px;
  background-color: #f2f4f8;
}
.p-thanks__card {
  background-color: #ffffff;
  border-radius: 12px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 48px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.p-thanks__icon-wrap {
  width: 72px;
  height: 72px;
  background-color: #eaf6ec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.p-thanks__check-icon {
  width: 40px;
  height: 40px;
  background-color: #3bb565;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-thanks__check-icon::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-color: #ffffff;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.p-thanks__title {
  font-family: var(--font-headline);
  font-size: 26px;
  font-weight: 700;
  color: #0c2340;
  text-align: center;
  margin-bottom: 16px;
}
.p-thanks__desc {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 36px;
}

/* 今後の流れ */
.p-thanks__flow {
  width: 100%;
  padding: 28px 32px;
  background-color: #f0f4fa;
  border-radius: 12px;
  text-align: left;
  margin-bottom: 44px;
}
.p-thanks__flow-title {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 700;
  color: #0c2340;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.p-thanks__flow-arrow {
  font-size: 18px;
  font-weight: 700;
  color: #0c2340;
}
.p-thanks__flow-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-thanks__flow-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.p-thanks__flow-num {
  width: 22px;
  height: 22px;
  background-color: #1a365d;
  color: #ffffff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.p-thanks__flow-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.p-thanks__flow-name {
  font-size: 15px;
  font-weight: 700;
  color: #0c2340;
}
.p-thanks__flow-text {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
}

/* おすすめの関連商品 */
.p-thanks__rec {
  width: 100%;
  text-align: left;
  margin-bottom: 44px;
}
.p-thanks__rec-title {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 700;
  color: #0c2340;
  margin-bottom: 16px;
}
.p-thanks__rec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.p-thanks__rec-card {
  background-color: #f0f4fa;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (any-hover: hover) {
  .p-thanks__rec-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  }
}
.p-thanks__rec-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #e2e8f0;
}
.p-thanks__rec-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
@media (any-hover: hover) {
  .p-thanks__rec-card:hover .p-thanks__rec-img {
    transform: scale(1.04);
  }
}
.p-thanks__rec-name {
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  color: #0c2340;
}

/* ボタンエリア */
.p-thanks__btn-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}
.p-thanks__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 36px;
  background-color: #ffffff;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  color: #334155;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
@media (any-hover: hover) {
  .p-thanks__btn:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    color: #0f172a;
  }
}

@media (max-width: 767px) {
  .p-thanks {
    padding: 32px 0 48px;
  }
  .p-thanks__card {
    padding: 32px 20px;
    border-radius: 8px;
  }
  .p-thanks__title {
    font-size: 20px;
  }
  .p-thanks__desc {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .p-thanks__flow {
    padding: 20px 16px;
    margin-bottom: 32px;
  }
  .p-thanks__rec {
    margin-bottom: 32px;
  }
  .p-thanks__rec-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .p-thanks__rec-name {
    padding: 10px 10px;
    font-size: 13px;
  }
  .p-thanks__btn {
    width: 100%;
    max-width: 280px;
  }
}

/*!
project > estimate-form
------------------------------
*/
.p-estimate-form {
  padding: 80px 0;
  background-color: var(--surface-container-low, #f8fafc);
}

.p-estimate-form__container {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p-estimate-form__card {
  background-color: #f8f9fe;
  border-radius: 12px;
  border: 1px solid #e5e8f3;
  box-shadow: 0 4px 20px rgba(12, 35, 64, 0.03);
  overflow: hidden;
  padding: 36px 40px;
}

.p-estimate-form__card-title {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 700;
  color: #0c2340;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.p-estimate-form__card-desc {
  font-size: 14px;
  color: var(--on-surface-variant, #434652);
  line-height: 1.6;
}

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

.p-estimate-form__submit-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  text-align: center;
}

.p-estimate-form__submit-note {
  font-size: 15px;
  color: var(--on-surface-variant, #434652);
  margin-bottom: 20px;
  line-height: 1.6;
}

.p-estimate-form__submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 420px;
  padding: 18px 24px;
  background-color: #d7000f;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 0;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

@media (any-hover: hover) {
  .p-estimate-form__submit-btn:hover {
    background-color: #b8000d;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    transform: translateY(-1px);
  }
}

.p-estimate-form__submit-btn:active {
  transform: translateY(0);
}

@media (max-width: 767px) {
  .p-estimate-form {
    padding: 24px 0;
  }
  .p-estimate-form__container {
    gap: 36px;
  }
  .p-estimate-form__card {
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
  }
  .p-estimate-form__card + .p-estimate-form__card {
    border-top: 1px dashed #d1d5db;
    padding-top: 32px;
  }
  .p-estimate-form__input-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .p-estimate-form__submit-wrap {
    margin-top: 32px;
  }
  .p-estimate-form__submit-note {
    font-size: 13px;
    margin-bottom: 16px;
  }
  .p-estimate-form__submit-btn {
    padding: 16px 20px;
    font-size: 16px;
    max-width: 100%;
  }
}

/*!
project > estimate-header
------------------------------
*/
.p-estimate-header {
  background-color: #f7f8fe;
  padding: 40px 0;
}

.p-estimate-header__title {
  font-size: 30px;
  font-weight: 700;
  color: #112a66;
  margin-bottom: 12px;
  line-height: 1.3;
}

.p-estimate-header .c-lead {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767px) {
  .p-estimate-header {
    padding: 28px 0;
  }
  .p-estimate-header__title {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .p-estimate-header .c-lead {
    font-size: 13px;
  }
}

/* Package Selection Cards */
.p-estimate-form__package-grid {
  margin-top: 20px;
}

.p-estimate-form__package-card {
  display: block;
  position: relative;
  cursor: pointer;
  height: 100%;
}

.p-estimate-form__package-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.p-estimate-form__package-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

@media (any-hover: hover) {
  .p-estimate-form__package-card:hover .p-estimate-form__package-inner {
    border-color: #0c3167;
    box-shadow: 0 4px 14px rgba(12, 49, 103, 0.08);
  }
}

.p-estimate-form__package-radio:checked + .p-estimate-form__package-inner {
  border-color: #0c3167;
  border-width: 2px;
  background-color: #f0f5ff;
  box-shadow: 0 0 0 1px #0c3167, 0 6px 18px rgba(12, 49, 103, 0.15);
}

.p-estimate-form__package-radio:checked + .p-estimate-form__package-inner::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 3;
  width: 26px;
  height: 26px;
  background-image: url('../img/icon-check-badge.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.25));
}

.p-estimate-form__package-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 505 / 314;
  background-color: #f8fafc;
  overflow: hidden;
}

.p-estimate-form__package-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-estimate-form__package-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 3px;
  color: #ffffff;
}

.p-estimate-form__package-badge--navy {
  background-color: #0f254c;
}

.p-estimate-form__package-badge--eco {
  background-color: #10b981;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.p-estimate-form__package-badge-icon {
  width: 11px;
  height: 11px;
  filter: brightness(0) invert(1);
}

.p-estimate-form__package-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.p-estimate-form__package-name {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
  display: block;
}

.p-estimate-form__package-desc {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.5;
  display: block;
  margin: 0;
}

@media (max-width: 767px) {
  .p-estimate-form__package-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px 12px;
  }

  .p-estimate-form__package-body {
    padding: 12px 10px;
    text-align: center;
  }

  .p-estimate-form__package-name {
    font-size: 14px;
  }

  .p-estimate-form__package-desc {
    font-size: 12px;
  }
}

/* Spec Section Group & General Layout */
.p-estimate-form__spec-section {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.p-estimate-form__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-estimate-form__label-sub {
  font-size: 13px;
  font-weight: 500;
  color: #5c5f60;
  margin-left: 8px;
}

.u-mt05 {
  margin-top: 4px !important;
}

/* Material Selection Cards Grid */
.p-estimate-form__material-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.p-estimate-form__material-card {
  display: block;
  position: relative;
  cursor: pointer;
}

.p-estimate-form__material-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.p-estimate-form__material-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #ffffff;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

@media (any-hover: hover) {
  .p-estimate-form__material-card:hover .p-estimate-form__material-inner {
    border-color: #0c3167;
  }
}

.p-estimate-form__material-radio:checked + .p-estimate-form__material-inner {
  border: 2px solid #0c3167;
  background-color: #f0f5ff;
  box-shadow: 0 0 0 1px #0c3167, 0 4px 14px rgba(12, 49, 103, 0.12);
}

.p-estimate-form__material-radio:checked + .p-estimate-form__material-inner::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 3;
  width: 26px;
  height: 26px;
  background-image: url('../img/icon-check-badge.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.25));
}

.p-estimate-form__material-badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  background-color: #0f254c;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-bottom-left-radius: 6px;
}

.p-estimate-form__material-img-wrap {
  width: 100%;
  aspect-ratio: 516 / 321;
  overflow: hidden;
  background-color: #f8fafc;
}

.p-estimate-form__material-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-estimate-form__material-body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-grow: 1;
}

.p-estimate-form__material-name {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

.p-estimate-form__material-desc {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.45;
  margin: 0;
}

/* Printing Type Radio List */
.p-estimate-form__print-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.p-estimate-form__print-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
  color: #1f2937;
  font-weight: 500;
}

.p-estimate-form__print-radio {
  width: 18px;
  height: 18px;
  accent-color: #112a66;
  cursor: pointer;
}

/* Pattern Position Section */
.p-estimate-form__pattern-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-estimate-form__pattern-list {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.p-estimate-form__pattern-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 160px;
  cursor: pointer;
}

.p-estimate-form__pattern-radio-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #1a1b21;
}

.p-estimate-form__pattern-radio {
  width: 18px;
  height: 18px;
  accent-color: #0c3167;
  cursor: pointer;
}

.p-estimate-form__pattern-card {
  position: relative;
  width: 100%;
  aspect-ratio: 316 / 305;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

@media (any-hover: hover) {
  .p-estimate-form__pattern-item:hover .p-estimate-form__pattern-card {
    border-color: #0c3167;
  }
}

.p-estimate-form__pattern-radio:checked ~ .p-estimate-form__pattern-card,
.p-estimate-form__pattern-item:has(.p-estimate-form__pattern-radio:checked) .p-estimate-form__pattern-card {
  border: 2px solid #0c3167;
  background-color: #f0f5ff;
  box-shadow: 0 0 0 1px #0c3167, 0 4px 14px rgba(12, 49, 103, 0.12);
}

.p-estimate-form__pattern-radio:checked ~ .p-estimate-form__pattern-card::before,
.p-estimate-form__pattern-item:has(.p-estimate-form__pattern-radio:checked) .p-estimate-form__pattern-card::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 3;
  width: 26px;
  height: 26px;
  background-image: url('../img/icon-check-badge.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.25));
}

.p-estimate-form__pattern-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-estimate-form__pattern-badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 4px 6px;
  text-align: center;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

.p-estimate-form__pattern-badge-main {
  display: block;
  font-size: 8px;
  font-weight: 700;
  color: #334155;
  line-height: 1.15;
  letter-spacing: 0.3px;
}

.p-estimate-form__pattern-badge-sub {
  display: block;
  font-size: 6px;
  color: #64748b;
  margin-top: 2px;
  line-height: 1;
  letter-spacing: -0.2px;
}

/* Parts Selection Checkbox Cards Grid */
.p-estimate-form__parts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.p-estimate-form__parts-card {
  display: block;
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  transition: outline 0.2s ease, box-shadow 0.2s ease;
}

.p-estimate-form__parts-card:has(.p-estimate-form__parts-checkbox:focus-visible) {
  outline: 3px solid #004098 !important;
  box-shadow: 0 0 0 5px rgba(0, 64, 152, 0.4) !important;
}

.p-estimate-form__parts-checkbox {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.p-estimate-form__parts-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #ffffff;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

@media (any-hover: hover) {
  .p-estimate-form__parts-card:hover .p-estimate-form__parts-inner {
    border-color: #0c3167;
  }
}

.p-estimate-form__parts-checkbox:checked + .p-estimate-form__parts-inner {
  border: 2px solid #0c3167;
  background-color: #f0f5ff;
  box-shadow: 0 0 0 1px #0c3167, 0 4px 14px rgba(12, 49, 103, 0.12);
}

.p-estimate-form__parts-checkbox:checked + .p-estimate-form__parts-inner::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 3;
  width: 26px;
  height: 26px;
  background-image: url('../img/icon-check-badge.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.25));
}

.p-estimate-form__parts-img-wrap {
  width: 100%;
  aspect-ratio: 376 / 234;
  overflow: hidden;
  background-color: #f8fafc;
}

.p-estimate-form__parts-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-estimate-form__parts-name {
  padding: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #111827;
}

/* Form inputs styling */
.p-estimate-form__select {
  width: 100%;
  height: 44px;
  padding: 0 16px;
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  background-color: #ffffff;
  font-size: 15px;
  text-align: center;
  color: #1f2937;
}

.p-estimate-form__qty-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.p-estimate-form__qty-input {
  width: 100px;
  height: 44px;
  border: 1px solid #d0d5dd;
  border-radius: 4px;
  padding: 0 12px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.p-estimate-form__dropzone {
  border: 1px dashed #b8c4e0;
  background-color: #eef1f8;
  border-radius: 8px;
  padding: 44px 24px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (any-hover: hover) {
  .p-estimate-form__dropzone:hover {
    background-color: #e3e8f4;
    border-color: #0c3167;
  }
}

.p-estimate-form__dropzone .c-upload-dropzone__icon::before {
  display: none;
}

.p-estimate-form__upload-icon-img {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  display: block;
}

.p-estimate-form__dropzone .c-upload-dropzone__text {
  font-size: 16px;
  font-weight: 600;
  color: #334155;
  margin-top: 0;
  margin-bottom: 6px;
}

.p-estimate-form__dropzone .c-upload-dropzone__sub {
  font-size: 13px;
  color: #64748b;
  margin-top: 0;
}

.p-estimate-form__group .c-form-label {
  display: block;
  line-height: 1.6;
}

.p-estimate-form__label-note {
  display: inline;
  background-color: #eef2ff;
  color: #1e3a8a;
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
  margin-left: 4px;
}

.p-estimate-form__dropzone-note {
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
}

.p-estimate-form__textarea {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 15px;
  line-height: 1.6;
  resize: vertical;
  min-height: 100px;
}

.p-estimate-form__textarea::placeholder {
  color: #9ca3af;
}

/* Responsive SP Styles */
@media (max-width: 767px) {
  .p-estimate-form__material-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .p-estimate-form__parts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .p-estimate-form__pattern-list {
    gap: 12px;
  }

  .p-estimate-form__pattern-item {
    width: 130px;
  }

  .p-estimate-form__select {
    max-width: 100%;
  }
}

/*!
project > other-parts
------------------------------
*/
.p-other-parts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 20px;
}

.p-other-parts-card {
  display: grid;
  grid-row: span 5;
  grid-template-rows: subgrid;
  gap: 0;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.p-other-parts-card__img-wrap {
  grid-row: 1;
  width: 100%;
  aspect-ratio: 736 / 458;
  overflow: hidden;
  background-color: #f1f5f9;
}

.p-other-parts-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-other-parts-card__body {
  grid-row: 2 / span 4;
  display: grid;
  grid-template-rows: subgrid;
  padding: 16px 18px;
  row-gap: 8px;
}

.p-other-parts-card__title {
  grid-row: 1;
  font-size: 17px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.35;
  align-self: center;
}

.p-other-parts-card__lead {
  grid-row: 2;
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 6px;
  padding-top: 12px;
  border-top: 2px solid #e2e8f0;
}

.p-other-parts-card__spec {
  grid-row: 3;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.p-other-parts-card__spec-row {
  display: flex;
  font-size: 13px;
  line-height: 1.4;
}

.p-other-parts-card__spec-label {
  font-weight: 700;
  color: #334155;
  flex-shrink: 0;
}

.p-other-parts-card__spec-label::after {
  content: "：";
}

.p-other-parts-card__spec-val {
  color: #475569;
  flex: 1;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

.p-other-parts-card__note {
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
  line-height: 1.35;
  align-self: start;
}

.p-other-parts-card__note--important {
  color: #e11d48;
  font-weight: 700;
  background-color: #ffe4e6;
  padding: 6px 10px;
  border-radius: 4px;
  margin-top: 4px;
}

@media (max-width: 767px) {
  .p-other-parts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .p-other-parts-card {
    display: flex;
    flex-direction: column;
    grid-row: auto;
  }
  .p-other-parts-card__body {
    display: flex;
    flex-direction: column;
    padding: 14px 16px;
    grid-row: auto;
    row-gap: 0;
  }
  .p-other-parts-card__title {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .p-other-parts-card__lead {
    font-size: 13px;
    margin-top: 0;
    margin-bottom: 8px;
  }
  .p-other-parts-card__spec {
    padding: 8px 10px;
    gap: 4px;
  }
  .p-other-parts-card__spec-row {
    font-size: 12px;
  }
}

/*!
page > adjuster
------------------------------
*/

/* Sections */
.p-adjuster-section {
  padding: 60px 0;
}
.p-adjuster-section:nth-of-type(even) {
  background-color: #ffffff;
}
.p-adjuster-section:nth-of-type(odd) {
  background-color: #f8fafc;
}
.p-adjuster-section__header {
  margin-bottom: 28px;
}
.p-adjuster-section__title {
  font-size: 26px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}
.p-adjuster-section__desc {
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 24px;
}

/* Row (Main Column + Side Column) */
.p-adjuster-row {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 32px;
  align-items: stretch;
}

.p-adjuster-col-main {
  display: flex;
  flex-direction: column;
}

.p-adjuster-col-side {
  display: flex;
}

/* Frame (Outer Border Box) */
.p-adjuster-frame {
  border: 2px solid #666666;
  border-radius: 8px;
  background-color: #ffffff;
  overflow: hidden;
}
.p-adjuster-frame--main {
  display: flex;
  flex: 1;
}
.p-adjuster-frame--side {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 220px;
}
.p-adjuster-frame__img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Type List (3-column layout with vertical dividers) */
.p-adjuster-type-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}
.p-adjuster-type-single {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Type Item */
.p-adjuster-type-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 16px 24px;
  border-right: 2px solid #666666;
}
.p-adjuster-type-item:last-child {
  border-right: none;
}
.p-adjuster-type-item--wide {
  border-right: none;
  max-width: 440px;
  width: 100%;
  padding: 32px 24px;
}

/* Image Wrappers */
.p-adjuster-type-item__img-wrap {
  width: 100%;
  max-width: 140px;
  aspect-ratio: 280 / 360;
  height: auto;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-adjuster-type-item__img-wrap--wide {
  max-width: 320px;
  aspect-ratio: 268 / 118;
  height: auto;
}
.p-adjuster-type-item__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Type Labels & Specs */
.p-adjuster-type-item__name {
  font-size: 15px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 16px;
}
.p-adjuster-type-item__spec {
  font-size: 12px;
  line-height: 1.4;
  color: #666666;
}
.p-adjuster-type-item__spec-label {
  font-weight: 400;
  color: #666666;
  margin-bottom: 2px;
}
.p-adjuster-type-item__spec-val {
  color: #666666;
}

/* SP Responsive */
@media (max-width: 767px) {
  .p-adjuster-section {
    padding: 40px 0;
  }
  .p-adjuster-section__title {
    font-size: 20px;
  }
  .p-adjuster-section__desc {
    font-size: 14px;
  }
  .p-adjuster-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .p-adjuster-type-list {
    grid-template-columns: 1fr;
  }
  .p-adjuster-type-item {
    border-right: none;
    border-bottom: 2px solid #666666;
    padding: 24px 16px;
  }
  .p-adjuster-type-item:last-child {
    border-bottom: none;
  }
  .p-adjuster-frame--side {
    height: 360px;
  }

}

/* State Management Utility (PDFLOCSS Compliant) */
.is-hidden {
  display: none !important;
  opacity: 0;
  transform: translateY(24px);
}

.is-visible {
  display: block;
  animation: estimateStepSoftFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes estimateStepSoftFade {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.u-strikethrough {
  text-decoration: line-through;
  opacity: 0.6;
}

/* ==========================================================================
   Form Validation Styles (jQuery.validate)
   ========================================================================== */
label.error,
label.c-form__error {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #b91c1c;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm, 6px);
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
  line-height: 1.4;
}

/* jQuery.validate の非表示・空状態・valid 状態における完全隠蔽 */
label.error:empty,
label.c-form__error:empty,
label.error[style*="none"],
label.c-form__error[style*="none"],
label.error.valid,
label.c-form__error.valid {
  display: none !important;
}

label.error::before,
label.c-form__error::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../img/icon-warning.svg") no-repeat center / contain;
  flex-shrink: 0;
}

label.error:empty::before,
label.c-form__error:empty::before,
label.error[style*="none"]::before,
label.c-form__error[style*="none"]::before {
  display: none !important;
  content: none !important;
}

/* 入力欄のエラー表示ハイライト */
.c-form-control.error {
  border-color: #dc2626 !important;
  background-color: #fef2f2 !important;
}

.c-form-control.error:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15) !important;
}

/* ラジオボタン選択肢エリア未選択（エラー時）の親枠線・カード強調 */
.has-error {
  position: relative;
}

/* 紐の素材カード（.p-estimate-form__material-grid） */
.p-estimate-form__material-grid.has-error .p-estimate-form__material-inner {
  border-color: #fca5a5 !important;
  background-color: #fff5f5;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.25);
}

/* 紐への印刷リスト（.p-estimate-form__print-list） */
.p-estimate-form__print-list.has-error .p-estimate-form__print-item {
  border: 1px solid #fca5a5 !important;
  background-color: #fff5f5;
  border-radius: var(--radius-sm, 6px);
}

/* 柄の位置指定リスト（.p-estimate-form__pattern-list） */
.p-estimate-form__pattern-list.has-error .p-estimate-form__pattern-card,
.p-estimate-form__pattern-list.has-error .p-estimate-form__pattern-radio-wrap {
  border-color: #fca5a5 !important;
  background-color: #fff5f5;
}

/* 区分（法人／個人）（.c-form-group__radio-wrap） */
.c-form-group__radio-wrap.has-error {
  border: 1px solid #fca5a5 !important;
  border-radius: var(--radius-sm, 6px);
  padding: 4px 8px;
  background-color: #fff5f5;
}
