:root {
  --color-text: #000;
  --color-text-muted: #1a1a1a;
  --color-text-light: #555;
  --color-bg: #fff;
  --color-surface: #f7f7f7;
  --color-line: #e5e5e5;
  --color-line-strong: #333;
  --color-brand: #024ad8;
  --content-width: 1440px;
  --content-narrow: 1024px;
  --content-feature: 1092px;
  --space-page: 32px;
  --space-section: 96px;
  --radius-card: 8px;
  --radius-button: 4px;
  --shadow-none: 0 0 0 rgba(0, 0, 0, 0);
}


/*
.header{
  z-index: 9;
  border-bottom: 1px solid #000;
}

*/

.page {
  min-width: 320px;
  overflow-x: clip;
}

.local-top-nav-container {
  position: sticky;
  top: 0;
  z-index: 3;
}

.local-top-nav__fixed-spacer {
  display: none;
}

.page.is-safari.is-local-top-nav-pinned .local-top-nav-container {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  transition: top 0.3s ease;
}

.page.is-safari.is-local-top-nav-pinned .local-top-nav__fixed-spacer {
  display: block;
  height: 73px;
}

.page.is-safari.is-local-top-nav-pinned.is-contact-cta-passed .local-top-nav-container {
  top: -73px;
  pointer-events: none;
}

.local-top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 73px;
  padding: 16px 32px;
  border-bottom: 1px solid var(--color-line);
  position: relative;
  background: var(--color-bg);
  transition: height 0.25s ease, padding 0.25s ease;
}

.local-top-nav__arrow {
  display: none;
}

.local-top-nav__sentinel {
  display: block;
  height: 1px;
  margin-bottom: -1px;
  pointer-events: none;
}

.local-top-nav__placeholder {
  opacity: 0;
  pointer-events: none;
  font-size: 14px;
  line-height: 24px;
}

.local-top-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 32px;
}

.local-top-nav__link {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.175px;
  position: relative;
  white-space: nowrap;
}

.local-top-nav__link:hover::after,
.local-top-nav__link:focus-visible::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  min-height: 48px;
  padding: 12px 24px;
  border: 2px solid #000;
  border-radius: var(--radius-button);
  background: #000;
  color: #fff;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.2px;
  text-align: center;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}

.hero__purchase-button {
  transition:
    color 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}
.hero__purchase-button.button--large{
  white-space: nowrap;
  letter-spacing: unset;
}

.hero-purchase-sticky {
  display: none;
}

.button:hover,
.button:focus-visible {
  background: #fff;
}

.button--small {
  height: 40px;
  min-height: 40px;
  padding: 8px 16px;
  font-size: 14px;
  line-height: 24px;
}

.button--large {
  height: 60px;
  min-height: 60px;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 1.74px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px;
  text-align: center;
}

.section-heading--wide {
  max-width: var(--content-narrow);
  margin: 0 auto;
}

.section-heading--compact {
  padding-top: 48px;
  padding-bottom: 24px;
}

.section-heading__title {
  font-size: 32px;
  font-weight: 400;
  line-height: 44px;
  letter-spacing: 1.152px;
}

.section-heading__title--medium {
  font-size: 28px;
  line-height: 40px;
  letter-spacing: 1.89px;
}

.section-heading__title--small {
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 1.74px;
}

.section-heading__text {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.2px;
  text-align: left;
}

.hero {
  padding: 61px clamp(12px, min(3.889vw, calc((100vw - 1157px) / 2)), 56px) 62px;
  border: 0;
}

.hero__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 718px 439px;
  gap: clamp(0px, calc(100% - 1157px), 111px);
  align-items: center;
}

.hero__content {
  grid-column: 2;
  grid-row: 1;
  width: 439px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  min-width: 0;
  z-index: 2;
}

.hero__logo {
  width: 400px;
  max-width: 100%;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero__eyebrow {
  margin-bottom: -16px;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.2px;
}

.hero__title {
  font-size: 32px;
  font-weight: 400;
  line-height: 44px;
  letter-spacing: -1.25px;
}

.hero__title-break--pc-sp {
  display: none;
}

.hero__text {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.234px;
}

.hero__visual {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  min-height: 631px;
  display: flex;
  align-items: center;
}

.hero__accent {
  position: absolute;
  top: -61px;
  left: 273px;
  width: 132px;
  height: 808.78px;
  background: var(--color-brand);
  transform: skewX(-20deg);
  transform-origin: top;
}

.hero__accent::after {
  content: "";
  position: absolute;
  top: 0;
  left: 230px;
  width: 100%;
  height: 656px;
  background: var(--color-brand);
}

.hero__device {
  position: relative;
  left: 50px;
  width: 718px;
}

.productivity {
  margin-top: 55px;
}

.productivity-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-bottom: 88px;
}

.productivity-feature--reverse {
  padding-top: 32px;
}

.productivity-feature__video {
  display: block;
  width: 100vw;
  max-width: none;
  height: auto;
  margin-inline: calc(50% - 50vw);
  aspect-ratio: 1440 / 520;
  object-fit: cover;
}

.productivity-feature__body {
  width: min(100%, var(--content-narrow));
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 0 32px;
}

.productivity-feature__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 1.74px;
}

.productivity-feature__text {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.2px;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2px;
}

.chip-list__item {
  padding: 0 4px;
  background: var(--color-surface);
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.06px;
}

@media (min-width: 1181px) {
  .hero__title-break--pc-sp {
    display: initial;
  }

  .productivity-feature--reverse {
    padding-top: 0;
  }

  .productivity-feature__body {
    column-gap: 32px;
    row-gap: 0;
  }

  .productivity-feature__title {
    grid-row: 2;
    align-self: center;
    letter-spacing: 0;
    margin-top: -14px;
  }

  .chip-list,
  .productivity-feature__text {
    grid-column: 2;
  }

  .productivity-feature__text {
    min-height: calc(28px * 3);
    display: flex;
    align-items: start;
  }
}

.stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 96px 32px 160px;
}

.stats__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 52px;
}

.stats__icon {
  width: 101px;
  margin-bottom: 32px;
}

.stats__title {
  font-size: 28px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 1.89px;
  text-align: center;
}

.card-grid {
  width: min(100%, 996px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  align-items: stretch;
}

.card-grid > * {
  min-width: 0;
  height: 100%;
}

.stat-card,
.info-card {
  position: relative;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  overflow: hidden;
}

.stat-card {
  padding: 24px 32px 48px;
  text-align: center;
}

.stat-card::after,
.info-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 129px;
  height: 32px;
  background: var(--color-brand);
  transform: translateX(-50%) skewX(-20deg) scaleY(0.94);
}

.stat-card__label {
  white-space: nowrap;
  font-size: 24px;
  line-height: 29.2px;
  letter-spacing: 1.74px;
}

.stat-card__value {
  white-space: nowrap;
  margin: 10px 0;
  font-size: 64px;
  line-height: 60px;
  letter-spacing: 5.28px;
}

.stat-card__unit {
  font-size: 40px;
}

.stats__note {
  margin-top: 20px;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.06px;
  text-align: center;
}

.compare {
  padding: 64px 0 96px;
  background: var(--color-surface);
}

.compare__visual {
  max-width: 1144px;
  margin: 0 auto;
  padding: 0 0 24px;
}

.compare__labels {
  display: grid;
  grid-template-columns: 205px 320px minmax(0, 1fr);
  gap: 32px;
  align-items: end;
}

.compare__label {
  grid-column: 2;
  font-size: 20px;
  line-height: 26.2px;
  letter-spacing: 1.4px;
  text-align: left;
}

.compare__graphic {
  grid-column: 3;
  justify-self: start;
  width: 207px;
}

.compare-table {
  max-width: 1144px;
  margin: 0 auto;
}

.compare-table__row {
  display: grid;
  grid-template-columns: 205px 320px minmax(0, 1fr);
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--color-line-strong);
}

.compare-table__row:last-child {
  border-bottom: 1px solid var(--color-line-strong);
}

.compare-table__heading {
  padding-left: 24px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
}

.compare-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 16px;
}
.compare-list b{
  font-weight: 600;
}

.compare-list__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.2px;
}

.check-icon {
  width: 12px;
  height: 9px;
  object-fit: cover;
  flex: 0 0 auto;
}

.ai-pc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 96px 32px 160px;
}

.ai-pc__desc{
  padding-bottom: 0;  
}
.ai-pc__image {
  width: min(100%, 656px);
}

.processor {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px 160px;
}

.processor__visual {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  display: flex;
  background: #06232b;
}

.processor__image {
  display: block;
  width: 100%;
  height: auto;
}

.processor__heading .section-heading__text {
  text-align: center;
}

.processor__heading sup {
  font-size: 0.5em;
  line-height: 0;
  vertical-align: super;
}

.info-card {
  padding: 24px 32px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.info-card__icon {
  width: 60px;
  height: 60px;
}
.info-card__icon--fast{
  width: 48px;
  height: 30px;
  margin: 15px auto 15px;
}

.info-card__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 29.2px;
  letter-spacing: 1.74px;
}

.info-card__text {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.2px;
  text-align: left;
}

.feature-showcase {
  padding: 96px 32px;
  background: var(--color-surface);
}

.feature-panel {
  max-width: var(--content-feature);
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 516px;
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.feature-panel__content {
  position: relative;
  padding: 86px 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-panel__content::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -34px;
  width: 338px;
  height: 58px;
  background: #024AD8;
  transform: skewX(-20deg);
}

.feature-panel__eyebrow {
  position: relative;
  z-index: 1;
  font-size: 20px;
  line-height: 26.2px;
  letter-spacing: 1.4px;
  color: var(--color-text-muted);
}

.feature-panel__title {
  position: relative;
  z-index: 1;
  font-size: 32px;
  font-weight: 400;
  line-height: 44px;
  letter-spacing: 1.152px;
}

.feature-panel__text {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.2px;
}

.feature-panel__picture,
.feature-panel__image {
  align-self: stretch;
  width: 100%;
}

.feature-panel__picture {
  display: block;
}

.feature-panel__image {
  height: 100%;
}

.feature-scenarios {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-scenarios__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.2px;
}

.feature-scenarios__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-scenarios__item {
  min-height: 140px;
  padding: 16px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.feature-scenarios__icon {
  width: 40px;
  height: 40px;
}

.feature-scenarios__text {
  text-align: left;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.175px;
}

.feature-showcase__gallery {
  width: min(100%, 1156px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 16px;
}

.feature-showcase__gallery-item {
  min-width: 0;
}

.feature-gallery-card {
  height: 100%;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(min-content, 1fr) auto;
  gap: 12px;
}

.feature-gallery-card__caption {
  min-height: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.2px;
}

.feature-gallery-card__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.benefit-section {
  padding: 64px 32px 96px;
}

.benefit-row {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 31%) minmax(0, 1fr);
  border-top: 1px solid var(--color-line-strong);
  padding: 0 32px;
}

.benefit-row__intro {
  padding: 24px 32px 24px 0;
}

.benefit-row__eyebrow {
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 1.4px;
}

.benefit-row__title {
  font-size: 32px;
  font-weight: 400;
  line-height: 44px;
  letter-spacing: 1.152px;
}

.benefit-row__content {
  padding: 24px 0 48px;
}

.benefit-row__text {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.2px;
  margin-bottom: 32px;
}

.benefit-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-highlight {
  padding: 24px 32px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: var(--color-surface);
}

.benefit-highlight__header {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}

.benefit-highlight__icon {
  width: 30px;
  height: 30px;
}

.benefit-highlight__title {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 1.4px;
}

.benefit-highlight__meta {
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.06px;
  margin-bottom: 8px;
}

.benefit-highlight__text,
.benefit-row__note {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.2px;
}

.benefit-row__image {
  width: min(100%, 790px);
}

.benefit-row__video {
  display: block;
  width: min(100%, 790px);
  height: auto;
}

.benefit-row__graphic-title {
  font-size: 20px;
  line-height: 26.2px;
  letter-spacing: 1.4px;
  margin-bottom: 8px;
}

.benefit-row__note {
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.06px;
  margin-top: 8px;
}

.lineup {
  padding: 32px 32px 96px;
  background: var(--color-surface);
}

.lineup__grid {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.lineup__grid--center {
  grid-template-columns: repeat(2, minmax(0, calc((100% - 96px) / 4)));
  justify-content: center;
}

.device-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: #fff;
  padding: 24px 24px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.device-card__image {
  width: 100%;
  height: 225px;
  object-fit: contain;
  object-position: center;
}

.device-card__body {
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.device-card__name {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  text-align: center;
  overflow-wrap: anywhere;
}

.device-card__catch {
  margin-top: 8px;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.234px;
  text-align: center;
}

.device-card__list {
  width: max-content;
  max-width: 100%;
  align-self: start;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 20px auto 24px;
}

.device-card__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.lineup__footer {
  display: flex;
  justify-content: center;
  padding-top: 64px;
}

.contact-cta {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1279 / 489;
  padding: clamp(56px, 7.5vw, 108px) 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/local-footer-bg_pc.svg") center / cover no-repeat;
}

.contact-cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.contact-cta__title {
  font-size: 32px;
  font-weight: 400;
  line-height: 44px;
  letter-spacing: 1.152px;
}

.contact-cta__text {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.2px;
}

@media (max-width: 1180px) {
  .u-show-pc {
    display: none !important;
  }

  .local-top-nav {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .local-top-nav__placeholder {
    display: none;
  }

  .local-top-nav__list {
    flex: 0 0 auto;
    flex-wrap: nowrap;
  }

  .local-top-nav .button {
    flex: 0 0 auto;
  }

  .hero {
    padding: 80px 32px;
  }

  .hero__inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .hero__visual {
    order: 1;
    width: 100%;
    min-height: 680px;
  }

  .hero__content {
    width: unset;
    order: 2;
  }

  .hero__accent {
    left: calc(50% - 118px);
    top: -80px;
    transform: translateX(-10%) skewX(-20deg) scaleY(0.94);
  }

  .hero__device {
    width: 100%;
    max-width: 718px;
    left: 0;
    margin: 0 auto;
  }

  .lineup__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compare {
    padding-left: 32px;
    padding-right: 32px;
  }
  .productivity-feature__body{
    gap: 0;    
  }
  .chip-list{
    margin-top: 16px;
  }
  .productivity-feature__text{
    margin-top: 8px;
  }

  .productivity-feature__body,
  .feature-panel,
  .benefit-row {
    grid-template-columns: 1fr;
  }

  .benefit-row__intro {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 0;
    border-bottom: 1px solid #000;
  }

  .feature-panel__content {
    padding: 64px 40px 0;
  }

  .feature-scenarios__list {
    grid-template-columns: 1fr;
  }

  .feature-scenarios__item {
    min-height: 0;
    height: 46px;
    padding: 0 16px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
  }

  .feature-scenarios__icon {
    width: 30px;
    height: 30px;
  }
}

@media (min-width: 768px) and (max-width: 1180px) {
  .benefit-row {
    border-top: 0;
  }

  .hero__device {
    left: 50%;
    margin-right: 0;
    margin-left: 0;
    transform: translateX(-50%);
  }

  .compare__labels,
  .compare-table__row {
    grid-template-columns: 205fr 320fr 555fr;
  }

  .compare-list__item {
    align-items: flex-start;
  }

  .check-icon {
    margin-top: 9.5px;
  }

  .stats .card-grid {
    gap: 24px;
  }

  .stat-card {
    padding-right: 24px;
    padding-left: 24px;
  }

  .feature-panel {
    grid-template-columns: minmax(0, 1fr) 61.72%;
  }

  .feature-panel__content {
    padding: 64px 32px 48px;
  }

  .feature-panel__picture {
    position: relative;
    align-self: stretch;
    height: 100%;
    overflow: hidden;
  }

  .feature-panel__picture::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80px;
    z-index: 1;
    width: 200px;
    height: 100%;
    background: #fff;
    transform: skewX(-20deg);
    pointer-events: none;
  }

  .feature-panel__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (min-width: 768px) {
  .u-show-sp {
    display: none !important;
  }

  :root {
    --global-header-height: 70px;
  }

  .device-card {
    display: grid;
    grid-row: span 5;
    grid-template-rows: subgrid;
    row-gap: 0;
  }

  .device-card__body {
    display: contents;
  }

  .benefit-section > .section-heading .section-heading__text {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .hero__title-break--pc-sp {
    display: initial;
  }

  .page {
    --hero-purchase-sticky-offset: 36px;
  }

  .u-hide-sp {
    display: none !important;
  }

  .page.is-local-top-nav-pinned .local-top-nav {
    height: 36px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .page.is-safari.is-local-top-nav-pinned .local-top-nav__fixed-spacer {
    height: 36px;
  }

  .page.is-safari.is-local-top-nav-pinned.is-contact-cta-passed .local-top-nav-container {
    top: -36px;
  }

  .local-top-nav {
    grid-area: 1 / 1;
    min-width: 0;
    gap: 20px;
    padding: 16px 20px;
  }

  .local-top-nav-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .local-top-nav__arrow {
    grid-area: 1 / 1;
    align-self: center;
    z-index: 1;
    width: 24px;
    height: 24px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1s ease;
  }

  .local-top-nav__arrow:not([hidden]) {
    display: block;
  }

  .page.is-local-top-nav-pinned .local-top-nav__arrow {
    opacity: 1;
  }
  .local-top-nav__arrow--left {
    justify-self: start;
    transform: scaleX(-1);
  }

  .local-top-nav__arrow--right {
    justify-self: end;
  }

  .local-top-nav__list {
    gap: 20px;
  }

  .hero-purchase-sticky {
    background: #fff;
    position: sticky;
    top: 36px;
    z-index: 2;
    display: flex;
    justify-content: center;
    height: 41px;
    min-height: 0;
    margin-bottom: -41px;
    padding: 0 20px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.5s ease,
      visibility 0.5s linear;
  }

  .page.is-hero-purchase-sticky .hero-purchase-sticky {
    height: 41px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .button--large {
    width: 100%;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 1.4px;
  }
  .hero-purchase-sticky .hero__purchase-button.button--large,
  .page.is-hero-purchase-sticky .hero__purchase-button--sticky.button--large {
    margin-top: 8px;
    min-height: unset;
    height: 20px;
    padding: 0 12px;
    font-size: 10px;
    line-height: 20px;
    letter-spacing: 0;
    white-space: nowrap;

    width: 195px;
    font-size: 12px;
    letter-spacing: -0.8px;
  }


  .hero,
  .compare,
  .ai-pc,
  .processor,
  .feature-showcase,
  .benefit-section,
  .lineup,
  .contact-cta,
  .stats {
    padding-left: 20px;
    padding-right: 20px;
  }

  .productivity {
    margin-top: 32px;
  }
  .compare{
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .ai-pc{
    padding-top: 20px;
    padding-bottom: 96px;
  }
  .processor{
    padding-bottom: 96px;
  }
  .processor__visual{
    height: 250px;
    align-items: center;
  }
  .processor__heading .section-heading__text{
    text-align: left;
  }
  .stats{
    padding-bottom: 64px;
  }
  .feature-showcase{
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .benefit-section{
    padding-top: 32px;
  }

  .stats__title{
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 1.74px;
  }

  .compare-table__row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .compare-table__heading {
    padding-right: 0;
    padding-left: 0;
  }

  .compare-table {
    border-top: 0;
  }

  .compare-table__row,
  .compare-table__row:last-child {
    border-top: 0;
    border-bottom: 0;
  }
  .compare-table__heading{
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
    letter-spacing: 0;
  }
  .compare-table__heading::after {
    content: "";
    display: block;
    height: 1px;
    margin-top: 8px;
    background: var(--color-line-strong);
  }

  .compare__visual {
    display: none;
  }

  .compare-list {
    padding-right: 0;
  }

  .compare-list::before {
    content: "一般的なAI利用\A（クラウドAIのみ）";
    display: block;
    align-self: center;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.2px;
    text-align: center;
    white-space: pre-line;
  }

  .compare-list--strong::before {
    content: "";
    width: min(100%, 207px);
    aspect-ratio: 698 / 300;
    background: url("../images/compare-graphic.webp") center / contain no-repeat;
  }

  .hero {
    position: relative;
    padding-top: 93px;
    padding-bottom: 0;
  }

  .hero__inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .hero__visual {
    order: 2;
    position: static;
    width: 100%;
    min-height: unset;
  }

  .hero__content {
    display: contents;
  }

  .hero__logo {
    width: 194px;
    height: 79px;
    object-fit: contain;
    order: 1;
    position: absolute;
    top: 17px;
    left: 20px;
    z-index: 2;
  }

  .hero__copy {
    width: min(313px, 100%);
    gap: 12px;
    order: 3;
    margin-top: 18px;
  }

  .hero__eyebrow {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.234px;
  }

  .hero__purchase-button.button--large {
    width: 273px;
    height: 44px;
    min-height: unset;
    font-size: 16px;
    letter-spacing: -0.8px;
    order: 4;
  }

  .hero__title{
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 1.12px;
  }

  .section-heading__title{
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 1.74px;
  }

  .section-heading__text,
  .productivity-feature__text,
  .compare-list__item,
  .benefit-row__text,
  .benefit-highlight__text {
    font-size: 15px;
    line-height: 26px;
  }

  .hero__text{
    font-size: 18px;
    line-height: 28px;
  }

  .compare-list__item,
  .feature-scenarios__label,
  .device-card__item {
    align-items: flex-start;
  }

  .check-icon {
    margin-top: 8.5px;
  }

  .hero__accent {
    width: 52px;
    height: 345px;
    top: 0;
    left: calc(50% + 118px);
    right: auto;
    transform: translateX(-10%) skewX(-20deg);
    transform-origin: top;
  }

  .hero__accent::after {
    left: 88px;
    height: 191px;
  }

  .hero__device {
    top: 12px;
    width: 279px;
    height: 210px;
    left: 50%;
    margin: 0;
    object-fit: contain;
    transform: translateX(-50%);
  }

  .section-heading {
    padding-left: 0;
    padding-right: 0;
  }

  .productivity-feature__body{
    padding: 0 16px;
  }
  .compare-table {
    padding-left: 0;
    padding-right: 0;
  }

  .productivity-feature__title{
    text-align: center;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 1.4px;
  }
  .productivity-feature__video{
    aspect-ratio: 375 / 250;
  }
  .productivity-feature{
    padding-bottom: 0;
  }
  .productivity-feature--reverse{
    padding-bottom: 32px;
  }

  .feature-panel__content{
    padding-left: 16px;
    padding-right: 16px;
    gap: 0;
  }
  .feature-panel__eyebrow{
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.23px;
  }
  .feature-panel__title{
    font-size: 24px;
    line-height: 36px;
  }
  .feature-panel__text{
    margin-top: 16px;
  }
  .feature-scenarios{
    margin-top: 16px;
  }
  .feature-showcase__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 12px;
  }

  .feature-gallery-card {
    gap: 8px;
  }

  .feature-gallery-card__caption {
    font-size: 15px;
    line-height: 26px;
  }

  .card-grid{
    padding: 0 20px;
    gap: 16px;
  }
  .card-grid,
  .lineup__grid {
    grid-template-columns: 1fr;
  }

  .feature-panel__content::before {
    width: 220px;
    height: 46px;
  }
  .benefit-row{
    padding: 0;
    border: 0;
  }
  .feature-panel__content{
    padding-bottom: 32px;
  }
  .benefit-row__content{
    padding-bottom: 24px;
  }
  
  .device-card{
    gap: 0;
  }
 
  .device-card__body{
    gap: 0;
  }
  .device-card__catch{
    margin-top: 8px;
  }
  .device-card__list{
    margin-top: 20px;
    margin-bottom: 24px;
  }
  
  .contact-cta {
    aspect-ratio: 374 / 384;
    padding-top: clamp(36px, 10vw, 72px);
    padding-bottom: clamp(36px, 10vw, 72px);
    background-image: url("../images/local-footer-bg_sp.svg");
  }
  .contact-cta__content{
    gap: 16px;
  }
  .contact-cta__title{
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 1.74px;
  }

  .benefit-row__image{
    display: block;
    width: 208px;
    margin: 0 auto;
  }

  .lineup__footer{
    padding-top: 24px;
  }
  .device-card .button{
    height: 44px;
  }
  .lineup__footer .button{
    width: 258px;
    height: 44px;
    min-height: unset;
    margin: 0 auto;
    padding: 8px 16px;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -0.2px;
  }

  .contact-cta .button{
    width: 199px;
    height: 44px;
    min-height: unset;
    margin: 0 auto;
    padding: 8px 16px;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -0.2px;
  }

}








/* ==================================================

    2026.8

================================================== */
.hp_relationship h3 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: normal;
    text-align: center;
}
.hp_relationship p:nth-child(n+2) {
    margin-top: 0;
}

@media screen and (min-width: 1024px) {
.hp_relationship h3 {
    font-size: 22px;
    margin-bottom: 24px;
}
}
    
/* ==================================================
    subbox
================================================== */

.subbox {
    border: 1px solid #000;
    margin-top: 32px;
    padding: 16px;
}
.subbox h4 {
    font-weight: normal;
}
.subbox h3 {
    font-weight: normal;
    font-size: 18px;
}
.subbox * + h3,
.subbox * + h4 {
    margin-top: 16px;
}

@media screen and (min-width: 1024px) {
.subbox {
    padding: 32px;
    margin-top: 60px;
}
.subbox h3 {
    font-size: 20px;
}
}
@media screen and (min-width: 1280px) {
.subbox {
    width: 996px;
}
}
    
.hero__logo_img {
    margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
.hero__logo_img {
    margin-bottom: 40px;
}
}
  
.hero__accent {
    top: -122px;
}
@media (max-width: 767px) {
.hero__device {
    top: 45px!important;
    height: 330px!important;
}
.hero__accent {
    height: 455px!important;
    top: 0;
}
}

@media screen and (min-width:768px) and ( max-width:1180px) {
    .hero__visual {
        min-height: 620px;
    }
}

