@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;700&display=swap");
.auction-lp {
  --space-xl: 80px;
  --space-l: 40px;
  --space-m: 24px;
  --space-s: 16px;
  --space-ss: 8px;
  --ff-base: "Roboto", "Noto Sans JP", sans-serif;
  --fz-body: 1.4rem;
  --fz-sm: 1.6rem;
  --fz-h4: 2.2rem;
  --fz-h3: 2.6rem;
  --fz-h2: 3.0rem;
  --fz-h1: 3.2rem;
  --fz-hero: 5.2rem;
  --fz-caption: 1.2rem;
  --lh-body: 1.7;
  --lh-tight: 1.4;
  --container-narrow: 960px;
  --container: 1120px;
  --container-wide: 1280px;
  --gutter: 24px;
}

@media (max-width: 980px) {
  .auction-lp {
    --space-xl: 40px;
    --space-l: 24px;
    --space-m: 16px;
    --space-s: 12px;
    --space-ss: 4px;
    --fz-body: clamp(1.2rem, 2.6vw, 1.4rem);
    --fz-sm: clamp(1.2rem, 2.6vw, 1.6rem);
    --fz-h4: clamp(1.4rem, 3.0vw, 2.2rem);
    --fz-h3: clamp(1.6rem, 3.4vw, 2.6rem);
    --fz-h2: clamp(1.8rem, 3.6vw, 3.0rem);
    --fz-h1: clamp(1.8rem, 3.6vw, 3.2rem);
    --fz-hero: clamp(3.8rem, 9.6vw, 5.2rem);
    --fz-caption: clamp(1.0rem, 2.2vw, 1.2rem);
    --gutter: 16px;
  }
}

.auction-lp .l-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.auction-lp .l-container--narrow {
  max-width: var(--container-narrow);
}

.auction-lp .l-container--wide {
  max-width: var(--container-wide);
}

.auction-lp .l-container--full {
  max-width: none;
  padding-inline: 0;
}

.auction-lp .l-breakout {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.auction-lp .l-section {
  padding-block: var(--space-xl);
}

.auction-lp .l-section--tight {
  padding-block: var(--space-l);
}

.auction-lp .l-cols {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 981px) {
  .auction-lp .l-cols--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .auction-lp .l-cols--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.auction-lp .l-cols--gap-s {
  gap: var(--space-s);
}

.auction-lp .l-cols--gap-m {
  gap: var(--space-m);
}

.auction-lp .l-cols--gap-l {
  gap: var(--space-l);
}

.auction-lp .c-title {
  display: flex;
  flex-direction: column;
  gap: var(--space-ss);
}

.auction-lp .c-title__jp {
  font-size: var(--fz-h2);
  line-height: var(--lh-tight);
}

.auction-lp .c-title__lead {
  font-size: var(--fz-body);
}

.auction-lp .c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: var(--fz-body);
  cursor: pointer;
  text-decoration: none;
}

.auction-lp .c-btn--primary {
  background: #111;
  color: #fff;
}

.auction-lp .c-btn--ghost {
  border-color: #111;
  color: #111;
}

.auction-lp .c-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  padding: var(--space-m);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: #fff;
  height: 100%;
}

.auction-lp .c-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-ss);
}

.auction-lp .c-card__title {
  font-size: var(--fz-h4);
  line-height: var(--lh-tight);
}

.auction-lp .c-card__text {
  font-size: var(--fz-body);
}

.auction-lp .c-card__actions {
  margin-top: auto;
}

.auction-lp .c-media {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
}

.auction-lp .c-media img,
.auction-lp .c-media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auction-lp .c-slider__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: var(--space-m);
}

.auction-lp .c-slider__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.auction-lp .c-slider--cards .c-slider__slide {
  display: flex;
}

.auction-lp .c-slider--cards .c-slider__slide > * {
  width: 100%;
  height: 100%;
}

.auction-lp .c-kv {
  padding-block: var(--space-xl);
}

.auction-lp .c-kv__inner {
  display: grid;
  gap: var(--space-l);
}

@media (min-width: 981px) {
  .auction-lp .c-kv__inner {
    grid-template-columns: 1.1fr .9fr;
  }
}

.auction-lp .c-kv__title {
  font-size: var(--fz-h1);
}

.auction-lp .c-kv__title--lg {
  font-size: var(--fz-hero);
}

.auction-lp .c-kv__title--sm {
  font-size: var(--fz-h2);
}

.auction-lp .c-cta {
  padding-block: var(--space-xl);
}

.auction-lp .c-cta__inner {
  display: grid;
  gap: var(--space-m);
}

@media (min-width: 981px) {
  .auction-lp .c-cta__inner {
    grid-template-columns: 1fr auto;
  }
}

.auction-lp .c-input {
  width: 100%;
  padding: var(--space-s);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: var(--fz-body);
}

.auction-lp .c-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  padding: var(--space-m);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.auction-lp .c-form__row {
  display: flex;
  flex-direction: column;
  gap: var(--space-ss);
}

.auction-lp .u-mt-m {
  margin-top: var(--space-m);
}

.auction-lp .u-mt-l {
  margin-top: var(--space-l);
}

.auction-lp *, .auction-lp *::before, .auction-lp *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

.auction-lp {
  font-family: "Noto Sans JP", sans-serif;
  color: #1e293b;
  background: #ffffff;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  font-size: var(--fz-body);
}

.auction-lp a {
  color: inherit;
  text-decoration: none;
}

.auction-lp ul {
  list-style: none;
}

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

.auction-lp .l-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.auction-lp .l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.auction-lp .l-header--scrolled {
  background: rgba(10, 22, 40, 0.99);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.auction-lp .l-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.auction-lp .l-header__logo {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: .04em;
  white-space: nowrap;
  flex-shrink: 0;
}

.auction-lp .l-header__logo-gmo {
  color: #00c8e6;
}

.auction-lp .l-header__logo-cloud {
  color: #ffffff;
}

.auction-lp .l-header__nav {
  margin-left: auto;
}

.auction-lp .l-header__nav ul {
  display: flex;
  gap: 0;
  align-items: center;
}

.auction-lp .l-header__nav a {
  display: block;
  padding: 8px 14px;
  font-size: .82rem;
  font-weight: 500;
  color: #fff;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.auction-lp .l-header__nav a:hover {
  color: #00c8e6;
}

.auction-lp .l-header__nav--open {
  display: block;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: #0a1628;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
  z-index: 99;
}

.auction-lp .l-header__nav--open ul {
  flex-direction: column;
}

.auction-lp .l-header__nav--open a {
  padding: 12px 24px;
}

.auction-lp .l-anchor-nav {
  background: #ffffff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 60px;
  z-index: 80;
}

@media (min-width: 769px) {
  .auction-lp .l-anchor-nav {
    top: 90px;
  }
}

@media (min-width: 1025px) {
  .auction-lp .l-anchor-nav {
    top: 110px;
  }
}

.auction-lp .l-anchor-nav__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.auction-lp .l-anchor-nav__inner::-webkit-scrollbar {
  display: none;
}

.auction-lp .l-footer {
  background: #0a1628;
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.auction-lp .l-footer__inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.auction-lp .l-footer__logo {
  flex-shrink: 0;
}

.auction-lp .l-footer__logo p {
  font-size: .75rem;
  color: #fff;
  margin-top: 6px;
}

.auction-lp .l-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
}

.auction-lp .l-footer__nav a {
  display: block;
  padding: 4px 14px 4px 0;
  font-size: .78rem;
  color: #fff;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.auction-lp .l-footer__nav a:hover {
  color: #00c8e6;
}

.auction-lp .l-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  text-align: center;
}

.auction-lp .l-footer__copy {
  font-size: .75rem;
  color: #fff;
}

.auction-lp .l-cols {
  display: grid;
  gap: 20px;
}

.auction-lp .l-cols--2 {
  grid-template-columns: repeat(2, 1fr);
}

.auction-lp .c-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  border-radius: 50px;
  transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  text-align: center;
}

.auction-lp .c-btn--primary {
  padding: 14px 32px;
  background: #f97316;
  color: #ffffff;
  font-size: var(--fz-sm);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.35);
}

.auction-lp .c-btn--primary:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249, 115, 22, 0.45);
}

.auction-lp .c-btn--secondary {
  padding: 13px 28px;
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  font-size: var(--fz-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.auction-lp .c-btn--secondary:hover {
  border-color: #00c8e6;
  color: #00c8e6;
  background: rgba(0, 200, 230, 0.08);
}

.auction-lp .c-btn--header {
  flex-shrink: 0;
  padding: 9px 20px;
  background: #00c8e6;
  color: #0a1628;
  font-size: var(--fz-sm);
  white-space: nowrap;
}

.auction-lp .c-btn--header:hover {
  background: #4de0f5;
  box-shadow: 0 4px 24px rgba(0, 200, 230, 0.25);
}

.auction-lp .c-btn--plan {
  display: block;
  text-align: center;
  margin: 16px 24px 24px;
  padding: 12px;
  background: #f4f8fc;
  border: 1.5px solid #e2e8f0;
  color: #0a1628;
  font-size: var(--fz-sm);
}

.auction-lp .c-btn--plan:hover {
  border-color: #1a56b0;
  color: #1a56b0;
  background: rgba(26, 86, 176, 0.04);
}

.auction-lp .c-btn--plan-featured {
  background: #00c8e6;
  border-color: #00c8e6;
  color: #0a1628;
  box-shadow: 0 4px 24px rgba(0, 200, 230, 0.25);
}

.auction-lp .c-btn--plan-featured:hover {
  background: #4de0f5;
  border-color: #4de0f5;
  color: #0a1628;
  transform: none;
}

.auction-lp .c-btn--voice {
  padding: 7px 16px;
  background: #1a56b0;
  color: #ffffff;
  font-size: var(--fz-sm);
  font-weight: 600;
}

.auction-lp .c-btn--voice:hover {
  background: #2d72d2;
}

.auction-lp .c-btn--voice-outline {
  padding: 7px 16px;
  background: transparent;
  color: #1a56b0;
  font-size: var(--fz-sm);
  font-weight: 600;
  border: 1px solid #e2e8f0;
}

.auction-lp .c-btn--voice-outline:hover {
  border-color: #1a56b0;
  background: rgba(26, 86, 176, 0.05);
}

.auction-lp .c-btn--submit {
  flex: 1;
  padding: 13px 24px;
  background: #f97316;
  color: #ffffff;
  font-size: .92rem;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

.auction-lp .c-btn--submit:hover {
  background: #ea580c;
  transform: translateY(-2px);
}

.auction-lp .c-btn--submit-secondary {
  background: #f4f8fc;
  color: #0a1628;
  box-shadow: none;
  border: 1.5px solid #e2e8f0;
}

.auction-lp .c-btn--submit-secondary:hover {
  background: #ffffff;
  border-color: #1a56b0;
  color: #1a56b0;
  transform: translateY(-2px);
}

.auction-lp .c-btn--partner {
  flex-shrink: 0;
  padding: 11px 24px;
  background: #0a1628;
  color: #00c8e6;
  font-size: .85rem;
  border-radius: 50px;
  border: 1px solid rgba(0, 200, 230, 0.3);
  white-space: nowrap;
}

.auction-lp .c-btn--partner:hover {
  background: #162a55;
  box-shadow: 0 4px 24px rgba(0, 200, 230, 0.25);
}

.auction-lp .c-btn--floating {
  display: block;
  text-align: center;
}

.auction-lp .c-btn--floating-primary {
  padding: 11px 20px;
  background: #f97316;
  color: #ffffff;
  font-size: .82rem;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}

.auction-lp .c-btn--floating-primary:hover {
  background: #ea580c;
}

.auction-lp .c-btn--floating-secondary {
  padding: 10px 20px;
  background: #0a1628;
  color: #00c8e6;
  font-size: .82rem;
  border: 1px solid rgba(0, 200, 230, 0.35);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.auction-lp .c-btn--floating-secondary:hover {
  background: #162a55;
}

.auction-lp .c-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.auction-lp .c-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.auction-lp .c-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: var(--fz-sm);
  color: #fff;
  font-weight: 500;
}

.auction-lp .c-badge i {
  color: #00c8e6;
}

.auction-lp .c-anchor-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  font-size: var(--fz-sm);
  font-weight: 600;
  color: #64748b;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.auction-lp .c-anchor-item i {
  font-size: var(--fz-sm);
  color: #94a3b8;
}

.auction-lp .c-anchor-item:hover {
  color: #1a56b0;
  border-bottom-color: #1a56b0;
}

.auction-lp .c-anchor-item:hover i {
  color: #1a56b0;
}

.auction-lp .c-anchor-item--cta {
  margin-left: auto;
  color: #ffffff;
  background: #f97316;
  border-radius: 0;
  border-bottom: none;
  padding: 14px 24px;
}

.auction-lp .c-anchor-item--cta i {
  color: #ffffff;
}

.auction-lp .c-anchor-item--cta:hover {
  background: #ea580c;
}

.auction-lp .c-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.auction-lp .c-section-header--light .c-section-title {
  color: #ffffff;
}

.auction-lp .c-section-header--light .c-section-desc {
  color: #fff;
}

.auction-lp .c-section-label {
  display: inline-block;
  padding: 4px 14px;
  background: #f4f8fc;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  color: #1a56b0;
  font-size: var(--fz-sm);
  font-weight: 700;
  letter-spacing: .12em;
  margin-bottom: 14px;
}

.auction-lp .c-section-title {
  font-size: var(--fz-h2);
  font-weight: 900;
  color: #1e293b;
  line-height: 1.4;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

.auction-lp .c-section-desc {
  font-size: var(--fz-body);
  color: #333;
  line-height: 1.8;
  max-width: 100%;
  margin: 0 auto;
}

.auction-lp .c-card {
  position: relative;
  font-size: var(--fz-body);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px 24px;
  transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.auction-lp .c-card:hover {
  border-color: #2d72d2;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.auction-lp .c-card--solution.c-card--featured {
  border-color: rgba(0, 157, 184, 0.35);
  background: linear-gradient(135deg, rgba(0, 200, 230, 0.04) 0%, rgba(26, 86, 176, 0.04) 100%);
}

.auction-lp .c-card--solution.c-card--featured:hover {
  border-color: #009db8;
  box-shadow: 0 6px 24px rgba(0, 157, 184, 0.18);
}

.auction-lp .c-card--solution.c-card--featured h3 {
  color: #1a56b0;
}

.auction-lp .c-card--solution h3 {
  font-size: var(--fz-h4);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
  line-height: 1.5;
}

.auction-lp .c-card--solution p {
  font-size: var(--fz-body);
  color: #64748b;
  line-height: 1.75;
}

.auction-lp .c-card--solution p strong {
  color: #1a56b0;
}

.auction-lp .c-card--voice {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.auction-lp .c-card--voice:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: #94a3b8;
}

.auction-lp .c-card--feature {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 200, 230, 0.2);
}

.auction-lp .c-card--feature:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 200, 230, 0.45);
  box-shadow: 0 0 30px rgba(0, 200, 230, 0.1);
}

.auction-lp .c-card--feature h3 {
  font-size: var(--fz-h4);
  font-weight: 700;
  color: #00c8e6;
  margin-bottom: 12px;
  line-height: 1.5;
}

.auction-lp .c-card--feature p {
  font-size: var(--fz-body);
  color: #fff;
  line-height: 1.8;
}

.auction-lp .c-card--why {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.auction-lp .c-card--why:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 200, 230, 0.3);
}

.auction-lp .c-card--why h3 {
  font-size: var(--fz-h4);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.5;
}

.auction-lp .c-card--why p {
  font-size: var(--fz-body);
  color: #fff;
  line-height: 1.8;
}

.auction-lp .c-card--plan {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.auction-lp .c-card--plan:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.auction-lp .c-card--plan-featured {
  border: 2px solid #009db8;
  box-shadow: 0 4px 24px rgba(0, 157, 184, 0.2);
  transform: translateY(-8px);
}

.auction-lp .c-card--plan-featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 10px 40px rgba(0, 157, 184, 0.3);
}

.auction-lp .c-card--plan-featured .c-card__header {
  background: linear-gradient(135deg, #0a1628 0%, #162a55 100%);
}

.auction-lp .c-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #162a55, #1a56b0);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #00c8e6;
  font-size: var(--fz-body);
  flex-shrink: 0;
}

.auction-lp .c-card--feature .c-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #009db8, #1a56b0);
  color: #ffffff;
  font-size: var(--fz-body);
}

.auction-lp .c-card--why .c-card__icon {
  background: rgba(0, 200, 230, 0.15);
  border: 1px solid rgba(0, 200, 230, 0.3);
  color: #00c8e6;
}

.auction-lp .c-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #00c8e6;
  color: #0a1628;
  font-size: var(--fz-sm);
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 50px;
  letter-spacing: .08em;
}

.auction-lp .c-card__tag {
  padding: 8px 16px;
  background: #f0f4f8;
  font-size: var(--fz-caption);
  font-weight: 600;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.auction-lp .c-card__tag i {
  color: #1a56b0;
}

.auction-lp .c-card__visual {
  padding: 0;
}

.auction-lp .c-card__img {
  height: 160px;
  background: linear-gradient(135deg, #0f2044 0%, #162a55 50%, #1a56b0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: #fff;
}

.auction-lp .c-card__body {
  padding: 20px;
  flex: 1;
}

.auction-lp .c-card--plan .c-card__body {
  padding: 20px 24px;
  flex: 1;
}

.auction-lp .c-card__company {
  font-size: var(--fz-body);
  font-weight: 700;
  color: #64748b;
  margin-bottom: 10px;
  line-height: 1.5;
}

.auction-lp .c-card__headline {
  font-size: var(--fz-body);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.65;
}

.auction-lp .c-card__links {
  padding: 16px 20px;
  border-top: 1px solid #f0f4f8;
  display: flex;
  gap: 8px;
}

.auction-lp .c-card__links a {
  font-size: var(--fz-caption);
}

.auction-lp .c-card__header {
  padding: 24px 24px 20px;
  background: #0a1628;
  font-size: var(--fz-body);
}

.auction-lp .c-card__ribbon {
  position: absolute;
  top: 70px;
  right: 16px;
  background: #00c8e6;
  color: #0a1628;
  font-size: var(--fz-sm);
  font-weight: 800;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 0;
  letter-spacing: .06em;
}

.auction-lp .c-card__ribbon::after {
  content: none;
}

.auction-lp .c-card__type {
  font-size: var(--fz-sm);
  font-weight: 600;
  color: #00c8e6;
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.auction-lp .c-card__name {
  font-size: var(--fz-h4);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
}

.auction-lp .c-card__recommended {
  font-size: var(--fz-sm);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}

.auction-lp .c-card__recommended i {
  color: #eab308;
  font-size: .72rem;
}

.auction-lp .c-card__price {
  padding: 20px 24px;
  border-bottom: 1px solid #f0f4f8;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.auction-lp .c-card__price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.auction-lp .c-card__desc {
  font-size: var(--fz-body);
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 16px;
}

.auction-lp .c-card__merit-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.auction-lp .c-card__merit-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: var(--fz-body);
  color: #475569;
  line-height: 1.5;
}

.auction-lp .c-card__merit-list i {
  color: #1a56b0;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: var(--fz-h3);
}

.auction-lp .c-merit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 18px;
  transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.auction-lp .c-merit-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.auction-lp .c-merit-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #162a55, #1a56b0);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00c8e6;
  font-size: var(--fz-h3);
}

.auction-lp .c-merit-item__text strong {
  display: block;
  font-size: var(--fz-h4);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.auction-lp .c-merit-item__text p {
  font-size: var(--fz-body);
  color: #64748b;
  line-height: 1.65;
}

.auction-lp .c-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  position: relative;
  z-index: 1;
  font-size: var(--fz-body);
}

.auction-lp .c-step:not(:last-child) {
  border-bottom: 1px solid #f0f4f8;
}

.auction-lp .c-step__num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: #0a1628;
  color: #00c8e6;
  font-size: var(--fz-body);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #00c8e6;
  letter-spacing: .05em;
  position: relative;
  z-index: 2;
}

.auction-lp .c-step__body {
  flex: 1;
  padding-top: 8px;
}

.auction-lp .c-step__body h3 {
  font-size: var(--fz-h4);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.auction-lp .c-step__body p {
  font-size: var(--fz-body);
  color: #64748b;
  line-height: 1.75;
}

.auction-lp .c-step__body p strong {
  color: #1a56b0;
}

.auction-lp .c-bid-type-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auction-lp .c-bid-type {
  padding: 12px 14px;
  background: rgba(0, 200, 230, 0.05);
  border-left: 3px solid #00c8e6;
  border-radius: 0 6px 6px 0;
}

.auction-lp .c-bid-type p {
  font-size: var(--fz-body);
  color: #fff;
  line-height: 1.5;
}

.auction-lp .c-bid-type__name {
  display: block;
  font-size: var(--fz-sm);
  font-weight: 700;
  color: #00c8e6;
  margin-bottom: 4px;
}

.auction-lp .c-card--feature {
  background: rgba(255, 255, 255, 0.15);
}

.auction-lp .c-card--why h3 {
  font-size: var(--fz-h4);
}

.auction-lp .c-function-block {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 28px 24px;
}

.auction-lp .c-function-block__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 200, 230, 0.2);
}

.auction-lp .c-function-block__header i {
  color: #00c8e6;
  font-size: var(--fz-h3);
}

.auction-lp .c-function-block__header h3 {
  font-size: var(--fz-h4);
  font-weight: 700;
  color: #ffffff;
}

.auction-lp .c-function-block__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.auction-lp .c-function-block__list > li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: var(--fz-body);
  color: #fff;
  line-height: 1.55;
}

.auction-lp .c-function-block__list > li > i.fa-check {
  color: #00c8e6;
  flex-shrink: 0;
  margin-top: 3px;
  font-size: .8rem;
}

.auction-lp .c-function-block__list > li small {
  color: #fff;
  font-size: var(--fz-sm);
}

.auction-lp .c-function-block__sub-list {
  margin-top: 6px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.auction-lp .c-function-block__sub-list li {
  font-size: var(--fz-sm);
  color: #fff;
  padding-left: 12px;
  position: relative;
}

.auction-lp .c-function-block__sub-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #00c8e6;
}

.auction-lp .c-faq__item {
  border-bottom: 1px solid #e2e8f0;
}

.auction-lp .c-faq__item:first-child {
  border-top: 1px solid #e2e8f0;
}

.auction-lp .c-faq__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 0;
  text-align: left;
}

.auction-lp .c-faq__question[aria-expanded="true"] .c-faq__icon {
  transform: rotate(180deg);
  color: #1a56b0;
}

.auction-lp .c-faq__question[aria-expanded="true"] .c-faq__q-label {
  background: #1a56b0;
}

.auction-lp .c-faq__question[aria-expanded="true"] .c-faq__q-text {
  color: #1a56b0;
}

.auction-lp .c-faq__q-label {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #0a1628;
  color: #00c8e6;
  font-weight: 900;
  font-size: var(--fz-sm);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auction-lp .c-faq__q-text {
  flex: 1;
  font-size: var(--fz-body);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.55;
}

.auction-lp .c-faq__icon {
  flex-shrink: 0;
  color: #94a3b8;
  font-size: var(--fz-sm);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.auction-lp .c-faq__answer {
  display: none;
  padding: 0 0 22px 0;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  overflow: hidden;
}

.auction-lp .c-faq__a-label {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #f4f8fc;
  color: #64748b;
  font-weight: 700;
  font-size: var(--fz-sm);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.auction-lp .c-faq__a-text {
  flex: 1;
}

.auction-lp .c-faq__a-text p {
  font-size: var(--fz-body);
  color: #64748b;
  line-height: 1.8;
}

.auction-lp .c-form__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.auction-lp .c-form__row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.auction-lp .c-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.auction-lp .c-form__group label {
  font-size: .82rem;
  font-weight: 600;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 6px;
}

.auction-lp .c-form__group input,
.auction-lp .c-form__group select,
.auction-lp .c-form__group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 6px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: .9rem;
  color: #1e293b;
  background: #ffffff;
  transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.auction-lp .c-form__group input:focus,
.auction-lp .c-form__group select:focus,
.auction-lp .c-form__group textarea:focus {
  border-color: #1a56b0;
  box-shadow: 0 0 0 3px rgba(26, 86, 176, 0.1);
}

.auction-lp .c-form__group textarea {
  resize: vertical;
  min-height: 100px;
}

.auction-lp .c-form__required {
  font-size: .68rem;
  background: #ef4444;
  color: #ffffff;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 700;
}

.auction-lp .c-form__actions {
  gap: 16px;
}

.auction-lp .c-form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: #64748b;
}

.auction-lp .c-form__check input {
  width: auto;
  margin-top: 2px;
  flex-shrink: 0;
}

.auction-lp .c-form__check a {
  color: #1a56b0;
  text-decoration: underline;
}

.auction-lp .c-form__cta-group {
  display: flex;
  gap: 12px;
}

.auction-lp .c-form__success {
  text-align: center;
  padding: 24px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
}

.auction-lp .c-form__success i {
  font-size: 2rem;
  color: #22c55e;
  margin-bottom: 10px;
}

.auction-lp .c-form__success p {
  color: #475569;
  font-size: .9rem;
  line-height: 1.75;
}

.auction-lp .c-floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.auction-lp .c-floating-cta--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.auction-lp .p-solution,
.auction-lp .p-voice,
.auction-lp .p-function,
.auction-lp .p-merit,
.auction-lp .p-why,
.auction-lp .p-flow,
.auction-lp .p-plan,
.auction-lp .p-faq,
.auction-lp .p-contact {
  padding: 96px 0;
}

.auction-lp .p-hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(140deg, #0a1628 0%, #0f2044 50%, #0a2040 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
}

.auction-lp .p-hero__bg-slide {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.auction-lp .p-hero__bg-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, #002c57 0%, rgba(0, 44, 87, 0) 9%, rgba(0, 44, 87, 0) 85%, #23447e 100%);
  pointer-events: none;
}

.auction-lp .p-hero__bg-slide-loop {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  overflow: hidden;
  opacity: 0.3;
}

.auction-lp .p-hero__bg-slide-loop img {
  flex-shrink: 0;
  display: block;
  width: 800px;
  height: auto;
  max-width: none;
}

.auction-lp .p-hero__bg-slide-loop img:first-child {
  animation: pHeroBgSlideX1 60s -30s linear infinite;
}

.auction-lp .p-hero__bg-slide-loop img:last-child {
  animation: pHeroBgSlideX2 60s linear infinite;
}

@media (min-width: 768px) {
  .auction-lp .p-hero__bg-slide {
    left: 50%;
  }
  .auction-lp .p-hero__bg-slide-loop {
    opacity: 1;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: stretch;
  }
  .auction-lp .p-hero__bg-slide-loop img {
    width: 100%;
    height: auto;
  }
  .auction-lp .p-hero__bg-slide-loop img:first-child {
    animation: pHeroBgSlideY1 60s -30s linear infinite;
  }
  .auction-lp .p-hero__bg-slide-loop img:last-child {
    animation: pHeroBgSlideY2 60s linear infinite;
  }
}

.auction-lp .p-hero__bg-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(rgba(0, 200, 230, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 200, 230, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.auction-lp .p-hero__bg-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 40%, rgba(0, 157, 184, 0.15) 0%, transparent 70%);
}

.auction-lp .p-hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 40px;
  width: 100%;
}

.auction-lp .p-hero__content {
  flex: 1;
  min-width: 0;
}

.auction-lp .p-hero__label {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(0, 200, 230, 0.15);
  border: 1px solid rgba(0, 200, 230, 0.4);
  border-radius: 50px;
  color: #00c8e6;
  font-size: var(--fz-body);
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 20px;
}

.auction-lp .p-hero__title {
  font-size: var(--fz-h1);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 24px;
  letter-spacing: -.01em;
}

.auction-lp .p-hero__title-accent {
  color: #00c8e6;
}

.auction-lp .p-hero__desc {
  font-size: var(--fz-body);
  color: #fff;
  line-height: 1.85;
  margin-bottom: 28px;
}

.auction-lp .p-hero__desc strong {
  color: #00c8e6;
  font-weight: 700;
}

.auction-lp .p-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.auction-lp .p-hero__cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.auction-lp .p-hero__visual {
  position: relative;
  flex: 0 0 460px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auction-lp .p-hero__mockup {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.auction-lp .p-hero__mockup-screen {
  background: rgba(255, 255, 255, 0.8);
  color: #666;
  font-size: var(--fz-body);
  border: 1px solid rgba(0, 200, 230, 0.3);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 200, 230, 0.1);
}

.auction-lp .p-hero__mockup-bar {
  background: rgba(0, 200, 230, 0.8);
  padding: 10px 16px;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid rgba(0, 200, 230, 0.15);
}

.auction-lp .p-hero__mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.auction-lp .p-hero__mockup-bar span:first-child {
  background: #ef4444;
}

.auction-lp .p-hero__mockup-bar span:nth-child(2) {
  background: #eab308;
}

.auction-lp .p-hero__mockup-bar span:last-child {
  background: #22c55e;
}

.auction-lp .p-hero__mockup-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auction-lp .p-hero__mockup-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.auction-lp .p-hero__mockup-item--small {
  padding: 10px 12px;
}

.auction-lp .p-hero__mockup-img {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(0, 200, 230, 0.15), rgba(26, 86, 176, 0.2));
  border-radius: 6px;
  border: 1px solid rgba(0, 200, 230, 0.2);
}

.auction-lp .p-hero__mockup-item--small .p-hero__mockup-img {
  width: 48px;
  height: 48px;
}

.auction-lp .p-hero__mockup-info {
  flex: 1;
}

.auction-lp .p-hero__mockup-title {
  height: 10px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  margin-bottom: 8px;
  width: 80%;
}

.auction-lp .p-hero__mockup-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.auction-lp .p-hero__price-label {
  font-size: var(--fz-sm);
  color: #00c8e6;
  font-weight: 600;
}

.auction-lp .p-hero__price-val {
  font-size: var(--fz-h4);
  color: #666;
  font-weight: 700;
}

.auction-lp .p-hero__mockup-timer {
  font-size: var(--fz-sm);
  color: #666;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}

.auction-lp .p-hero__mockup-bid {
  background: #00c8e6;
  color: #666;
  font-size: var(--fz-sm);
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  cursor: pointer;
}

.auction-lp .p-hero__mockup-glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 60px;
  background: radial-gradient(ellipse, rgba(0, 200, 230, 0.3) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.auction-lp .p-hero__plan-bar {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.8);
  border-top: 1px solid rgba(0, 200, 230, 0.2);
  padding: 18px 24px;
  text-align: center;
  font-size: var(--fz-body);
}

.auction-lp .p-hero__plan-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.auction-lp .p-hero__plan-flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: var(--fz-sm);
  font-weight: 600;
  color: #fff;
  gap: 2px;
}

.auction-lp .p-hero__plan-flow-item--active {
  border-color: #00c8e6;
  color: #00c8e6;
  background: rgba(0, 200, 230, 0.1);
}

.auction-lp .p-hero__plan-flow-item small {
  font-size: var(--fz-caption);
  font-weight: 400;
  opacity: .75;
}

.auction-lp .p-hero__plan-flow-arrow {
  color: #00c8e6;
  font-size: var(--fz-sm);
  opacity: .6;
}

.auction-lp .p-hero__plan-flow-caption {
  font-size: var(--fz-caption);
  color: #fff;
}

.auction-lp .p-solution {
  background: #ffffff;
}

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

.auction-lp .p-voice {
  background: linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%);
}

.auction-lp .p-voice .c-section-label {
  background: #0a1628;
  color: #00c8e6;
  border-color: transparent;
}

.auction-lp .p-voice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.auction-lp .c-card__company {
  font-size: var(--fz-body);
}

.auction-lp .p-voice__grid .c-card--voice:nth-child(1) .c-card__visual .c-card__img {
  background-image: url(https://www.cloudec.jp/wp-content/themes/cloudec/images/cloudec/auction/case00.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.auction-lp .p-voice__grid .c-card--voice:nth-child(2) .c-card__visual .c-card__img {
  background-image: url(https://www.cloudec.jp/wp-content/themes/cloudec/images/cloudec/auction/case03.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.auction-lp .p-voice__grid .c-card--voice:nth-child(3) .c-card__visual .c-card__img {
  background-image: url(https://www.cloudec.jp/wp-content/themes/cloudec/images/cloudec/auction/case02.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.auction-lp .p-function {
  background: #0a1628;
  background-image: url(../images/cloudec/auction/qa_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.auction-lp .p-function::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.6);
  pointer-events: none;
}

.auction-lp .p-function .c-section-title,
.auction-lp .p-function .c-section-desc {
  color: #ffffff;
}

.auction-lp .p-function .c-section-label {
  background: rgba(0, 200, 230, 0.12);
  border-color: rgba(0, 200, 230, 0.3);
  color: #00c8e6;
}

.auction-lp .p-function .c-section-desc {
  color: #fff;
}

.auction-lp .p-function__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.auction-lp .p-merit {
  background: #f4f8fc;
}

.auction-lp .p-merit__split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: start;
  font-size: var(--fz-body);
}

.auction-lp .p-merit__side-title {
  font-size: var(--fz-body);
  font-weight: 700;
  color: #0a1628;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #00c8e6;
}

.auction-lp .p-merit__side-title i {
  color: #00c8e6;
}

.auction-lp .p-merit__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  color: #94a3b8;
  font-size: var(--fz-h3);
}

.auction-lp .p-merit__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auction-lp .p-why {
  position: relative;
  overflow: hidden;
  background-image: url(https://www.cloudec.jp/wp-content/themes/cloudec/images/cloudec/auction/solution_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.auction-lp .p-why::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.75);
  pointer-events: none;
}

.auction-lp .p-why > * {
  position: relative;
  z-index: 1;
}

.auction-lp .p-why .c-section-label {
  background: rgba(0, 200, 230, 0.12);
  border-color: rgba(0, 200, 230, 0.3);
  color: #00c8e6;
}

.auction-lp .p-why .c-section-title {
  color: #ffffff;
}

.auction-lp .p-why .c-section-desc {
  color: #fff;
}

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

.auction-lp .p-flow {
  background: #ffffff;
}

.auction-lp .p-flow__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  font-size: var(--fz-body);
}

.auction-lp .p-flow__steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, #00c8e6 0%, #1a56b0 100%);
  z-index: 0;
}

.auction-lp .p-flow__plan-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.auction-lp .p-flow__plan-chips span {
  padding: 4px 14px;
  background: #f4f8fc;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  font-size: var(--fz-sm);
  font-weight: 600;
  color: #1a56b0;
}

.auction-lp .p-flow__upgrade-arrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.auction-lp .p-flow__upgrade-arrow span {
  padding: 5px 16px;
  background: linear-gradient(135deg, #0a1628, #1a56b0);
  color: #00c8e6;
  font-size: var(--fz-sm);
  font-weight: 700;
  border-radius: 50px;
}

.auction-lp .p-flow__upgrade-arrow i {
  color: #94a3b8;
  font-size: .8rem;
}

.auction-lp .p-plan {
  background: linear-gradient(135deg, #00c8e6 0%, #0493a8 100%);
}

.auction-lp .p-plan .c-section-desc {
  color: #fff;
}

.auction-lp .p-plan__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
  align-items: start;
}

.auction-lp .p-plan__table-title {
  font-size: var(--fz-h3);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  text-align: center;
}

.auction-lp .p-plan__table-scroll {
  overflow-x: auto;
}

.auction-lp .p-plan__table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fz-sm);
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}

.auction-lp .p-plan__table th, .auction-lp .p-plan__table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid #f0f4f8;
}

.auction-lp .p-plan__table th {
  background: #0a1628;
  color: #ffffff;
  font-weight: 700;
  font-size: var(--fz-sm);
}

.auction-lp .p-plan__table th small {
  display: block;
  font-size: var(--fz-caption);
  color: #00c8e6;
  font-weight: 400;
  margin-top: 3px;
}

.auction-lp .p-plan__table td:first-child {
  text-align: left;
  font-weight: 600;
  color: #475569;
  background: #f0f4f8;
}

.auction-lp .p-plan__table tr:last-child td {
  border-bottom: none;
}

.auction-lp .p-plan__table tr:nth-child(even) td {
  background: #f4f8fc;
}

.auction-lp .p-plan__table tr:nth-child(even) td:first-child {
  background: #e2e8f0;
}

.auction-lp .p-plan__table-note {
  font-size: var(--fz-sm);
  color: #fff;
  margin-top: 14px;
  line-height: 1.7;
  text-align: center;
}

.auction-lp .p-faq {
  background: #ffffff;
}

.auction-lp .p-faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.auction-lp .p-contact {
  position: relative;
  background: linear-gradient(140deg, #0a1628 0%, #0f2044 60%, #0d2040 100%);
  overflow: hidden;
}

.auction-lp .p-contact .c-section-desc {
  color: #fff;
}

.auction-lp .p-contact__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 80% 20%, rgba(0, 200, 230, 0.1) 0%, transparent 60%), linear-gradient(rgba(0, 200, 230, 0.03) 1px, transparent 1px) 0 0/48px 48px, linear-gradient(90deg, rgba(0, 200, 230, 0.03) 1px, transparent 1px) 0 0/48px 48px;
  pointer-events: none;
}

.auction-lp .p-contact__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.auction-lp .p-contact__label {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(0, 200, 230, 0.12);
  border: 1px solid rgba(0, 200, 230, 0.3);
  border-radius: 50px;
  color: #00c8e6;
  font-size: var(--fz-sm);
  font-weight: 700;
  letter-spacing: .12em;
  margin-bottom: 20px;
}

.auction-lp .p-contact__title {
  font-size: var(--fz-h2);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 20px;
}

.auction-lp .p-contact__desc {
  font-size: var(--fz-body);
  color: #fff;
  line-height: 1.85;
  margin-bottom: 24px;
}

.auction-lp .p-contact__needs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.auction-lp .p-contact__needs li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fz-sm);
  color: #fff;
}

.auction-lp .p-contact__needs i {
  color: #00c8e6;
  font-size: var(--fz-h3);
}

.auction-lp .p-contact__sub {
  font-size: var(--fz-sm);
  color: #fff;
  margin-bottom: 40px;
}

.auction-lp .p-contact__form-wrap {
  background: #eee;
  border-radius: 20px;
  padding: 36px 40px;
  text-align: left;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.auction-lp .p-contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auction-lp .p-partner {
  background: #f0f4f8;
  padding: 48px 0;
  border-top: 1px solid #e2e8f0;
}

.auction-lp .p-partner__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.auction-lp .p-partner__text {
  flex: 1;
}

.auction-lp .p-partner__text h3 {
  font-size: var(--fz-h4);
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 8px;
}

.auction-lp .p-partner__text p {
  font-size: var(--fz-body);
  color: #64748b;
  line-height: 1.75;
}

.auction-lp .featured-col {
  background: rgba(0, 200, 230, 0.06) !important;
}

.auction-lp .p-plan__table th.featured-col {
  background: #009db8 !important;
}

.auction-lp .check-ok {
  color: #22c55e;
  font-size: var(--fz-h3);
}

.auction-lp .check-tri {
  color: #eab308;
  font-size: var(--fz-h3);
}

.auction-lp .check-ng {
  color: #ef4444;
  font-size: var(--fz-h3);
}

.auction-lp .highlight {
  color: #1a56b0;
  font-weight: 700;
}

.auction-lp .price-type {
  font-size: var(--fz-sm);
  color: #64748b;
  font-weight: 500;
}

.auction-lp .price-amount {
  font-size: var(--fz-h4);
  font-weight: 900;
  color: #0a1628;
  line-height: 1;
}

.auction-lp .price-amount small {
  font-size: var(--fz-sm);
  font-weight: 600;
  color: #64748b;
}

.auction-lp .u-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.auction-lp .u-fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

.auction-lp .u-hidden {
  display: none !important;
}

@media (max-width: 1024px) {
  .auction-lp .p-hero__visual {
    flex: 0 0 360px;
  }
  .auction-lp .p-solution__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .auction-lp .p-plan__cards {
    gap: 16px;
  }
  .auction-lp .c-card--plan-featured {
    transform: none;
  }
  .auction-lp .c-card--plan-featured:hover {
    transform: translateY(-4px);
  }
  .auction-lp .p-merit__split {
    grid-template-columns: 1fr;
  }
  .auction-lp .p-merit__divider {
    display: none;
  }
}

@media (max-width: 980px) {
  .auction-lp .l-header__nav {
    display: none;
  }
  .auction-lp .c-btn--header {
    display: none;
  }
  .auction-lp .c-hamburger {
    display: flex;
  }
  .auction-lp .p-hero__inner {
    flex-direction: column;
    padding: 60px 24px 32px;
  }
  .auction-lp .p-hero__visual {
    flex: none;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }
  .auction-lp .p-hero__plan-bar {
    padding: 14px 16px;
  }
  .auction-lp .p-hero__plan-flow {
    gap: 8px;
  }
  .auction-lp .l-anchor-nav {
    top: 60px;
  }
  .auction-lp .p-solution__grid {
    grid-template-columns: 1fr;
  }
  .auction-lp .p-voice__grid {
    grid-template-columns: 1fr;
  }
  .auction-lp .p-function__features {
    grid-template-columns: 1fr;
  }
  .auction-lp .l-cols--2 {
    grid-template-columns: 1fr;
  }
  .auction-lp .p-why__grid {
    grid-template-columns: 1fr;
  }
  .auction-lp .p-plan__cards {
    grid-template-columns: 1fr;
  }
  .auction-lp .p-flow__steps::before {
    left: 22px;
  }
  .auction-lp .c-step__num {
    width: 44px;
    height: 44px;
    font-size: .82rem;
  }
  .auction-lp .c-step {
    gap: 18px;
  }
  .auction-lp .p-plan__table {
    font-size: var(--fz-sm);
  }
  .auction-lp .p-plan__table th, .auction-lp .p-plan__table td {
    padding: 10px 12px;
  }
  .auction-lp .p-contact__form-wrap {
    padding: 24px 20px;
  }
  .auction-lp .c-form__row--2col {
    grid-template-columns: 1fr;
  }
  .auction-lp .c-form__cta-group {
    flex-direction: column;
  }
  .auction-lp .p-partner__inner {
    flex-direction: column;
    gap: 20px;
  }
  .auction-lp .l-footer__inner {
    flex-direction: column;
    gap: 24px;
  }
  .auction-lp .c-floating-cta {
    bottom: 16px;
    right: 16px;
  }
  .auction-lp .c-btn--floating-primary,
.auction-lp .c-btn--floating-secondary {
    padding: 9px 16px;
    font-size: var(--fz-sm);
  }
  .auction-lp .p-solution,
.auction-lp .p-voice,
.auction-lp .p-function,
.auction-lp .p-merit,
.auction-lp .p-why,
.auction-lp .p-flow,
.auction-lp .p-plan,
.auction-lp .p-faq,
.auction-lp .p-contact {
    padding: 64px 0;
  }
  .auction-lp .c-section-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .auction-lp .p-hero__badges {
    gap: 6px;
  }
  .auction-lp .c-badge {
    font-size: var(--fz-sm);
    padding: 5px 10px;
  }
  .auction-lp .p-hero__cta-group {
    flex-direction: column;
  }
  .auction-lp .c-btn--primary, .auction-lp .c-btn--secondary {
    text-align: center;
    justify-content: center;
  }
}

@keyframes pHeroBgSlideY1 {
  0% {
    transform: translateY(90%);
  }
  100% {
    transform: translateY(-100%);
  }
}

@keyframes pHeroBgSlideY2 {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(-200%);
  }
}

@keyframes pHeroBgSlideX1 {
  0% {
    transform: translateX(90%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes pHeroBgSlideX2 {
  0% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(-200%);
  }
}

@media (min-width: 1025px) {
  header.header .l-header {
    top: 0;
  }
  #new-design .l-header {
    height: 90px;
  }
  #new-design .l-header logo {
    height: 90px;
  }
  #new-design .l-header.is-fixed {
    height: 110px;
  }
  #new-design .l-header .telHeader {
      margin-bottom: 0;
  }
}
@media (min-width: 769px) {
  .wrap {
    padding-top: 0;
  }
}

/* .l-anchor-nav の sticky: base.css の .wrap { overflow: hidden } があると
   祖先がスクロールコンテナ扱いになり position:sticky がビューポート基準で効かない */
.wrap:has(.auction-lp) {
  overflow: visible;
}

.wrap.industry.auction {
  overflow: visible;
}

.wrap > .cloudec-lp_bg,
.wrap.industry.auction > .cloudec-lp_bg {
  overflow: visible;
}

.auction-lp .contact-form,
.auction-lp .wpcf7-response-output {
  width: 100%;
}
